/* ---------- Design tokens ---------- */
    :root {
      --brand:        #2b2bf0;
      --brand-600:    #1f1fdc;
      --brand-700:    #1414c8;
      --sky:          #17a9e0;
      --sky-600:      #0f8fc4;
      --ink:          #171a26;
      --ink-soft:     #3c4356;
      --muted:        #5c6579;
      --line:         #e6eaf2;
      --line-soft:    #eef1f7;
      --bg:           #ffffff;
      --bg-soft:      #f6f8fc;
      --bg-tint:      #eef2fb;
      --card:         #ffffff;
      --good:         #17936a;
      --amber:        #b07c22;
      --white:        #ffffff;

      --grad-brand:   linear-gradient(120deg, #1b1bd6 0%, #3a2ff0 46%, #17a9e0 100%);
      --grad-soft:    linear-gradient(180deg, #f3f5ff 0%, #ffffff 100%);

      --shadow-sm:    0 1px 2px rgba(16,20,40,.06), 0 1px 3px rgba(16,20,40,.05);
      --shadow-md:    0 8px 24px -8px rgba(23,26,45,.16), 0 2px 6px rgba(23,26,45,.06);
      --shadow-lg:    0 32px 64px -24px rgba(20,20,120,.30), 0 8px 24px -8px rgba(23,26,45,.14);
      --shadow-brand: 0 18px 40px -14px rgba(43,43,240,.55);

      --radius:       16px;
      --radius-lg:    24px;
      --maxw:         1180px;

      --font-head: 'Sora', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    /* ---------- Reset / base ---------- */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 0; }
    p { margin: 0; }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    ul { margin: 0; padding: 0; list-style: none; }
    button { font-family: inherit; cursor: pointer; }
    :focus-visible { outline: 3px solid rgba(43,43,240,.45); outline-offset: 2px; border-radius: 8px; }

    .wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
    .section { padding-block: clamp(64px, 9vw, 120px); }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: var(--font-head); font-weight: 600; font-size: 15px;
      padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
      transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn svg { width: 18px; height: 18px; }
    .btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
    .btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); }
    .btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
    .btn-ghost:hover { border-color: #cfd6e6; transform: translateY(-1px); }
    .btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
    .btn-light:hover { background: rgba(255,255,255,.22); }
    .btn-white { background: #fff; color: var(--brand-700); }
    .btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-lg { padding: 16px 28px; font-size: 16px; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .02em;
      color: var(--brand-600); background: var(--bg-tint);
      padding: 7px 13px; border-radius: 999px; border: 1px solid #dfe4fb;
    }
    .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 3px rgba(23,169,224,.2); }

    /* ---------- Header ---------- */
    header.site {
      position: sticky; top: 0; z-index: 60;
      background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
    }
    header.site.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(16,20,40,.04); }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
    .brand .logo { width: 38px; height: 38px; border-radius: 11px; background: #fff; padding: 4px; box-shadow: var(--shadow-sm); object-fit: contain; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); padding: 9px 14px; border-radius: 10px; transition: background .15s, color .15s; }
    .nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
    .nav-cta { display: flex; align-items: center; gap: 10px; }
    .nav-cta .login { font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 9px 12px; }
    .nav-cta .login:hover { color: var(--ink); }
    .menu-toggle { display: none; background: #fff; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; }
    .menu-toggle svg { width: 22px; height: 22px; }

    @media (max-width: 900px) {
      .nav-links, .nav-cta .login, .nav-cta .desktop-cta { display: none; }
      .menu-toggle { display: inline-flex; }
    }
    /* Mobile drawer */
    .drawer { position: fixed; inset: 0; z-index: 70; display: none; }
    .drawer.open { display: block; }
    .drawer-scrim { position: absolute; inset: 0; background: rgba(16,20,40,.4); backdrop-filter: blur(2px); }
    .drawer-panel {
      position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
      background: #fff; padding: 22px; box-shadow: var(--shadow-lg);
      display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .25s ease;
    }
    .drawer.open .drawer-panel { transform: translateX(0); }
    .drawer-panel a.m-link { padding: 14px 12px; border-radius: 12px; font-weight: 600; font-size: 17px; color: var(--ink); }
    .drawer-panel a.m-link:hover { background: var(--bg-soft); }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .drawer-panel .btn { width: 100%; margin-top: 6px; }

    /* ---------- Announcement bar ---------- */
    .announce { background: var(--grad-brand); color: #fff; text-align: center; font-size: 13.5px; font-weight: 500; padding: 9px 16px; }
    .announce a { text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
    .announce .tag { background: rgba(255,255,255,.22); border-radius: 6px; padding: 2px 8px; font-weight: 700; font-size: 12px; margin-right: 8px; }

    /* ---------- Hero ---------- */
    .hero { position: relative; overflow: hidden; background: var(--grad-soft); }
    .hero::before {
      content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
      background:
        radial-gradient(48% 60% at 78% 8%, rgba(23,169,224,.20), transparent 60%),
        radial-gradient(50% 60% at 16% 0%, rgba(43,43,240,.18), transparent 60%);
      pointer-events: none;
    }
    .hero .wrap { position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-block: clamp(56px, 8vw, 92px); }
    .hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; letter-spacing: -.03em; }
    .hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .hero .sub { margin-top: 22px; font-size: clamp(17px, 1.9vw, 20px); color: var(--ink-soft); max-width: 34em; }
    .hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-trust { margin-top: 20px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 13.5px; flex-wrap: wrap; }
    .hero-trust .check { display: inline-flex; align-items: center; gap: 6px; }
    .hero-trust svg { width: 16px; height: 16px; color: var(--good); }
    @media (max-width: 940px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { order: 2; }
    }
    .hero-visual { position: relative; }

    /* ---------- Product mockup ---------- */
    .mock {
      position: relative; border-radius: 20px; background: #fff; border: 1px solid var(--line);
      box-shadow: var(--shadow-lg); overflow: hidden;
    }
    .mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--line-soft); background: #fbfcfe; }
    .mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
    .mock-bar .r { background: #ff6058; } .mock-bar .y { background: #ffbd2e; } .mock-bar .g { background: #28c840; }
    .mock-bar .url { margin-left: 10px; font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px; }
    .mock-body { padding: 18px; background:
        radial-gradient(120% 100% at 100% 0%, rgba(23,169,224,.06), transparent 55%),
        #fbfcff; }
    .dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .dash-head h4 { font-size: 15px; }
    .dash-head .pill { font-size: 11px; font-weight: 600; color: var(--brand-600); background: var(--bg-tint); padding: 4px 9px; border-radius: 999px; }
    .kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
    .kpi { border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; background: #fff; }
    .kpi .l { font-size: 11px; color: var(--muted); font-weight: 500; }
    .kpi .v { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-top: 3px; }
    .kpi .v.warn { color: var(--amber); } .kpi .v.good { color: var(--good); }
    .rows { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
    .row { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-top: 1px solid var(--line-soft); font-size: 13px; }
    .row:first-child { border-top: none; }
    .row .job { display: flex; flex-direction: column; }
    .row .job b { font-weight: 600; }
    .row .job span { color: var(--muted); font-size: 11.5px; }
    .badge { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
    .badge.sched { background: #eef2fb; color: var(--brand-600); }
    .badge.prog { background: #e6f4fb; color: var(--sky-600); }
    .badge.done { background: #e6f5ee; color: var(--good); }
    /* Floating cards */
    .float { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 14px; }
    .float-ai { left: -26px; bottom: 42px; width: 230px; }
    .float-ai .t { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--brand-600); }
    .float-ai .t .spark { width: 20px; height: 20px; border-radius: 7px; background: var(--grad-brand); display: inline-flex; align-items: center; justify-content: center; }
    .float-ai .t .spark svg { width: 12px; height: 12px; color: #fff; }
    .float-ai .amount { font-family: var(--font-head); font-weight: 800; font-size: 26px; margin-top: 8px; letter-spacing: -.02em; }
    .float-ai .meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
    .float-paid { right: -20px; top: 74px; display: flex; align-items: center; gap: 10px; }
    .float-paid .ico { width: 34px; height: 34px; border-radius: 10px; background: #e6f5ee; display: inline-flex; align-items: center; justify-content: center; }
    .float-paid .ico svg { width: 18px; height: 18px; color: var(--good); }
    .float-paid .l { font-size: 11px; color: var(--muted); }
    .float-paid .v { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
    @media (max-width: 520px) { .float-ai { left: -8px; width: 200px; } .float-paid { right: -6px; } }
    @media (max-width: 380px) { .float-ai, .float-paid { display: none; } }

    /* ---------- Stat / trust bar ---------- */
    .statbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
    .statbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 34px; }
    .stat { text-align: center; }
    .stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.02em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .stat .c { color: var(--muted); font-size: 14px; margin-top: 4px; }
    @media (max-width: 680px) { .statbar .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

    /* ---------- Section headings ---------- */
    .head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: 52px; }
    .head.left { margin-inline: 0; text-align: left; }
    .head h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; letter-spacing: -.025em; margin-top: 16px; }
    .head p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }

    /* ---------- Feature spotlight (alternating) ---------- */
    .spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .spotlight + .spotlight { margin-top: clamp(64px, 8vw, 104px); }
    .spotlight.rev .s-media { order: 2; }
    .s-copy h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; margin-top: 16px; }
    .s-copy p.lead { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }
    .s-list { margin-top: 22px; display: grid; gap: 13px; }
    .s-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
    .s-list .ck { flex: none; width: 22px; height: 22px; border-radius: 7px; background: var(--bg-tint); color: var(--brand-600); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
    .s-list .ck svg { width: 13px; height: 13px; }
    @media (max-width: 900px) {
      .spotlight { grid-template-columns: 1fr; gap: 34px; }
      .spotlight.rev .s-media { order: 0; }
    }

    /* media cards */
    .media-card { border-radius: 20px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-md); overflow: hidden; }
    .media-top { padding: 16px 18px; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; background: #fbfcfe; }
    .media-top .ttl { font-family: var(--font-head); font-weight: 700; font-size: 14px; }
    .media-in { padding: 18px; }

    /* Vision estimate demo */
    /* Full-width photo/scanner on top, detected rooms as chips below (nothing clipped). */
    .vis .photo { border-radius: 14px; aspect-ratio: 16/9; position: relative; overflow: hidden; border: 1px solid var(--line);
      /* Real kitchen photo (assets/kitchen.jpg). Fallback illustration: assets/kitchen.svg */
      background: #e9edf2 url("/assets/kitchen.jpg") 50% 42% / cover no-repeat; }
    .vis .photo .scan { position: absolute; left: 0; right: 0; top: 0; height: 30%; background: linear-gradient(180deg, rgba(43,43,240,.24), rgba(23,169,224,.03)); border-bottom: 2px solid rgba(43,43,240,.7); box-shadow: 0 0 22px rgba(43,43,240,.35); animation: scan 3s ease-in-out infinite; }
    @keyframes scan { 0%,100% { top: 0; } 50% { top: 70%; } }
    @media (prefers-reduced-motion: reduce) { .vis .photo .scan { animation: none; top: 34%; } }
    .vis .photo .tag { position: absolute; bottom: 10px; left: 10px; font-size: 11px; font-weight: 600; color: #fff; background: rgba(23,26,38,.72); padding: 4px 9px; border-radius: 7px; backdrop-filter: blur(4px); }
    .vis .detect { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 12px; }
    .vis .detect .di { display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; font-size: 13px; background: #fff; }
    .vis .detect .di.full { grid-column: 1 / -1; }
    .vis .detect .di b { font-weight: 600; }
    .vis .detect .di .q { color: var(--muted); white-space: nowrap; }
    .vis-total { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: 12px; background: var(--grad-brand); color: #fff; }
    .vis-total .l { font-size: 12.5px; opacity: .9; }
    .vis-total .v { font-family: var(--font-head); font-weight: 800; font-size: 24px; }
    @media (max-width: 520px) { .vis .detect { grid-template-columns: 1fr; } }

    /* Tiered proposal demo */
    .tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
    .tier { border: 1px solid var(--line); border-radius: 13px; padding: 13px; text-align: center; background: #fff; }
    .tier.best { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43,43,240,.12); position: relative; }
    .tier.best::before { content: "Recommended"; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); font-size: 9.5px; font-weight: 700; color: #fff; background: var(--brand); padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
    .tier .name { font-family: var(--font-head); font-weight: 700; font-size: 13px; }
    .tier .price { font-family: var(--font-head); font-weight: 800; font-size: 22px; margin: 6px 0 2px; }
    .tier .u { font-size: 10.5px; color: var(--muted); }

    /* ---------- Bento feature grid ---------- */
    .bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
    .fcard { grid-column: span 2; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
    .fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d6ddee; }
    .fcard .fi { width: 46px; height: 46px; border-radius: 13px; background: var(--bg-tint); color: var(--brand-600); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .fcard .fi svg { width: 23px; height: 23px; }
    .fcard h3 { font-size: 18px; font-weight: 700; }
    .fcard p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
    .fcard.wide { grid-column: span 3; }
    .fcard.half { grid-column: span 3; }
    @media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .fcard, .fcard.wide, .fcard.half { grid-column: span 1; } }
    @media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .fcard, .fcard.wide, .fcard.half { grid-column: span 1; } }

    /* ---------- How it works ---------- */
    .how { background: var(--bg-soft); border-block: 1px solid var(--line); }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
    .step { position: relative; padding-top: 8px; }
    .step .num { font-family: var(--font-head); font-weight: 800; font-size: 15px; width: 40px; height: 40px; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--brand-600); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
    .step h3 { font-size: 18px; margin-top: 16px; }
    .step p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
    .step:not(:last-child) .num::after { content: ""; position: absolute; top: 28px; left: 52px; right: -8px; height: 2px; background: linear-gradient(90deg, var(--line), transparent); }
    @media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } .step .num::after { display: none; } }
    @media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

    /* ---------- Academy ---------- */
    .academy { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); }
    .academy::before { content: ""; position: absolute; inset: auto -10% -40% auto; width: 520px; height: 520px; background: radial-gradient(circle, rgba(43,43,240,.5), transparent 62%); pointer-events: none; }
    .academy::after { content: ""; position: absolute; inset: -30% auto auto -12%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(23,169,224,.34), transparent 62%); pointer-events: none; }
    .academy .a-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
    .academy h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; }
    .academy .eyebrow { background: rgba(255,255,255,.1); color: #cdd6ff; border-color: rgba(255,255,255,.18); }
    .academy p.lead { margin-top: 16px; color: #c3cad9; font-size: 17px; }
    .academy .a-list { margin-top: 22px; display: grid; gap: 12px; }
    .academy .a-list li { display: flex; gap: 11px; font-size: 15px; color: #dfe4ee; align-items: flex-start; }
    .academy .a-list svg { width: 20px; height: 20px; color: var(--sky); flex: none; margin-top: 1px; }
    .cert { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 24px; backdrop-filter: blur(6px); }
    .cert .ribbon { width: 54px; height: 54px; border-radius: 15px; background: var(--grad-brand); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); }
    .cert .ribbon svg { width: 28px; height: 28px; color: #fff; }
    .cert .ct { font-size: 12px; color: #9aa4bd; margin-top: 16px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
    .cert .cn { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; margin-top: 4px; }
    .cert .cprog { margin-top: 18px; }
    .cert .cbar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; }
    .cert .cbar span { display: block; height: 100%; width: 82%; background: var(--grad-brand); border-radius: 999px; }
    .cert .cmeta { display: flex; justify-content: space-between; font-size: 12px; color: #9aa4bd; margin-top: 8px; }
    @media (max-width: 860px) { .academy .a-grid { grid-template-columns: 1fr; gap: 32px; } }

    /* ---------- Integrations / security strip ---------- */
    .trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .tchip { display: flex; gap: 13px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
    .tchip .ti { width: 40px; height: 40px; border-radius: 11px; background: var(--bg-tint); color: var(--brand-600); display: inline-flex; align-items: center; justify-content: center; flex: none; }
    .tchip .ti svg { width: 20px; height: 20px; }
    .tchip b { font-family: var(--font-head); font-size: 14.5px; }
    .tchip p { font-size: 13px; color: var(--muted); margin-top: 3px; }
    @media (max-width: 900px) { .trust-strip { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 480px) { .trust-strip { grid-template-columns: 1fr; } }

    /* ---------- Testimonials ---------- */
    .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
    .quote .stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
    .quote blockquote { margin: 14px 0 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; flex: 1; }
    .quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
    .quote .av { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; }
    .quote .who b { font-size: 14px; display: block; }
    .quote .who span { font-size: 12.5px; color: var(--muted); }
    .oc-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--bg-tint); color: var(--brand-600); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .oc-ico svg { width: 23px; height: 23px; }
    .quote h3.oc-h { font-size: 18px; font-weight: 700; }
    .quote p.oc-p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
    @media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

    /* ---------- Pricing ---------- */
    .pricing { background: var(--bg-soft); border-block: 1px solid var(--line); }
    .toggle { display: inline-flex; align-items: center; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px; margin: 22px auto 0; box-shadow: var(--shadow-sm); }
    .toggle button { border: none; background: transparent; padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--muted); transition: all .2s; }
    .toggle button.active { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
    .toggle .save { font-size: 11.5px; font-weight: 700; color: var(--good); background: #e6f5ee; padding: 2px 7px; border-radius: 999px; margin-left: 2px; }
    .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; align-items: start; }
    .plan { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
    .plan.flag { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); position: relative; }
    .plan.flag .flag-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 14px; border-radius: 999px; box-shadow: var(--shadow-brand); }
    .plan .pname { font-family: var(--font-head); font-weight: 700; font-size: 20px; }
    .plan .pblurb { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
    .plan .pprice { margin-top: 20px; display: flex; align-items: baseline; gap: 4px; }
    .plan .pprice .amt { font-family: var(--font-head); font-weight: 800; font-size: 44px; letter-spacing: -.03em; }
    .plan .pprice .per { font-size: 14px; color: var(--muted); }
    .plan .pseats { font-size: 13px; color: var(--muted); margin-top: 6px; }
    .plan .btn { margin-top: 22px; width: 100%; }
    .plan ul.pf { margin-top: 22px; display: grid; gap: 11px; }
    .plan ul.pf li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); align-items: flex-start; }
    .plan ul.pf .ck { flex: none; width: 20px; height: 20px; border-radius: 6px; background: #e6f5ee; color: var(--good); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
    .plan ul.pf .ck svg { width: 12px; height: 12px; }
    .plan .pnote { font-size: 12.5px; color: var(--muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
    @media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

    /* ---------- FAQ ---------- */
    .faq { max-width: 800px; margin-inline: auto; }
    .qa { border-bottom: 1px solid var(--line); }
    .qa button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 22px 4px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
    .qa button .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--bg-tint); color: var(--brand-600); display: inline-flex; align-items: center; justify-content: center; transition: transform .25s ease; }
    .qa.open button .ic { transform: rotate(45deg); }
    .qa .a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .qa .a p { padding: 0 4px 22px; font-size: 15.5px; color: var(--ink-soft); max-width: 66ch; }

    /* ---------- Final CTA ---------- */
    .cta-band { position: relative; overflow: hidden; background: var(--grad-brand); border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 80px); text-align: center; color: #fff; }
    .cta-band::before { content: ""; position: absolute; inset: 0; background:
        radial-gradient(40% 60% at 80% 10%, rgba(255,255,255,.18), transparent 60%),
        radial-gradient(40% 60% at 12% 100%, rgba(255,255,255,.12), transparent 60%); }
    .cta-band > * { position: relative; z-index: 1; }
    .cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -.03em; }
    .cta-band p { margin-top: 16px; font-size: 18px; color: rgba(255,255,255,.9); max-width: 40em; margin-inline: auto; }
    .cta-band .btns { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .cta-band .fine { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.75); }

    /* ---------- Footer ---------- */
    footer.site { background: #0f1118; color: #aeb6c6; padding-block: 56px 30px; }
    .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
    footer .brand { color: #fff; }
    footer .fdesc { margin-top: 14px; font-size: 14px; color: #8b93a6; max-width: 30ch; }
    footer h5 { color: #fff; font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
    footer ul.fl li { margin-bottom: 10px; }
    footer ul.fl a { font-size: 14px; color: #aeb6c6; transition: color .15s; }
    footer ul.fl a:hover { color: #fff; }
    .foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7c8598; }
    .foot-bottom .disc { max-width: 62ch; }
    @media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
    @media (max-width: 460px) { .foot-grid { grid-template-columns: 1fr; } }

    /* ---------- Reveal on scroll (progressive: only hides when JS is active) ---------- */
    .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
    .js .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

    /* ---------- Mobile tap targets and forms (2026-09-12 pass) ---------- */
    .form-two { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
    @media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
    form[name="contact"] input, form[name="contact"] textarea { width: 100%; min-width: 0; box-sizing: border-box; }
    a[data-cta] { display: inline-block; padding: 10px 6px; margin: -10px -6px; }
    .toggle button { padding: 11px 18px; }
    footer ul.fl li { margin-bottom: 2px; }
    footer ul.fl a { display: inline-block; padding: 7px 0; }
    .foot-bottom a { display: inline-block; padding: 8px 0; }
    a[href^="mailto:"] { display: inline-block; padding: 6px 0; margin: -6px 0; }
