        /* =========================================================
   FactoryChecker — Premium Light Theme
   Design system tokens (single source of truth)
   ========================================================= */
        :root {
            --ink: #001524;
            /* navy — headlines, footer */
            --ink-2: #12222f;
            /* slightly lifted navy */
            --muted: #5b6672;
            /* body text on light */
            --muted-2: #8a949e;
            /* captions / metadata */
            --orange: #FF7D00;
            /* primary accent / CTAs */
            --orange-dk: #E06F00;
            /* hover */
            --amber: #FFA83D;
            /* gradient partner (used sparingly) */
            --bg: #FAFAF7;
            /* warm off-white page base */
            --bg-2: #F2F1EC;
            /* deeper warm band */
            --surface: #FFFFFF;
            /* cards */
            --line: rgba(0, 21, 36, .08);
            --line-2: rgba(0, 21, 36, .14);
            --radius: 14px;
            --radius-sm: 10px;
            --radius-lg: 22px;
            --shadow-sm: 0 1px 2px rgba(0, 21, 36, .05), 0 2px 6px rgba(0, 21, 36, .04);
            --shadow-md: 0 6px 18px rgba(0, 21, 36, .07), 0 2px 6px rgba(0, 21, 36, .05);
            --shadow-lg: 0 24px 60px rgba(0, 21, 36, .12), 0 8px 20px rgba(0, 21, 36, .07);
            --glow: 0 10px 28px rgba(255, 125, 0, .32);
            --max: 1200px;
            --ease: cubic-bezier(.22, .61, .36, 1);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%
        }

        body {
            font-family: 'Geist', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
            background: var(--bg);
            color: var(--muted);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none
        }

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

        .container {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 24px
        }

        section {
            position: relative
        }

        /* ---------- Typography helpers ---------- */
        h1,
        h2,
        h3,
        h4 {
            color: var(--ink);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1.12
        }

        h1 {
            font-size: clamp(2.3rem, 5vw, 3.6rem)
        }

        h2 {
            font-size: clamp(1.9rem, 3.6vw, 2.6rem)
        }

        h3 {
            font-size: 1.25rem;
            letter-spacing: -.01em
        }

        .accent-italic {
            font-family: 'Playfair Display', Georgia, serif;
            font-style: italic;
            font-weight: 600
        }

        .ink-grad {
            background: linear-gradient(95deg, var(--orange), var(--amber));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: .74rem;
            font-weight: 600;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--orange-dk);
        }

        .eyebrow::before {
            content: "";
            width: 26px;
            height: 2px;
            background: var(--orange);
            display: inline-block
        }

        .lead {
            font-size: 1.075rem;
            color: var(--muted);
            max-width: 60ch
        }

        .section-pad {
            padding: clamp(64px, 9vw, 116px) 0
        }

        .center {
            text-align: center
        }

        .section-head {
            max-width: 680px;
            margin: 0 auto 56px
        }

        .section-head.center {
            margin-inline: auto
        }

        .section-head h2 {
            margin: 16px 0 14px
        }

        /* ---------- Buttons ---------- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            font-weight: 600;
            font-size: .95rem;
            letter-spacing: .01em;
            padding: 14px 26px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            border: 1px solid transparent;
            transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
            white-space: nowrap;
        }

        .btn svg {
            width: 17px;
            height: 17px
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: var(--glow)
        }

        .btn-primary:hover {
            background: var(--orange-dk);
            transform: translateY(-2px);
            box-shadow: 0 16px 34px rgba(255, 125, 0, .4)
        }

        .btn-ghost {
            background: var(--surface);
            color: var(--ink);
            border-color: var(--line-2)
        }

        .btn-ghost:hover {
            border-color: var(--ink);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm)
        }

        .btn-lg {
            padding: 17px 34px;
            font-size: 1rem
        }

        .btn-light {
            background: #fff;
            color: var(--ink)
        }

        .btn-light:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 16px 34px rgba(0, 0, 0, .25)
        }

        .btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .32)
        }

        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, .06);
            transform: translateY(-2px)
        }

        /* =========================================================
   Top utility bar
   ========================================================= */
        .utility {
            background: var(--ink);
            color: #cdd6dd;
            font-size: .78rem;
            letter-spacing: .02em
        }

        .utility .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 38px
        }

        .utility .u-right {
            display: flex;
            gap: 22px;
            align-items: center
        }

        .utility b {
            color: #fff;
            font-weight: 600
        }

        .utility .dot {
            color: var(--orange);
            margin: 0 2px
        }

        @media(max-width:760px) {
            .utility .u-left {
                display: none
            }

            .utility .container {
                justify-content: center
            }
        }

        /* =========================================================
   Header / nav
   ========================================================= */
        .header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: rgba(250, 250, 247, .78);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid transparent;
            transition: box-shadow .3s, border-color .3s, background .3s
        }

        .header.scrolled {
            background: rgba(255, 255, 255, .9);
            box-shadow: var(--shadow-sm);
            border-color: var(--line)
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.18rem;
            color: var(--ink);
            letter-spacing: -.02em
        }

        .brand .mark {
            width: 30px;
            height: 34px;
            flex: none
        }

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

        .nav-links a {
            font-size: .92rem;
            font-weight: 500;
            color: var(--ink-2);
            position: relative;
            transition: color .2s
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            height: 2px;
            width: 0;
            background: var(--orange);
            transition: width .25s var(--ease)
        }

        .nav-links a:hover {
            color: var(--orange-dk)
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 14px
        }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 8px
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid var(--line);
            background: #fff;
            color: inherit;
            transition: transform .2s var(--ease), box-shadow .2s var(--ease)
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm)
        }

        .social-icons svg {
            width: 18px;
            height: 18px
        }

        .social-icons .yt { color: #FF0000 }
        .social-icons .li { color: #0A66C2 }
        .social-icons .ig { color: #E4405F }

        @media(max-width:940px) {
            .social-icons a {
                width: 34px;
                height: 34px
            }

            .social-icons svg {
                width: 16px;
                height: 16px
            }
        }


        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: 0;
            cursor: pointer;
            padding: 8px
        }

        .burger span {
            width: 24px;
            height: 2px;
            background: var(--ink);
            transition: .3s
        }

        @media(max-width:940px) {
            .nav-links {
                position: fixed;
                inset: 0 0 0 auto;
                top: 0;
                height: 100vh;
                width: min(320px, 82vw);
                background: #fff;
                flex-direction: column;
                justify-content: center;
                gap: 26px;
                transform: translateX(100%);
                transition: transform .35s var(--ease);
                box-shadow: var(--shadow-lg);
                padding: 40px
            }

            .nav-links.open {
                transform: translateX(0)
            }

            .nav-links a {
                font-size: 1.1rem
            }

            .burger {
                display: flex;
                z-index: 70
            }

            .nav-cta .btn:not(.burger) {
                display: none
            }
        }

        /* =========================================================
   Hero
   ========================================================= */
        .hero {
            padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 8vw, 108px);
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -160px;
            right: -140px;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(255, 125, 0, .16), transparent 62%);
            z-index: 0
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: -220px;
            left: -160px;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(0, 21, 36, .06), transparent 64%);
            z-index: 0
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 56px;
            align-items: center
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #fff;
            border: 1px solid var(--line);
            padding: 7px 14px 7px 8px;
            border-radius: 999px;
            font-size: .8rem;
            font-weight: 500;
            color: var(--ink-2);
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px
        }

        .hero-pill .tag {
            background: rgba(255, 125, 0, .12);
            color: var(--orange-dk);
            font-weight: 600;
            font-size: .72rem;
            padding: 3px 9px;
            border-radius: 999px;
            letter-spacing: .04em
        }

        .hero h1 {
            margin-bottom: 22px
        }

        .hero .lead {
            font-size: 1.12rem;
            margin-bottom: 32px
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 34px
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 22px;
            color: var(--muted);
            font-size: .86rem
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 7px
        }

        .hero-trust svg {
            width: 16px;
            height: 16px;
            color: var(--orange)
        }

        /* Hero report visual */
        .report-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 26px;
            position: relative;
            transform: rotate(.4deg)
        }

        .report-card .rc-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px
        }

        .rc-file {
            font-size: .72rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted-2);
            font-weight: 600
        }

        .rc-name {
            font-size: 1.06rem;
            font-weight: 700;
            color: var(--ink);
            margin-top: 6px
        }

        .rc-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(34, 160, 90, .1);
            color: #1f8a52;
            font-size: .74rem;
            font-weight: 600;
            padding: 6px 11px;
            border-radius: 999px
        }

        .rc-badge .pulse {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22a05a
        }

        .rc-score {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 18px;
            margin-bottom: 18px
        }

        .gauge {
            --p: 82;
            width: 74px;
            height: 74px;
            border-radius: 50%;
            flex: none;
            display: grid;
            place-items: center;
            background: conic-gradient(var(--orange) calc(var(--p)*1%), #eceae4 0)
        }

        .gauge::after {
            content: "";
            position: absolute;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff
        }

        .gauge b {
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
            color: var(--ink);
            font-weight: 700
        }

        .gauge-wrap {
            position: relative;
            display: grid;
            place-items: center
        }

        .rc-score .meta .k {
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--muted-2);
            font-weight: 600
        }

        .rc-score .meta .v {
            font-size: 1.05rem;
            color: var(--ink);
            font-weight: 700;
            margin: 2px 0 4px
        }

        .rc-score .meta small {
            font-size: .82rem;
            color: var(--muted)
        }

        .rc-list {
            display: flex;
            flex-direction: column;
            gap: 11px
        }

        .rc-row {
            display: flex;
            align-items: center;
            gap: 11px;
            font-size: .9rem;
            color: var(--ink-2)
        }

        .rc-row .ck {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(34, 160, 90, .12);
            display: grid;
            place-items: center;
            flex: none
        }

        .rc-row .ck svg {
            width: 12px;
            height: 12px;
            color: #22a05a
        }

        .rc-row.flag .ck {
            background: rgba(255, 125, 0, .14)
        }

        .rc-row.flag .ck svg {
            color: var(--orange-dk)
        }

        .rc-row .pill {
            margin-left: auto;
            font-size: .72rem;
            font-weight: 600;
            color: var(--muted-2)
        }

        .float-chip {
            position: absolute;
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            border-radius: 12px;
            padding: 11px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .8rem;
            font-weight: 600;
            color: var(--ink)
        }

        .float-chip svg {
            width: 18px;
            height: 18px;
            color: var(--orange)
        }

        .float-chip.fc-1 {
            top: -22px;
            left: -26px;
            animation: floaty 5s ease-in-out infinite
        }

        .float-chip.fc-2 {
            bottom: -24px;
            right: -20px;
            animation: floaty 6s ease-in-out infinite .6s
        }

        @keyframes floaty {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-9px)
            }
        }

        @media(max-width:940px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 48px
            }

            .hero-visual {
                max-width: 460px;
                margin: 0 auto;
                width: 100%
            }

            .float-chip.fc-1 {
                left: -10px
            }

            .float-chip.fc-2 {
                right: -6px
            }
        }

        /* =========================================================
   Stat strip
   ========================================================= */
        .stats {
            background: var(--ink);
            color: #fff
        }

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

        .stat {
            text-align: center;
            position: relative
        }

        .stat:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -12px;
            top: 14%;
            height: 72%;
            width: 1px;
            background: rgba(255, 255, 255, .12)
        }

        .stat .num {
            font-size: clamp(1.7rem, 3vw, 2.3rem);
            font-weight: 700;
            color: #fff;
            letter-spacing: -.02em
        }

        .stat .num span {
            color: var(--orange)
        }

        .stat .lbl {
            font-size: .82rem;
            color: #9fb0bb;
            margin-top: 4px;
            letter-spacing: .02em
        }

        @media(max-width:680px) {
            .stats .grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 34px 20px
            }

            .stat:nth-child(2)::after {
                display: none
            }
        }

        /* =========================================================
   Generic card grid
   ========================================================= */
        .card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--line-2)
        }

        .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            margin-bottom: 20px;
            background: linear-gradient(150deg, rgba(255, 125, 0, .14), rgba(255, 168, 61, .1));
            border: 1px solid rgba(255, 125, 0, .2)
        }

        .icon-box svg {
            width: 24px;
            height: 24px;
            color: var(--orange-dk)
        }

        .card h3 {
            margin-bottom: 10px
        }

        .card p {
            font-size: .94rem
        }

        /* Problem section */
        .problem {
            background: var(--bg-2)
        }

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

        .prob {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 26px;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: transform .3s var(--ease), box-shadow .3s var(--ease)
        }

        .prob:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md)
        }

        .prob .ico {
            width: 44px;
            height: 44px;
            border-radius: 11px;
            display: grid;
            place-items: center;
            margin-bottom: 16px;
            background: rgba(220, 53, 69, .08)
        }

        .prob .ico svg {
            width: 22px;
            height: 22px;
            color: #d64550
        }

        .prob h3 {
            font-size: 1.08rem;
            margin-bottom: 8px
        }

        .prob p {
            font-size: .9rem
        }

        @media(max-width:860px) {
            .prob-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:560px) {
            .prob-grid {
                grid-template-columns: 1fr
            }
        }

        /* Whats included */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px
        }

        @media(max-width:1040px) {
            .included-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:540px) {
            .included-grid {
                grid-template-columns: 1fr
            }
        }

        /* =========================================================
   Process
   ========================================================= */
        .process {
            background: var(--surface)
        }

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

        .steps::before {
            content: "";
            position: absolute;
            top: 27px;
            left: 11%;
            right: 11%;
            height: 2px;
            background: linear-gradient(90deg, var(--orange), rgba(255, 125, 0, .25));
            z-index: 0
        }

        .step {
            position: relative;
            z-index: 1;
            text-align: left
        }

        .step .dot {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--orange);
            display: grid;
            place-items: center;
            font-weight: 700;
            color: var(--orange-dk);
            box-shadow: 0 6px 16px rgba(255, 125, 0, .18);
            margin-bottom: 18px
        }

        .step .sn {
            font-size: .72rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--muted-2);
            font-weight: 600;
            margin-bottom: 6px
        }

        .step h3 {
            font-size: 1.08rem;
            margin-bottom: 8px
        }

        .step p {
            font-size: .9rem
        }

        @media(max-width:860px) {
            .steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 34px 24px
            }

            .steps::before {
                display: none
            }
        }

        @media(max-width:480px) {
            .steps {
                grid-template-columns: 1fr
            }
        }

        /* =========================================================
   Report table
   ========================================================= */
        .report-sec {
            background: var(--bg-2)
        }

        .table-wrap {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md)
        }

        table {
            width: 100%;
            border-collapse: collapse
        }

        thead th {
            background: var(--ink);
            color: #fff;
            text-align: left;
            font-size: .74rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            font-weight: 600;
            padding: 18px 22px
        }

        tbody td {
            padding: 18px 22px;
            border-top: 1px solid var(--line);
            font-size: .92rem;
            vertical-align: top
        }

        tbody tr:nth-child(even) {
            background: #fcfbf8
        }

        tbody tr:hover {
            background: rgba(255, 125, 0, .04)
        }

        td.sec {
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap
        }

        td.sec .bar {
            display: inline-block;
            width: 3px;
            height: 15px;
            background: var(--orange);
            margin-right: 10px;
            vertical-align: -2px;
            border-radius: 2px
        }

        td.why {
            color: var(--muted)
        }

        .table-scroll {
            overflow-x: auto
        }

        @media(max-width:760px) {
            .table-scroll table {
                min-width: 680px
            }
        }

        /* =========================================================
   Pricing
   ========================================================= */
        .pricing {
            background: var(--surface)
        }

        .price-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 40px;
            align-items: center
        }

        .price-left h2 {
            margin: 14px 0 16px
        }

        .receive {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 24px;
            margin-top: 24px
        }

        .receive h4 {
            font-size: 1rem;
            margin-bottom: 8px
        }

        .receive p {
            font-size: .92rem
        }

        .receive .ship {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            font-size: .84rem;
            font-weight: 600;
            color: var(--orange-dk)
        }

        .receive .ship svg {
            width: 16px;
            height: 16px
        }

        .price-card {
            background: linear-gradient(180deg, #fff, #fffdf9);
            border: 1px solid rgba(255, 125, 0, .28);
            border-radius: var(--radius-lg);
            padding: 34px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden
        }

        .price-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--amber))
        }

        .pc-tag {
            display: inline-block;
            font-size: .72rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--orange-dk);
            margin-bottom: 6px
        }

        .pc-title {
            font-size: 1.5rem;
            color: var(--ink);
            font-weight: 700;
            margin-bottom: 8px
        }

        .pc-sub {
            font-size: .92rem;
            margin-bottom: 22px
        }

        .pc-price {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 6px
        }

        .pc-price .amt {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -.03em;
            background: linear-gradient(95deg, var(--orange), var(--amber));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

        .pc-price .cur {
            font-size: 1rem;
            font-weight: 600;
            color: var(--muted)
        }

        .pc-price .old {
            font-size: 1.1rem;
            color: var(--muted-2);
            text-decoration: line-through
        }

        .pc-deliver {
            font-size: .84rem;
            font-weight: 600;
            color: var(--ink-2);
            margin-bottom: 22px
        }

        .pc-feats {
            list-style: none;
            margin-bottom: 26px;
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .pc-feats li {
            display: flex;
            gap: 11px;
            align-items: flex-start;
            font-size: .92rem;
            color: var(--ink-2)
        }

        .pc-feats svg {
            width: 18px;
            height: 18px;
            color: var(--orange);
            flex: none;
            margin-top: 2px
        }

        .price-card .btn {
            width: 100%
        }

        .pc-fine {
            text-align: center;
            font-size: .78rem;
            color: var(--muted-2);
            margin-top: 14px
        }

        @media(max-width:900px) {
            .price-grid {
                grid-template-columns: 1fr;
                gap: 34px
            }
        }

        /* =========================================================
   FAQ
   ========================================================= */
        .faq {
            background: var(--bg-2)
        }

        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            overflow: hidden;
            transition: box-shadow .25s, border-color .25s
        }

        .faq-item.open {
            box-shadow: var(--shadow-md);
            border-color: rgba(255, 125, 0, .3)
        }

        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: 0;
            cursor: pointer;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--ink);
            font-family: inherit
        }

        .faq-q .pm {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(255, 125, 0, .1);
            display: grid;
            place-items: center;
            flex: none;
            transition: .3s
        }

        .faq-q .pm svg {
            width: 14px;
            height: 14px;
            color: var(--orange-dk);
            transition: transform .3s
        }

        .faq-item.open .pm {
            background: var(--orange)
        }

        .faq-item.open .pm svg {
            color: #fff;
            transform: rotate(45deg)
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s var(--ease)
        }

        .faq-a p {
            padding: 0 24px 22px;
            font-size: .94rem;
            color: var(--muted)
        }

        /* =========================================================
   Contact
   ========================================================= */
        .contact {
            background: var(--surface)
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 48px;
            align-items: start
        }

        .contact-left h2 {
            margin: 14px 0 16px
        }

        .contact-points {
            list-style: none;
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 18px
        }

        .contact-points li {
            display: flex;
            gap: 14px;
            align-items: flex-start
        }

        .contact-points .ci {
            width: 42px;
            height: 42px;
            border-radius: 11px;
            background: rgba(255, 125, 0, .1);
            display: grid;
            place-items: center;
            flex: none
        }

        .contact-points .ci svg {
            width: 20px;
            height: 20px;
            color: var(--orange-dk)
        }

        .contact-points .k {
            font-weight: 600;
            color: var(--ink);
            font-size: .96rem
        }

        .contact-points .v {
            font-size: .88rem;
            color: var(--muted)
        }

        .form {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-md)
        }

        .field {
            margin-bottom: 18px
        }

        .field label {
            display: block;
            font-size: .82rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 7px
        }

        .field label .req {
            color: var(--orange)
        }

        .field input,
        .field textarea {
            width: 100%;
            padding: 13px 15px;
            border: 1px solid var(--line-2);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: .95rem;
            color: var(--ink);
            background: #fff;
            transition: border-color .2s, box-shadow .2s
        }

        .field input:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(255, 125, 0, .14)
        }

        .field textarea {
            resize: vertical;
            min-height: 120px
        }

        .form .btn {
            width: 100%
        }

        .form-note {
            font-size: .8rem;
            color: var(--muted-2);
            text-align: center;
            margin-top: 14px
        }

        @media(max-width:860px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 36px
            }
        }

        /* =========================================================
   Final CTA
   ========================================================= */
        .final {
            padding: 0 0 clamp(64px, 9vw, 110px)
        }

        .final-band {
            background: linear-gradient(135deg, var(--ink), #072233);
            border-radius: var(--radius-lg);
            padding: clamp(44px, 6vw, 68px);
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg)
        }

        .final-band::before {
            content: "";
            position: absolute;
            top: -120px;
            right: -80px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 125, 0, .32), transparent 60%)
        }

        .final-band::after {
            content: "";
            position: absolute;
            bottom: -140px;
            left: -90px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 168, 61, .16), transparent 62%)
        }

        .final-band .inner {
            position: relative;
            z-index: 1
        }

        .final-band h2 {
            color: #fff;
            margin-bottom: 16px
        }

        .final-band h2 .accent-italic {
            color: var(--amber)
        }

        .final-band p {
            color: #c5d2da;
            max-width: 56ch;
            margin: 0 auto 30px;
            font-size: 1.05rem
        }

        .final-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap
        }

        /* =========================================================
   Footer
   ========================================================= */
        .footer {
            background: var(--ink);
            color: #9fb0bb;
            padding: 64px 0 28px;
            font-size: .9rem
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
            gap: 40px;
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(255, 255, 255, .1)
        }

        .footer .brand {
            color: #fff;
            margin-bottom: 16px
        }

        .footer .f-blurb {
            max-width: 34ch;
            line-height: 1.7
        }

        .footer h5 {
            color: #fff;
            font-size: .76rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 18px;
            font-weight: 600
        }

        .footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 11px
        }

        .footer ul a {
            transition: color .2s
        }

        .footer ul a:hover {
            color: var(--orange)
        }

        .footer address {
            font-style: normal;
            line-height: 1.7
        }

        .socials {
            display: flex;
            gap: 12px;
            margin-top: 14px
        }

        .socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .06);
            display: grid;
            place-items: center;
            transition: .25s
        }

        .socials a:hover {
            background: var(--orange);
            transform: translateY(-2px)
        }

        .socials svg {
            width: 18px;
            height: 18px;
            color: #fff
        }

        .f-yt {
            font-size: .84rem;
            line-height: 1.6;
            margin-top: 14px;
            color: #8898a3
        }

        .foot-bottom {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 24px;
            font-size: .82rem;
            color: #7f8e99
        }

        @media(max-width:860px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 34px
            }
        }

        @media(max-width:520px) {
            .footer-grid {
                grid-template-columns: 1fr
            }
        }

        /* =========================================================
   Scroll reveal
   ========================================================= */
        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .7s var(--ease), transform .7s var(--ease)
        }

        .reveal.in {
            opacity: 1;
            transform: none
        }

        @media(prefers-reduced-motion:reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none
            }

            .float-chip {
                animation: none !important
            }
        }

        /* =========================================================
   Video
   ========================================================= */
        .video-section {
            background: var(--bg-2);
        }
        .video-wrap {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--line);
        }
        .video-wrap iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }
        .video-wrap::before {
            content: "";
            display: block;
            padding-top: 56.25%;
        }
