        :root {
            --navy: #1B365D;
            --navy-deep: #0F2240;
            --navy-light: #2A4A7F;
            --teal: #289089;
            --teal-light: #33A89F;
            --teal-dark: #1E706A;
            --gold: #F5A623;
            --gold-light: #FFBC4B;
            --slate: #5C6B7A;
            --slate-light: #7A8A9A;
            --white: #FFFFFF;
            --off-white: #F8FAFB;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --shadow-sm: 0 1px 3px rgba(27, 54, 93, 0.08);
            --shadow-md: 0 4px 16px rgba(27, 54, 93, 0.1);
            --shadow-lg: 0 8px 32px rgba(27, 54, 93, 0.12);
            --shadow-xl: 0 16px 48px rgba(27, 54, 93, 0.15);
            --radius: 10px;
            --radius-lg: 16px;
            /* Z-index scale */
            --z-base: 1;
            --z-raised: 10;
            --z-overlay: 20;
            --z-sticky: 50;
            --z-mobile-nav: 100;
            --z-header: 110;
            --z-modal: 200;
        }

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

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--gray-800);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== UTILITY ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-tag {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 12px;
            display: inline-block;
        }

        .section-heading {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 16px;
            max-width: 800px;
        }

        .section-subheading {
            font-size: 1.1rem;
            color: var(--slate);
            max-width: 640px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--navy-deep);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.4);
        }

        .btn-secondary:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.1);
        }

        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: var(--z-header);
            transition: all 0.3s ease;
            padding: 16px 0;
        }

        header.scrolled {
            background: rgba(15, 34, 64, 0.97);
            backdrop-filter: blur(12px);
            padding: 10px 0;
            box-shadow: 0 2px 24px rgba(0,0,0,0.15);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 44px;
            width: auto;
        }

        header.scrolled .logo img { height: 36px; }

        nav { display: flex; align-items: center; gap: 32px; }

        nav a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
            letter-spacing: 0.3px;
        }

        nav a:hover { color: var(--gold); }

        .nav-cta {
            background: var(--gold);
            color: var(--navy-deep) !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
        }

        .nav-cta:hover { background: var(--gold-light); }

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

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            margin: 6px 0;
            transition: all 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 80% 20%, rgba(40, 144, 137, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
        }

        .hero-grid-pattern {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 64px 64px;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 80px;
        }

        .hero-content h1 {
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content h1 .accent { color: var(--gold); }

        .hero-content p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            max-width: 520px;
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .hero-trust {
            display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 28px;
            font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500;
        }
        .hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
        .hero-trust span::before {
            content: ''; width: 14px; height: 14px; border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--teal-light), var(--teal-dark));
            box-shadow: 0 0 0 2px rgba(40,144,137,0.15);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(40, 144, 137, 0.15);
            border: 1px solid rgba(40, 144, 137, 0.3);
            border-radius: 100px;
            padding: 8px 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--teal-light);
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

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

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero-visual { position: relative; }
        .hero-graphic {
            position: relative; width: 100%; aspect-ratio: 1; max-width: 480px; margin: 0 auto;
        }
        .hero-graphic::before {
            content: ''; position: absolute; top: 8%; left: 8%; right: 8%; bottom: 8%;
            border: 1px solid rgba(255,255,255,0.06); border-radius: 50%;
        }
        .hero-graphic::after {
            content: ''; position: absolute; top: 22%; left: 22%; right: 22%; bottom: 22%;
            border: 1px solid rgba(255,255,255,0.04); border-radius: 50%;
        }
        .hero-logo-center {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            z-index: var(--z-raised); width: 260px; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
        }
        .hero-logo-center img { width: 100%; }
        .hero-member {
            position: absolute; width: 68px; height: 68px; border-radius: 50%;
            overflow: hidden; border: 3px solid rgba(255,255,255,0.15);
            box-shadow: 0 4px 16px rgba(0,0,0,0.3); transition: all 0.4s ease;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        .hero-member:hover { transform: scale(1.15); border-color: var(--gold); z-index: var(--z-overlay); }
        .hero-member { animation: hero-member-pulse 6s ease-in-out infinite; }
        .hero-member:nth-child(2)  { animation-delay: 0.5s; }
        .hero-member:nth-child(3)  { animation-delay: 1s; }
        .hero-member:nth-child(4)  { animation-delay: 1.5s; }
        .hero-member:nth-child(5)  { animation-delay: 2s; }
        .hero-member:nth-child(6)  { animation-delay: 2.5s; }
        .hero-member:nth-child(7)  { animation-delay: 3s; }
        .hero-member:nth-child(8)  { animation-delay: 3.5s; }
        .hero-member:nth-child(9)  { animation-delay: 4s; }
        .hero-member:nth-child(10) { animation-delay: 4.5s; }
        .hero-member:nth-child(11) { animation-delay: 5s; }
        .hero-member:nth-child(12) { animation-delay: 5.5s; }
        @keyframes hero-member-pulse {
            0%, 100% { border-color: rgba(255,255,255,0.15); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
            50% { border-color: rgba(245,166,35,0.6); box-shadow: 0 4px 20px rgba(245,166,35,0.35); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-member { animation: none; }
            .hero-badge::before { animation: none; }
            .fade-up { opacity: 1; transform: none; transition: none; }
            .board-card, .pricing-card, .blog-card, .btn-primary, .feature-item,
            .board-card-photo img, .faq-question svg {
                transition: none;
            }
            .board-card:hover, .pricing-card:hover, .blog-card:hover, .btn-primary:hover {
                transform: none;
            }
        }
        .hero-member img { width: 100%; height: 100%; object-fit: cover; }
        .hero-member-fallback {
            width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.8rem; color: rgba(255,255,255,0.6);
        }
        .hero-member:nth-child(1)  { top: 2%;  left: 45%; }
        .hero-member:nth-child(2)  { top: 8%;  left: 68%; }
        .hero-member:nth-child(3)  { top: 25%; left: 82%; }
        .hero-member:nth-child(4)  { top: 46%; left: 88%; }
        .hero-member:nth-child(5)  { top: 65%; left: 80%; }
        .hero-member:nth-child(6)  { top: 80%; left: 65%; }
        .hero-member:nth-child(7)  { top: 88%; left: 44%; }
        .hero-member:nth-child(8)  { top: 80%; left: 22%; }
        .hero-member:nth-child(9)  { top: 65%; left: 8%;  }
        .hero-member:nth-child(10) { top: 46%; left: 2%;  }
        .hero-member:nth-child(11) { top: 25%; left: 6%;  }
        .hero-member:nth-child(12) { top: 8%;  left: 22%; }
        .hero-member-evelyn {
            position: absolute; width: 84px; height: 84px; border-radius: 50%;
            overflow: hidden; border: 3px solid var(--gold);
            box-shadow: 0 4px 20px rgba(245,166,35,0.3);
            bottom: -8px; left: 50%; transform: translateX(-50%); z-index: var(--z-raised);
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        .hero-member-evelyn img { width: 100%; height: 100%; object-fit: cover; }
        .hero-member-evelyn-label {
            position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
            white-space: nowrap; font-size: 0.68rem; font-weight: 700; color: var(--gold);
            text-transform: uppercase; letter-spacing: 1.5px;
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
            padding: 32px 0;
        }

        .trust-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

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

        .trust-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 100px 0;
            background: var(--white);
        }

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

        .how-it-works .section-heading { margin-left: auto; margin-right: auto; }
        .how-it-works .section-subheading { margin: 0 auto; }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--teal), var(--gold));
            opacity: 0.2;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 64px; height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .step-number.s1 { background: var(--navy); color: var(--white); }
        .step-number.s2 { background: var(--teal); color: var(--white); }
        .step-number.s3 { background: var(--gold); color: var(--navy-deep); }
        .step-number.s4 { background: var(--navy); color: var(--gold); }

        .step-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 0.88rem;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ===== BOARD SECTION ===== */
        .board-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .board-section .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .board-section .section-heading { margin-left: auto; margin-right: auto; }
        .board-section .section-subheading { margin: 0 auto; }

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

        .board-card {
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            cursor: pointer;
        }

        .board-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--teal), var(--navy));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .board-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .board-card:hover::before { opacity: 1; }

        .board-card-photo {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        .board-card-photo img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease;
        }
        .board-card:hover .board-card-photo img { transform: scale(1.05); }
        .board-card-photo .initials {
            width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
            font-size: 2.2rem; font-weight: 800; color: rgba(255,255,255,0.15);
        }
        .board-card-info { padding: 18px 16px 22px; }

        .board-card-info h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .board-card-info .role {
            font-size: 0.78rem;
            color: var(--teal);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .board-card-info .quote {
            font-size: 0.78rem;
            color: var(--slate);
            line-height: 1.5;
            font-style: italic;
        }

        /* ===== FEATURES ===== */
        .features-section {
            padding: 100px 0;
            background: var(--white);
        }

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

        .features-list { display: flex; flex-direction: column; gap: 24px; }

        .feature-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            border-radius: var(--radius);
            transition: background 0.3s;
        }

        .feature-item:hover { background: var(--gray-50); }

        .feature-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg { width: 20px; height: 20px; color: var(--gold); }

        .feature-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .feature-item p {
            font-size: 0.88rem;
            color: var(--slate);
            line-height: 1.6;
        }

        .features-visual {
            position: relative;
        }

        .feature-mockup {
            background: var(--navy-deep);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: var(--shadow-xl);
        }

        .mockup-bar {
            display: flex;
            gap: 6px;
            margin-bottom: 20px;
        }

        .mockup-bar span {
            width: 10px; height: 10px;
            border-radius: 50%;
        }

        .mockup-bar span:nth-child(1) { background: #FF5F56; }
        .mockup-bar span:nth-child(2) { background: #FFBD2E; }
        .mockup-bar span:nth-child(3) { background: #27CA40; }

        .mockup-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mockup-response {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 8px;
            padding: 16px;
        }

        .mockup-response-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .mockup-response-avatar {
            width: 28px; height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
        }

        .mockup-response-name {
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
        }

        .mockup-response-tag {
            font-size: 0.65rem;
            background: rgba(40, 144, 137, 0.2);
            color: var(--teal-light);
            padding: 2px 8px;
            border-radius: 100px;
            margin-left: auto;
        }

        .mockup-response p {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
        }

        /* ===== AUDIT SECTION ===== */
        .audit-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
            position: relative;
            overflow: hidden;
        }

        .audit-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(40, 144, 137, 0.1) 0%, transparent 60%);
        }

        .audit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .audit-content .section-tag { color: var(--gold); }
        .audit-content .section-heading { color: var(--white); }
        .audit-content .section-subheading { color: rgba(255,255,255,0.65); }

        .audit-tiers {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 32px;
        }

        .audit-tier {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border-left: 3px solid;
        }

        .audit-tier.critical { border-color: #EF4444; }
        .audit-tier.strategic { border-color: var(--gold); }
        .audit-tier.emerging { border-color: var(--teal-light); }

        .audit-tier h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 2px;
        }

        .audit-tier p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.65);
        }

        .audit-visual {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            padding: 32px;
        }

        .audit-preview-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .audit-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .audit-bar-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.7);
            width: 100px;
            flex-shrink: 0;
        }

        .audit-bar-track {
            flex: 1;
            height: 8px;
            background: rgba(255,255,255,0.08);
            border-radius: 100px;
            overflow: hidden;
        }

        .audit-bar-fill {
            height: 100%;
            border-radius: 100px;
            transition: width 1s ease;
        }

        .audit-bar-fill.red { background: #EF4444; }
        .audit-bar-fill.gold { background: var(--gold); }
        .audit-bar-fill.teal { background: var(--teal-light); }
        .audit-bar-fill.green { background: #22C55E; }

        /* ===== PRICING ===== */
        .pricing-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .pricing-section .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .pricing-section .section-heading { margin-left: auto; margin-right: auto; }
        .pricing-section .section-subheading { margin: 0 auto; }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            border: 1px solid var(--gray-200);
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: default;
        }

        .pricing-card .btn {
            margin-top: auto;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            border-color: var(--gold);
            box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--navy-deep);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .pricing-card .price-tagline {
            font-size: 0.82rem;
            color: var(--slate);
            margin-bottom: 20px;
        }

        .price-amount {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
        }

        .price-amount .currency {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
        }

        .price-amount .amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
        }

        .price-amount .period {
            font-size: 0.9rem;
            color: var(--slate);
            font-weight: 400;
        }

        .pricing-card .price-note {
            font-size: 0.78rem;
            color: var(--slate-light);
            margin-bottom: 24px;
        }

        /* Billing toggle */
        .billing-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 32px;
        }

        .billing-toggle-track {
            display: inline-flex;
            background: var(--gray-100);
            border-radius: 100px;
            padding: 4px;
            gap: 4px;
        }

        .billing-toggle-btn {
            border: none;
            background: transparent;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--slate);
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .billing-toggle-btn.active {
            background: var(--white);
            color: var(--navy);
            box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
        }

        .billing-toggle-btn .save-badge {
            background: var(--teal);
            color: var(--white);
            font-size: 0.68rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        /* Monthly/Yearly price swapping */
        .yearly-only { display: none; }
        .pricing-section.billing-yearly .monthly-only { display: none; }
        .pricing-section.billing-yearly .yearly-only { display: revert; }

        .pricing-card .admin-note {
            font-size: 0.72rem;
            color: var(--slate-light);
            text-align: center;
            margin-top: auto;
            margin-bottom: 10px;
            font-style: italic;
        }

        .pricing-card .admin-note + .btn {
            margin-top: 0;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 28px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.88rem;
            color: var(--gray-800);
            border-bottom: 1px solid var(--gray-100);
        }

        .pricing-features li:last-child { border-bottom: none; }

        .pricing-features li svg {
            width: 18px; height: 18px;
            color: var(--teal);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 100px 0;
            background: var(--white);
        }

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

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

        .testimonial-card {
            background: var(--gray-50);
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid var(--gray-200);
        }

        .testimonial-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }

        .testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); }

        .testimonial-card blockquote {
            font-family: 'Source Serif 4', serif;
            font-size: 1rem;
            color: var(--gray-800);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

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

        .testimonial-avatar {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--teal), var(--navy));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 0.85rem;
        }

        .testimonial-author-name {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--navy);
        }

        .testimonial-author-title {
            font-size: 0.78rem;
            color: var(--slate);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .faq-section .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

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

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

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy);
            transition: color 0.2s;
        }

        .faq-question:hover { color: var(--teal); }

        .faq-question svg {
            width: 20px; height: 20px;
            color: var(--slate);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question svg { transform: rotate(180deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 20px;
        }

        .faq-answer p {
            font-size: 0.92rem;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy-deep), var(--navy));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 50% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
        }

        .cta-section .container { position: relative; z-index: 2; }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.65);
            max-width: 560px;
            margin: 0 auto 36px;
        }

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

        /* ===== BLOG PREVIEW ===== */
        .blog-preview-section {
            padding: 100px 0;
            background: var(--white);
        }

        .blog-preview-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
        }

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

        .blog-card {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
            text-decoration: none;
            display: block;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .blog-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .blog-card-gradient {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .blog-card-gradient .blog-category {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .blog-card-body { padding: 24px; }

        .blog-category {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 12px;
            background: rgba(40, 144, 137, 0.1);
            color: var(--teal-dark);
        }

        .blog-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .blog-card p {
            font-size: 0.85rem;
            color: var(--slate);
            line-height: 1.6;
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-100);
            font-size: 0.78rem;
            color: var(--slate-light);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--navy-deep);
            padding: 64px 0 32px;
        }

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

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 16px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            padding: 5px 0;
            transition: color 0.2s;
        }

        .footer-col a:hover { color: var(--gold); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
        }

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

        .footer-bottom-links a {
            color: rgba(255,255,255,0.45);
            font-size: 0.8rem;
            text-decoration: none;
        }

        .footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

        /* ===== MOBILE NAV ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--navy-deep);
            z-index: var(--z-mobile-nav);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
        }

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

        .mobile-nav a {
            color: var(--white);
            font-size: 1.4rem;
            font-weight: 600;
            text-decoration: none;
        }

        .mobile-nav-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
        }

        /* ===== SKIP LINK ===== */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            z-index: 9999;
            background: var(--gold);
            color: var(--navy-deep);
            padding: 12px 24px;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }

        /* ===== EVELYN HART SPOTLIGHT ===== */
        .evelyn-section { padding: 80px 0; background: var(--white); }
        .evelyn-card {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: 220px 1fr; gap: 40px;
            align-items: center;
            background: linear-gradient(135deg, var(--navy-deep), var(--navy));
            border-radius: 16px; padding: 48px;
            position: relative; overflow: hidden;
        }
        .evelyn-card::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse at 0% 50%, rgba(245,166,35,0.1) 0%, transparent 60%);
        }
        .evelyn-avatar {
            width: 170px; height: 170px; border-radius: 50%;
            overflow: hidden; border: 3px solid var(--gold);
            box-shadow: 0 8px 32px rgba(245,166,35,0.2);
            margin: 0 auto; position: relative; z-index: var(--z-base);
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        .evelyn-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .evelyn-avatar .evelyn-fallback {
            display: none; width: 100%; height: 100%;
            align-items: center; justify-content: center;
            font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.15);
        }
        .evelyn-text { position: relative; z-index: var(--z-base); }
        .evelyn-text .section-tag { color: var(--gold); }
        .evelyn-text h2 {
            font-size: 1.5rem; font-weight: 800;
            color: var(--white); margin-bottom: 12px;
        }
        .evelyn-text p {
            font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.8;
        }

        /* ===== NOSCRIPT ===== */
        .noscript-banner {
            background: var(--gold);
            color: var(--navy-deep);
            text-align: center;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== HERO TOOLTIP (touch devices) ===== */
        .hero-tooltip {
            position: absolute;
            background: rgba(15, 34, 64, 0.95);
            border: 1px solid rgba(245, 166, 35, 0.3);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 6px;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
            z-index: var(--z-overlay);
            transform: translateX(-50%);
        }
        .hero-tooltip.visible {
            opacity: 1;
        }

        /* ===== CTA LOADING STATE ===== */
        .btn.btn-loading {
            pointer-events: none;
            opacity: 0.75;
        }
        .btn.btn-loading .btn-text {
            visibility: hidden;
        }
        .btn.btn-loading::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border: 2.5px solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: btn-spin 0.6s linear infinite;
        }
        .btn-primary, .btn-secondary, .btn-outline {
            position: relative;
        }
        @keyframes btn-spin {
            to { transform: rotate(360deg); }
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1280px) {
            .board-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero-content p { margin: 0 auto 36px; }
            .hero-buttons { justify-content: center; }
            .hero-badge { margin: 0 auto 24px; }
            .hero-graphic { max-width: 380px; }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid::before { display: none; }
            .board-grid { grid-template-columns: repeat(3, 1fr); }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: 1fr; }
            .features-visual { order: -1; }
            .audit-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-toggle { display: block; }
            .evelyn-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
            .evelyn-avatar { width: 120px; height: 120px; }
            .hero .container { padding-top: 120px; }
            .hero-graphic { max-width: 300px; }
            .hero-member { width: 44px; height: 44px; }
            .hero-member-evelyn { width: 64px; height: 64px; }
            .hero-logo-center { width: 200px; }
            .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .board-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .blog-grid { grid-template-columns: 1fr; }
            .blog-preview-section .section-header { flex-direction: column; gap: 16px; align-items: flex-start; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .trust-bar .container { gap: 24px; }
        }

        @media (max-width: 480px) {
            .board-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: clamp(1.75rem, 7vw, 2rem); }
            .section-heading { font-size: 1.6rem; }
        }
        /* Blog card gradient img overlay (for proper <img> + gradient) */
        .blog-card-gradient {
            position: relative;
            overflow: hidden;
        }
        .blog-card-gradient img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .blog-card-gradient::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--grad);
        }
        .blog-card-gradient .blog-category {
            position: relative;
            z-index: 1;
        }

        /* ===== BOARD MEMBER BIO MODAL ===== */
        .board-modal {
            position: fixed;
            inset: 0;
            z-index: var(--z-modal);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .board-modal.active {
            opacity: 1;
            visibility: visible;
        }
        .board-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 34, 64, 0.7);
            backdrop-filter: blur(4px);
        }
        .board-modal-content {
            position: relative;
            background: var(--white);
            border-radius: var(--radius-lg);
            max-width: 560px;
            width: calc(100% - 32px);
            max-height: calc(100vh - 64px);
            overflow-y: auto;
            padding: 40px 36px 36px;
            text-align: center;
            box-shadow: var(--shadow-xl);
            transform: translateY(24px);
            transition: transform 0.3s ease;
        }
        .board-modal.active .board-modal-content {
            transform: translateY(0);
        }
        .board-modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.75rem;
            color: var(--slate);
            cursor: pointer;
            line-height: 1;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .board-modal-close:hover {
            background: var(--gray-100);
            color: var(--navy);
        }
        .board-modal-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--gray-200);
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        .board-modal-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .board-modal-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }
        .board-modal-role {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 20px;
        }
        .board-modal-bio {
            text-align: left;
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--gray-800);
        }
        .board-modal-bio p {
            margin-bottom: 14px;
        }
        .board-modal-bio p:last-child {
            margin-bottom: 0;
        }
        .board-modal-quote {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-200);
            font-size: 0.85rem;
            color: var(--slate);
        }
        .board-modal-quote strong {
            display: block;
            font-size: 0.95rem;
            color: var(--navy);
            font-style: italic;
            margin-bottom: 2px;
        }
        body.modal-open {
            overflow: hidden;
        }
        .evelyn-card[data-member] {
            cursor: pointer;
        }
        @media (max-width: 480px) {
            .board-modal-content {
                padding: 32px 20px 28px;
            }
            .board-modal-photo {
                width: 96px;
                height: 96px;
            }
        }

        /* ===== BLOG PAGE ===== */
        .blog-hero {
            background: linear-gradient(135deg, var(--navy-deep), var(--navy));
            padding: 100px 0 60px;
            text-align: center;
        }
        .blog-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
        }
        .blog-hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.6);
            max-width: 560px;
            margin: 0 auto;
        }
        .blog-listing {
            padding: 64px 0 100px;
        }
