 body {
            margin: 0;
            font-family: 'Nunito', sans-serif;
            background: linear-gradient(135deg, #f5f7fa, #e9eef5);
            color: #243b53;
        }

        .lb-container {
            max-width: 1150px;
            margin: auto;
            padding: 40px 20px;
            text-align: center;
        }

        .lb-title {
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .lb-subtitle {
            font-size: 16px;
            color: #667892;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .lb-pricing {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .lb-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 20px;
            width: 320px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
            text-align: left;
            position: relative;
        }
		.lb-btn-wrap {
		    margin-top: 16px;
		}
        .lb-card.highlight {
            border: 2px solid #f7b631;
        }

        .lb-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #f7b631;
            color: white;
            font-size: 12px;
            padding: 6px 10px;
            border-radius: 12px;
            font-weight: 700;
        }

        .lb-plan-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .lb-price {
            font-size: 36px;
            font-weight: 800;
            color: #21ac94;
        }

        .lb-price small {
            font-size: 16px;
            color: #667892;
        }

        .lb-list {
            margin: 18px 0;
            padding: 0;
            list-style: none;
        }

        .lb-list li {
            margin-bottom: 10px;
            font-size: 14px;
            display: flex;
            gap: 8px;
        }

        .lb-list li::before {
            content: "✔";
            color: #21ac94;
            font-weight: bold;
        }
        
        .lb-btn {
		    display: block;
		    width: 100%;
		    text-align: center;
		    padding: 14px 16px;
		    box-sizing: border-box;
		    border-radius: 14px;
		
		    background: linear-gradient(135deg, #21ac94, #1b8f7b);
		    color: #ffffff;
		    text-decoration: none;
		
		    font-weight: 800;
		    font-size: 15px;
		    letter-spacing: 0.3px;
		
		    box-shadow: 0 8px 18px rgba(33, 172, 148, 0.25);
		    transition: all 0.25s ease;
		}
		
		.lb-btn:hover {
		    transform: translateY(-2px);
		    box-shadow: 0 12px 24px rgba(33, 172, 148, 0.35);
		}
		
		.lb-btn:active {
		    transform: translateY(0);
		    box-shadow: 0 6px 12px rgba(33, 172, 148, 0.25);
		}

        /* TRUST SECTION */
        .lb-trust-strip {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .lb-trust-badge {
            background: #fff;
            padding: 14px;
            border-radius: 16px;
            display: flex;
            gap: 10px;
            align-items: center;
            box-shadow: 0 8px 18px rgba(0,0,0,0.06);
        }

        .lb-trust-icon {
            font-size: 20px;
            background: rgba(33,172,148,0.1);
            padding: 10px;
            border-radius: 10px;
        }

        .lb-trust-badge strong {
            font-size: 14px;
        }

        .lb-trust-badge small {
            display: block;
            font-size: 12px;
            color: #667892;
        }

        .lb-trust-note {
            margin-top: 12px;
            font-size: 12px;
            color: #667892;
        }

        @media (max-width: 900px) {
            .lb-pricing {
                flex-direction: column;
                align-items: center;
            }

            .lb-trust-strip {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 500px) {
            .lb-trust-strip {
                grid-template-columns: 1fr;
            }
        }