        :root {
            --deep-forest: #4B3317;
            --patina-teal: #709390;
            --sage-mist: #B7C2A9;
            --old-linen: #F8F4EC;
            --roasted-dark: #4B3317;
            --raw-sienna: #C5A56E;
            
            --text-primary: #2D2418;
            --text-secondary: #5C4D3C;
            --text-muted: #8B7D6B;
            --border: rgba(75, 51, 23, 0.12);
            --border-dark: rgba(248, 244, 236, 0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'IBM Plex Sans', -apple-system, sans-serif;
            background: var(--old-linen);
            color: var(--text-primary);
            line-height: 1.65;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 500;
            line-height: 1.2;
        }

        a { color: inherit; text-decoration: none; }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Hide all pages except active */
        .page { display: none; }
        .page.active { display: block; }

        /* ==================== NAVIGATION ==================== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(248, 244, 236, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--deep-forest);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-links a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color 0.2s;
            cursor: pointer;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--deep-forest);
        }

        .nav-cta {
            background: var(--deep-forest);
            color: var(--old-linen) !important;
            padding: 10px 18px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.8rem;
            transition: background 0.2s;
        }

        .nav-cta:hover {
            background: #3a2812;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 22px;
            height: 2px;
            background: var(--deep-forest);
        }

        /* ==================== COMMON STYLES ==================== */
        .section {
            padding: 100px 32px;
        }

        .section-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 400;
            color: var(--deep-forest);
            margin-bottom: 12px;
        }

        .section-title em {
            font-style: italic;
            color: var(--patina-teal);
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 550px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 24px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--patina-teal);
            color: white;
        }

        .btn-primary:hover {
            background: #5d7f7c;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(112, 147, 144, 0.25);
        }

        .btn-secondary {
            background: transparent;
            color: var(--deep-forest);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: white;
            border-color: var(--deep-forest);
        }

        .btn-dark {
            background: var(--deep-forest);
            color: var(--old-linen);
        }

        .btn-dark:hover {
            background: #3a2812;
        }

        /* ==================== HOME PAGE ==================== */
        .hero {
            min-height: 100vh;
            padding: 130px 32px 80px;
            display: flex;
            align-items: center;
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--patina-teal);
            margin-bottom: 16px;
        }

        .hero-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--patina-teal);
            border-radius: 50%;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            font-weight: 400;
            color: var(--deep-forest);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero h1 em { font-style: italic; color: var(--patina-teal); }
        .hero h1 strong { font-weight: 600; }

        .hero-description {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--patina-teal);
            color: white;
            padding: 14px 24px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.25s;
        }

        .hero-cta:hover {
            background: #5d7f7c;
            transform: translateY(-2px);
        }

        .hero-secondary-link {
            margin-left: 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            padding-bottom: 2px;
            cursor: pointer;
        }

        .hero-secondary-link:hover {
            color: var(--deep-forest);
            border-color: var(--deep-forest);
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 32px;
        }

        .hero-badge {
            font-size: 0.7rem;
            color: var(--text-muted);
            background: white;
            padding: 6px 12px;
            border-radius: 100px;
            border: 1px solid var(--border);
        }

        /* Report Preview Card */
        .report-preview {
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(75, 51, 23, 0.08), 0 0 0 1px var(--border);
            overflow: hidden;
        }

        .report-header {
            background: var(--deep-forest);
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .report-header-title {
            color: var(--old-linen);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .report-header-badge {
            background: var(--patina-teal);
            color: white;
            font-size: 0.65rem;
            padding: 3px 8px;
            border-radius: 100px;
            font-weight: 500;
        }

        .report-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-bottom: 1px solid var(--border);
        }

        .report-stat {
            padding: 16px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .report-stat:last-child { border-right: none; }

        .report-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--deep-forest);
        }

        .report-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .report-body { padding: 16px 20px; }

        .snp-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .snp-row:last-child { border-bottom: none; }

        .snp-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .snp-id {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.7rem;
            color: var(--patina-teal);
            background: rgba(112, 147, 144, 0.1);
            padding: 3px 6px;
            border-radius: 4px;
        }

        .snp-name {
            font-weight: 500;
            font-size: 0.85rem;
        }

        .snp-desc {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .snp-status {
            font-size: 0.65rem;
            padding: 3px 8px;
            border-radius: 100px;
            font-weight: 500;
        }

        .snp-status.action {
            background: rgba(112, 147, 144, 0.15);
            color: var(--patina-teal);
        }

        .snp-status.monitor {
            background: rgba(197, 165, 110, 0.15);
            color: var(--raw-sienna);
        }

        .report-footer {
            padding: 12px 20px;
            background: var(--old-linen);
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* Marquee */
        .marquee-section {
            padding: 20px 0;
            background: var(--deep-forest);
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marquee 40s linear infinite;
        }

        .marquee-item {
            flex-shrink: 0;
            padding: 0 24px;
            font-size: 0.8rem;
            color: var(--sage-mist);
            white-space: nowrap;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Stats Bar */
        .stats-bar {
            padding: 40px 32px;
            background: white;
            border-bottom: 1px solid var(--border);
        }

        .stats-bar-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-item { text-align: center; }

        .stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--patina-teal);
        }

        .stat-value sup { font-size: 1.2rem; }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* How It Works */
        .how-section {
            padding: 80px 32px;
        }

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

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

        .step-card {
            background: white;
            border-radius: 10px;
            padding: 28px;
            border: 1px solid var(--border);
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -10px;
            left: 20px;
            background: var(--patina-teal);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .step-icon {
            font-size: 1.75rem;
            margin-bottom: 12px;
        }

        .step-card h3 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Home Why Section */
        .why-section {
            padding: 80px 32px;
            background: white;
        }

        .why-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .why-table {
            max-width: 700px;
            margin: 0 auto;
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }

        .why-table-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--old-linen);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .why-table-header span {
            padding: 14px 20px;
        }

        .why-table-header span:first-child {
            border-right: 1px solid var(--border);
        }

        .why-table-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-top: 1px solid var(--border);
        }

        .why-table-row span {
            padding: 14px 20px;
            font-size: 0.85rem;
        }

        .why-table-row span:first-child {
            border-right: 1px solid var(--border);
            color: var(--text-muted);
        }

        .why-table-row span:last-child {
            color: var(--patina-teal);
            font-weight: 500;
        }

        .why-cta {
            text-align: center;
            margin-top: 32px;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 32px;
        }

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

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

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 28px;
            border: 1px solid var(--border);
        }

        .testimonial-quote {
            font-size: 0.9rem;
            color: var(--text-primary);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testimonial-avatar {
            width: 36px;
            height: 36px;
            background: var(--sage-mist);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--deep-forest);
            font-size: 0.8rem;
        }

        .testimonial-name {
            font-weight: 500;
            font-size: 0.85rem;
        }

        .testimonial-role {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* Home CTA */
        .home-cta {
            padding: 80px 32px;
            background: var(--deep-forest);
            text-align: center;
        }

        .home-cta .section-title {
            color: var(--old-linen);
        }

        .home-cta .section-subtitle {
            color: var(--sage-mist);
            margin: 0 auto 28px;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        /* ==================== SERVICES PAGE ==================== */
        .services-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .services-hero .section-title {
            margin-bottom: 16px;
        }

        .services-hero .section-subtitle {
            margin: 0 auto;
        }

        .paths-section {
            padding: 40px 32px 20px;
        }

        .paths-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 700px;
            margin: 0 auto;
        }

        .path-card {
            background: white;
            border-radius: 10px;
            padding: 24px;
            border: 1px solid var(--border);
            text-align: center;
        }

        .path-card h4 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--patina-teal);
        }

        .path-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .services-grid-section {
            padding: 40px 32px 80px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 850px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--old-linen);
            border-radius: 12px;
            padding: 32px;
            border: 1px solid var(--border);
            position: relative;
        }

        .service-card.featured {
            background: var(--deep-forest);
            color: var(--old-linen);
        }

        .service-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--raw-sienna);
            color: white;
            font-size: 0.65rem;
            padding: 4px 10px;
            border-radius: 100px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .service-tier {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .service-card.featured .service-tier {
            color: var(--sage-mist);
        }

        .service-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .service-price {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--patina-teal);
            margin-bottom: 12px;
        }

        .service-card.featured .service-price {
            color: var(--sage-mist);
        }

        .service-price span {
            font-size: 0.9rem;
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--text-muted);
        }

        .service-card.featured .service-price span {
            color: rgba(248, 244, 236, 0.6);
        }

        .service-description {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-card.featured .service-description {
            color: rgba(248, 244, 236, 0.8);
        }

        .service-features {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 6px 0;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .service-card.featured .service-features li {
            color: rgba(248, 244, 236, 0.8);
        }

        .service-features li::before {
            content: '✓';
            color: var(--patina-teal);
            font-weight: bold;
        }

        .service-card.featured .service-features li::before {
            color: var(--sage-mist);
        }

        .service-cta {
            display: block;
            width: 100%;
            text-align: center;
            padding: 12px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.85rem;
        }

        .service-cta.primary {
            background: var(--patina-teal);
            color: white;
        }

        .service-card.featured .service-cta.primary {
            background: var(--old-linen);
            color: var(--deep-forest);
        }

        .service-cta.secondary {
            background: white;
            color: var(--deep-forest);
            border: 1px solid var(--border);
        }

        .addons-section {
            padding: 0 32px 80px;
        }

        .addons-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 850px;
            margin: 0 auto;
        }

        .addon-card {
            background: white;
            border-radius: 10px;
            padding: 24px;
            border: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .addon-info h4 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .addon-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .addon-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--patina-teal);
            text-align: right;
        }

        .addon-price span {
            display: block;
            font-size: 0.7rem;
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--text-muted);
        }

        /* ==================== GET STARTED PAGE ==================== */
        .getstarted-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .getstarted-paths {
            padding: 0 32px 80px;
        }

        .path-selector {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .path-option {
            background: white;
            border-radius: 12px;
            padding: 32px;
            border: 2px solid var(--border);
            cursor: pointer;
            transition: all 0.2s;
        }

        .path-option:hover {
            border-color: var(--patina-teal);
        }

        .path-option.active {
            border-color: var(--patina-teal);
            background: rgba(112, 147, 144, 0.05);
        }

        .path-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .path-option h3 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--patina-teal);
        }

        .path-option h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .path-option p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .steps-section {
            padding: 60px 32px;
            background: white;
        }

        .steps-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            gap: 24px;
            padding: 32px 0;
            border-bottom: 1px solid var(--border);
        }

        .step-item:last-child {
            border-bottom: none;
        }

        .step-num {
            width: 40px;
            height: 40px;
            background: var(--patina-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }

        .step-content h4 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .step-note {
            background: var(--old-linen);
            padding: 12px 16px;
            border-radius: 6px;
            margin-top: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ==================== ABOUT PAGE ==================== */
        .about-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .about-content {
            padding: 0 32px 80px;
        }

        .about-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 48px;
        }

        .about-sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .about-stat {
            background: white;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .about-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--patina-teal);
        }

        .about-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .about-text p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-quote {
            background: white;
            padding: 24px 28px;
            border-radius: 8px;
            margin: 32px 0;
            font-style: italic;
            color: var(--deep-forest);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ==================== FAQ PAGE ==================== */
        .faq-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .faq-content {
            padding: 0 32px 80px;
        }

        .faq-list {
            max-width: 700px;
            margin: 0 auto;
        }

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

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 24px 0;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            font-weight: 500;
            color: var(--deep-forest);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--patina-teal);
            transition: transform 0.2s;
        }

        .faq-item.open .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            display: none;
            padding-bottom: 24px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* ==================== BLOG PAGE ==================== */
        .blog-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .blog-content {
            padding: 0 32px 80px;
        }

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

        .blog-card {
            background: white;
            border-radius: 10px;
            padding: 28px;
            border: 1px solid var(--border);
            transition: all 0.2s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(75, 51, 23, 0.08);
        }

        .blog-card.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .blog-category {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--patina-teal);
            margin-bottom: 8px;
        }

        .blog-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--deep-forest);
        }

        .blog-card.featured h3 {
            font-size: 1.5rem;
        }

        .blog-excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .blog-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .blog-icon {
            font-size: 3rem;
            text-align: center;
        }

        /* ==================== RESOURCES PAGE ==================== */
        .resources-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .resources-content {
            padding: 0 32px 80px;
        }

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

        .resource-card {
            background: white;
            border-radius: 10px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .resource-category {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .resource-card h4 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .resource-card p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .resource-snp {
            display: inline-block;
            font-size: 0.65rem;
            background: rgba(112, 147, 144, 0.1);
            color: var(--patina-teal);
            padding: 2px 6px;
            border-radius: 4px;
            margin-right: 4px;
            margin-bottom: 4px;
        }

        /* ==================== FREE GUIDE PAGE ==================== */
        .guide-hero {
            padding: 140px 32px 60px;
            text-align: center;
        }

        .guide-content {
            padding: 0 32px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        .guide-preview {
            max-width: 560px;
            width: 100%;
            background: white;
            border-radius: 12px;
            padding: 32px;
            border: 1px solid var(--border);
        }

        .guide-preview h4 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-align: center;
        }

        .guide-snp {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

        .guide-snp:last-child {
            border-bottom: none;
        }

        .guide-snp-name {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--patina-teal);
        }

        .guide-snp-desc {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .guide-snp-tag {
            font-size: 0.65rem;
            background: var(--sage-mist);
            color: var(--deep-forest);
            padding: 3px 8px;
            border-radius: 4px;
        }

        .guide-form {
            max-width: 560px;
            width: 100%;
            margin: 0;
            text-align: center;
        }

        .guide-form input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .guide-form input:focus {
            outline: none;
            border-color: var(--patina-teal);
        }

        .guide-note {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* ==================== BUY OPTIONS ==================== */
        .buy-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            gap: 12px;
        }
        .buy-option-featured {
            background: var(--deep-forest);
            border-color: var(--deep-forest);
        }
        .buy-option-left { flex: 1; }
        .buy-option-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 3px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .buy-option-featured .buy-option-name { color: var(--old-linen); }
        .buy-option-desc {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.4;
        }
        .buy-option-featured .buy-option-desc { color: var(--sage-mist); }
        .buy-popular {
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: var(--raw-sienna);
            color: white;
            padding: 2px 7px;
            border-radius: 100px;
        }
        .buy-option-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
            flex-shrink: 0;
        }
        .buy-option-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--patina-teal);
            line-height: 1;
            white-space: nowrap;
        }
        .buy-option-price span {
            font-size: 0.7rem;
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--text-muted);
        }
        .buy-option-featured .buy-option-price { color: var(--old-linen); }
        .buy-option-featured .buy-option-price span { color: var(--sage-mist); }
        .buy-btn {
            display: inline-block;
            padding: 7px 16px;
            background: var(--patina-teal);
            color: white;
            border-radius: 5px;
            font-size: 0.78rem;
            font-weight: 600;
            font-family: 'IBM Plex Sans', sans-serif;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s;
        }
        .buy-btn:hover { background: #5d7f7c; }
        .buy-btn-featured {
            background: var(--old-linen);
            color: var(--deep-forest);
        }
        .buy-btn-featured:hover { background: white; }

        /* ==================== PROGRAMME TABS & LAYOUT ==================== */
        .prog-tab {
            padding: 9px 18px;
            border: 1px solid var(--border);
            border-radius: 100px;
            background: white;
            font-size: 0.78rem;
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
        }
        .prog-tab:hover { border-color: var(--patina-teal); color: var(--patina-teal); }
        .prog-tab.active { background: var(--deep-forest); color: var(--old-linen); border-color: var(--deep-forest); }

        .prog-section { animation: fadeIn 0.2s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

        .prog-layout {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 32px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .prog-eyebrow {
            display: inline-block;
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--patina-teal);
            background: rgba(112, 147, 144, 0.1);
            padding: 4px 10px;
            border-radius: 100px;
            margin-bottom: 14px;
        }
        .prog-eyebrow-amber { color: #8a6020; background: rgba(197,165,110,0.12); }
        .prog-eyebrow-teal { color: var(--patina-teal); background: rgba(112,147,144,0.1); }
        .prog-eyebrow-sienna { color: #8a4a1a; background: rgba(160,100,42,0.1); }
        .prog-eyebrow-green { color: #3a6a3a; background: rgba(74,122,74,0.1); }

        .prog-body {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 18px;
        }
        .prog-for {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 20px;
            padding: 14px 16px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
        }
        .prog-for strong { color: var(--text-primary); }

        .prog-stats {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
        }
        .prog-stats div { text-align: center; }
        .prog-stats span {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            color: var(--patina-teal);
            line-height: 1;
        }
        .prog-stats div > *:last-child { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

        .prog-snp-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 4px;
        }
        .prog-snp-list span {
            font-size: 0.7rem;
            font-family: 'IBM Plex Mono', monospace;
            background: rgba(112,147,144,0.1);
            color: var(--patina-teal);
            padding: 3px 8px;
            border-radius: 4px;
        }

        .prog-prices {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .prog-price-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 18px;
            min-width: 140px;
        }
        .prog-price-card.featured-price {
            background: var(--deep-forest);
            border-color: var(--deep-forest);
        }
        .prog-price-tier {
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .featured-price .prog-price-tier { color: var(--sage-mist); }
        .prog-price-amount {
            font-family: 'Playfair Display', serif;
            font-size: 1.55rem;
            color: var(--patina-teal);
            line-height: 1.1;
        }
        .featured-price .prog-price-amount { color: var(--old-linen); }
        .prog-price-amount span { font-size: 0.72rem; font-family: 'IBM Plex Sans', sans-serif; color: var(--text-muted); }
        .featured-price .prog-price-amount span { color: var(--sage-mist); }
        .prog-price-desc { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }
        .featured-price .prog-price-desc { color: rgba(248,244,236,0.55); }

        /* ==================== CASE STUDIES ==================== */
        .case-study {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }
        .case-label {
            padding: 12px 20px;
            background: var(--old-linen);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
        }
        .case-problem, .case-finding, .case-outcome {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
        }
        .case-outcome { border-bottom: none; }
        .case-problem p, .case-finding p, .case-outcome p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-top: 8px;
        }
        .case-tag {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 3px 8px;
            border-radius: 100px;
        }
        .case-tag.problem { background: rgba(75,51,23,0.08); color: var(--text-muted); }
        .case-tag.finding { background: rgba(112,147,144,0.12); color: var(--patina-teal); }
        .case-tag.outcome { background: rgba(80,140,80,0.1); color: #3a6a3a; }

        @media (max-width: 768px) {
            .prog-layout { grid-template-columns: 1fr; gap: 28px; }
        }

        /* ==================== DNA TOGGLE ==================== */
        .dna-toggle {
            display: flex;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 4px;
            margin-bottom: 16px;
            gap: 4px;
        }
        .dna-toggle-btn {
            flex: 1;
            padding: 9px 12px;
            border: none;
            border-radius: 6px;
            font-size: 0.78rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', sans-serif;
            cursor: pointer;
            transition: all 0.2s;
            background: transparent;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.3;
        }
        .dna-toggle-btn.active {
            background: var(--deep-forest);
            color: var(--old-linen);
        }
        .dna-toggle-btn span {
            display: block;
            font-size: 0.68rem;
            font-weight: 400;
            opacity: 0.7;
            margin-top: 1px;
        }
        .dna-options { display: none; }
        .dna-options.active { display: flex; flex-direction: column; gap: 10px; }
        .kit-note {
            font-size: 0.75rem;
            color: var(--text-muted);
            padding: 8px 12px;
            background: rgba(112,147,144,0.07);
            border-radius: 6px;
            border-left: 2px solid var(--patina-teal);
            margin-bottom: 4px;
        }

        /* ==================== FOOTER ==================== */
        footer {
            padding: 60px 32px 28px;
            background: var(--old-linen);
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 10px;
            max-width: 260px;
            line-height: 1.6;
        }

        .footer-column h5 {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 14px;
        }

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

        .footer-column li { margin-bottom: 8px; }

        .footer-column a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .footer-column a:hover {
            color: var(--deep-forest);
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; gap: 40px; }
            .hero-visual { max-width: 450px; margin: 0 auto; }
            .services-grid { grid-template-columns: 1fr; }
            .addons-grid { grid-template-columns: 1fr; }
            .blog-grid { grid-template-columns: 1fr; }
            .blog-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
            .resources-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
            .about-grid { grid-template-columns: 1fr; }
            .about-sidebar { flex-direction: row; flex-wrap: wrap; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: flex; }
            .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .path-selector { grid-template-columns: 1fr; }
            .paths-grid { grid-template-columns: 1fr; }
            .resources-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .cta-buttons { flex-direction: column; align-items: center; }
        }
