        @import url('https://fonts.googleapis.com/css2?family=Sarina&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Bento Fresh Light Palette */
            --bg-light: #fafafa;
            --bg-white: #ffffff;
            --bg-soft: #f5f5f5;
            --border: #e8e8e8;
            --border-dark: #d0d0d0;
            
            /* Accent colors - slightly deeper for light bg */
            --lime: #8bc34a;
            --lime-bg: #e8f5e9;
            --lime-dark: #7cb342;
            --coral: #ef5350;
            --coral-bg: #ffebee;
            --peach: #ff8a65;
            --peach-bg: #fbe9e7;
            --lavender: #7e57c2;
            --lavender-bg: #ede7f6;
            --mint: #26a69a;
            --mint-bg: #e0f2f1;
            --butter: #ffc107;
            --butter-bg: #fff8e1;
            --sky: #42a5f5;
            --sky-bg: #e3f2fd;
            
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #888888;
            --white: #ffffff;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--bg-light);
        }

        /* =====================
           HEADER
        ====================== */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 48px;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-family: 'Sarina', cursive;
            font-size: 40px;
            font-weight: 400;
            color: #000000;
            letter-spacing: 0;
            text-decoration: none;
        }

        .logo span {
            color: #000000;
            text-decoration: none;
        }

        .nav {
            display: flex;
            gap: 8px;
        }

        .nav a {
            text-decoration: none;
            color: var(--text-medium);
            font-size: 17px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 100px;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav a:hover {
            background: var(--bg-soft);
            color: var(--text-dark);
        }

        .mobile-menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            border: none;
            background: var(--bg-soft);
            border-radius: 12px;
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 2px;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-white);
            z-index: 200;
            flex-direction: column;
            padding: 20px;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

        .mobile-nav-close {
            width: 44px;
            height: 44px;
            border: none;
            background: var(--bg-soft);
            border-radius: 12px;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-dark);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 18px;
            font-weight: 500;
            padding: 16px 20px;
            border-radius: 16px;
            transition: all 0.2s;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            background: var(--lime-bg);
            color: var(--lime-dark);
        }

        .mobile-nav-cta {
            margin-top: auto;
            padding: 18px 32px;
            background: var(--lime);
            color: var(--white);
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
        }

        .header-cta {
            padding: 12px 24px;
            background: var(--lime);
            color: var(--white);
            border: none;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .header-cta:hover {
            background: var(--lime-dark);
            transform: scale(1.02);
        }

        /* =====================
           HERO - BENTO GRID
        ====================== */
        .hero {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            padding: 48px 48px 64px;
            min-height: calc(100vh - 80px);
            background: var(--bg-soft) url('https://oliveandketo.com/wp-content/uploads/2026/01/olive-keto-diet-woman-perimenopausa.png') center center / cover no-repeat;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 0;
        }

        .hero-carousels {
            display: none;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 16px;
            position: relative;
            z-index: 1;
            padding: 0 48px 140px 48px;
        }

        .hero-headline {
            font-family: 'Syne', sans-serif;
            font-size: 72px;
            line-height: 1.05;
            font-weight: 700;
            color: var(--white);
            margin: 0;
        }

        .hero-subheadline {
            font-size: 24px;
            line-height: 1.4;
            color: var(--white);
            margin: 0;
        }

        .hero-signup {
            position: relative;
            z-index: 1;
        }

        .category-carousel {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        }

        #nutrition-carousel {
            background: var(--lime);
            color: var(--white);
        }

        #perimenopause-carousel {
            background: var(--lavender);
            color: var(--white);
        }

        .category-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 3;
        }

        .category-label {
            font-family: 'Syne', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.9;
        }

        .category-count {
            font-size: 12px;
            font-weight: 600;
            opacity: 0.7;
            background: rgba(255,255,255,0.2);
            padding: 4px 12px;
            border-radius: 100px;
        }

        .carousel-container {
            position: relative;
            padding: 60px 24px 24px 24px;
        }

        .carousel-slide {
            display: none;
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: rgba(255,255,255,0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            overflow: hidden;
        }

        .carousel-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .carousel-slide-content {
            padding-top: 16px;
        }

        .carousel-meta {
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 6px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .carousel-title {
            font-family: 'Syne', sans-serif;
            font-size: 20px;
            line-height: 1.25;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .carousel-title a {
            color: var(--text-dark) !important;
            text-decoration: none !important;
            transition: text-decoration 0.2s;
        }

        .carousel-title a:hover {
            text-decoration: underline !important;
        }

        /* Specific overrides for colored backgrounds */
        #nutrition-carousel .carousel-title a,
        #perimenopause-carousel .carousel-title a {
            color: var(--text-dark) !important;
        }

        .carousel-excerpt {
            font-size: 13px;
            line-height: 1.5;
            opacity: 0.9;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .carousel-link {
            font-size: 13px;
            font-weight: 600;
            color: inherit;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 100px;
            transition: all 0.2s;
        }

        .carousel-link:hover {
            background: rgba(255,255,255,0.35);
            gap: 12px;
        }

        .carousel-controls {
            position: absolute;
            bottom: 24px;
            right: 24px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .carousel-arrows {
            display: flex;
            gap: 4px;
        }

        .carousel-arrow {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            color: inherit;
            transition: all 0.2s;
        }

        .carousel-arrow:hover {
            background: rgba(255,255,255,0.4);
        }

        /* =====================
           CATEGORY CAROUSELS SECTION
        ====================== */
        .category-carousels-section {
            padding: 24px 48px 64px;
            background: var(--bg-light);
        }

        .carousels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        #nutrition-carousel-main {
            background: var(--lime);
            color: var(--white);
        }

        #perimenopause-carousel-main {
            background: var(--lavender);
            color: var(--white);
        }

        #movement-carousel-main {
            background: var(--coral);
            color: var(--white);
        }

        /* Signup Form - Bento Card */
        .hero-signup {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid var(--border);
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
        }

        .signup-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--lime);
            margin-bottom: 24px;
            font-weight: 600;
        }

        .signup-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--lime);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .signup-title {
            font-family: 'Syne', sans-serif;
            font-size: 32px;
            line-height: 1.1;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .signup-subtitle {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .signup-description {
            font-size: 14px;
            color: var(--text-medium);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .signup-benefits {
            list-style: none;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .signup-benefits li {
            font-size: 12px;
            color: var(--text-dark);
            padding: 12px 14px;
            background: var(--bg-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .signup-benefits li::before {
            content: "✓";
            color: var(--lime);
            font-weight: 700;
        }

        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            font-weight: 500;
        }

        .form-group input {
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            background: var(--bg-white);
            color: var(--text-dark);
            transition: all 0.2s;
        }

        .form-group input::placeholder {
            color: var(--text-light);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--lime);
            box-shadow: 0 0 0 3px var(--lime-bg);
        }

        .signup-button {
            padding: 16px 32px;
            background: var(--text-dark);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
        }

        .signup-button:hover {
            background: #000000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .signup-note {
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
            margin-top: 16px;
        }

        /* Multi-step Form Styles */
        .form-progress {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .progress-dot {
            width: 40px;
            height: 4px;
            background: var(--border);
            border-radius: 2px;
            transition: background 0.3s;
        }

        .progress-dot.active {
            background: var(--lime);
        }

        .step-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .step-label {
            font-size: 11px;
            color: var(--lime);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .step-title {
            margin: 8px 0 0;
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .option-grid {
            display: grid;
            gap: 8px;
        }

        .option-grid.cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .option-grid.cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .option-card {
            padding: 12px 8px;
            background: var(--bg-soft);
            border: 2px solid transparent;
            border-radius: 12px;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .option-card:hover {
            border-color: var(--lime-bg);
        }

        .option-card.selected {
            border-color: var(--lime);
            background: var(--bg-white);
        }

        .option-card input {
            display: none;
        }

        .option-icon {
            font-size: 20px;
        }

        .option-text {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .option-desc {
            font-size: 11px;
            color: var(--text-light);
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: var(--bg-soft);
            border-radius: 10px;
            cursor: pointer;
            font-size: 13px;
        }

        .checkbox-item input {
            accent-color: var(--lime);
        }

        .optional {
            font-weight: 400;
            color: var(--text-light);
        }

        .consent-box {
            padding: 10px 12px;
            background: var(--bg-soft);
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .consent-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 12px;
            color: var(--text-medium);
            line-height: 1.5;
        }

        .consent-label input {
            accent-color: var(--lime);
            margin-top: 2px;
        }

        .consent-label a {
            color: var(--lime);
            text-decoration: underline;
        }

        .button-row {
            display: flex;
            gap: 12px;
        }

        .back-button {
            padding: 16px 32px;
            background: var(--bg-soft);
            color: var(--text-dark);
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
        }

        .back-button:hover {
            background: var(--border);
        }

        .button-row .signup-button {
            flex: 1;
        }

        /* Success State */
        .success-icon {
            width: 64px;
            height: 64px;
            background: var(--lime);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        .success-title {
            font-family: 'Syne', sans-serif;
            font-size: 22px;
            margin-bottom: 8px;
            color: var(--text-dark);
            text-align: center;
        }

        .success-text {
            color: var(--text-medium);
            margin-bottom: 16px;
            line-height: 1.6;
            text-align: center;
            font-size: 14px;
        }

        .success-tip {
            padding: 14px;
            background: var(--bg-soft);
            border-radius: 12px;
            font-size: 13px;
            color: var(--text-dark);
            text-align: center;
        }

        /* Loading State */
        .loading-spinner {
            width: 48px;
            height: 48px;
            border: 4px solid var(--border);
            border-top-color: var(--lime);
            border-radius: 50%;
            margin: 0 auto 20px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            color: var(--text-medium);
            text-align: center;
            font-size: 14px;
        }

        /* =====================
           VALUE PROPOSITION
        ====================== */
        .value-section {
            padding: 80px 48px;
            text-align: center;
            background: var(--bg-white);
        }

        .section-label {
            display: inline-block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--white);
            background: var(--lime);
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .value-section h2 {
            font-family: 'Syne', sans-serif;
            font-size: 48px;
            max-width: 800px;
            margin: 0 auto 16px;
            line-height: 1.1;
            font-weight: 700;
            color: var(--text-dark);
        }

        .value-section .subtitle {
            font-size: 18px;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        /* =====================
           BENEFITS GRID - BENTO
        ====================== */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 0 48px 64px;
            background: var(--bg-light);
        }

        .benefit-card {
            padding: 32px;
            border-radius: 24px;
            transition: transform 0.2s, box-shadow 0.2s;
            color: var(--text-dark);
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .benefit-card:nth-child(1) { background: var(--lime-bg); }
        .benefit-card:nth-child(2) { background: var(--peach-bg); }
        .benefit-card:nth-child(3) { background: var(--mint-bg); }
        .benefit-card:nth-child(4) { background: var(--lavender-bg); }
        .benefit-card:nth-child(5) { background: var(--butter-bg); }
        .benefit-card:nth-child(6) { background: var(--coral-bg); }

        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .benefit-card:nth-child(1) .benefit-icon { background: var(--lime); color: white; }
        .benefit-card:nth-child(2) .benefit-icon { background: var(--peach); color: white; }
        .benefit-card:nth-child(3) .benefit-icon { background: var(--mint); color: white; }
        .benefit-card:nth-child(4) .benefit-icon { background: var(--lavender); color: white; }
        .benefit-card:nth-child(5) .benefit-icon { background: var(--butter); color: var(--text-dark); }
        .benefit-card:nth-child(6) .benefit-icon { background: var(--coral); color: white; }

        .benefit-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .benefit-card p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-medium);
        }

        /* =====================
           HOW IT WORKS
        ====================== */
        .how-section {
            padding: 80px 48px;
            background: var(--bg-white);
        }

        .how-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .how-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .how-step {
            text-align: center;
            padding: 40px 32px;
            background: var(--bg-soft);
            border-radius: 24px;
            position: relative;
        }

        .step-number {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
        }

        .how-step:nth-child(1) .step-number { background: var(--lime); }
        .how-step:nth-child(2) .step-number { background: var(--lavender); }
        .how-step:nth-child(3) .step-number { background: var(--coral); }

        .how-step h3 {
            font-family: 'Syne', sans-serif;
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .how-step p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
        }

        /* =====================
           INLINE CTA
        ====================== */
        .inline-cta {
            margin: 0 48px;
            padding: 64px;
            background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%);
            border-radius: 32px;
            text-align: center;
            box-shadow: 0 8px 40px rgba(139, 195, 74, 0.25);
        }

        .inline-cta h3 {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            color: var(--white);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .inline-cta p {
            font-size: 16px;
            color: var(--white);
            opacity: 0.9;
            margin-bottom: 32px;
        }

        .inline-cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: var(--white);
            color: var(--lime-dark);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .inline-cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        /* =====================
           ABOUT SECTION
        ====================== */
        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            padding: 64px 48px;
            background: var(--bg-light);
        }

        .about-image {
            background: var(--bg-soft);
            border-radius: 24px;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-light);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .about-content {
            background: var(--bg-white);
            color: var(--text-dark);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-content .section-label {
            background: var(--lavender);
            color: var(--white);
            align-self: flex-start;
        }

        .about-content h2 {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            margin-bottom: 24px;
            line-height: 1.2;
            font-weight: 700;
        }

        .about-lead {
            font-size: 18px;
            margin-bottom: 20px;
            line-height: 1.6;
            font-weight: 500;
        }

        .about-content p {
            font-size: 15px;
            margin-bottom: 16px;
            line-height: 1.7;
            color: var(--text-medium);
        }

        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            padding: 12px 24px;
            background: var(--lavender);
            border-radius: 100px;
            align-self: flex-start;
            transition: all 0.2s;
        }

        .about-link:hover {
            background: rgba(255,255,255,0.35);
            gap: 12px;
        }

        /* =====================
           SYMPTOM SECTION
        ====================== */
        .symptom-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            padding: 0 48px 64px;
            background: var(--bg-light);
        }

        .symptom-content {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 48px;
        }

        .symptom-content .section-label {
            background: var(--lavender);
        }

        .symptom-content h2 {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            margin-bottom: 16px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .symptom-content > p {
            font-size: 16px;
            color: var(--text-medium);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .symptom-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .symptom-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            background: var(--bg-soft);
            border-radius: 16px;
            transition: all 0.2s;
        }

        .symptom-item:hover {
            background: var(--lavender-bg);
            transform: translateX(4px);
        }

        .symptom-icon {
            font-size: 24px;
        }

        .symptom-item span:last-child {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .symptom-visual {
            background: var(--lavender);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--white);
            opacity: 0.8;
        }

        /* =====================
           CONTENT GRID
        ====================== */
        .content-section {
            padding: 64px 48px;
            background: var(--bg-white);
        }

        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .content-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .view-all {
            font-size: 14px;
            font-weight: 600;
            color: var(--lime);
            text-decoration: none;
            padding: 12px 24px;
            border: 2px solid var(--lime);
            border-radius: 100px;
            transition: all 0.2s;
        }

        .view-all:hover {
            background: var(--lime);
            color: var(--white);
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .article-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.2s;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border-color: var(--border-dark);
        }

        .article-card.large {
            grid-column: span 2;
        }

        .article-image {
            aspect-ratio: 1 / 1;
            background: var(--bg-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--text-light);
        }

        .article-content-wrap {
            padding: 20px;
        }

        .article-category {
            display: inline-block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 100px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .article-card:nth-child(1) .article-category { background: var(--lime-bg); color: var(--lime-dark); }
        .article-card:nth-child(2) .article-category { background: var(--lavender-bg); color: var(--lavender); }
        .article-card:nth-child(3) .article-category { background: var(--peach-bg); color: var(--peach); }
        .article-card:nth-child(4) .article-category { background: var(--mint-bg); color: var(--mint); }
        .article-card:nth-child(5) .article-category { background: var(--butter-bg); color: var(--text-dark); }

        .article-title {
            font-family: 'Syne', sans-serif;
            font-size: 16px;
            line-height: 1.3;
            margin-bottom: 12px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .article-card.large .article-title {
            font-size: 22px;
        }

        .article-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .article-title a:hover {
            color: var(--lime);
        }

        .article-excerpt {
            font-size: 13px;
            color: var(--text-medium);
            line-height: 1.5;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-meta {
            font-size: 12px;
            color: var(--text-light);
        }

        /* =====================
           BLOG SECTION
        ====================== */
        .blog-section {
            padding: 80px 48px;
            background: var(--bg-white);
        }

        .blog-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--bg-white);
            border: 2px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.2s;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .blog-card-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--bg-soft);
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-card-image a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .blog-card-content {
            padding: 32px;
        }

        .blog-meta {
            font-size: 12px;
            color: var(--text-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: block;
        }

        .blog-title {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            line-height: 1.3;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .blog-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.2s;
        }

        .blog-title a:hover {
            color: var(--lime);
        }

        .blog-excerpt {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-medium);
        }

        /* =====================
           CTA BANNER
        ====================== */
        .cta-banner {
            margin: 0 48px 64px;
            background: var(--text-dark);
            border-radius: 32px;
            padding: 80px;
            text-align: center;
        }

        .cta-banner h2 {
            font-family: 'Syne', sans-serif;
            font-size: 48px;
            margin-bottom: 16px;
            font-weight: 700;
            color: var(--white);
        }

        .cta-banner p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .cta-banner button {
            padding: 18px 48px;
            background: var(--lime);
            color: var(--white);
            border: none;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cta-banner button:hover {
            background: var(--lime-dark);
            transform: scale(1.05);
        }

        /* =====================
           FOOTER
        ====================== */
        .footer {
            padding: 64px 48px 32px;
            background: var(--bg-white);
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 64px;
            margin-bottom: 48px;
        }

        .footer-brand .logo {
            margin-bottom: 16px;
            display: block;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--lime);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-light);
        }

        /* =====================
           RESPONSIVE
        ====================== */
        @media (max-width: 1200px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 24px 24px 32px;
            }

            .hero-carousels {
                display: none;
            }

            .carousels-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-signup {
                max-width: 500px;
                margin: 0 auto;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 24px 48px;
            }

            .content-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-section {
                gap: 24px;
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }

        @media (max-width: 900px) {
            .hero-carousels {
                display: none;
            }

            .carousels-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-section {
                grid-template-columns: 1fr;
            }

            .about-image {
                min-height: 300px;
            }

            .symptom-section {
                grid-template-columns: 1fr;
            }

            .symptom-visual {
                min-height: 200px;
                order: -1;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 16px 20px;
            }

            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .header-cta {
                display: none;
            }

            .logo {
                font-size: 20px;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 32px 16px 40px;
                gap: 20px;
            }

            .hero-headline {
                font-size: 36px;
            }

            .hero-subheadline {
                font-size: 18px;
            }

            .category-carousels-section {
                padding: 16px 16px 32px;
            }

            .carousel-title {
                font-size: 16px;
            }

            .carousel-excerpt {
                display: none;
            }

            .hero-signup {
                padding: 24px;
            }

            .signup-title {
                font-size: 26px;
            }

            .signup-benefits {
                grid-template-columns: 1fr;
            }

            /* Form responsive */
            .form-row {
                grid-template-columns: 1fr;
            }

            .option-grid.cols-3 {
                grid-template-columns: 1fr;
            }

            .option-grid.cols-2 {
                grid-template-columns: 1fr;
            }

            .checkbox-grid {
                grid-template-columns: 1fr;
            }

            .button-row {
                flex-direction: column;
            }

            .back-button {
                order: 1;
            }

            .value-section {
                padding: 48px 20px;
            }

            .value-section h2 {
                font-size: 28px;
            }

            .value-section .subtitle {
                font-size: 16px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                padding: 0 16px 32px;
                gap: 16px;
            }

            .benefit-card {
                padding: 24px;
            }

            .how-section {
                padding: 48px 16px;
            }

            .how-header h2 {
                font-size: 32px;
            }

            .how-steps {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .how-step {
                padding: 32px 24px;
            }

            .inline-cta {
                margin: 0 16px;
                padding: 40px 24px;
                border-radius: 24px;
            }

            .inline-cta h3 {
                font-size: 26px;
            }

            .about-section {
                grid-template-columns: 1fr;
                padding: 32px 16px;
                gap: 16px;
            }

            .about-image {
                min-height: 250px;
                order: -1;
            }

            .about-content {
                padding: 32px 24px;
            }

            .about-content h2 {
                font-size: 28px;
            }

            .symptom-section {
                grid-template-columns: 1fr;
                padding: 0 16px 32px;
                gap: 16px;
            }

            .symptom-content {
                padding: 32px 24px;
            }

            .symptom-content h2 {
                font-size: 28px;
            }

            .symptom-list {
                grid-template-columns: 1fr;
            }

            .symptom-visual {
                min-height: 150px;
                order: -1;
            }

            .content-section {
                padding: 32px 16px;
            }

            .content-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .content-header h2 {
                font-size: 28px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .article-card.large {
                grid-column: span 1;
            }

            .article-image {
                aspect-ratio: 1 / 1;
            }

            .cta-banner {
                margin: 0 16px 32px;
                padding: 48px 24px;
                border-radius: 24px;
            }

            .cta-banner h2 {
                font-size: 28px;
            }

            .cta-banner p {
                font-size: 16px;
            }

            .footer {
                padding: 48px 16px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 12px 16px;
            }

            .logo {
                font-size: 18px;
            }

            .header-cta {
                padding: 8px 14px;
                font-size: 11px;
            }

            .hero {
                padding: 12px 12px 20px;
            }

            .category-carousel {
                border-radius: 20px;
            }

            .category-header {
                padding: 16px 20px;
            }

            .carousel-slide {
                padding: 12px 16px 50px;
            }

            .carousel-slide-content {
                padding-top: 12px;
            }

            .carousel-title {
                font-size: 16px;
                margin-bottom: 12px;
            }

            .carousel-link {
                padding: 8px 16px;
                font-size: 12px;
            }

            .carousel-controls {
                bottom: 16px;
                right: 16px;
            }

            .carousel-arrow {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .hero-signup {
                padding: 20px;
            }

            .signup-badge {
                font-size: 10px;
            }

            .signup-title {
                font-size: 24px;
            }

            .signup-subtitle {
                font-size: 16px;
            }

            .signup-benefits li {
                font-size: 11px;
                padding: 10px 12px;
            }

            .value-section h2 {
                font-size: 24px;
            }

            .section-label {
                font-size: 10px;
                padding: 6px 16px;
            }

            .benefit-card h3 {
                font-size: 18px;
            }

            .how-header h2 {
                font-size: 28px;
            }

            .step-number {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }

            .inline-cta h3 {
                font-size: 22px;
            }

            .inline-cta-button {
                padding: 14px 32px;
                font-size: 13px;
            }

            .about-content h2 {
                font-size: 24px;
            }

            .symptom-content h2 {
                font-size: 24px;
            }

            .content-header h2 {
                font-size: 24px;
            }

            .view-all {
                padding: 10px 20px;
                font-size: 12px;
            }

            .article-title {
                font-size: 16px;
            }

            .cta-banner h2 {
                font-size: 24px;
            }
        }
