/* ==========================================================================
   Valunxt — UAE Corporate Tax deadline landing page  (v3, on-brand rebuild)
   /corporate-tax-deadline-2026/

   Served by plain Apache (see ../.htaccess), outside the Next.js app that runs
   the rest of valunxt.com, so this sheet is self-contained apart from three
   files it borrows from the main site:

     /assets/css/valunxt-uae-face.css   Inter, and the 400 heading weight
     /assets/css/valunxt-uae-type.css   the real h1–h6 scale, restated below
     /assets/css/valunxt-landing.css    .vxn-foot, and the two safe primitives
                                        this page also uses directly:
                                        .vxn-band__eyebrow and .vxn-band__pill
                                        (+ --solid/--ghost/--accent)

   v3 (20260918) — rebuilt after "very poor and very bad" on v2's invented
   look (aurora canvas, SVG countdown ring, glass modal). Before touching a
   line, every section pattern currently LIVE on valunxt.com was read from
   its own source — not guessed, not copied from a doc comment for a
   component that turned out to be dead CSS. Two things came out of that:

   WHAT'S ACTUALLY LIVE vs. DOCUMENTED-BUT-GONE. valunxt-landing.css still
   carries full rules for .vxn-whyus, .vxn-proof, .vxn-spotlight, .vxn-careers,
   .vxn-post and .vxn-xp — all real, all dated, none of them present in the
   homepage's current HTML. Modelling on any of those would mean copying a
   design the client already moved past. Checked directly against the live
   markup of https://valunxt.com/en-ae/ before deciding what to port:
   .vxn-trio, .vxn-impact, .vxn-figs, .vxn-ready and .vxn-band__pill /
   .vxn-band__eyebrow are what actually renders today.

   PORTED, NOT IMPORTED. Two classes are safe to use verbatim — .vxn-foot and
   .vxn-band__pill/__eyebrow are self-contained utilities with no Elementor
   container or .vxn-ae-home ancestor dependency, confirmed by reading their
   rules. .vxn-trio, .vxn-impact and .vxn-figs are NOT — their real CSS leans
   on `.e-con-inner`, `.vxn-ae-home` scoping and `!important` wars against a
   theme cascade this static page doesn't carry. So their *materials* (the
   18–24px radii, the exact shadows, the gradient tokens, the card anatomy)
   are ported here under the vxct- namespace rather than invoked by class
   name, which would silently half-work with no way to catch it without a
   browser on this box.

   ONE EXCEPTION, PORTED IN FULL: .vxn-ready, "Ready when you are" — the
   site's real closing CTA band, icon-circle route rows in a white card with
   a gradient fill that sweeps in on hover. Read start to finish, including
   its own doc comment explaining why a clip-path sweep replaced an earlier
   colour-fade version. It maps onto this page's final CTA almost exactly
   (multiple named routes into one action), so it is rebuilt faithfully
   rather than loosely adapted — same anatomy, same hover mechanic, same
   proportions, under vxct- names for the reason above.

   DROPPED FROM v2, on the same evidence: the aurora canvas (nothing like it
   exists anywhere on the real site — every dark band uses a flat gradient
   or a masked photograph, never particle motion), the SVG countdown ring
   (no ring/dial exists in the real design language; .vxn-figs sets the
   precedent for presenting a figure — a plain large numeral), and the
   frosted-glass modal chrome (the real glass recipe from .vxn-whyus__panel
   is gone from the live design; kept only the plain white card materials
   that ARE still live).
   ========================================================================== */

:root {
  /* ---- from valunxt-brand.css, read directly, not guessed --------------- */
  --vxn-blue: #0B2DBE;
  --vxn-blue-dark: #08248F;
  --vxn-blue-light: #1436D8;
  --vxn-violet: #9C00DD;
  --vxn-navy-2: #0E355F;
  --vxn-sky: #8FB7FF;
  --vxn-ink: #16233B;
  --vxn-text: #35415A;
  --vxn-muted: #6A7590;
  --vxn-cream: #F6F4EF;
  --vxn-card: #FBFAF7;
  --vxn-line: rgba(11, 44, 86, .12);
  --vxn-line-inv: rgba(255, 255, 255, .16);

  --vxn-cta-grad: linear-gradient(150deg, #0E3FA8 0%, #1436D8 48%, #0B2DBE 100%);
  --vxn-cta-ink: #0B2DBE;
  --vxn-cta-h: 46px;
  --vxn-cta-px: 28px;
  --vxn-cta-fs: 14px;
  --vxn-cta-fw: 400;
  --vxn-cta-ls: .01em;
  --vxn-cta-r: 999px;
  --vxn-cta-sweep-dark: #08248F;
  --vxn-cta-sweep-light: #EAF0FF;

  /* The gradient the real trio's brand card and proof cards share. */
  --vxn-grad-card: linear-gradient(150deg, #1B3FA8 0%, #3C22C4 46%, #9C00DD 100%);
  --vxn-grad-card-hi: linear-gradient(150deg, #234CC4 0%, #4A2BE0 46%, #B01DF2 100%);
  /* The real impact strip's dark card surface. */
  --vxn-band-dark: #0B2C56;

  --vxn-ease: cubic-bezier(.22, .61, .36, 1);

  /* ---- added here, a single amber for deadline/penalty signals only ----- */
  --vxct-amber: #B45309;
  --vxct-amber-bg: #FEF6EC;
  --vxct-amber-line: rgba(180, 83, 9, .22);
  --vxct-green: #0F6E4F;

  --vxct-navh: 66px;
  --vxct-striph: 40px;
  --vxct-shell: 1180px;
  --vxct-gutter: clamp(16px, 4vw, 48px);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--vxct-navh) + var(--vxct-striph) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--vxn-text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.vxct-lock { overflow: hidden; }

img, svg { max-width: 100%; }
img { height: auto; display: block; }

/* The real UAE-market scale, from valunxt-uae-type.css, restated for this
   document — the exact clamp values, not an approximation. */
h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--vxn-ink); font-weight: 400; text-wrap: balance; }
h1 { font-size: clamp(36px, 4.4vw, 58px); line-height: 1.14; letter-spacing: -.012em; }
h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.2; letter-spacing: -.008em; }
h3 { font-size: clamp(21px, 2.1vw, 27px); line-height: 1.32; letter-spacing: -.006em; }
h4 { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.38; letter-spacing: -.004em; }
h5 { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.45; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--vxn-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; }

:where(a, button, summary, input, select, [tabindex]):focus-visible {
  outline: 2px solid var(--vxn-blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}
.vxct-dark :where(a, button, summary, [tabindex]):focus-visible { outline-color: #FFFFFF; }

.vxct-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.vxct-skip {
  position: absolute; left: 12px; top: -80px; z-index: 300;
  padding: 12px 18px; border-radius: 8px;
  background: var(--vxn-blue); color: #fff; text-decoration: none;
  transition: top .18s var(--vxn-ease);
}
.vxct-skip:focus { top: 12px; }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.vxct-shell { width: 100%; max-width: var(--vxct-shell); margin: 0 auto; padding-inline: var(--vxct-gutter); }

.vxct-sec { padding-block: clamp(52px, 6.4vw, 96px); }
.vxct-sec--tight { padding-block: clamp(34px, 4vw, 56px); }
.vxct-cream { background: var(--vxn-cream); }
.vxct-dark { background: var(--vxn-band-dark); color: rgba(255, 255, 255, .82); }
.vxct-dark h1, .vxct-dark h2, .vxct-dark h3, .vxct-dark h4, .vxct-dark h5 { color: #FFFFFF; }

/* THE ONE CTA — used directly, not reimplemented. Same class the live site's
   feature bands use (see .vxn-band__pill in valunxt-landing.css): 46px tall,
   28px sides, 14px/400, full pill, the site's own gradient. */
.vxn-band__pill--wide { width: 100%; justify-content: center; }
.vxn-band__pill--lg { min-height: 52px; padding-inline: 34px; font-size: 15px; }
/* Additive: the real rule only wires the hover-nudge to <i>, since every
   live use of this pill carries an icon-font glyph. This page uses inline
   SVG instead (no theme icon font to load standalone), so the same nudge
   is added for svg without touching the real rule. */
.vxn-band__pill svg { transition: transform .35s ease; }
.vxn-band__pill:hover svg, .vxn-band__pill:focus-visible svg { transform: translateX(3px); }
.vxct-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(22px, 2.4vw, 32px); }

.vxct-eyebrow-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: clamp(24px, 2.8vw, 36px); }

.vxct-lede { max-width: 62ch; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.68; color: var(--vxn-text); }
.vxct-head { max-width: 70ch; margin-bottom: clamp(28px, 3.2vw, 46px); }
.vxct-head > h2 { margin-bottom: 14px; }
.vxct-head--mid { margin-inline: auto; text-align: center; }
.vxct-head--mid .vxct-lede { margin-inline: auto; }
.vxct-dark .vxct-lede { color: rgba(255, 255, 255, .82); }

.vxct-pull {
  margin: clamp(24px, 2.8vw, 36px) 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--vxn-blue);
  color: var(--vxn-ink);
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5;
}
.vxct-dark .vxct-pull { border-left-color: var(--vxn-sky); color: #FFFFFF; }

/* --------------------------------------------------------------------------
   Urgency strip
   -------------------------------------------------------------------------- */
.vxct-strip {
  position: relative; z-index: 120; min-height: var(--vxct-striph);
  display: flex; align-items: center;
  background: var(--vxn-ink); color: #FFFFFF;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.vxct-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px; width: 100%; padding-block: 9px; text-align: center; }
.vxct-strip b { font-weight: 600; }
.vxct-strip__dot { opacity: .4; }
.vxct-strip a { color: #FFFFFF; text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.vxct-hdr {
  position: sticky; top: 0; z-index: 110;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(150%) blur(10px); -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--vxn-ease), box-shadow .25s var(--vxn-ease);
}
.vxct-hdr.is-stuck { border-bottom-color: var(--vxn-line); box-shadow: 0 6px 24px rgba(8, 20, 40, .06); }
.vxct-hdr__inner { display: flex; align-items: center; gap: 20px; min-height: var(--vxct-navh); }
.vxct-hdr__brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.vxct-hdr__brand img { width: 158px; height: auto; }
.vxct-hdr__tag { padding: 4px 10px; border: 1px solid var(--vxn-line); border-radius: 999px; color: var(--vxn-muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.vxct-hdr__nav { margin-left: auto; }
.vxct-hdr__list { display: flex; gap: 26px; list-style: none; }
.vxct-hdr__list a { color: var(--vxn-text); font-size: 14px; text-decoration: none; transition: color .2s var(--vxn-ease); }
.vxct-hdr__list a:hover { color: var(--vxn-blue); }
.vxct-hdr__cta { display: flex; align-items: center; gap: 10px; }

.vxct-burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--vxn-line); border-radius: 10px; background: transparent; cursor: pointer; }
.vxct-burger span { position: relative; display: block; width: 17px; height: 1.5px; background: var(--vxn-ink); transition: background .2s var(--vxn-ease); }
.vxct-burger span::before, .vxct-burger span::after { content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--vxn-ink); transition: transform .24s var(--vxn-ease); }
.vxct-burger span::before { top: -6px; }
.vxct-burger span::after { top: 6px; }
.vxct-burger[aria-expanded="true"] span { background: transparent; }
.vxct-burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.vxct-burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.vxct-mnav { display: none; border-top: 1px solid var(--vxn-line); background: #FFFFFF; }
.vxct-mnav.is-open { display: block; }
.vxct-mnav ul { list-style: none; padding-block: 8px; }
.vxct-mnav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--vxn-line); color: var(--vxn-ink); text-decoration: none; }
.vxct-mnav li:last-child a { border-bottom: 0; }

/* --------------------------------------------------------------------------
   01 — Hero
   -------------------------------------------------------------------------- */
.vxct-hero { background: var(--vxn-ink); color: rgba(255, 255, 255, .82); }
/* The real --ghost pill is drawn for light surfaces — a blue border and blue
   text — and is close to unreadable on this dark hero. .vxn-impact solves
   the same problem by switching its dark-surface CTA to --accent (solid
   white); a second solid pill right next to the primary would read as two
   primaries of equal weight here, so this scopes a proper outline-on-dark
   instead: white border and white text, additive and only inside dark
   surfaces, the unscoped rule untouched. */
.vxct-dark .vxn-band__pill--ghost, .vxct-hero .vxn-band__pill--ghost {
  border-color: rgba(255, 255, 255, .4);
  color: #FFFFFF !important;
  background: transparent;
}
.vxct-dark .vxn-band__pill--ghost:hover, .vxct-hero .vxn-band__pill--ghost:hover,
.vxct-dark .vxn-band__pill--ghost:focus-visible, .vxct-hero .vxn-band__pill--ghost:focus-visible {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, .08);
  color: #FFFFFF !important;
}
.vxct-hero__inner { padding-block: clamp(48px, 6vw, 88px); }
.vxct-hero h1 { color: #FFFFFF; max-width: 19ch; }
.vxct-hero .vxn-band__eyebrow { color: var(--vxn-sky); }
.vxct-hero__grid { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr); gap: clamp(30px, 4.6vw, 64px); align-items: center; }
.vxct-hero__kicker { margin: 20px 0 0; color: #FFFFFF; font-size: clamp(18px, 2vw, 24px); line-height: 1.35; }
.vxct-hero__kicker b { font-weight: 500; color: #FFC87A; }
.vxct-hero__body { max-width: 58ch; margin-top: 16px; color: rgba(255, 255, 255, .78); }

.vxct-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.vxct-chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: rgba(255,255,255,.86); font-size: 12.5px; }

.vxct-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: clamp(24px, 2.8vw, 36px); padding-top: clamp(20px, 2.2vw, 28px); border-top: 1px solid var(--vxn-line-inv); list-style: none; }
.vxct-trust li { display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, .92); font-size: 13.5px; font-weight: 500; }
.vxct-trust svg { flex: none; color: var(--vxn-sky); }

.vxct-note { margin-top: 20px; color: rgba(255, 255, 255, .56); font-size: 12.5px; line-height: 1.65; max-width: 78ch; }
.vxct-note--light { color: var(--vxn-muted); }

/* The deadline readout — a plain, confident numeral in a white card, the
   same material as the figures band's lead panel, not a dial or a ring:
   nothing in the real design language draws a countdown as a ring. */
.vxct-fig {
  padding: clamp(26px, 2.8vw, 36px);
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(11, 44, 86, .04), 0 30px 70px -24px rgba(0, 0, 0, .38);
}
.vxct-fig__label { display: block; margin-bottom: 16px; color: var(--vxn-muted); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.vxct-fig__n { display: flex; align-items: baseline; gap: 10px; color: var(--vxn-ink); font-variant-numeric: tabular-nums; }
.vxct-fig__n b { font-size: clamp(48px, 5vw, 68px); font-weight: 500; line-height: 1; letter-spacing: -.02em; }
.vxct-fig__n span { font-size: 15px; color: var(--vxn-muted); }
.vxct-fig__clock { display: flex; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--vxn-line); color: var(--vxn-text); font-size: 13.5px; font-variant-numeric: tabular-nums; }
.vxct-fig__clock b { color: var(--vxn-ink); font-weight: 500; }
.vxct-fig__foot { margin: 16px 0 0; color: var(--vxn-muted); font-size: 12.5px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   02 — Lead form
   -------------------------------------------------------------------------- */
.vxct-form__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 4.4vw, 64px); align-items: stretch; }

/* The real card recipe (see .vxn-trio__card): 18px radius, a near-invisible
   resting shadow that only reveals itself on hover/lift, not a heavy one at
   rest — the previous version's cards were shadow-heavy at rest, which
   nothing on the real site does. */
.vxct-card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--vxn-line); border-radius: 18px;
  background: #FFFFFF; box-shadow: 0 1px 2px rgba(11, 44, 86, .04);
}
.vxct-card--form::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; border-radius: 18px 18px 0 0; background-image: var(--vxn-cta-grad); }
.vxct-card__title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.vxct-card__title span { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(11, 45, 190, .07); color: var(--vxn-blue); }
.vxct-card__title h3 { font-size: 19px; }
.vxct-card__title small { display: block; color: var(--vxn-muted); font-size: 13px; }

.vxct-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0 0; padding-top: 22px; border-top: 1px solid var(--vxn-line); list-style: none; }
.vxct-path li { padding: 14px 14px 15px; border: 1px solid var(--vxn-line); border-radius: 12px; background: var(--vxn-card); font-size: 13px; line-height: 1.45; color: var(--vxn-ink); }
.vxct-path li b { display: block; font-weight: 500; color: var(--vxn-blue); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }

.vxct-field { margin-bottom: 16px; }
.vxct-field > label { display: block; margin-bottom: 7px; color: var(--vxn-ink); font-size: 13.5px; }
/* The real focus-ring recipe, from .vxn-sub__form: border tint + a matching
   halo, not a generic blue glow. */
.vxct-field input[type="text"], .vxct-field input[type="email"], .vxct-field input[type="tel"] {
  width: 100%; min-height: 46px; padding: 0 14px;
  border: 1px solid var(--vxn-line); border-radius: 10px;
  background: #FFFFFF; color: var(--vxn-ink); font: inherit; font-size: 15px;
  transition: border-color .2s var(--vxn-ease), box-shadow .2s var(--vxn-ease);
}
.vxct-field input::placeholder { color: #9AA3B8; }
.vxct-field input:focus { outline: none; border-color: rgba(11, 45, 190, .48); box-shadow: 0 0 0 3px rgba(11, 45, 190, .16); }
.vxct-field--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.vxct-radio { display: grid; gap: 8px; margin-top: 4px; }
.vxct-radio label { display: flex; align-items: flex-start; gap: 10px; padding: 11px 14px; border: 1px solid var(--vxn-line); border-radius: 10px; font-size: 14.5px; line-height: 1.5; cursor: pointer; transition: border-color .2s var(--vxn-ease), background .2s var(--vxn-ease); }
.vxct-radio label:hover { border-color: var(--vxn-blue-light); }
.vxct-radio input { margin-top: 4px; accent-color: var(--vxn-blue); }
.vxct-radio label:has(input:checked) { border-color: var(--vxn-blue); background: rgba(11, 45, 190, .05); }

.vxct-form__micro { margin: 14px 0 0; color: var(--vxn-muted); font-size: 13px; line-height: 1.6; text-align: center; }
.vxct-form__msg { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 14px; line-height: 1.6; }
.vxct-form__msg[hidden] { display: none; }
.vxct-form__msg.is-ok { background: #ECF7F2; border: 1px solid rgba(15, 110, 79, .22); color: var(--vxct-green); }
.vxct-form__msg.is-err { background: #FDF0EE; border: 1px solid rgba(178, 46, 30, .22); color: #B22E1E; }
.vxct-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------------------
   03 — "Which one is you?" position selector
   -------------------------------------------------------------------------- */
.vxct-pos { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(18px, 2.4vw, 32px); align-items: stretch; }
.vxct-pos__list { display: grid; gap: 6px; list-style: none; align-content: start; }
.vxct-pos__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%;
  padding: 13px 16px; border: 1px solid var(--vxn-line); border-radius: 12px;
  background: #FFFFFF; color: var(--vxn-ink); font-size: 15px; line-height: 1.45; text-align: left; cursor: pointer;
  transition: border-color .2s var(--vxn-ease), background .2s var(--vxn-ease);
}
.vxct-pos__btn svg { flex: none; width: 15px; height: 15px; color: var(--vxn-muted); transition: transform .2s var(--vxn-ease), color .2s var(--vxn-ease); }
.vxct-pos__btn:hover { border-color: var(--vxn-blue-light); }
.vxct-pos__btn[aria-selected="true"] { border-color: rgba(0, 83, 183, .28); background: rgba(11, 45, 190, .05); box-shadow: 0 1px 2px rgba(11,44,86,.04); }
.vxct-pos__btn[aria-selected="true"] svg { color: var(--vxn-blue); transform: translateX(2px); }

/* The panel is the trio's gradient "brand card" material — same recipe the
   real featured card and proof cards use. */
.vxct-pos__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 2.8vw, 38px); border-radius: 18px; background: var(--vxn-grad-card); color: #FFFFFF; }
.vxct-pos__ans[hidden] { display: none; }
.vxct-pos__ans .vxn-band__eyebrow { color: rgba(255,255,255,.72); }
.vxct-pos__ans h3 { color: #FFFFFF; margin-bottom: 10px; font-size: clamp(21px, 2.2vw, 27px); }
.vxct-pos__ans p { font-size: 15.5px; color: rgba(255,255,255,.86); }
.vxct-pos__ans .vxn-band__pill { margin-top: 20px; }

.vxct-tablewrap { overflow-x: auto; }
.vxct-table { width: 100%; min-width: 560px; border-collapse: collapse; text-align: left; }
.vxct-table th, .vxct-table td { padding: 14px 16px; border-bottom: 1px solid var(--vxn-line); vertical-align: top; font-size: 15px; line-height: 1.6; }
.vxct-table thead th { color: var(--vxn-ink); font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.vxct-table tbody th { color: var(--vxn-ink); font-weight: 400; width: 42%; }
.js .vxct-tablewrap { display: none; }
.no-js .vxct-pos { display: none; }

.vxct-callout {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(22px, 3vw, 40px); align-items: stretch;
  margin-top: clamp(28px, 3.2vw, 44px); padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--vxct-amber-line); border-left: 3px solid var(--vxct-amber);
  border-radius: 18px; background: var(--vxct-amber-bg);
}
.vxct-callout h3 { margin-bottom: 10px; }
/* A plain rounded, cover-fit photograph — the same treatment the real
   .vxn-trio cream cards give their own photo, not a floating icon with
   nothing to fill the column beside it. */
.vxct-callout__photo { min-height: 220px; border-radius: 14px; overflow: hidden; }
.vxct-callout__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------------------------------------------------------
   Generic grids
   -------------------------------------------------------------------------- */
.vxct-grid { display: grid; gap: clamp(16px, 1.8vw, 22px); }
.vxct-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vxct-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vxct-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* --------------------------------------------------------------------------
   Trio card — the real anatomy (tag pill + circle top row, title, body),
   ported under vxct- for the reasons in the file header. Two sizes: the
   full myth/why-us card and the tighter icon-topped capability tile.
   -------------------------------------------------------------------------- */
.vxct-trio {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(22px, 2.4vw, 28px);
  border-radius: 18px; background: var(--vxn-card); border: 1px solid var(--vxn-line);
  box-shadow: 0 1px 2px rgba(11, 44, 86, .04);
  transition: transform .4s var(--vxn-ease), box-shadow .4s var(--vxn-ease), border-color .35s var(--vxn-ease);
}
.vxct-trio:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(11, 44, 86, .12); border-color: rgba(0, 83, 183, .26); }
.vxct-trio__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.vxct-trio__tag { display: inline-block; padding: 7px 14px; border-radius: 999px; background: #FFFFFF; border: 1px solid var(--vxn-line); color: var(--vxn-ink); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; line-height: 1; }
.vxct-trio__badge { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #FFFFFF; border: 1px solid var(--vxn-line); color: var(--vxn-blue); }
.vxct-trio__badge svg { width: 15px; height: 15px; }
.vxct-trio:hover .vxct-trio__badge { background: var(--vxn-blue); border-color: var(--vxn-blue); color: #FFFFFF; }
.vxct-trio__claim { margin: 0 0 12px; color: var(--vxn-ink); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.4; }
.vxct-trio__verdict { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 10px; color: var(--vxn-blue); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.vxct-trio__verdict::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--vxn-blue); }
.vxct-trio__truth { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--vxn-line); color: var(--vxn-ink); font-size: 14.5px; line-height: 1.5; }
.vxct-trio p { color: var(--vxn-text); }

/* Small icon-topped variant, for the capability and why-us grids. */
.vxct-trio--sm { padding: clamp(20px, 2.2vw, 24px); }
.vxct-trio--sm .vxct-ic { margin-bottom: 14px; }
.vxct-trio--sm h4 { margin: 0 0 8px; font-size: 16.5px; }
.vxct-trio--sm p { margin: 0; font-size: 14px; line-height: 1.6; }

.vxct-ic { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(11, 45, 190, .07); color: var(--vxn-blue); }
.vxct-ic svg { width: 20px; height: 20px; }
.vxct-dark .vxct-ic { background: rgba(255,255,255,.10); color: var(--vxn-sky); }


/* --------------------------------------------------------------------------
   06 — Pricing
   -------------------------------------------------------------------------- */
.vxct-price {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: 18px; border: 1px solid var(--vxn-line); background: var(--vxn-card);
  box-shadow: 0 1px 2px rgba(11, 44, 86, .04);
  transition: transform .4s var(--vxn-ease), box-shadow .4s var(--vxn-ease);
}
.vxct-price:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(11, 44, 86, .12); }
/* The featured package takes the real brand-card treatment — same gradient
   the trio's centre card and the proof cards use, not an invented border. */
.vxct-price--feat { background: var(--vxn-grad-card); border-color: transparent; color: #FFFFFF; box-shadow: 0 20px 50px rgba(60, 34, 196, .28); }
.vxct-price--feat:hover { background: var(--vxn-grad-card-hi); box-shadow: 0 24px 56px rgba(60, 34, 196, .36); }
.vxct-price--feat h3, .vxct-price--feat .vxct-price__fee { color: #FFFFFF; }
.vxct-price--feat .vxct-price__feeNote, .vxct-price--feat .vxct-price__for, .vxct-price--feat .vxct-price__list li, .vxct-price--feat .vxct-price__warn { color: rgba(255, 255, 255, .82); }
.vxct-price--feat .vxct-price__for, .vxct-price--feat .vxct-price__groupLabel { border-color: rgba(255, 255, 255, .22); }
.vxct-price--feat .vxct-price__groupLabel { color: rgba(255, 255, 255, .78); }
.vxct-price--feat .vxct-price__list svg { color: #FFFFFF; }
.vxct-price--feat .vxct-price__n { color: rgba(255, 255, 255, .68); }
.vxct-price--feat .vxct-price__top .vxct-ic { background: rgba(255, 255, 255, .16); color: #FFFFFF; }

.vxct-price__flag { position: absolute; top: -13px; left: clamp(24px, 2.6vw, 34px); padding: 5px 14px; border-radius: 999px; background: #FFFFFF; color: var(--vxn-blue); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 6px 16px rgba(11,45,190,.22); }
.vxct-price__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vxct-price__n { color: var(--vxn-muted); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.vxct-price h3 { margin-bottom: 14px; }
.vxct-price__fee { margin: 0 0 4px; color: var(--vxn-ink); font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; }
.vxct-price__feeNote { margin: 0 0 18px; color: var(--vxn-muted); font-size: 13px; line-height: 1.55; }
.vxct-price__for { margin: 0 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--vxn-line); font-size: 14.5px; line-height: 1.6; }
.vxct-price__list { list-style: none; display: grid; gap: 9px; margin-bottom: 24px; }
.vxct-price__list li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.vxct-price__list svg { flex: none; margin-top: 4px; color: var(--vxn-blue); }
.vxct-price__list--cols { display: block; column-count: 2; column-gap: 18px; }
.vxct-price__list--cols li { break-inside: avoid; margin-bottom: 9px; }
.vxct-price__group { margin-bottom: 16px; }
.vxct-price__group:last-of-type { margin-bottom: 24px; }
.vxct-price__group .vxct-price__list { margin-bottom: 0; }
.vxct-price__groupLabel { display: block; margin-bottom: 9px; color: var(--vxn-blue); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.vxct-price .vxn-band__pill { margin-top: auto; }
.vxct-price__warn { margin-top: 14px; color: var(--vxn-muted); font-size: 12.5px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   06b — Comparison: fixed-fee combined advice vs. the alternatives. A real
   card-grid comparison, in the spirit of a competitor's "us vs. Big-name
   firms vs. local providers" table — built from Valunxt's own genuine
   positioning (fixed fee, one team, senior review), not fabricated claims
   about a named competitor.
   -------------------------------------------------------------------------- */
.vxct-comp { border: 1px solid var(--vxn-line); border-radius: 18px; overflow: hidden; background: #FFFFFF; box-shadow: 0 1px 2px rgba(11,44,86,.04); }
.vxct-comp__row { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); }
.vxct-comp__row + .vxct-comp__row { border-top: 1px solid var(--vxn-line); }
.vxct-comp__cell { padding: 16px clamp(14px, 1.6vw, 22px); font-size: 14px; line-height: 1.5; }
.vxct-comp__row--head .vxct-comp__cell { padding-top: 20px; padding-bottom: 20px; color: var(--vxn-muted); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.vxct-comp__dim { display: flex; align-items: center; color: var(--vxn-ink); font-size: 14.5px; font-weight: 500; }
.vxct-comp__cell--alt { color: var(--vxn-muted); }
.vxct-comp__cell--alt svg { flex: none; margin-right: 8px; color: var(--vxn-muted); opacity: .55; }
/* The Valunxt column runs a tinted band the full height of the table, the
   way a comparison table earns the eye toward the column it wants read. */
.vxct-comp__row .vxct-comp__cell:last-child { background: rgba(11, 45, 190, .045); }
.vxct-comp__row--head .vxct-comp__cell:last-child { background: var(--vxn-blue); color: #FFFFFF; border-radius: 10px 10px 0 0; margin: 10px 10px 0; padding: 12px 16px; width: auto; }
.vxct-comp__cell--us { display: flex; align-items: flex-start; gap: 8px; color: var(--vxn-ink); font-weight: 500; }
.vxct-comp__cell--us svg { flex: none; margin-top: 3px; color: var(--vxn-blue); }
.vxct-comp__row:last-child .vxct-comp__cell:last-child { border-radius: 0 0 10px 10px; margin-bottom: 10px; padding-bottom: 16px; }

/* --------------------------------------------------------------------------
   08 — Compliance review — the real impact-strip anatomy: a rounded-24 dark
   card, full-bleed within its own section, copy beside a list.
   -------------------------------------------------------------------------- */
.vxct-impact {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(36px, 4vw, 60px); border-radius: 24px;
  background: var(--vxn-band-dark);
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 3.6vw, 60px); align-items: center;
}
.vxct-impact h2 { color: #FFFFFF; }

.vxct-checks { list-style: none; display: grid; gap: 10px; }
.vxct-checks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  background: rgba(255, 255, 255, .04); color: rgba(255, 255, 255, .84);
  font-size: 14px; line-height: 1.5;
  transition: background .4s var(--vxn-ease), border-color .4s var(--vxn-ease);
}
.vxct-checks__box { flex: none; display: grid; place-content: center; width: 20px; height: 20px; margin-top: 2px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,.32); transition: background .3s var(--vxn-ease), border-color .3s var(--vxn-ease); }
.vxct-checks__box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transform: scale(.4); transition: opacity .3s var(--vxn-ease), transform .3s var(--vxn-ease); }
.vxct-checks li.is-done { background: rgba(143,183,255,.10); border-color: rgba(143,183,255,.32); }
.vxct-checks li.is-done .vxct-checks__box { background: var(--vxn-sky); border-color: var(--vxn-sky); }
.vxct-checks li.is-done .vxct-checks__box svg { opacity: 1; transform: none; color: var(--vxn-ink); }

/* --------------------------------------------------------------------------
   09 — Penalties — the real figures-band anatomy: a dark gradient card, a
   lead panel plus divided stat cells.
   -------------------------------------------------------------------------- */
.vxct-figband {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(30px, 3.4vw, 48px); border-radius: 24px;
  background: linear-gradient(112deg, #06184F 0%, #0B2DBE 52%, #1436D8 100%);
  display: grid; grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px); align-items: center;
}
.vxct-figband__lead { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.vxct-figband__lead h3 { color: #FFFFFF; font-size: clamp(19px, 1.7vw, 23px); }
.vxct-figband__lead p { margin: 0; color: rgba(255,255,255,.76); font-size: 13.5px; line-height: 1.6; }

.vxct-figband__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vxct-figband__stat { padding: 0 clamp(16px, 2.2vw, 34px); border-left: 1px solid rgba(255, 255, 255, .2); }
.vxct-figband__stat:first-child { padding-left: 0; border-left: 0; }
.vxct-figband__n { display: block; margin-bottom: 8px; color: #FFC87A; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.1; letter-spacing: -.01em; }
.vxct-figband__lbl { color: rgba(255,255,255,.82); font-size: 13.5px; line-height: 1.55; }
.vxct-figband__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; color: #BFD6FF; font-size: 13.5px; font-weight: 500; text-decoration: none; transition: color .25s var(--vxn-ease); }
.vxct-figband__link svg { transition: transform .25s var(--vxn-ease); }
.vxct-figband__link:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: .2em; }
.vxct-figband__link:hover svg { transform: translateX(3px); }

.vxct-calc { margin-top: clamp(24px, 2.8vw, 36px); padding: clamp(22px, 2.6vw, 32px); border: 1px solid var(--vxn-line); border-radius: 18px; background: #FFFFFF; }
.vxct-calc__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(20px, 3vw, 40px); align-items: center; }
.vxct-calc__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.vxct-calc__row label { color: var(--vxn-ink); font-size: 15px; }
.vxct-calc__val { color: var(--vxn-blue); font-size: 15px; font-variant-numeric: tabular-nums; }
.vxct-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin: 10px 0 6px; border-radius: 999px; background: linear-gradient(90deg, var(--vxn-blue) var(--p, 0%), rgba(11,44,86,.12) var(--p, 0%)); outline: none; }
.vxct-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--vxn-blue); box-shadow: 0 4px 12px rgba(11,45,190,.24); cursor: grab; }
.vxct-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--vxn-blue); box-shadow: 0 4px 12px rgba(11,45,190,.24); cursor: grab; }
.vxct-range:focus-visible { outline: 2px solid var(--vxn-blue-light); outline-offset: 6px; }
.vxct-calc__scale { display: flex; justify-content: space-between; color: var(--vxn-muted); font-size: 11.5px; }
.vxct-calc__out { padding: clamp(18px, 2vw, 24px); border-radius: 14px; background: var(--vxn-band-dark); color: rgba(255,255,255,.8); text-align: center; }
.vxct-calc__out small { display: block; color: var(--vxn-sky); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.vxct-calc__big { display: block; color: #FFC87A; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.05; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.vxct-calc__sub { margin: 10px 0 0; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.7); }
.vxct-calc__note { margin: 14px 0 0; color: var(--vxn-muted); font-size: 12.5px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   11 — Checklist
   -------------------------------------------------------------------------- */
.vxct-cl__bar { display: flex; align-items: center; gap: 16px; margin-bottom: clamp(20px, 2.4vw, 30px); padding: 14px 18px; border-radius: 12px; background: #FFFFFF; border: 1px solid var(--vxn-line); }
.vxct-cl__track { flex: 1; height: 8px; border-radius: 999px; background: rgba(11,44,86,.10); overflow: hidden; }
.vxct-cl__fill { height: 100%; width: 0; border-radius: 999px; background-image: var(--vxn-cta-grad); transition: width .4s var(--vxn-ease); }
.vxct-cl__count { color: var(--vxn-ink); font-size: 14px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.vxct-cl__count b { font-weight: 500; color: var(--vxn-blue); }

.vxct-cl { padding: clamp(20px, 2.2vw, 26px); border: 1px solid var(--vxn-line); border-radius: 18px; background: var(--vxn-card); }
.vxct-cl h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--vxn-line); font-size: 16px; }
.vxct-cl ul { list-style: none; display: grid; gap: 6px; }
.vxct-cl label { display: flex; gap: 11px; align-items: flex-start; padding: 6px 8px; margin: 0 -8px; border-radius: 8px; font-size: 14px; line-height: 1.5; cursor: pointer; transition: background .2s var(--vxn-ease); }
.vxct-cl label:hover { background: rgba(11,45,190,.05); }
.vxct-cl input { position: absolute; opacity: 0; width: 0; height: 0; }
.vxct-cl__box { flex: none; display: grid; place-content: center; width: 18px; height: 18px; margin-top: 3px; border: 1.5px solid rgba(11,44,86,.3); border-radius: 5px; background: #fff; transition: background .2s var(--vxn-ease), border-color .2s var(--vxn-ease); }
.vxct-cl__box svg { width: 11px; height: 11px; color: #fff; opacity: 0; transform: scale(.4); transition: opacity .2s var(--vxn-ease), transform .2s var(--vxn-ease); }
.vxct-cl input:checked + .vxct-cl__box { background: var(--vxn-blue); border-color: var(--vxn-blue); }
.vxct-cl input:checked + .vxct-cl__box svg { opacity: 1; transform: none; }
.vxct-cl input:checked ~ span { color: var(--vxn-muted); text-decoration: line-through; text-decoration-color: rgba(11,44,86,.3); }
.vxct-cl input:focus-visible + .vxct-cl__box { outline: 2px solid var(--vxn-blue-light); outline-offset: 2px; }

.vxct-cl__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(22px, 2.6vw, 34px); padding: clamp(20px, 2.4vw, 30px); border-radius: 18px; background: var(--vxn-band-dark); color: rgba(255,255,255,.84); }
.vxct-cl__cta h3 { color: #fff; font-size: clamp(18px, 1.8vw, 22px); }
.vxct-cl__cta p { font-size: 14px; margin-top: 4px; }

/* --------------------------------------------------------------------------
   11b — Further reading: real Valunxt guides (not fabricated resource
   downloads), same card anatomy as .vxct-trio with a real photo on top.
   -------------------------------------------------------------------------- */
.vxct-read { text-decoration: none !important; display: flex; flex-direction: column; border-radius: 18px; overflow: hidden; border: 1px solid var(--vxn-line); background: #FFFFFF; box-shadow: 0 1px 2px rgba(11,44,86,.04); transition: transform .35s var(--vxn-ease), box-shadow .35s var(--vxn-ease), border-color .35s var(--vxn-ease); }
.vxct-read:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(11,44,86,.12); border-color: rgba(0,83,183,.26); }
.vxct-read__media { aspect-ratio: 16/10; overflow: hidden; background: var(--vxn-cream); }
.vxct-read__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--vxn-ease); }
.vxct-read:hover .vxct-read__media img { transform: scale(1.05); }
.vxct-read__body { flex: 1; display: flex; flex-direction: column; padding: clamp(18px, 2vw, 22px); }
.vxct-read__body h4 { margin: 0 0 8px; font-size: 16px; line-height: 1.35; color: var(--vxn-ink); }
.vxct-read__body p { margin: 0; color: var(--vxn-text); font-size: 13.5px; line-height: 1.55; }
.vxct-read__go { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--vxn-line); color: var(--vxn-blue); font-size: 13px; font-weight: 500; }
.vxct-read__go svg { transition: transform .3s var(--vxn-ease); }
.vxct-read:hover .vxct-read__go svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   12 — FAQ — the real .vxn-ready__list card recipe: white, 22px, a hairline
   border and the same two-part shadow.
   -------------------------------------------------------------------------- */
.vxct-faq { max-width: 860px; margin-inline: auto; overflow: hidden; border: 1px solid rgba(11,44,86,.08); border-radius: 22px; background: #FFFFFF; box-shadow: 0 1px 2px rgba(11,44,86,.04), 0 28px 60px -30px rgba(11,44,86,.22); }
.vxct-faq__item + .vxct-faq__item { border-top: 1px solid rgba(11,44,86,.1); }
.vxct-faq__q { display: flex; gap: 18px; align-items: center; justify-content: space-between; width: 100%; padding: 22px clamp(20px, 2.8vw, 34px); border: 0; background: transparent; color: var(--vxn-ink); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.4; text-align: left; cursor: pointer; transition: background .3s var(--vxn-ease); }
.vxct-faq__q:hover { background: rgba(11,45,190,.03); }
.vxct-faq__ic { position: relative; flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(11, 45, 190, .07); }
.vxct-faq__ic::before, .vxct-faq__ic::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--vxn-blue); transform: translate(-50%, -50%); transition: transform .26s var(--vxn-ease), opacity .26s var(--vxn-ease); }
.vxct-faq__ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.vxct-faq__q[aria-expanded="true"] .vxct-faq__ic::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.vxct-faq__a { overflow: hidden; height: 0; transition: height .3s var(--vxn-ease); }
.vxct-faq__a > div { padding: 0 clamp(52px, 5vw, 66px) 24px clamp(20px, 2.8vw, 34px); color: var(--vxn-text); font-size: 15px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   13 — Final CTA — "Ready when you are", ported faithfully: header row
   (eyebrow + title with an italic accent clause, lede at the end), then a
   white rounded-22 card of icon/name/note/arrow rows with a gradient fill
   that sweeps in from the left on hover — the site's real closing pattern.
   -------------------------------------------------------------------------- */
.vxct-ready { position: relative; isolation: isolate; overflow: hidden; border-radius: 24px; padding: clamp(40px, 4.4vw, 64px) clamp(24px, 3.2vw, 48px); background: radial-gradient(52% 88% at 100% 0%, rgba(11, 45, 190, .16) 0%, rgba(11, 45, 190, 0) 72%), var(--vxn-band-dark); }
.vxct-ready__head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); align-items: end; gap: clamp(20px, 5vw, 64px); margin-bottom: clamp(28px, 3.2vw, 44px); }
.vxct-ready .vxn-band__eyebrow { color: var(--vxn-sky); }
.vxct-ready__title { margin: 0; color: #FFFFFF; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.14; letter-spacing: -.012em; }
.vxct-ready__accent { display: block; font-style: normal; color: var(--vxn-sky); }
.vxct-ready__lede { justify-self: end; max-width: 40ch; margin: 0; color: rgba(255,255,255,.76); font-size: clamp(14px, 1.1vw, 16px); line-height: 1.6; text-align: right; }

.vxct-ready__list { margin: 0; list-style: none; overflow: hidden; border-radius: 18px; background: #FFFFFF; box-shadow: 0 1px 2px rgba(11,44,86,.04), 0 28px 60px -30px rgba(11,44,86,.4); }
.vxct-ready__item + .vxct-ready__item { border-top: 1px solid rgba(11,44,86,.1); }
.vxct-ready__route { --pad: clamp(18px, 2.4vw, 32px); position: relative; isolation: isolate; display: block; color: var(--vxn-ink); text-decoration: none !important; }
.vxct-ready__face { display: grid; grid-template-columns: 50px minmax(0,.9fr) minmax(0,1.1fr) 46px; align-items: center; gap: clamp(16px, 2.2vw, 30px); padding: 22px var(--pad); }
.vxct-ready__face--fill { position: absolute; inset: 0; background-image: var(--vxn-cta-grad); clip-path: inset(0 100% 0 0); transition: clip-path .6s var(--vxn-ease); pointer-events: none; }
.vxct-ready__route:hover .vxct-ready__face--fill, .vxct-ready__route:focus-visible .vxct-ready__face--fill { clip-path: inset(0 0% 0 0); }
.vxct-ready__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: rgba(11,45,190,.07); color: var(--vxn-blue); }
.vxct-ready__icon svg { width: 21px; height: 21px; }
.vxct-ready__name { color: var(--vxn-ink); font-size: clamp(16px, 1.5vw, 20px); font-weight: 500; line-height: 1.3; }
.vxct-ready__note { color: var(--vxn-text); font-size: 14px; line-height: 1.5; }
.vxct-ready__go { display: grid; place-items: center; justify-self: end; width: 44px; height: 44px; border: 1px solid rgba(11,44,86,.16); border-radius: 50%; color: var(--vxn-ink); transition: transform .45s var(--vxn-ease); }
.vxct-ready__go svg { width: 15px; height: 15px; }
.vxct-ready__route.is-lead .vxct-ready__go { border-color: var(--vxn-blue); background: var(--vxn-blue); color: #FFFFFF; }
.vxct-ready__face--fill .vxct-ready__icon { background: rgba(255,255,255,.16); color: #FFFFFF; }
.vxct-ready__face--fill .vxct-ready__name { color: #FFFFFF; }
.vxct-ready__face--fill .vxct-ready__note { color: rgba(255,255,255,.86); }
.vxct-ready__face--fill .vxct-ready__go { border-color: #FFFFFF; background: #FFFFFF; color: var(--vxn-blue); }
.vxct-ready__route:hover .vxct-ready__face--fill .vxct-ready__go, .vxct-ready__route:focus-visible .vxct-ready__face--fill .vxct-ready__go { transform: rotate(45deg); }
.vxct-ready__route:focus-visible { outline: 2px solid #FFFFFF; outline-offset: -6px; }
@media (hover: hover) {
  .vxct-ready__list:hover .vxct-ready__route:not(:hover) { opacity: .6; transition: opacity .3s var(--vxn-ease); }
}

.vxct-final__note { margin-top: clamp(20px, 2.4vw, 30px); text-align: center; color: rgba(255,255,255,.6); font-size: 12.5px; line-height: 1.65; }

.vxct-disclaimer { padding-block: 26px; border-top: 1px solid var(--vxn-line); color: var(--vxn-muted); font-size: 12.5px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Lead-capture modal — plain white card materials only (the real glass
   recipe belongs to a component that is no longer live).
   -------------------------------------------------------------------------- */
.vxct-modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 16px; }
.vxct-modal[hidden] { display: none; }
.vxct-modal__bg { position: absolute; inset: 0; background: rgba(11, 22, 51, .58); }
.vxct-modal__card { position: relative; width: 100%; max-width: 880px; max-height: calc(100vh - 32px); overflow: auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); border-radius: 22px; background: #FFFFFF; box-shadow: 0 40px 100px rgba(0,0,0,.34); }
.vxct-modal__side { position: relative; padding: clamp(24px, 3vw, 34px); background: var(--vxn-band-dark); color: rgba(255,255,255,.82); display: flex; flex-direction: column; justify-content: space-between; }
.vxct-modal__side h3 { color: #fff; font-size: clamp(21px, 2.2vw, 26px); margin: 10px 0 12px; }
.vxct-modal__side p { font-size: 14px; }
.vxct-modal__fig { margin-top: 22px; padding: 16px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }
.vxct-modal__fig b { display: block; color: #FFC87A; font-weight: 500; font-size: 36px; line-height: 1; }
.vxct-modal__fig span { display: block; margin-top: 4px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.vxct-modal__body { padding: clamp(24px, 3vw, 34px); }
.vxct-modal__body h4 { font-size: 19px; margin-bottom: 4px; }
.vxct-modal__body > p { color: var(--vxn-muted); font-size: 14px; margin-bottom: 16px; }
.vxct-modal__x { position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; place-content: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(22,35,59,.06); color: var(--vxn-ink); cursor: pointer; }
.vxct-modal__x:hover { background: rgba(22,35,59,.12); }
.vxct-modal__x svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   Mobile sticky CTA bar
   -------------------------------------------------------------------------- */
.vxct-sbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 130; display: none; align-items: center; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); border-top: 1px solid var(--vxn-line); box-shadow: 0 -8px 30px rgba(8,20,40,.10); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transform: translateY(110%); transition: transform .35s var(--vxn-ease); }
.vxct-sbar.is-on { transform: none; }
.vxct-sbar__txt { flex: 1; min-width: 0; font-size: 12.5px; line-height: 1.3; color: var(--vxn-muted); }
.vxct-sbar__txt b { display: block; color: var(--vxn-ink); font-weight: 500; font-size: 14px; }
.vxct-sbar .vxn-band__pill { min-height: 42px; padding-inline: 18px; font-size: 13.5px; }

/* --------------------------------------------------------------------------
   Instant support — a floating call button and a support button that opens
   a small anchored panel (not a full-screen modal). Sits above the mobile
   sticky bar rather than behind it (see the 860px override below).
   -------------------------------------------------------------------------- */
.vxct-fab { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 135; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.vxct-fab__btn { display: grid; place-items: center; border: 0; border-radius: 50%; cursor: pointer; transition: transform .3s var(--vxn-ease), box-shadow .3s var(--vxn-ease); }
.vxct-fab__btn--call { width: 46px; height: 46px; background: #FFFFFF; border: 1px solid var(--vxn-line); color: var(--vxn-blue); box-shadow: 0 10px 26px rgba(8,20,40,.14); text-decoration: none; }
.vxct-fab__btn--call:hover { transform: translateY(-2px); border-color: rgba(0,83,183,.3); }
.vxct-fab__btn--main { position: relative; width: 58px; height: 58px; background-image: var(--vxn-cta-grad); color: #FFFFFF; box-shadow: 0 14px 34px rgba(11,45,190,.32); }
.vxct-fab__btn--main:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(11,45,190,.4); }
.vxct-fab__btn--main[aria-expanded="true"] { background-image: none; background: var(--vxn-ink); }
.vxct-fab__dot { position: absolute; top: 4px; right: 4px; width: 11px; height: 11px; border-radius: 50%; background: #3FD17A; border: 2px solid #FFFFFF; }
.vxct-fab__btn--main[aria-expanded="true"] .vxct-fab__dot { display: none; }

.vxct-instant {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: calc(clamp(16px, 3vw, 28px) + 78px); z-index: 136;
  width: min(340px, calc(100vw - 32px)); max-height: min(520px, calc(100vh - 120px)); overflow: auto;
  border-radius: 18px; background: #FFFFFF; border: 1px solid var(--vxn-line);
  box-shadow: 0 30px 70px rgba(8,20,40,.28);
  transform-origin: bottom right;
}
.vxct-instant[hidden] { display: none; }
.vxct-instant__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 18px 18px 14px; border-bottom: 1px solid var(--vxn-line); }
.vxct-instant__head > div { display: flex; align-items: flex-start; gap: 10px; }
.vxct-instant__dot { flex: none; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; background: #3FD17A; }
.vxct-instant__head h4 { font-size: 16px; }
.vxct-instant__head small { display: block; margin-top: 2px; color: var(--vxn-muted); font-size: 12px; }
.vxct-instant__x { flex: none; display: grid; place-content: center; width: 30px; height: 30px; border: 0; border-radius: 50%; background: rgba(22,35,59,.06); color: var(--vxn-ink); cursor: pointer; }
.vxct-instant__x:hover { background: rgba(22,35,59,.12); }
.vxct-instant__x svg { width: 13px; height: 13px; }

.vxct-instant__call { display: flex; align-items: center; gap: 12px; margin: 16px 18px 0; padding: 12px 14px; border: 1px solid var(--vxn-line); border-radius: 12px; text-decoration: none !important; transition: border-color .2s var(--vxn-ease), background .2s var(--vxn-ease); }
.vxct-instant__call:hover { border-color: rgba(0,83,183,.3); background: rgba(11,45,190,.04); }
.vxct-instant__call b { display: block; color: var(--vxn-ink); font-weight: 500; font-size: 14px; }
.vxct-instant__call small { color: var(--vxn-muted); font-size: 12.5px; }
.vxct-instant__or { margin: 14px 18px 10px; color: var(--vxn-muted); font-size: 12px; text-align: center; }
.vxct-instant form { padding: 0 18px 18px; }
.vxct-instant .vxct-field { margin-bottom: 10px; }
.vxct-instant .vxct-form__msg { margin-top: 10px; }

@media (max-width: 860px) {
  .vxct-fab { bottom: calc(68px + env(safe-area-inset-bottom)); }
  .vxct-instant { bottom: calc(68px + env(safe-area-inset-bottom) + 78px); }
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.vxct-rv { opacity: 0; transform: translateY(16px); }
.vxct-rv.is-in { opacity: 1; transform: none; transition: opacity .7s var(--vxn-ease), transform .7s var(--vxn-ease); }
.vxct-rv[data-d="1"].is-in { transition-delay: .08s; }
.vxct-rv[data-d="2"].is-in { transition-delay: .16s; }
.vxct-rv[data-d="3"].is-in { transition-delay: .24s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .vxct-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .vxct-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .vxct-hero h1 { max-width: none; }
  .vxct-form__grid, .vxct-pos, .vxct-callout, .vxct-calc__grid, .vxct-impact, .vxct-figband { grid-template-columns: minmax(0, 1fr); }
  .vxct-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vxct-figband__stats { grid-template-columns: minmax(0,1fr); gap: 16px; }
  .vxct-figband__stat { border-left: 0; padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
  .vxct-figband__stat:first-child { padding-top: 0; border-top: 0; }
  .vxct-modal__card { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
  .vxct-modal__side { display: none; }
  .vxct-ready__head { grid-template-columns: minmax(0,1fr); }
  .vxct-ready__lede { justify-self: start; text-align: left; max-width: 52ch; }
  .vxct-ready__face { grid-template-columns: 44px minmax(0,1fr) 40px; grid-template-areas: "icon name go" "icon note go"; row-gap: 4px; column-gap: 16px; }
  .vxct-ready__icon { grid-area: icon; }
  .vxct-ready__name { grid-area: name; align-self: end; }
  .vxct-ready__note { grid-area: note; align-self: start; }
  .vxct-ready__go { grid-area: go; }
}
@media (max-width: 860px) {
  .vxct-hdr__nav { display: none; }
  .vxct-burger { display: inline-flex; }
  .vxct-hdr__cta .vxn-band__pill { display: none; }
  .vxct-hdr__inner { gap: 12px; }
  .vxct-hdr__tag { display: none; }
  .vxct-sbar { display: flex; }
  body { padding-bottom: 68px; }
}
@media (max-width: 860px) {
  /* The 4-column comparison table becomes a stacked block per dimension:
     the row's own dimension text as a heading, then each provider's answer
     labelled by attr(data-label) rather than a column header nobody can see. */
  .vxct-comp__row { display: block; padding: 16px clamp(14px, 3vw, 22px); }
  .vxct-comp__row--head { display: none; }
  .vxct-comp__cell { display: block; padding: 4px 0; }
  .vxct-comp__dim { padding-bottom: 8px; font-size: 15px; }
  .vxct-comp__cell--alt, .vxct-comp__cell--us { padding-left: 0; }
  .vxct-comp__cell--alt::before, .vxct-comp__cell--us::before { content: attr(data-label); display: block; margin-bottom: 2px; color: var(--vxn-muted); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .vxct-comp__row .vxct-comp__cell:last-child, .vxct-comp__row--head .vxct-comp__cell:last-child { background: none; border-radius: 0; margin: 0; padding: 10px 0 0; }
  .vxct-comp__cell--us::before { color: var(--vxn-blue); }
}
@media (max-width: 720px) {
  .vxct-grid--2, .vxct-grid--3, .vxct-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .vxct-btns .vxn-band__pill { width: 100%; }
  .vxct-strip { font-size: 11px; }
  .vxct-path { grid-template-columns: minmax(0, 1fr); }
  .vxct-field--2 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .vxct-price__list--cols { column-count: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vxct-rv { opacity: 1; transform: none; transition: none; }
  .vxn-band__pill, .vxct-faq__a, .vxct-ready__face--fill, .vxct-ready__go, .vxct-trio, .vxct-price, .vxct-fab__btn { transition: none !important; }
}

@media print {
  .vxct-fab, .vxct-instant { display: none !important; }
  .vxct-strip, .vxct-hdr, .vxct-mnav, .vxct-modal, .vxct-sbar, .vxct-pos { display: none !important; }
  .js .vxct-tablewrap { display: block; }
  .vxct-hero, .vxct-dark, .vxct-impact, .vxct-figband, .vxct-ready { background: #FFFFFF !important; color: #16233B !important; }
  .vxct-hero h1, .vxct-impact h2, .vxct-ready__title { color: #16233B !important; }
  .vxct-faq__a { height: auto !important; }
}

@media only screen and (max-width: 767px){
    .vxct-burger {
    display:none;
 } 
}




