
        :root {
            --white: #FFFFFF;
            --cream: #F8F7F4;
            --warm-gray: #F0EDE8;
            --text-dark: #1A2B3C;
            --text-body: #3D4F5F;
            --text-light: #7A8B96;
            --teal: #1A8A7D;
            --teal-deep: #147268;
            --teal-soft: #E6F5F2;
            --teal-glow: rgba(26, 138, 125, 0.08);
            --mint: #A8DCD1;
            --coral: #E8734A;
            --border: #E3DFD8;
            --serif: 'Source Serif 4', Georgia, serif;
            --sans: 'DM Sans', -apple-system, sans-serif;
        }
        :root.dark-mode {
            --white: #18181B;
            --cream: #09090B;
            --warm-gray: #27272A;
            --text-dark: #FAFAFA;
            --text-body: #D4D4D8;
            --text-light: #94A3B8;
            --border: #27272A;
            --teal: #34D399;
            --teal-deep: #059669;
            --teal-soft: #064E3B;
            --teal-glow: rgba(52, 211, 153, 0.08);
            --mint: #6EE7B7;
            --coral: #F97316;
        }

        /* Bottom CTA dark mode color fixes */
        :root.dark-mode .bottom-cta {
            background: #09090B !important;
        }
        :root.dark-mode .btn-bottom {
            background: var(--white) !important;
            color: var(--text-dark) !important;
        }

        /* Dark mode overrides for ConvertKit form */
        :root.dark-mode .freebie-section .seva-form,
        :root.dark-mode .seva-form {
            background-color: var(--white) !important;
            border-color: var(--border) !important;
        }
        :root.dark-mode .freebie-section .formkit-column,
        :root.dark-mode .formkit-column {
            background-color: var(--white) !important;
            color: var(--text-body) !important;
        }
        :root.dark-mode .freebie-section .formkit-column:first-child,
        :root.dark-mode .formkit-column:first-child {
            background-color: var(--cream) !important;
            border-color: var(--border) !important;
        }
        :root.dark-mode .freebie-section h2,
        :root.dark-mode h2 {
            color: var(--text-dark) !important;
        }
        :root.dark-mode .freebie-section p,
        :root.dark-mode p {
            color: var(--text-body) !important;
        }
        :root.dark-mode .freebie-section input[type="email"],
        :root.dark-mode input[type="email"] {
            background-color: var(--cream) !important;
            color: var(--text-dark) !important;
            border-color: var(--border) !important;
        }
        :root.dark-mode .freebie-section button.formkit-submit,
        :root.dark-mode button.formkit-submit,
        :root.dark-mode .freebie-section button.formkit-submit span,
        :root.dark-mode button.formkit-submit span {
            background-color: var(--teal) !important;
            color: #ffffff !important;
        }
        :root.dark-mode .freebie-section .formkit-guarantee,
        :root.dark-mode .formkit-guarantee {
            color: var(--text-light) !important;
        }

        .theme-toggle-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--text-body);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s, color 0.2s;
        }
        .theme-toggle-btn:hover {
            background: var(--cream);
            color: var(--text-dark);
        }
        .theme-toggle-btn svg {
            width: 20px;
            height: 20px;
        }


        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--sans);
            background: var(--cream);
            color: var(--text-body);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        ::selection { background: var(--mint); color: var(--text-dark); }

        img { max-width: 100%; display: block; }

        /* ==========================================
           LAYOUT
        ========================================== */
        .wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
        .wrap--narrow { max-width: 780px; }

        /* ==========================================
           NAV
        ========================================== */
        .topbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .logo {
            font-family: var(--sans);
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.01em;
        }

        .logo span { color: var(--teal); }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--text-dark);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            color: var(--white);
            background: var(--teal);
            padding: 10px 20px;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .nav-cta:hover {
            background: var(--teal-deep);
        }

        /* ==========================================
           HERO
        ========================================== */
        .hero {
            padding: 80px 0 72px;
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 64px;
            align-items: center;
        }

        .hero-content { max-width: 560px; }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--teal);
            background: var(--teal-soft);
            padding: 6px 14px;
            border-radius: 6px;
            margin-bottom: 24px;
            letter-spacing: 0.02em;
        }

        .hero h1 {
            font-family: var(--serif);
            font-weight: 700;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero-body {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text-body);
            margin-bottom: 32px;
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .btn-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: var(--sans);
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            color: var(--white);
            background: var(--teal);
            padding: 18px 36px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            width: fit-content;
        }

        .btn-main:hover {
            background: var(--teal-deep);
            transform: translateY(-1px);
        }

        .btn-main svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .hero-reassurance {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        .hero-reassurance span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .check-icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--teal-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .check-icon svg {
            width: 10px;
            height: 10px;
            stroke: var(--teal);
            stroke-width: 3;
            fill: none;
        }

        /* Product visual card */
        .hero-visual {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
        }

        .hero-visual-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: var(--coral);
            color: white;
            font-weight: 700;
            font-size: 0.8125rem;
            padding: 6px 14px;
            border-radius: 6px;
        }

        .product-preview {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px 24px;
            margin-bottom: 24px;
            text-align: left;
        }

        .product-preview-title {
            font-family: var(--serif);
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .product-preview-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .product-preview-list li {
            font-size: 0.875rem;
            color: var(--text-body);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
        }

        .product-preview-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--teal);
            flex-shrink: 0;
            margin-top: 7px;
        }

        .hero-visual-price {
            font-family: var(--serif);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .hero-visual-note {
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        @media (max-width: 860px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-visual { max-width: 420px; }
        }

        /* ==========================================
           TRUST BAR
        ========================================== */
        .trust-bar {
            background: var(--teal-soft);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        .trust-bar-inner {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 32px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--teal-deep);
        }

        .trust-item svg {
            width: 20px;
            height: 20px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ==========================================
           BENEFITS
        ========================================== */
        .benefits {
            padding: 88px 0;
        }

        .section-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 12px;
        }

        .section-heading {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 48px;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .benefit-row {
            display: grid;
            grid-template-columns: 64px 1fr;
            gap: 24px;
            padding: 32px 0;
            border-top: 1px solid var(--border);
            align-items: start;
        }

        .benefit-row:last-child {
            border-bottom: 1px solid var(--border);
        }

        .benefit-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: var(--white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon-wrap svg {
            width: 22px;
            height: 22px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .benefit-row h3 {
            font-family: var(--sans);
            font-weight: 700;
            font-size: 1.0625rem;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .benefit-row p {
            font-size: 0.9375rem;
            color: var(--text-body);
            line-height: 1.65;
        }

        /* ==========================================
           WHAT'S INSIDE (PEEK)
        ========================================== */
        .peek-section {
            padding: 88px 0;
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

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

        .peek-card {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px 24px;
            transition: border-color 0.2s;
        }

        .peek-card:hover {
            border-color: var(--mint);
        }

        .peek-card-count {
            font-family: var(--serif);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--teal);
            line-height: 1;
            margin-bottom: 8px;
        }

        .peek-card h3 {
            font-family: var(--sans);
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .peek-card p {
            font-size: 0.875rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        @media (max-width: 700px) {
            .peek-grid { grid-template-columns: 1fr; }
        }

        /* ==========================================
           RELATED READING
        ========================================== */
        .related-reading {
            background: var(--teal-soft);
            padding: 80px 0;
            border-top: 1px solid var(--border);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .related-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border: 1px solid transparent;
        }

        .related-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            border-color: var(--teal);
        }

        .related-meta {
            font-size: 0.8125rem;
            color: var(--teal);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
        }

        .related-title {
            font-family: var(--serif);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .related-excerpt {
            color: var(--text-body);
            line-height: 1.6;
            font-size: 0.9375rem;
            margin: 0;
        }

        /* ==========================================
           FAQ
        ========================================== */
        .faq-section {
            padding: 88px 0;
        }

        .faq-list {
            margin-top: 40px;
        }

        .faq-item {
            border-top: 1px solid var(--border);
        }

        .faq-item:last-child {
            border-bottom: 1px solid var(--border);
        }

        .faq-toggle {
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            text-align: left;
        }

        .faq-toggle span {
            font-family: var(--sans);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .faq-plus {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--teal-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.3s;
        }

        .faq-plus svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal);
            stroke-width: 2.5;
            fill: none;
            transition: transform 0.3s;
        }

        .faq-item.is-open .faq-plus {
            background: var(--teal);
            transform: rotate(45deg);
        }

        .faq-item.is-open .faq-plus svg {
            stroke: white;
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-body-inner {
            padding: 0 0 22px 0;
            font-size: 0.9375rem;
            line-height: 1.7;
            color: var(--text-body);
            max-width: 640px;
        }

        .faq-item.is-open .faq-body {
            max-height: 300px;
        }

        /* ==========================================
           BOTTOM CTA
        ========================================== */
        .bottom-cta {
            background: var(--text-dark);
            padding: 80px 0;
            text-align: center;
        }

        .bottom-cta h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .bottom-cta p {
            color: var(--text-light);
            font-size: 1.0625rem;
            margin-bottom: 36px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .btn-bottom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--sans);
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            color: var(--text-dark);
            background: var(--white);
            padding: 18px 40px;
            border-radius: 10px;
            transition: transform 0.15s, box-shadow 0.2s;
        }

        .btn-bottom:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .bottom-note {
            margin-top: 16px;
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        /* ==========================================
           FOOTER
        ========================================== */
        footer {
            background: var(--white);
            border-top: 1px solid var(--border);
            padding: 28px 0;
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        /* ==========================================
           MOBILE
        ========================================== */
        @media (max-width: 600px) {
            .hero { padding: 48px 0; }
            .benefit-row { grid-template-columns: 1fr; gap: 12px; }
            .benefit-icon-wrap { width: 44px; height: 44px; }
            .benefits, .peek-section, .faq-section { padding: 56px 0; }
            .bottom-cta { padding: 56px 0; }
            .trust-bar-inner { gap: 16px; flex-direction: column; align-items: flex-start; padding: 0 16px; }
            .hero-visual-badge { position: static; display: inline-block; margin-bottom: 16px; }

            /* Mobile nav: hide links, show hamburger */
            .nav-link { display: none; }
            .menu-toggle { display: block; }
            .nav-cta { display: none; }

            .nav-right.open {
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--white);
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                padding: 20px 32px;
                gap: 16px;
                box-shadow: 0 8px 16px rgba(0,0,0,0.05);
            }

            .nav-right.open .nav-link,
            .nav-right.open .nav-cta {
                display: flex;
                width: 100%;
                justify-content: center;
            }
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle svg {
            width: 24px; height: 24px;
            stroke: var(--text-dark); fill: none;
            stroke-width: 2; stroke-linecap: round;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
        }
    
    
    /* ==========================================
       GOLD STANDARD KIT FORM (Matches Blog)
    ========================================== */
    .freebie-section .seva-form { 
        margin: 48px 0; 
        border: 1px solid #e5e7eb; 
        border-radius: 12px; 
        overflow: hidden; 
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        background: #fff;
    }
    .freebie-section .seva-form > div[data-style="full"] { 
        display: flex; 
        flex-direction: row; 
    }
    .freebie-section .seva-form .formkit-column { 
        flex: 1; 
        padding: 40px; 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
    }
    .freebie-section .seva-form .formkit-column:first-child {
        background-color: #f9fafb !important;
        border-right: 1px solid #e5e7eb;
    }
    @media (max-width: 700px) { 
        .freebie-section .seva-form > div[data-style="full"] { flex-direction: column; } 
        .freebie-section .seva-form .formkit-column { padding: 32px 24px; } 
        .freebie-section .seva-form .formkit-column:first-child { border-right: none; border-bottom: 1px solid #e5e7eb; }
    }
    .freebie-section .seva-form h2 { 
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important; 
        font-size: 24px !important; 
        margin: 0 0 12px !important; 
        line-height: 1.3 !important; 
        color: #111827 !important; 
        font-weight: 700 !important;
    }
    .freebie-section .seva-form p { 
        font-size: 16px !important; 
        line-height: 1.6 !important; 
        margin: 0 0 24px 0 !important; 
        color: #4b5563 !important; 
    }
    .freebie-section .seva-form img { 
        max-width: 100%; 
        height: auto; 
        border-radius: 8px; 
        margin-top: auto; 
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .freebie-section .seva-form input[type="email"] { 
        width: 100%; 
        padding: 14px 16px; 
        border: 1px solid #d1d5db; 
        border-radius: 8px; 
        margin-bottom: 16px; 
        font-size: 16px; 
        background: #fff;
        color: #111827;
    }
    .freebie-section .seva-form input[type="email"]:focus {
        outline: 2px solid var(--teal);
        outline-offset: -1px;
    }
    .freebie-section .seva-form button { 
        width: 100%; 
        padding: 14px 24px; 
        font-size: 16px !important; 
        font-weight: 600 !important; 
        border: none; 
        border-radius: 8px !important;
        cursor: pointer; 
        transition: all 0.2s; 
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
    }
    .freebie-section .seva-form button:hover { 
        filter: brightness(110%); 
        transform: translateY(-1px);
    }
    .freebie-section .seva-form .formkit-guarantee { 
        font-size: 13px !important; 
        margin-top: 16px; 
        color: #6b7280 !important; 
        text-align: center; 
    }
    .freebie-section .seva-form a { 
        color: inherit !important; 
        font-weight: inherit !important; 
        text-decoration: none !important; 
    }
    .freebie-section .seva-form .formkit-powered-by-convertkit-container { 
        display: none !important; 
    }
