/* ==========================================================================
   ANS BUSINESS SOLUTIONS — Design System v2.0 (Modern Fintech)
   --------------------------------------------------------------------------
   Look & feel: Mercury / Brex / Stripe inspired — light, airy, hairline
   borders, large radii, glass surfaces, generous whitespace, ink + amber.
   Structure: 01 Tokens · 02 Base · 03 Layout & type · 04 Buttons & links
              05 Header/nav · 06 Hero · 07 Components · 08 Dark sections
              09 CTA band · 10 Forms · 11 Footer · 12 Utilities · 13 Responsive
   ========================================================================== */

/* ============================ 01. TOKENS ================================= */
:root {
  /* Ink scale (near-black blue — used for dark bands, headings, primary btns) */
  --ink-950: #060B15;
  --ink-900: #0A1020;
  --ink-800: #111A2E;
  --ink-700: #1B2540;

  /* Surfaces */
  --paper:      #FFFFFF;
  --paper-2:    #F7F9FC;
  --paper-3:    #EEF2F8;

  /* Hairlines */
  --line:       rgba(10, 16, 32, .09);
  --line-2:     rgba(10, 16, 32, .16);
  --line-dark:  rgba(255, 255, 255, .10);

  /* Text */
  --text:       #080D18;
  --text-2:     #4C566B;
  --text-3:     #8A93A6;

  /* Brand */
  --amber:      #F5A524;
  --amber-lt:   #FFC862;
  --amber-dk:   #C97B06;
  --amber-soft: rgba(245, 165, 36, .12);
  --gold-grad:  linear-gradient(180deg, #FFCB6B 0%, #F5A524 52%, #DE8C08 100%);
  --blue:       #2563EB;

  /* Radii */
  --r-xs: 10px;  --r-sm: 14px;  --r-md: 18px;
  --r-lg: 24px;  --r-xl: 32px;  --r-pill: 999px;

  /* Elevation (soft, layered — never harsh) */
  --sh-1: 0 1px 2px rgba(10,16,32,.04), 0 1px 1px rgba(10,16,32,.03);
  --sh-2: 0 1px 2px rgba(10,16,32,.04), 0 12px 26px -14px rgba(10,16,32,.18);
  --sh-3: 0 2px 6px rgba(10,16,32,.04), 0 30px 60px -28px rgba(10,16,32,.34);
  --sh-in: inset 0 1px 0 rgba(255,255,255,.55);

  /* Type */
  --font-head: 'Inter Tight', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --container: 1220px;
  --header-h: 74px;
  --sect: clamp(72px, 8vw, 124px);
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Legacy aliases (older markup / Elementor notes may still reference these) */
  --navy-950: var(--ink-950); --navy-900: var(--ink-900);
  --navy-800: var(--ink-800); --navy-700: var(--ink-700);
  --navy-600: #1E3F7A;
  --blue-600: var(--blue); --blue-500: #3B82F6; --blue-50: #EFF4FF;
  --amber-500: var(--amber); --amber-600: var(--amber-dk); --amber-50: #FFF7E8;
  --ink: var(--text); --muted: var(--text-2); --muted-2: var(--text-3);
  --bg-light: var(--paper-2); --radius: var(--r-md); --radius-sm: var(--r-xs);
  --shadow-sm: var(--sh-1); --shadow-md: var(--sh-2); --shadow-lg: var(--sh-3);
  --white: #FFFFFF;
}

/* ============================= 02. BASE ================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11" 1, "ss01" 1, "calt" 1;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(36px, 5vw, 62px); letter-spacing: -.04em; line-height: 1.03; }
h2 { font-size: clamp(27px, 3.3vw, 42px); letter-spacing: -.035em; }
h3 { font-size: 19.5px; letter-spacing: -.02em; }
h4 { font-size: 15px; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img, svg { max-width: 100%; }
img { display: block; height: auto; }
ul, ol { padding-left: 1.1em; }
strong, b { font-weight: 600; color: var(--text); }

::selection { background: var(--amber); color: var(--ink-900); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ======================= 03. LAYOUT & TYPOGRAPHY ========================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  position: relative;
  padding: var(--sect) 0;
}

.section--tight { padding: calc(var(--sect) * .66) 0; }

.section--light {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Section heading block ---------------------------------------------------- */
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(38px, 4.4vw, 60px);
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { margin-bottom: 16px; }
.section-head p  { color: var(--text-2); font-size: 17px; margin: 0; }

/* Eyebrow / kicker --------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 7px 15px 7px 12px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-800);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
  flex: none;
}

/* Gradient highlight text -------------------------------------------------- */
.hl {
  background: linear-gradient(100deg, #F5A524 0%, #FFD684 48%, #EE9708 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ======================== 04. BUTTONS & LINKS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 25px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.005em;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background-color .22s var(--ease), background .22s var(--ease),
              border-color .22s var(--ease), color .22s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }

.btn--primary {
  background: var(--gold-grad);
  color: var(--ink-900);
  box-shadow: var(--sh-in), 0 12px 26px -14px rgba(222, 140, 8, .85);
}
.btn--primary:hover {
  box-shadow: var(--sh-in), 0 18px 34px -14px rgba(222, 140, 8, .95);
  color: var(--ink-950);
}

.btn--navy {
  background: var(--ink-900);
  color: #fff;
  box-shadow: 0 12px 26px -16px rgba(10, 16, 32, .95);
}
.btn--navy:hover { background: var(--ink-700); color: #fff; }

.btn--white {
  background: #fff;
  color: var(--ink-900);
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, .6);
}
.btn--white:hover { background: var(--amber-lt); color: var(--ink-950); }

.btn--outline {
  background: var(--paper);
  color: var(--ink-900);
  border-color: var(--line-2);
  box-shadow: var(--sh-1);
}
.btn--outline:hover {
  background: var(--paper);
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.btn--outline-light {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .42);
  color: #fff;
}

.btn--lg { padding: 18px 30px; font-size: 15.5px; }
.btn--sm { padding: 11px 18px; font-size: 13.5px; gap: 7px; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

/* Animated underline link -------------------------------------------------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-900);
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: background-size .32s var(--ease), color .2s var(--ease);
}
.text-link:hover { background-size: 100% 1.5px; color: var(--ink-900); }
.text-link svg { width: 16px; height: 16px; transition: transform .28s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ========================= 05. HEADER & NAV ============================== */
.topbar {
  background: var(--ink-950);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}
.topbar__group { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14.5px; height: 14.5px; color: var(--amber); flex: none; }
.topbar a { color: rgba(255, 255, 255, .72); }
.topbar a:hover { color: var(--amber-lt); }
.topbar__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--amber-lt);
  background: rgba(245, 165, 36, .12);
  border: 1px solid rgba(245, 165, 36, .28);
  border-radius: var(--r-pill);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 40px -34px rgba(10, 16, 32, .75);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

/* Logo --------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo:hover { color: inherit; }
.logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--amber-lt);
  background: linear-gradient(160deg, #16203A 0%, #070C16 100%);
  border-radius: 13px;
  box-shadow: var(--sh-2), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.logo__mark::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-grad);
  border: 2px solid #fff;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.14; }
.logo__name {
  font-family: var(--font-head);
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--text);
}
.logo__tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Primary nav -------------------------------------------------------------- */
.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-pill);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgba(10, 16, 32, .045); }
.nav__link.is-active { color: var(--text); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
  transform: translateX(-50%);
}
.nav__link .chev {
  width: 13px;
  height: 13px;
  color: var(--text-3);
  transition: transform .28s var(--ease);
}
.has-dropdown:hover .nav__link .chev,
.has-dropdown:focus-within .nav__link .chev { transform: rotate(180deg); }

/* Dropdown (glass panel) --------------------------------------------------- */
.dropdown { position: relative; }
.dropdown__menu {
  --tx: -50%;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 356px;
  max-width: calc(100vw - 48px);
  padding: 10px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(var(--tx)) translateY(6px) scale(.985);
  transform-origin: top center;
  /* Closing: keep the panel hoverable for 200ms (grace period) so the pointer
     never "loses" the menu when travelling from the link into the panel. */
  transition: opacity .2s var(--ease), transform .2s var(--ease),
              visibility 0s linear .2s;
}
/* Invisible hover bridge across the gap between the nav link and the panel —
   this is what stops the menu from vanishing as soon as you move the mouse. */
.dropdown__menu::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -16px;
  height: 18px;
}
.has-dropdown:hover .dropdown__menu,
.has-dropdown:focus-within .dropdown__menu,
.has-dropdown.is-open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(var(--tx)) translateY(0) scale(1);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s;
}
/* Wide 2-column mega panel (Industries) — pinned so it can never overflow */
.dropdown__menu--wide {
  --tx: 0%;
  left: auto;
  right: -32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 520px;
}

/* Parent link stays highlighted while its menu is open */
.has-dropdown:hover > .nav__link,
.has-dropdown:focus-within > .nav__link,
.has-dropdown.is-open > .nav__link {
  color: var(--text);
  background: rgba(10, 16, 32, .045);
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 13px;
  border-radius: var(--r-sm);
  /* Items ease in (staggered) when the panel opens */
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .26s var(--ease), transform .26s var(--ease),
              background-color .2s var(--ease);
}
.has-dropdown:hover .dropdown__item,
.has-dropdown:focus-within .dropdown__item,
.has-dropdown.is-open .dropdown__item { opacity: 1; transform: none; }
.has-dropdown .dropdown__item:nth-child(2) { transition-delay: .025s; }
.has-dropdown .dropdown__item:nth-child(3) { transition-delay: .05s; }
.has-dropdown .dropdown__item:nth-child(4) { transition-delay: .075s; }
.has-dropdown .dropdown__item:nth-child(5) { transition-delay: .1s; }
.has-dropdown .dropdown__item:nth-child(6) { transition-delay: .125s; }
.has-dropdown .dropdown__item:nth-child(n+7) { transition-delay: .15s; }
.dropdown__item:hover { background: rgba(245, 165, 36, .09); }
.dropdown__item a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  color: inherit;
}
.dropdown__item .di-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text);
}
.dropdown__item .di-sub { font-size: 12.5px; line-height: 1.45; color: var(--text-3); }
.di-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .17), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .24);
  border-radius: 11px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.di-icon svg { width: 18px; height: 18px; }
.dropdown__item:hover .di-icon {
  background: var(--gold-grad);
  color: var(--ink-900);
  border-color: transparent;
  transform: scale(1.05);
}

/* Header actions ----------------------------------------------------------- */
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper);
  box-shadow: var(--sh-1);
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.header__phone:hover { border-color: var(--line-2); transform: translateY(-1px); color: var(--text); }
.header__phone svg { width: 16px; height: 16px; color: var(--amber-dk); flex: none; }
.header__phone span { display: flex; flex-direction: column; line-height: 1.15; }
.header__phone small {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Hamburger ---------------------------------------------------------------- */
.hamburger {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  box-shadow: var(--sh-1);
}
.hamburger span {
  position: relative;
  width: 18px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink-900);
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .2s;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink-900);
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .2s;
}
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after  { position: absolute; top: 6px; }
body.nav-open .hamburger span { background: transparent; }
body.nav-open .hamburger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .hamburger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav --------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  padding: 96px 24px 40px;
  overflow-y: auto;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(245, 165, 36, .16), transparent 60%),
    linear-gradient(180deg, #0C1426 0%, #060A14 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px;
  font-family: var(--font-head);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
}
.mobile-nav__link:hover { color: var(--amber-lt); }
.mobile-nav__link .chev {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .45);
  transition: transform .28s var(--ease);
}
.mn-group.open > .mobile-nav__link .chev { transform: rotate(180deg); }
.mn-sub { max-height: 0; overflow: hidden; transition: max-height .36s var(--ease); }
.mn-group.open .mn-sub { max-height: 680px; }
.mn-sub a {
  display: block;
  padding: 11px 0 11px 16px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .6);
  border-left: 1px solid rgba(255, 255, 255, .12);
  margin-left: 2px;
}
.mn-sub a:hover { color: var(--amber-lt); border-left-color: var(--amber); }

.mobile-nav__foot { display: grid; gap: 12px; margin-top: 30px; }
.mobile-nav__foot .btn { width: 100%; }
.mobile-nav__contact {
  display: grid;
  gap: 11px;
  margin-top: 26px;
  font-size: 14.5px;
}
.mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .66);
}
.mobile-nav__contact a:hover { color: var(--amber-lt); }
.mobile-nav__contact svg { width: 16px; height: 16px; color: var(--amber); flex: none; }

/* ============================== 06. HERO ================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 clamp(60px, 7vw, 96px);
  background: var(--paper);
}
/* Aurora mesh glow */
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -12% auto -12%;
  height: 130%;
  z-index: -2;
  background:
    radial-gradient(46% 44% at 10% 6%,  rgba(245, 165, 36, .20), transparent 62%),
    radial-gradient(44% 46% at 88% 2%,  rgba(37, 99, 235, .16),  transparent 64%),
    radial-gradient(36% 40% at 62% 42%, rgba(245, 165, 36, .10), transparent 70%);
  filter: blur(6px);
}
/* Fine grid, faded out at edges */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(10, 16, 32, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 16, 32, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(80% 62% at 50% 22%, #000 0%, transparent 78%);
  mask-image: radial-gradient(80% 62% at 50% 22%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 13px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-dk);
  background: rgba(245, 165, 36, .10);
  border: 1px solid rgba(245, 165, 36, .24);
  border-radius: var(--r-pill);
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 165, 36, .16);
  flex: none;
}
.hero h1 { margin: 24px 0 22px; }

.hero__content { min-width: 0; }

.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero__tags span {
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
}
.hero__sub {
  max-width: 60ch;
  font-size: 17.5px;
  line-height: 1.68;
  color: var(--text-2);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 28px; }
.hero__trust { padding-top: 4px; }
.trust-checks { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.trust-checks span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.trust-checks svg {
  width: 15px; height: 15px;
  padding: 3px;
  color: var(--ink-900);
  background: var(--gold-grad);
  border-radius: 50%;
  flex: none;
  box-sizing: content-box;
}

/* Hero media --------------------------------------------------------------- */
.hero__media { position: relative; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: auto -8% -10% -8%;
  height: 62%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(245, 165, 36, .40), rgba(37, 99, 235, .28));
  filter: blur(62px);
  opacity: .6;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid rgba(10, 16, 32, .07);
  box-shadow: var(--sh-3);
}
.hero__badge {
  position: absolute;
  left: -16px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 322px;
  padding: 14px 17px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
}
.hero__badge .hb-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  color: var(--ink-900);
  background: var(--gold-grad);
  border-radius: 11px;
}
.hero__badge .hb-icon svg { width: 19px; height: 19px; }
.hero__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: -.015em;
  margin-bottom: 3px;
}
.hero__badge small { display: block; font-size: 12px; line-height: 1.45; color: var(--text-3); }

.hero__float {
  position: absolute;
  right: -14px;
  top: 24px;
  padding: 13px 18px;
  background: linear-gradient(160deg, #16203A, #080E1C);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  text-align: center;
}
.hero__float b {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: 5px;
}
.hero__float small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* Hero stats --------------------------------------------------------------- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(46px, 5.4vw, 76px);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.hstat { padding: 28px 26px 26px; border-right: 1px solid var(--line); }
.hstat:last-child { border-right: 0; }
.hstat::before {
  content: "";
  display: block;
  width: 26px; height: 2px;
  margin-bottom: 18px;
  border-radius: 2px;
  background: var(--gold-grad);
}
.hstat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 9px;
  font-variant-numeric: tabular-nums;
}
.hstat span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-3);
}

/* Inner page hero (dark band) --------------------------------------------- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 6.4vw, 86px) 0 clamp(52px, 6.6vw, 90px);
  background: radial-gradient(130% 130% at 6% -10%, #17233F 0%, #0A1020 46%, #060A14 100%);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(74% 90% at 22% 12%, #000 0%, transparent 76%);
  mask-image: radial-gradient(74% 90% at 22% 12%, #000 0%, transparent 76%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 62%;
  height: 130%;
  z-index: -1;
  background: radial-gradient(46% 46% at 76% 22%, rgba(245, 165, 36, .26), transparent 66%);
  filter: blur(10px);
}
.page-hero h1 { color: #fff; margin: 20px 0 20px; max-width: 26ch; }
.page-hero p {
  max-width: 74ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .7);
}
.page-hero .btn-row { margin-top: 32px; }
.page-hero .breadcrumb { margin-bottom: 8px; }

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255, 255, 255, .62); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { width: 13px; height: 13px; opacity: .45; }
.breadcrumb .current { color: var(--amber-lt); font-weight: 600; }

/* =========================== 07. COMPONENTS ============================== */
/* Grids -------------------------------------------------------------------- */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.seg-grid--5 { grid-template-columns: repeat(5, 1fr); }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.b2b-b2c { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }

/* Card --------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 30px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .36s var(--ease), box-shadow .36s var(--ease), border-color .36s var(--ease);
}
.card.tone-a { background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 62%); }
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 165, 36, .95), transparent);
  opacity: 0;
  transition: opacity .36s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  top: -110px; right: -90px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(245, 165, 36, .18), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 165, 36, .38);
  box-shadow: var(--sh-3);
}
.card:hover::before, .card:hover::after { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 20px;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .19), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .24);
  border-radius: 15px;
  transition: background .36s var(--ease), color .36s var(--ease),
              transform .36s var(--ease), box-shadow .36s var(--ease);
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon {
  background: var(--gold-grad);
  color: var(--ink-900);
  border-color: transparent;
  transform: rotate(-6deg) scale(1.04);
  box-shadow: 0 12px 22px -12px rgba(222, 140, 8, .9);
}
.card h3 { margin-bottom: 10px; }
.card p { flex: 1; font-size: 15px; line-height: 1.65; color: var(--text-2); margin-bottom: 20px; }
.card .text-link { margin-top: auto; font-size: 14px; }

/* Service block (numbered) ------------------------------------------------- */
.svc-block {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .36s var(--ease), box-shadow .36s var(--ease), border-color .36s var(--ease);
}
.svc-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 165, 36, .95), transparent);
  opacity: 0;
  transition: opacity .36s var(--ease);
}
.svc-block:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 165, 36, .38);
  box-shadow: var(--sh-3);
}
.svc-block:hover::before { opacity: 1; }
.sb-num {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber-dk);
}
.sb-num::before {
  content: "";
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--amber);
  flex: none;
}
.svc-block h3 { margin-bottom: 10px; font-size: 19px; }
.svc-block p { font-size: 15px; line-height: 1.65; color: var(--text-2); }

/* Why item (icon + text) --------------------------------------------------- */
.why {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.why:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 165, 36, .34);
  box-shadow: var(--sh-2);
}
.why__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .18), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .22);
  border-radius: 13px;
  transition: background .32s var(--ease), color .32s var(--ease);
}
.why__icon svg { width: 21px; height: 21px; }
.why:hover .why__icon { background: var(--gold-grad); color: var(--ink-900); border-color: transparent; }
.why h3 { margin-bottom: 7px; font-size: 16.5px; }
.why p { font-size: 14.5px; line-height: 1.6; color: var(--text-2); }

/* Segment tile ------------------------------------------------------------- */
.seg {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.seg:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 165, 36, .34);
  box-shadow: var(--sh-2);
}
.seg__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .18), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .22);
  border-radius: 13px;
  transition: background .32s var(--ease), color .32s var(--ease), transform .32s var(--ease);
}
.seg__icon svg { width: 21px; height: 21px; }
.seg:hover .seg__icon { background: var(--gold-grad); color: var(--ink-900); border-color: transparent; }
.seg h3 { margin-bottom: 8px; font-size: 16.5px; }
.seg p { font-size: 14.5px; line-height: 1.6; color: var(--text-2); }

/* Steps (numbered timeline) ------------------------------------------------ */
.steps {
  counter-reset: step;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 3%; right: 3%; top: 23px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(10, 16, 32, .04), rgba(245, 165, 36, .55), rgba(10, 16, 32, .04));
}
.step { position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 22px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-900);
  background: var(--paper);
  border: 1px solid rgba(245, 165, 36, .45);
  border-radius: 14px;
  box-shadow: var(--sh-1);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.step:hover::before { background: var(--gold-grad); transform: translateY(-3px); }
.step h3 { margin-bottom: 9px; font-size: 16.5px; }
.step p { font-size: 14.5px; line-height: 1.62; color: var(--text-2); }
.steps--6 { grid-template-columns: repeat(6, 1fr); }

/* Industry block ----------------------------------------------------------- */
.industry {
  scroll-margin-top: 170px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.industry:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 165, 36, .34);
  box-shadow: var(--sh-2);
}
.industry:target {
  border-color: rgba(245, 165, 36, .6);
  box-shadow: 0 0 0 4px rgba(245, 165, 36, .14), var(--sh-2);
}
.industry__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.industry__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .18), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .22);
  border-radius: 13px;
}
.industry__icon svg { width: 21px; height: 21px; }
.industry:hover .industry__icon { background: var(--gold-grad); color: var(--ink-900); border-color: transparent; }
.ind-no {
  display: block;
  margin-bottom: 3px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.industry h3 { font-size: 19px; }
.industry p { font-size: 15px; line-height: 1.65; color: var(--text-2); margin-bottom: 18px; }

/* Sticky sub-nav ----------------------------------------------------------- */
.subnav {
  position: sticky;
  top: calc(var(--header-h) + 10px);
  z-index: 70;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.subnav__inner {
  display: flex;
  gap: 4px;
  padding: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__inner a {
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-2);
  border-radius: var(--r-pill);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.subnav__inner a:hover { color: var(--text); background: rgba(10, 16, 32, .05); }
.subnav__inner a.is-active {
  color: #fff;
  font-weight: 600;
  background: var(--ink-900);
  box-shadow: 0 8px 18px -12px rgba(10, 16, 32, .95);
}

/* B2B / B2C ---------------------------------------------------------------- */
.b2b-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.b2b-card--c { background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 62%); }
.b2b-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 165, 36, .34);
  box-shadow: var(--sh-2);
}
.bb-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink-900);
  border-radius: var(--r-pill);
}
.b2b-card--c .bb-tag { background: var(--gold-grad); color: var(--ink-900); }
.b2b-card h3 { margin-bottom: 10px; }
.b2b-card p { font-size: 15.5px; line-height: 1.65; color: var(--text-2); }

/* Info cards --------------------------------------------------------------- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 165, 36, .34);
  box-shadow: var(--sh-2);
}
.ic-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .18), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .22);
  border-radius: 12px;
}
.ic-icon svg { width: 19px; height: 19px; }
.info-card h3 { margin-bottom: 5px; font-size: 15.5px; }
.info-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.info-card a:hover { color: var(--amber-dk); }
.ic-note { margin-top: 5px !important; font-size: 12.5px; color: var(--text-3) !important; }

/* Next steps (numbered list) ---------------------------------------------- */
.next-steps { display: grid; gap: 12px; margin-top: 22px; }
.next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  padding: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.next-step b {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-top: 2px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--amber-lt);
  background: var(--ink-900);
  border-radius: 11px;
}
.next-step h3 { grid-column: 2; font-size: 15.5px; margin-bottom: 3px; }
.next-step p { grid-column: 2; font-size: 14.5px; line-height: 1.6; color: var(--text-2); margin: 0; }

/* Reason list (partner) --------------------------------------------------- */
.reason-list { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.reason-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.reason-list li:hover { border-color: rgba(245, 165, 36, .34); transform: translateX(3px); }
.reason-list .ri {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  color: var(--amber-dk);
  background: linear-gradient(160deg, rgba(245, 165, 36, .18), rgba(245, 165, 36, .05));
  border: 1px solid rgba(245, 165, 36, .22);
  border-radius: 10px;
}
.reason-list .ri svg { width: 17px; height: 17px; }
.reason-list strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: -.015em;
}
.reason-list span:not(.ri) { font-size: 14.5px; line-height: 1.6; color: var(--text-2); }

/* Split feature row ------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid rgba(10, 16, 32, .07);
  box-shadow: var(--sh-3);
}
.media-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 340px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
}
.media-chip svg { width: 19px; height: 19px; color: var(--amber-dk); flex: none; }
.media-chip small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
}
.split__body h2 { margin: 16px 0 18px; }
.split__body p { font-size: 16.5px; line-height: 1.72; color: var(--text-2); }

/* Checklist --------------------------------------------------------------- */
.check-list { display: grid; gap: 14px; margin: 26px 0 28px; padding: 0; list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--text-2);
}
.check-list strong { color: var(--text); }
.ci {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  flex: none;
  margin-top: 2px;
  color: var(--ink-900);
  background: var(--gold-grad);
  border-radius: 8px;
}
.ci svg { width: 13px; height: 13px; }

/* Chips ------------------------------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chip {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: color .22s var(--ease), border-color .22s var(--ease), background-color .22s var(--ease);
}
.chip:hover { color: var(--text); background: var(--paper); border-color: rgba(245, 165, 36, .45); }

/* Partner ----------------------------------------------------------------- */
.partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.partner__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid rgba(10, 16, 32, .07);
  box-shadow: var(--sh-3);
}
.partner__body h2 { margin: 16px 0 18px; }
.partner__body p { font-size: 16.5px; line-height: 1.72; color: var(--text-2); }

/* ========================= 08. DARK SECTIONS ============================ */
/* Rounded "band" — the modern way to break up a light page */
.section--navy {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  padding: var(--sect) 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .08);
  background: radial-gradient(120% 120% at 0% 0%, #16203C 0%, #0A1020 48%, #060A14 100%);
  box-shadow: var(--sh-3);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(80% 90% at 12% 6%, #000 0%, transparent 72%);
  mask-image: radial-gradient(80% 90% at 12% 6%, #000 0%, transparent 72%);
}
.section--navy::after {
  content: "";
  position: absolute;
  top: -30%; right: -12%;
  width: 70%; height: 130%;
  z-index: -1;
  background: radial-gradient(40% 42% at 70% 30%, rgba(245, 165, 36, .22), transparent 66%);
  filter: blur(8px);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255, 255, 255, .66); }
.section--navy .kicker {
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.section--navy .section-head p { color: rgba(255, 255, 255, .66); }
.section--navy .chip {
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .13);
}
.section--navy .chip:hover { color: #fff; border-color: rgba(245, 165, 36, .5); background: rgba(255, 255, 255, .1); }
.section--navy .check-list li { color: rgba(255, 255, 255, .7); }
.section--navy .check-list strong { color: #fff; }
.section--navy .text-link { color: #fff; }
.section--navy .btn--outline {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  box-shadow: none;
}
.section--navy .btn--outline:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .4); }
/* Glass cards inside dark bands */
.section--navy .card,
.section--navy .svc-block,
.section--navy .why,
.section--navy .seg,
.section--navy .industry,
.section--navy .b2b-card,
.section--navy .info-card,
.section--navy .reason-list li {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.section--navy .card.tone-a,
.section--navy .b2b-card--c { background: rgba(245, 165, 36, .07); }
.section--navy .card:hover,
.section--navy .svc-block:hover,
.section--navy .why:hover,
.section--navy .seg:hover,
.section--navy .industry:hover,
.section--navy .b2b-card:hover,
.section--navy .info-card:hover {
  border-color: rgba(245, 165, 36, .45);
  box-shadow: 0 26px 50px -32px rgba(0, 0, 0, .9);
}
.section--navy .card p,
.section--navy .svc-block p,
.section--navy .why p,
.section--navy .seg p,
.section--navy .industry p,
.section--navy .b2b-card p { color: rgba(255, 255, 255, .62); }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: rgba(255, 255, 255, .6); }
.section--navy .steps::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(245, 165, 36, .5), rgba(255, 255, 255, .05));
}
.section--navy .step::before {
  color: var(--amber-lt);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(245, 165, 36, .38);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.section--navy .step:hover::before { background: var(--gold-grad); color: var(--ink-900); }
.section--navy .media-chip {
  background: rgba(12, 20, 38, .72);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}
.section--navy .media-chip svg { color: var(--amber-lt); }
.section--navy .media-chip small { color: rgba(255, 255, 255, .5); }

/* =========================== 09. CTA BAND =============================== */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 4.6vw, 58px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .09);
  background: radial-gradient(120% 130% at 100% 0%, #1B2745 0%, #0A1020 52%, #060A14 100%);
  box-shadow: var(--sh-3);
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(70% 100% at 85% 100%, #000 0%, transparent 74%);
  mask-image: radial-gradient(70% 100% at 85% 100%, #000 0%, transparent 74%);
}
.cta-band::after {
  content: "";
  position: absolute;
  left: -14%; bottom: -50%;
  width: 60%; height: 140%;
  z-index: -1;
  background: radial-gradient(42% 44% at 40% 50%, rgba(245, 165, 36, .28), transparent 68%);
  filter: blur(8px);
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { max-width: 56ch; font-size: 15.5px; line-height: 1.7; color: rgba(255, 255, 255, .66); }
.cta-band .kicker {
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
}
.cta-band .btn-row { justify-content: flex-end; }

/* ============================= 10. FORMS ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}
.form-panel {
  padding: clamp(24px, 3.2vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
}
.form-panel > h3 { font-size: 25px; margin-bottom: 9px; }
.form-panel > p { margin-bottom: 26px; font-size: 15px; color: var(--text-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: -.005em; }
.req { color: var(--amber-dk); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A93A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: rgba(245, 165, 36, .75);
  box-shadow: 0 0 0 4px rgba(245, 165, 36, .14);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #E5484D;
  background: #FFF8F8;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, .1);
}
.err-msg { display: none; font-size: 12.5px; font-weight: 500; color: #D33A3F; }
.field.has-error .err-msg { display: block; }
.form-panel .btn { width: 100%; margin-top: 24px; }
.form-note { margin-top: 14px !important; font-size: 12.5px; line-height: 1.55; color: var(--text-3); }

.form-success { display: none; }
.form-success.show {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(245, 165, 36, .13), rgba(245, 165, 36, .04));
  border: 1px solid rgba(245, 165, 36, .38);
  border-radius: var(--r-md);
  animation: revealUp .6s var(--ease) backwards;
}
.fs-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  color: var(--ink-900);
  background: var(--gold-grad);
  border-radius: 11px;
}
.fs-icon svg { width: 17px; height: 17px; }
.form-success h3 { grid-column: 2; font-size: 17px; }
.form-success p { grid-column: 2; font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0; }
.form-success a { font-weight: 600; color: var(--amber-dk); }

/* ============================= 11. FOOTER =============================== */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(56px, 7vw, 88px) 0 0;
  color: rgba(255, 255, 255, .6);
  background: radial-gradient(110% 110% at 0% 0%, #13203C 0%, #0A1020 46%, #060A14 100%);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(70% 80% at 8% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(70% 80% at 8% 0%, #000 0%, transparent 70%);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.25fr 1.35fr;
  gap: 40px;
  padding-bottom: clamp(38px, 4vw, 54px);
}
.footer__about p {
  margin: 20px 0 22px;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .55);
}
.footer .logo__name { color: #fff; }
.footer .logo__tag { color: rgba(255, 255, 255, .42); }
.footer h4 {
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.footer ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.footer ul a { font-size: 14.5px; color: rgba(255, 255, 255, .62); }
.footer ul a:hover { color: var(--amber-lt); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 13px;
  transition: transform .26s var(--ease), background .26s var(--ease), color .26s var(--ease), border-color .26s;
}
.footer__social a:hover {
  transform: translateY(-3px);
  background: var(--gold-grad);
  color: var(--ink-900);
  border-color: transparent;
}
.footer__social svg { width: 17px; height: 17px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .62);
}
.footer__contact svg { width: 17px; height: 17px; margin-top: 3px; color: var(--amber); flex: none; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer__bottom a { color: rgba(255, 255, 255, .55); }
.footer__bottom a:hover { color: var(--amber-lt); }
.footer__disclaimer {
  padding-top: 20px !important;
  padding-bottom: 30px !important;
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, .34);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ============================ 12. UTILITIES ============================= */
/* Scroll reveal — only active when JS is available (so no-JS users see all content) */
.js .reveal { opacity: 0; }
.js .reveal.in { opacity: 1; animation: revealUp .78s var(--ease) backwards; }
.js .reveal.in[data-delay="1"] { animation-delay: .09s; }
.js .reveal.in[data-delay="2"] { animation-delay: .18s; }
.js .reveal.in[data-delay="3"] { animation-delay: .27s; }
.js .reveal.in[data-delay="4"] { animation-delay: .36s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  padding: 0;
  color: #fff;
  background: var(--ink-900);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: var(--sh-3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.94);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s,
              background .26s var(--ease), color .26s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-grad); color: var(--ink-900); border-color: transparent; }
.to-top svg { width: 19px; height: 19px; }

/* ============================ 13. RESPONSIVE ============================ */
@media (max-width: 1180px) {
  :root { --container: 100%; }
  .header__phone { display: none; }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .hamburger { display: grid; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { max-width: 620px; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-grid, .seg-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps--6 { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .partner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  :root { --sect: clamp(60px, 9vw, 88px); }
  .industry-grid { grid-template-columns: 1fr; }
  .b2b-b2c { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hstat:nth-child(odd) { border-right: 1px solid var(--line); }
  .hstat:nth-child(even) { border-right: 0; }
  .hstat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .page-hero h1 { max-width: none; }
  .subnav { top: calc(var(--header-h) + 6px); }
  .hero__badge { left: 0; bottom: 16px; max-width: 78%; }
  .hero__float { right: 0; top: 14px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .cards--3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .seg-grid, .seg-grid--5 { grid-template-columns: 1fr; }
  .steps, .steps--6 { grid-template-columns: 1fr; gap: 26px; }
  .step::before { margin-bottom: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .section--navy { width: calc(100% - 24px); border-radius: var(--r-lg); }
  .page-hero { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .cta-band { padding: 30px 24px; border-radius: var(--r-lg); }
  .hero__actions .btn { width: 100%; }
  .media-chip { position: static; max-width: none; margin-top: 14px; }
  .card, .svc-block { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hstat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .hstat:last-child { border-bottom: 0; }
  .topbar__hours { display: none; }
  .subnav { padding-inline: 16px; }
  .btn-row .btn { width: 100%; }
}

@media (min-width: 1081px) {
  .mobile-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.in { opacity: 1; animation: none; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}
*::before, *::after { transition-duration: .001ms !important; }
}
