/* ============================================
           CSS VARIABLES (Design System Tokens)
           ============================================ */
        :root {
            --bg-navy-core: #0B1D36;
            --bg-navy: #0C2844;
            --bg-navy-teal: #0D3555;
            --bg-dark-teal: #0A4D5E;
            --bg-teal-edge: #088F8A;
            --bg-white: #FFFFFF;
            --bg-light: #F8F9FA;
            --bg-warm: #F4F2EE;
            --teal: #00C2B2;
            --teal-dark: #009E91;
            --gold: #D4AF37;
            --gold-btn: #C9A84C;
            --gold-antique: #B8962E;
            --gold-bg: rgba(212, 175, 55, 0.12);
            --gold-border: rgba(212, 175, 55, 0.30);
            --green: #22C55E;
            --purple: #A78BFA;
            --red: #EF4444;
            --text-white: #FFFFFF;
            --text-white-85: rgba(255, 255, 255, 0.85);
            --text-white-70: rgba(255, 255, 255, 0.70);
            --text-white-50: rgba(255, 255, 255, 0.50);
            --text-white-45: rgba(255, 255, 255, 0.45);
            --text-white-30: rgba(255, 255, 255, 0.30);
            --text-dark: #111827;
            --text-gray: #6B7280;
            --text-gray-light: #9BA3AE;
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            --space-2xl: 3rem;
            --space-3xl: 4rem;
            --space-4xl: 6rem;
            --space-5xl: 8rem;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 14px;
            --radius-full: 9999px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
            --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition-base: 250ms ease;
            --transition-fast: 150ms ease;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Respect reduced motion preference */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto !important;
            }

            .animate-on-scroll {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.7;
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            background: var(--bg-white);
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
        }

        h4 {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* Skip link for keyboard/screen-reader users */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 1rem;
            background: var(--teal);
            color: var(--bg-navy-core);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            z-index: 9999;
            transition: top var(--transition-fast);
            text-decoration: none;
        }

        .skip-link:focus {
            top: 1rem;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Visible focus styles for interactive elements */
        :focus-visible {
            outline: 2px solid var(--teal);
            outline-offset: 3px;
            border-radius: 2px;
        }

        /* ============================================
           LAYOUT
           ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .container--narrow {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: var(--space-4xl) 0;
        }

        .section--lg {
            padding: var(--space-5xl) 0;
        }

        .section--dark {
            background: var(--bg-navy);
            color: var(--text-white);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(11, 29, 54, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 194, 178, 0.12);
            transition: all var(--transition-base);
        }

        #navbar.scrolled {
            background: rgba(11, 29, 54, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom-color: rgba(0, 194, 178, 0.08);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .nav__inner {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }





        .nav__faq-link {
            color: rgba(255, 255, 255, 0.55) !important;
        }

        .nav__faq-link:hover {
            color: rgba(255, 255, 255, 0.85) !important;
        }

        /* ── GLITTER PANEL :  DISABLED ──────── */
        /* Panel logo :  bolder version */
        /* Panel tagline */
        /* Hamburger */
        .nav__hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .nav__hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: rgba(255, 255, 255, 0.85);
            transition: all var(--transition-base);
        }

        .nav__hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav__hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .nav__hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .component-frame {
            display: block;
            width: 100%;
            border: 0;
            background: transparent;
            overflow: hidden;
        }

        .component-frame--nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 82px;
        }

        .component-frame--pricing {
            min-height: 520px;
        }

        .component-frame--footer {
            min-height: 300px;
        }

        .component-shell {
            position: relative;
            width: 100%;
        }

        .component-shell--pricing,
        .component-shell--footer {
            overflow: hidden;
        }

        .component-shell--footer {
            background: transparent;
            border-top: 0;
            color: inherit;
            padding: 0;
        }

        .component-fallback--pricing {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .component-fallback-card {
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.055);
            color: var(--text-white);
        }

        .component-fallback-card h4 {
            color: var(--text-white);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .component-fallback-card p {
            margin: 0;
            color: var(--text-white-70);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .component-frame--nav {
                height: 64px;
            }

            .component-fallback--pricing {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           HERO SECTION :  asymmetric two-column
           ============================================ */

        .hero {
            padding: 9rem 0 5rem;
            position: relative;
            overflow: hidden;
            background: #9aa2a8;
        }

        .hero::before {
            display: none;
        }

        .hero::after {
            display: none;
        }

        .hero__bg {
            background-image: url(/assets/brand/guarantee_hero_bg.webp);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: 88% center;
            position: absolute;
            inset: 0;
            margin: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .svg-btn {
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.2s ease, filter 0.2s ease;
            position: relative;
            z-index: 10;
        }

        .svg-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .svg-btn:active {
            transform: translateY(0);
        }

        .svg-btn svg {
            display: block;
            width: min(100%, 268px);
            height: auto;
        }

        /* Hero grid */
        .hero__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 480px;
        }

        /* LEFT COLUMN :  text */
        .hero__left {
            text-align: left;
        }

        .hero .overline {
            font-family: var(--font-heading);
            font-size: 23px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--gold);
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0;
            text-decoration: underline;
            text-decoration-thickness: 3px;
        }

        .hero .overline::before {
            content: none;
        }

        .hero .overline::after {
            content: none;
        }

        .hero h3 {
            color: #0B1D36;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
            font-size: clamp(2.5rem, 4.5vw, 3.75rem);
        }

        .hero h3 .teal {
            color: #0B1D36;
        }

        .hero__verify-wrap {
            color: var(--gold);
            position: relative;
            display: inline-block;
        }

        .hero__underline {
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            overflow: visible;
            pointer-events: none;
        }

        .hero__underline line {
            stroke: var(--gold);
            stroke-width: 2.5;
            stroke-linecap: round;
        }

        .hero__subtitle {
            font-family: var(--font-heading);
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            font-weight: 500;
            color: rgba(11, 29, 54, 0.72);
            max-width: 580px;
            margin-bottom: 2.25rem;
            line-height: 1.65;
            padding: 1rem 1.25rem;
            background: linear-gradient(135deg,
                    rgba(212, 175, 55, 0.22) 0%,
                    rgba(212, 175, 55, 0.14) 45%,
                    rgba(255, 255, 255, 0.12) 100%);
            border-left: 4px solid var(--gold);
            border-right: 4px solid var(--gold);
            border-top: 1px solid rgba(212, 175, 55, 0.28);
            border-bottom: 1px solid rgba(212, 175, 55, 0.18);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12),
                0 0 28px rgba(212, 175, 55, 0.16) inset;
        }

        .hero__cta-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero__trust-line {
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero__trust-line-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-family: var(--font-heading);
            font-size: 0.7rem;
            font-weight: 600;
            color: rgba(11, 29, 54, 0.55);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero__trust-line-item svg {
            width: 13px;
            height: 13px;
            stroke: var(--gold-btn);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
        }

        .hero__trust-sep {
            width: 1px;
            height: 14px;
            background: rgba(11, 29, 54, 0.18);
            flex-shrink: 0;
        }

        /* RIGHT COLUMN :  brief card */
        .hero__right {
            opacity: 1;
        }

        @keyframes borderPulse {

            0%,
            100% {
                border-left-color: rgba(212, 175, 55, 0.55);
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), -2px 0 18px rgba(212, 175, 55, 0.08);
            }

            50% {
                border-left-color: rgba(212, 175, 55, 0.90);
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), -3px 0 28px rgba(212, 175, 55, 0.20);
            }
        }

        .hero__brief {
            background: rgba(9, 24, 46, 0.78);
            border: none;
            border-left: 2px solid rgba(212, 175, 55, 0.55);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1.5rem 1.75rem;
            width: 100%;
            text-align: left;
            position: relative;
            overflow: hidden;
            animation: borderPulse 4s ease-in-out 3s infinite;
            will-change: transform;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), -2px 0 18px rgba(212, 175, 55, 0.08);
        }

        /* [3] VERIFICATION LINE SWEEP :  slow deliberate scan, left to right */
        @keyframes verifySweep {
            0% {
                left: -12%;
                opacity: 0;
            }

            6% {
                opacity: 1;
            }

            94% {
                opacity: 1;
            }

            100% {
                left: 108%;
                opacity: 0;
            }
        }

        .hero__brief::before {
            content: '';
            position: absolute;
            top: 0;
            left: -12%;
            width: 12%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(212, 175, 55, 0.04) 25%,
                    rgba(212, 175, 55, 0.11) 48%,
                    rgba(212, 175, 55, 0.14) 50%,
                    rgba(212, 175, 55, 0.11) 52%,
                    rgba(212, 175, 55, 0.04) 75%,
                    transparent 100%);
            pointer-events: none;
            animation: verifySweep 4.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.5s forwards,
                verifySweep 4.8s cubic-bezier(0.25, 0.1, 0.25, 1) 16s infinite;
        }

        /* Top accent line */
        .hero__brief::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-antique) 50%, transparent 100%);
            opacity: 0.6;
        }

        /* Report header row */
        .hero__brief-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        }

        .hero__brief-title {
            font-family: var(--font-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gold);
        }

        .hero__brief-status {
            font-family: var(--font-heading);
            font-size: 0.625rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--green);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .hero__brief-status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 5px rgba(34, 197, 94, 0.7);
            /* [4] SOURCE-NODE PULSE */
            animation: sourcePulse 3.2s ease-in-out 2.5s infinite;
        }

        @keyframes sourcePulse {

            0%,
            100% {
                box-shadow: 0 0 5px rgba(34, 197, 94, 0.7);
                opacity: 1;
            }

            50% {
                box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
                opacity: 0.7;
            }
        }

        /* Report rows :  confidence findings */
        .hero__brief-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.55rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            gap: 0.75rem;
        }

        .hero__brief-row:last-child {
            border-bottom: none;
        }

        .hero__brief-finding {
            font-family: var(--font-body);
            font-size: 0.775rem;
            color: rgba(255, 255, 255, 0.75);
            flex: 1;
            line-height: 1.4;
        }

        .hero__brief-right-col {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            flex-shrink: 0;
        }

        /* [2] COUNT-UP: scores start at 0, animate via JS to target */
        .hero__brief-score {
            font-family: var(--font-heading);
            font-feature-settings: 'tnum' 1;
            font-size: 0.875rem;
            font-weight: 700;
            min-width: 36px;
            text-align: right;
        }

        .hero__brief-score--high {
            color: var(--green);
        }

        .hero__brief-score--mid {
            color: #EAB308;
        }

        .hero__brief-score--low {
            color: var(--red);
        }

        /* [4] SOURCE BADGE SHIMMER */
        .hero__brief-sources {
            font-family: var(--font-body);
            font-size: 0.625rem;
            color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 3px;
            padding: 1px 5px;
            position: relative;
            overflow: hidden;
        }

        @keyframes sourceShimmer {
            0% {
                transform: translateX(-120%);
            }

            100% {
                transform: translateX(220%);
            }
        }

        .hero__brief-sources::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 194, 178, 0.18), transparent);
            transform: translateX(-120%);
            animation: sourceShimmer 2.8s ease-in-out 4s infinite;
        }

        /* Report footer */
        .hero__brief-footer {
            margin-top: 0.875rem;
            padding-top: 0.625rem;
            border-top: 1px solid rgba(0, 194, 178, 0.1);
            font-family: var(--font-body);
            font-size: 0.625rem;
            color: rgba(0, 194, 178, 0.45);
            font-style: italic;
        }

        /* ============================================
           HERO STAMPED EMBLEM
           ============================================ */


        /* ── Reduced motion ── */
        @media (prefers-reduced-motion: reduce) {

            .hero::before,
            .hero::after {
                animation: none !important;
            }

            .hero .overline,
            .hero__subtitle,
            .hero__cta-row,
            .hero__trust-line,
            .hero__right {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }

            .hero h1 {
                opacity: 1 !important;
                animation: none !important;
            }

            .hero__underline line {
                stroke-dashoffset: 0 !important;
                animation: none !important;
            }

            .hero__scanline {
                display: none !important;
            }

            .hero__brief,
            .hero__brief::before {
                animation: none !important;
            }

            .hero__brief-status-dot,
            .hero__brief-sources::after {
                animation: none !important;
            }
        }

        /* Hero grid responsive */
        @media (max-width: 960px) {
            .hero__grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero__left {
                text-align: center;
            }

            .hero .overline {
                justify-content: center;
            }

            .hero__subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero__cta-row {
                justify-content: center;
            }

            .hero__trust-line {
                justify-content: center;
            }

            .hero__right {
                display: flex;
                justify-content: center;
            }

            .hero__brief {
                width: min(460px, 92vw);
            }
        }

        @media (max-width: 430px) {
            .hero .overline {
                padding: 0.35rem 0.8rem 0.3rem 0.85rem;
            }

            .hero__subtitle {
                padding: 0.875rem 1rem;
            }
        }

        /* ============================================
           PLAIN-ENGLISH + LEGAL TERMS SECTIONS
           ============================================ */
        .plain-english-section {
            background: var(--bg-light);
            padding: var(--space-4xl) 0;
        }

        .plain-english-section .section-header {
            margin-bottom: var(--space-2xl);
        }

        .plain-english-prose {
            max-width: 760px;
            margin: 0 auto;
            background: #fff;
            border-left: 4px solid var(--gold);
            border-right: 4px solid var(--gold);
            padding: 2.5rem 3rem;
            font-size: 1.0625rem;
            color: var(--text-dark);
            line-height: 1.8;
            box-shadow: var(--shadow-md);
        }

        .plain-english-prose p {
            margin-bottom: 1.25rem;
        }

        .plain-english-prose p:last-child {
            margin-bottom: 0;
        }

        .plain-english-prose strong {
            color: var(--bg-navy-core);
            font-weight: 700;
        }

        .plain-english-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 1.25rem;
        }

        .plain-english-point h3 {
            margin-bottom: 0.4rem;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold-antique);
        }

        .plain-english-point p {
            margin: 0;
        }

        .ps-product-tag {
            margin: 0;
        }

        .plain-english-note {
            max-width: 760px;
            margin: 1.25rem auto 0;
            font-size: 0.8125rem;
            color: var(--text-gray);
            font-style: italic;
        }

        .legal-terms-section {
            background: var(--bg-white);
            padding: var(--space-4xl) 0;
        }

        .legal-terms-section .section-header {
            margin-bottom: var(--space-2xl);
        }

        .legal-table-wrap {
            max-width: 960px;
            margin: 0 auto;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .legal-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
        }

        .legal-table caption.sr-only {
            position: static;
            width: auto;
            height: auto;
            padding: 0 0 0.75rem;
            margin: 0;
            overflow: visible;
            clip: auto;
            white-space: normal;
            border: 0;
            caption-side: top;
            color: var(--text-gray);
            font-size: 0.8125rem;
            line-height: 1.5;
            text-align: left;
        }

        .legal-table thead tr {
            background: var(--bg-navy-core);
        }

        .legal-table thead th {
            font-family: var(--font-heading);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold);
            padding: 0.875rem 1.25rem;
            text-align: left;
            white-space: nowrap;
        }

        .legal-table tbody tr {
            border-bottom: 1px solid #E2E8F0;
        }

        .legal-table tbody tr:last-child {
            border-bottom: none;
        }

        .legal-table tbody tr:nth-child(even) {
            background: #F8F9FA;
        }

        .legal-table td {
            padding: 1rem 1.25rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .legal-table tbody th {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.8125rem;
            color: var(--bg-navy-core);
            line-height: 1.6;
            padding: 1rem 1.25rem;
            text-align: left;
            white-space: nowrap;
            width: 22%;
        }

        .legal-table td:nth-child(2),
        .legal-table thead th:nth-child(2) {
            width: 40%;
        }

        .legal-table thead th:last-child {
            text-align: center;
            width: 12%;
        }

        /* <th scope="col">Scope</th> make this class a little right*/




        .legal-table td:last-child {
            font-size: 0.8125rem;
            color: var(--text-gray);
            font-style: italic;
            width: 12%;
            text-align: left;
        }

        .legal-table .legal-tag {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 2px 7px;
            border-radius: 3px;
            margin-left: 0.5rem;
            vertical-align: middle;
        }

        .legal-tag--covered {
            background: rgba(34, 197, 94, 0.12);
            color: #15803d;
        }

        .legal-tag--excluded {
            background: rgba(239, 68, 68, 0.10);
            color: #b91c1c;
        }

        .legal-tag--conditional {
            background: rgba(234, 179, 8, 0.12);
            color: #92400e;
        }

        .legal-scope-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
            min-height: 50px;
            margin: 0 auto;
        }

        .legal-scope-icon .sr-only {
            position: static;
            width: auto;
            height: auto;
            padding: 0;
            margin: 0;
            overflow: visible;
            clip: auto;
            white-space: nowrap;
            color: var(--bg-navy-core);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0;
        }

        .legal-scope--covered {
            text-decoration: underline;
            text-decoration-thickness: 2px;
        }

        .legal-scope-icon img {
            display: none;
        }

        .legal-terms-note {
            max-width: 960px;
            margin: 1.25rem auto 0;
            font-size: 0.8125rem;
            color: var(--text-gray);
            font-style: italic;
        }

        /* ============================================
           SECTION HEADER
           ============================================ */
        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-header .overline {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            display: block;
            margin-bottom: 0.625rem;
        }

        .overline--gold {
            color: var(--gold);
        }

        .overline--teal {
            color: var(--teal);
        }

        .section-header h2,
        .section-header h3 {
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .section-header p {
            max-width: 580px;
            margin: 0 auto;
            font-size: 0.9375rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .section-header--dark h2,
        .section-header--dark h3 {
            color: var(--text-white);
        }

        .section-header--dark p {
            color: var(--text-white-70);
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            padding: 0.875rem 1.75rem;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn--gold {
            background: var(--gold);
            color: var(--bg-navy-core);
        }

        .btn--gold:hover {
            background: #E0BD45;
        }

        .btn--navy {
            background: var(--bg-navy-core);
            color: var(--text-white);
            border: 1.5px solid rgba(255, 255, 255, 0.12);
        }

        .btn--navy:hover {
            background: #122540;
            border-color: rgba(255, 255, 255, 0.2);
        }

        .btn--outline-gold {
            background: transparent;
            color: var(--gold);
            border: 1.5px solid var(--gold);
        }

        .btn--outline-gold:hover {
            background: rgba(201, 168, 76, 0.08);
        }

        .btn--outline-teal {
            background: transparent;
            color: var(--teal);
            border: 1.5px solid var(--teal);
        }

        .btn--outline-teal:hover {
            background: rgba(0, 194, 178, 0.06);
        }

        /* ============================================
           GUARANTEE CARDS SECTION
           ============================================ */
        .guarantee-section {
            background: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .guarantee-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--teal);
        }

        .guarantee-halo {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 400px;
            background: radial-gradient(ellipse at center top, rgba(0, 194, 178, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .guarantee-section .container {
            position: relative;
            z-index: 2;
        }

        .guarantee-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .guarantee-card {
            padding: 2.5rem 2rem;
            text-align: center;
            border-radius: 0;
            background: var(--bg-white);
            border: 1px solid #E2E8F0;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }

        .guarantee-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .guarantee__icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 1.25rem;
        }

        .guarantee__icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--gold);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .guarantee-card h4 {
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .guarantee-card p {
            font-size: 0.9375rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .guarantee-closing {
            font-family: var(--font-heading);
            font-style: italic;
            color: var(--teal-dark);
            text-align: center;
            margin-top: var(--space-2xl);
            font-size: 1rem;
            font-weight: 600;
        }

        /* ============================================
           HOW IT WORKS (dark section)
           ============================================ */
        .process-section {
            background: radial-gradient(ellipse at center, var(--bg-navy) 0%, var(--bg-navy-teal) 50%, var(--bg-dark-teal) 80%, var(--bg-teal-edge) 100%);
        }

        .process-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0;
            padding: 2rem 1.75rem;
            text-align: center;
            position: relative;
        }

        .process-card__step {
            font-family: var(--font-heading);
            font-feature-settings: 'tnum' 1;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 0.25rem;
        }

        .process-card__label {
            font-family: var(--font-body);
            font-size: 0.75rem;
            color: var(--text-gray-light);
            line-height: 1.4;
            max-width: 200px;
            margin: 0 auto;
        }

        .process-card h4 {
            color: var(--text-white);
            margin-bottom: 0.75rem;
            margin-top: 1rem;
        }

        .process-card p {
            font-size: 0.9375rem;
            color: var(--text-white-70);
            line-height: 1.6;
        }

        /* ============================================
           CONFIDENCE INDEX SECTION (light)
           ============================================ */
        .confidence-section {
            background: var(--bg-light);
        }

        .confidence-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .confidence-text h3 {
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .confidence-text p {
            color: var(--text-gray);
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .confidence-text p:last-child {
            margin-bottom: 0;
        }

        .confidence-visual {
            background: var(--bg-navy-core);
            border-radius: 0;
            padding: 2rem;
            border: 1px solid rgba(0, 194, 178, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .ci-header {
            font-family: var(--font-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gold);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .ci-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.625rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .ci-row:last-child {
            border-bottom: none;
        }

        .ci-finding {
            font-family: var(--font-body);
            font-size: 0.8125rem;
            color: var(--text-white-85);
            flex: 1;
        }

        .ci-score {
            font-family: var(--font-heading);
            font-feature-settings: 'tnum' 1;
            font-size: 0.875rem;
            font-weight: 700;
            min-width: 44px;
            text-align: right;
        }

        .ci-score--high {
            color: var(--green);
        }

        .ci-score--mid {
            color: #EAB308;
        }

        .ci-score--low {
            color: var(--red);
        }

        .ci-sources {
            font-family: var(--font-body);
            font-size: 0.6875rem;
            color: var(--text-white-45);
            min-width: 72px;
            text-align: right;
            margin-left: 0.75rem;
        }

        .ci-footer {
            margin-top: 1rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(0, 194, 178, 0.15);
            font-family: var(--font-body);
            font-size: 0.75rem;
            color: var(--teal-dark);
            font-style: italic;
        }

        /* ============================================
           PROOF BLOCK (new :  "What gets checked")
           ============================================ */
        .proof-section {
            background: var(--bg-white);
            border-top: 1px solid #E2E8F0;
        }

        .proof-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            max-width: 960px;
            margin: 0 auto;
            align-items: start;
        }

        .proof-col h3 {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-dark);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--teal);
            display: inline-block;
        }

        .proof-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .proof-list li {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            padding: 0.625rem 0;
            border-bottom: 1px solid #F0F4F8;
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .proof-list li:last-child {
            border-bottom: none;
        }

        .proof-check {
            flex-shrink: 0;
            width: 14px;
            height: 14px;
            margin-top: 1px;
        }

        .proof-check svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .proof-remedy {
            background: var(--bg-light);
            border: 1px solid #E2E8F0;
            border-left: 4px solid var(--gold);
            padding: 1.5rem;
        }

        .proof-remedy h4 {
            font-size: 1rem;
            color: var(--bg-navy-core);
            margin-bottom: 1rem;
        }

        .remedy-step {
            display: flex;
            gap: 0.875rem;
            margin-bottom: 0.875rem;
            align-items: flex-start;
        }

        .remedy-step:last-child {
            margin-bottom: 0;
        }

        .remedy-num {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--bg-navy-core);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        .remedy-step p {
            font-size: 0.875rem;
            color: var(--text-gray);
            line-height: 1.55;
        }

        /* ============================================
           WHAT WE DON'T PROMISE (dark)
           ============================================ */
        .honesty-section {
            background: var(--bg-navy-core);
        }

        .honesty-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .honesty-col h3 {
            color: var(--text-white);
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .honesty-col h3 .teal {
            color: var(--teal);
        }

        .honesty-col h3 .gold {
            color: var(--gold);
        }

        .honesty-item {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            align-items: flex-start;
        }

        .honesty-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            margin-top: 2px;
        }

        .honesty-icon svg {
            width: 20px;
            height: 20px;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .honesty-icon--no svg {
            stroke: rgba(239, 68, 68, 0.7);
        }

        .honesty-icon--yes svg {
            stroke: var(--teal);
        }

        .honesty-item p {
            font-size: 0.9375rem;
            color: var(--text-white-70);
            line-height: 1.6;
        }

        /* ============================================
           CTA SECTION (dark gradient)
           ============================================ */
        .cta-section {
            background: radial-gradient(ellipse at center, var(--bg-navy) 0%, var(--bg-navy-teal) 50%, var(--bg-dark-teal) 80%, var(--bg-teal-edge) 100%);
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            color: var(--text-white);
            margin-bottom: 1rem;
        }

        .cta-section h2 .gold {
            color: var(--gold);
        }

        .cta-section p {
            color: var(--text-white-70);
            max-width: 560px;
            margin: 0 auto 2rem;
            font-size: 0.9375rem;
        }

        .cta-row {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ============================================
           ENLIGHTEN US CALLOUT
           ============================================ */
        .enlighten-section {
            background: var(--bg-light);
        }

        .enlighten-card {
            background: var(--bg-navy-core);
            padding: 3.5rem 4rem;
            text-align: center;
            border-top: 3px solid var(--gold);
            box-shadow: var(--shadow-lg);
        }

        .enlighten-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1.5rem;
        }

        .enlighten-icon svg {
            width: 48px;
            height: 48px;
        }

        .enlighten-card h2,
        .enlighten-card h3 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
        }

        .enlighten-card p {
            color: var(--text-white-85);
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.75;
        }

        @media (max-width: 600px) {
            .enlighten-card {
                padding: 2.5rem 1.75rem;
            }
        }

        /* =           FAQ SECTION :  method-block style matching das-system.html
           ============================================ */
        .faq-section {
            background: var(--bg-white);
        }

        .faq-list {
            list-style: none;
            max-width: 720px;
            margin: 0 auto;
            padding: 0;
            counter-reset: guarantee-faq-question;
        }

        /* method-block card style */
        .faq-item {
            margin-bottom: 1.5rem;
            background: #fff;
            border: 1px solid rgba(0, 194, 178, .1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            width: 100%;
            counter-increment: guarantee-faq-question;
        }

        .faq-item:hover {
            border-color: var(--teal);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px -10px rgba(0, 194, 178, 0.1);
        }

        .faq-item.is-active {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px -15px rgba(201, 168, 76, 0.15);
            background: rgba(201, 168, 76, 0.02);
        }

        /* Question toggle :  uses same header pattern as method-block */
        .faq-q {
            width: 100%;
            background: none;
            border: none;
            padding: 1.25rem 1.75rem;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            cursor: pointer;
            user-select: none;
            gap: 12px;
            text-align: left;
        }

        .faq-q::before {
            content: counter(guarantee-faq-question, decimal-leading-zero);
            flex: 0 0 auto;
            min-width: 2rem;
            color: rgba(17, 24, 39, 0.35);
            font-family: var(--font-heading);
            font-size: 0.875rem;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.02em;
        }

        .faq-q span {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--teal);
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0;
            transition: color 0.3s ease;
        }

        .faq-item.is-active .faq-q span {
            color: #FBC02D;
        }

        /* Triangle icon (matching das-system.html) */
        .faq-q svg {
            transform: rotate(180deg);
            margin-left: auto;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--teal);
            stroke: currentColor;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
        }

        .faq-item.is-active .faq-q svg {
            transform: rotate(360deg);
            color: #FBC02D;
        }

        /* Answer panel :  max-height animation */
        .faq-a {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 1.75rem;
            transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        }

        .faq-a.is-open {
            max-height: 600px;
            overflow: visible;
            opacity: 1;
            padding: 0 1.75rem 1.75rem;
        }



        
        .faq-a p {
            font-size: 14.5px;
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0;
        }

        .faq-a p+p {
            margin-top: 0.75rem;
        }

        /* ============================================
           SUBTLE LINK
           ============================================ */
        .subtle-link {
            color: inherit;
            text-decoration: none;
            border-bottom: none;
            transition: all var(--transition-fast);
        }

        .subtle-link:hover {
            border-bottom: 1px solid currentColor;
            opacity: 0.85;
        }

        /* ============================================
           PRODUCT CTA CARDS
           ============================================ */
     

        .product-cta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .product-cta-card {
            position: relative;
            padding: 2.25rem 2rem 2rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }

        .product-cta-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }

        .product-cta-card--green {
            background: #1B3D2F;
        }

        .product-cta-card--purple {
            background: #2A1F3D;
        }

        .product-cta-card--red {
            background: #33201A;
        }

        .product-cta-card__accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
        }

        .product-cta-card--green .product-cta-card__accent {
            background: #22C55E;
        }

        .product-cta-card--purple .product-cta-card__accent {
            background: #A78BFA;
        }

        .product-cta-card--red .product-cta-card__accent {
            background: #EF4444;
        }

        .product-cta-card__tag {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 1rem;
        }

        .product-cta-card--green .product-cta-card__tag {
            color: #22C55E;
        }

        .product-cta-card--purple .product-cta-card__tag {
            color: #A78BFA;
        }

        .product-cta-card--red .product-cta-card__tag {
            color: #EF4444;
        }

        .product-cta-card h3 {
            color: var(--text-white);
            font-size: clamp(1.1rem, 1.8vw, 1.35rem);
            margin-bottom: 0.875rem;
            line-height: 1.3;
        }

        .product-cta-card p {
            color: var(--text-white-70);
            font-size: 0.9rem;
            line-height: 1.65;
            margin-bottom: 1.75rem;
        }

        .product-cta-card__btn {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0.625rem 1.25rem;
            border: 1.5px solid;
            transition: all var(--transition-base);
            text-decoration: none;
        }

        .product-cta-card__btn--green {
            color: #22C55E;
            border-color: rgba(34, 197, 94, 0.4);
        }

        .product-cta-card__btn--purple {
            color: #A78BFA;
            border-color: rgba(167, 139, 250, 0.4);
        }

        .product-cta-card__btn--red {
            color: #EF4444;
            border-color: rgba(239, 68, 68, 0.4);
        }

        .product-cta-card__btn--green:hover {
            background: rgba(34, 197, 94, 0.1);
            border-color: #22C55E;
        }

        .product-cta-card__btn--purple:hover {
            background: rgba(167, 139, 250, 0.1);
            border-color: #A78BFA;
        }

        .product-cta-card__btn--red:hover {
            background: rgba(239, 68, 68, 0.1);
            border-color: #EF4444;
        }

        @media (max-width: 900px) {
            .product-cta-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
            }
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: linear-gradient(180deg, #0B1D36, #061220);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: var(--space-4xl) 0 var(--space-xl);
            color: var(--text-white);
        }

        .footer__top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-xl);
            margin-bottom: var(--space-3xl);
        }

        .footer__column h5 {
            font-family: var(--font-heading);
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--gold-btn);
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }

        .footer__column a {
            display: block;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.65);
            padding: 0.25rem 0;
            transition: color var(--transition-fast);
        }

        .footer__column a:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .footer__column a.footer__active {
            color: var(--gold);
        }

        .footer__email {
            font-family: var(--font-heading);
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--gold) !important;
        }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer__copy {
            font-size: 0.75rem;
            color: var(--text-gray);
        }

        .footer__legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer__legal a {
            font-size: 0.75rem;
            color: var(--text-gray);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .animate-on-scroll {
            opacity: 1;
            transform: none;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .confidence-layout {
                grid-template-columns: 1fr;
            }

            .proof-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .process-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
            }
        }

        @media (max-width: 768px) {
            .nav__links {
                display: none;
            }

            .nav__links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(11, 29, 54, 0.97);
                padding: 1rem 2rem 1.5rem;
                border-bottom: 1px solid rgba(0, 194, 178, 0.12);
                gap: 0.75rem;
            }

            .nav__hamburger {
                display: flex;
            }

            .nav__dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                pointer-events: all;
                background: transparent;
                border: none;
                padding: 0 0 0 1rem;
                min-width: auto;
                backdrop-filter: none;
            }

            .hero {
                padding: 8rem 0 3rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero__subtitle {
                font-size: 1.125rem;
            }

            .guarantee-grid {
                grid-template-columns: 1fr;
            }

            .honesty-grid {
                grid-template-columns: 1fr;
            }

            .footer__top {
                grid-template-columns: 1fr;
            }

            .footer__bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .section {
                padding: var(--space-3xl) 0;
            }

            .section--lg {
                padding: var(--space-4xl) 0;
            }

            .terms-table td,
            .terms-table th {
                font-size: 0.8125rem;
                padding: 0.75rem 0.875rem;
            }
        }

        @media (max-width: 480px) {
            .cta-row {
                flex-direction: column;
                align-items: center;
            }

            .cta-row .btn {
                width: 100%;
                max-width: 320px;
            }
        }

        /* -- Back to top -- */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 44px;
            height: 44px;
            border-radius: 0;
            background: var(--navy-core);
            border: 1px solid rgba(0, 194, 178, 0.25);
            color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity .3s, visibility .3s, transform .3s, background .2s;
            z-index: 90;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--navy-teal);
            border-color: var(--teal);
        }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }

        /* ── Page-summary SEO blocks :  layout & color fix ── */
        .page-summary {
            width: 100%;
            max-width: 70ch;
            margin: 24px auto;
            background: #F7F8FA !important;
            padding: 12px 16px;
            box-sizing: border-box;
        }

        .page-summary :is(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote) {
            width: 100%;
            margin: 0 0 1rem !important;
            box-sizing: border-box;
            text-wrap: pretty;
            text-align: left !important;
        }

        .page-summary :is(h1, h2, h3, h4, h5, h6, p, li, a, span, blockquote),
        .page-summary .seo-note__heading,
        .page-summary .seo-note__subheading,
        .seo-note.page-summary :is(h1, h2, h3, h4, h5, h6, p, li, a, span, blockquote),
        .seo-note.page-summary .seo-note__heading,
        .seo-note.page-summary .seo-note__subheading {
            font-size: 0.875rem !important;
            font-weight: 400 !important;
            line-height: 1.45 !important;
            font-family: 'Open Sans', sans-serif !important;
            letter-spacing: 0 !important;
            color: #6E6E73 !important;
        }

        .page-summary :is(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote):last-child {
            margin-bottom: 0 !important;
        }

        .page-summary[aria-labelledby="page-summary-title-primary"] :is(h1, h2, p) {
            max-width: 760px;
        }

        .page-summary[aria-labelledby="page-summary-title-primary"] {
            background: #F7F8FA !important;
        }

        .page-summary[aria-labelledby="page-summary-title-secondary"] :is(h1, h2, p) {
            max-width: 960px;
        }

        .breadcrumbs-bar {
            background: var(--bg-light);
            border-bottom: 1px solid rgba(11, 29, 54, 0.08);
        }

        .breadcrumbs {
            padding: 0.85rem 0;
        }

        .breadcrumbs__list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8125rem;
            color: var(--text-gray);
        }

        .breadcrumbs__list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .breadcrumbs__list li+li::before {
            content: "/";
            color: rgba(11, 29, 54, 0.35);
        }

        .breadcrumbs__list a {
            color: var(--bg-navy-core);
        }

        .breadcrumbs__list [aria-current="page"] {
            color: var(--text-gray);
        }
