/* =========================================================
   Best Title Services — Design System
   Hickory, NC · Apple-inspired · floating glass · soft motion
   Brand: #0e2b6a navy · #fdc931 gold · #f96223 orange
   ========================================================= */

:root {
  /* Ink & surface */
  --ink:        #12182a;
  --ink-soft:   #414a5f;
  --muted:      #6b7386;
  --line:       rgba(14, 43, 106, 0.10);
  --bg:         #fbfbfd;
  --bg-2:       #f1f4fa;
  --white:      #ffffff;

  /* Brand */
  --navy:       #0e2b6a;
  --navy-deep:  #081c48;
  --navy-lift:  #1f56c4;
  --gold:       #fdc931;
  --gold-deep:  #e8ae12;
  --orange:     #f96223;

  --brand:      #0e2b6a;
  --brand-2:    #1f56c4;

  --grad-brand: linear-gradient(120deg, #0e2b6a 0%, #17409c 52%, #1f56c4 100%);
  --grad-warm:  linear-gradient(100deg, #fdc931 0%, #fba52c 52%, #f96223 100%);
  --grad-ink:   linear-gradient(160deg, #0b2258 0%, #0e2b6a 52%, #071740 100%);

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.66);
  --glass-brd:    rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 20px 50px -20px rgba(8, 28, 72, 0.34);

  /* Radius & motion */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 30px;
  --r-xl: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 24px 60px -24px rgba(8, 28, 72, 0.32);
  --shadow-soft: 0 8px 30px -12px rgba(8, 28, 72, 0.20);

  --maxw: 1180px;
  --nav-h: 68px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(253, 201, 49, 0.42); color: var(--navy); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: clamp(70px, 10vw, 130px) 0; }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold); }

h1, h2, h3 { letter-spacing: -0.022em; line-height: 1.06; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); letter-spacing: -0.01em; }
p  { color: var(--ink-soft); font-size: clamp(1rem, 1.2vw, 1.1rem); }

.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--ink-soft); }
.section-head { max-width: 730px; margin: 0 auto clamp(40px, 6vw, 66px); text-align: center; }
.section-head p { margin-top: 18px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); }

/* Gradient text — warm for dark grounds, blue for light grounds */
.text-grad {
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-grad-b {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 650; border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 14px 34px -14px rgba(14, 43, 106, 0.75);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(14, 43, 106, 0.85); }
.btn--gold {
  color: var(--navy); background: var(--grad-warm);
  box-shadow: 0 14px 34px -14px rgba(249, 98, 35, 0.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(249, 98, 35, 0.8); }
.btn--ghost { color: var(--ink); background: rgba(255,255,255,0.6); border-color: var(--line); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn--light { color: var(--navy); background: #fff; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(0,0,0,0.4); }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); }
.btn--outline-light:hover { transform: translateY(-3px); background: rgba(255,255,255,0.16); }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav.scrolled {
  background: rgba(251, 251, 253, 0.80);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(14, 43, 106, 0.08);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 42px; width: auto; }
.nav__logo .logo-light { display: none; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 14.5px; font-weight: 550; color: var(--ink-soft);
  position: relative; transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0;
  background: var(--grad-warm); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 650; color: var(--ink); }
.nav__phone svg { width: 15px; height: 15px; color: var(--brand-2); }
.nav__burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(251,251,253,0.97); backdrop-filter: blur(24px);
  padding: 24px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-140%); transition: transform .5s var(--ease);
  box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 14px 8px; font-size: 18px; font-weight: 550; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; border-bottom: none; }

/* ---------- Backdrop blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: 0; pointer-events: none; }
.blob--a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(31,86,196,0.45), transparent 70%); }
.blob--b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(253,201,49,0.40), transparent 70%); }
.blob--c { width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,98,35,0.32), transparent 70%); }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px)); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; margin-bottom: 24px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--glass-brd); border-radius: 999px;
  font-size: 13px; font-weight: 650; color: var(--ink-soft); box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #35c46f; box-shadow: 0 0 0 4px rgba(53,196,111,0.24); }
.hero h1 { margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.08rem, 1.5vw, 1.26rem); color: var(--ink-soft); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Floating glass cards */
.fc-wrap { position: absolute; z-index: 4; transition: transform .5s var(--ease); will-change: transform; }
.float-card {
  background: rgba(255,255,255,0.72); backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.55); border-radius: var(--r);
  box-shadow: var(--glass-shadow); padding: 16px 18px; min-width: 190px;
}
.float-card .fc-title { font-size: 13.5px; font-weight: 750; color: var(--navy); line-height: 1.3; }
.float-card .fc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.float-card .fc-ico {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-warm); color: var(--navy); margin-bottom: 10px;
}
.float-card .fc-ico svg { width: 20px; height: 20px; }
.float-card--row { display: flex; align-items: center; gap: 11px; padding: 13px 17px; }
.float-card--row .fc-ico { margin-bottom: 0; flex: none; }
.float-card .pulse { width: 34px; height: 34px; border-radius: 50%; background: rgba(53,196,111,0.18); display: grid; place-items: center; flex: none; }
.float-card .pulse i { width: 10px; height: 10px; border-radius: 50%; background: #35c46f; animation: pulsed 2.4s var(--ease) infinite; }
@keyframes pulsed { 0%,100% { box-shadow: 0 0 0 0 rgba(53,196,111,.55); } 60% { box-shadow: 0 0 0 9px rgba(53,196,111,0); } }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.anim-float { animation: floaty 6.5s ease-in-out infinite; }
.anim-float.delay { animation-delay: -3.2s; }
.anim-float.delay2 { animation-delay: -1.6s; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden; z-index: 1;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-warm); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card__ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-warm); color: var(--navy); margin-bottom: 22px;
  box-shadow: 0 10px 22px -10px rgba(249, 98, 35, 0.6);
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 1rem; margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.card strong { color: var(--navy); font-weight: 700; }

/* Feature chips */
.feature {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-soft); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature__ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff;
}
.feature__ico svg { width: 21px; height: 21px; }
.feature b { font-size: 1.02rem; font-weight: 650; display: block; color: var(--ink); }
.feature span { font-size: 0.92rem; color: var(--muted); }

/* ---------- Split / alternating media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.6); aspect-ratio: 4/3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__body h2 { margin-bottom: 20px; }
.split__body p { margin-bottom: 16px; }
.badge-pill {
  position: absolute; bottom: 18px; left: 18px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border: 1px solid var(--glass-brd);
  font-size: 13px; font-weight: 750; color: var(--navy); box-shadow: var(--shadow-soft);
}

/* Check list */
.checklist { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.04rem; color: var(--ink-soft); }
.checklist li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }
.checklist--tight li { font-size: 1rem; }

/* ---------- Dark band / CTA ---------- */
.band { position: relative; overflow: hidden; background: var(--grad-ink); color: #fff; }
.band .eyebrow { color: var(--gold); }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255,255,255,0.74); }
.band .wrap { position: relative; z-index: 2; }

.cta-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 74px);
  background: var(--grad-ink); color: #fff; text-align: center; box-shadow: var(--shadow-card);
}
.cta-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(620px circle at 18% 0%, rgba(31,86,196,0.55), transparent 58%),
              radial-gradient(520px circle at 92% 100%, rgba(249,98,35,0.34), transparent 58%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; margin-bottom: 18px; }
.cta-card p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Partner / WFG */
.partner { text-align: center; }
.partner__logo {
  max-width: 300px; margin: 26px auto 0; padding: 26px 34px; background: #fff;
  border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.partner__logo img { width: 100%; height: auto; }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card {
  text-align: center; padding: 30px 20px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); }
.stat-card b { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 750; letter-spacing: -0.03em; display: block; }
.stat-card b .text-grad-b { display: inline; }
.stat-card span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* Accordion */
.accordion { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.acc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-soft); overflow: hidden; transition: box-shadow .4s var(--ease);
}
.acc:hover { box-shadow: var(--shadow-card); }
.acc__q {
  width: 100%; text-align: left; padding: 22px 26px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; background: none; border: none;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem); font-weight: 650; color: var(--ink);
}
.acc__q .ico { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); transition: transform .4s var(--ease), background .3s; }
.acc__q .ico svg { width: 16px; height: 16px; color: var(--brand-2); }
.acc.open .acc__q .ico { transform: rotate(45deg); background: var(--grad-warm); }
.acc.open .acc__q .ico svg { color: var(--navy); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__a-inner { padding: 0 26px 24px; }
.acc__a-inner p { margin-bottom: 12px; }
.acc__a-inner p:last-child { margin-bottom: 0; }

/* Coverage cards */
.cover-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cover-card { padding: 34px; border-radius: var(--r-lg); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.cover-card--yes { background: linear-gradient(180deg, #ffffff, #f2f6ff); }
.cover-card--no  { background: linear-gradient(180deg, #ffffff, #fff6f1); }
.cover-card h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.cover-card h3 .tag { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.cover-card--yes .tag { background: var(--navy); }
.cover-card--no  .tag { background: var(--orange); }
.cover-list { list-style: none; display: grid; gap: 11px; }
.cover-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.98rem; color: var(--ink-soft); }
.cover-list li svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 3px; }
.cover-card--yes li svg { color: var(--navy); }
.cover-card--no  li svg { color: var(--orange); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 64px 0 32px; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; position: relative; z-index: 2; }
.footer__logo img { height: 40px; margin-bottom: 18px; }
.footer p { color: rgba(255,255,255,0.62); font-size: 0.95rem; max-width: 330px; }
.footer h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 700; }
.footer__links { display: grid; gap: 12px; }
.footer__links a, .footer__contact a, .footer__contact span { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: color .25s; display: inline-flex; align-items: flex-start; gap: 9px; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__contact { display: grid; gap: 12px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.52); position: relative; z-index: 2;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }
[data-reveal].d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .anim-float, .float-card .pulse i { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Page chrome — hero, subhero, contact, responsive
   ========================================================= */

/* Transparent nav over dark hero */
.nav:not(.scrolled) { background: transparent; box-shadow: none; }
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,.92); }
.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__links a.active { color: #fff; }
.nav:not(.scrolled) .nav__phone { color: #fff; }
.nav:not(.scrolled) .nav__phone svg { color: var(--gold); }
.nav:not(.scrolled) .logo-dark { display: none; }
.nav:not(.scrolled) .logo-light { display: block; }
.nav:not(.scrolled) .nav__burger { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.42); }
.nav:not(.scrolled) .nav__burger span { background: #fff; }
.nav.scrolled .logo-light { display: none; }
.nav.scrolled .logo-dark { display: block; }
/* Order button inverts to gold while the nav sits on the dark hero */
.nav:not(.scrolled) .btn--primary {
  background: var(--grad-warm); color: var(--navy);
  box-shadow: 0 14px 30px -14px rgba(249, 98, 35, 0.8);
}

/* Home full-bleed background hero */
.hero--home {
  min-height: 94svh; display: flex; align-items: center; color: #fff;
  padding-top: var(--nav-h); padding-bottom: clamp(130px, 16vh, 200px);
}
.hero--home .hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero--home .hero__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero--home .hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,23,64,.44) 0%, rgba(7,23,64,.16) 38%, rgba(7,23,64,.80) 100%),
    linear-gradient(100deg, rgba(7,23,64,.84) 0%, rgba(7,23,64,.40) 46%, rgba(7,23,64,0) 72%);
}
.hero--home .wrap { position: relative; z-index: 2; }
.hero--home .hero__content { max-width: 700px; }
.hero--home h1 { color: #fff; margin: 16px 0 22px; text-wrap: balance; }
.hero--home .hero__sub { color: rgba(255,255,255,.93); max-width: 590px; margin-bottom: 30px; }
.hero--home .hero__badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.32); color: #fff; }
.hero--home .btn--ghost { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.10); }
.hero--home .btn--ghost:hover { background: rgba(255,255,255,.2); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: rgba(255,255,255,.93); font-weight: 550; }
.hero-badges svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* Floating card placement over the hero */
.hero__floats { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.hero__floats .fc-wrap { pointer-events: auto; }
.fc-a { top: 20%; right: 6%; }
.fc-b { top: 46%; right: 17%; }
.fc-c { top: 66%; right: 4%; }
@media (max-width: 1080px) { .hero__floats { display: none; } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.72); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
}
.hero__scroll .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.55); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: #fff; border-radius: 2px; animation: scrolldot 1.9s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* Floating stats card overlapping the hero */
.stats-float { position: relative; z-index: 5; margin-top: -62px; padding-top: 0; }
@media (max-width: 720px) { .stats-float { margin-top: -34px; } }

/* Dark subhero for interior pages */
.subhero {
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 86px)); padding-bottom: clamp(40px, 6vw, 74px);
  background: var(--grad-ink); color: #fff; position: relative; overflow: hidden;
}
.subhero::before {
  content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,86,196,.55), transparent 70%); filter: blur(60px); top: -180px; right: -70px;
}
.subhero::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,201,49,.26), transparent 70%); filter: blur(60px); bottom: -220px; left: -110px;
}
.subhero .wrap { position: relative; z-index: 2; }
.subhero .section-head { margin-bottom: 0; }
.subhero .eyebrow { color: var(--gold); }
.subhero h1 { color: #fff; }
.subhero p { color: rgba(255,255,255,.86); }

/* Image band with overlay copy */
.imgband { position: relative; overflow: hidden; color: #fff; }
.imgband__bg { position: absolute; inset: 0; z-index: 0; }
.imgband__bg img { width: 100%; height: 100%; object-fit: cover; }
.imgband__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,23,64,.88) 0%, rgba(7,23,64,.62) 55%, rgba(7,23,64,.34) 100%);
}
.imgband .wrap { position: relative; z-index: 2; }
.imgband h2 { color: #fff; }
.imgband p { color: rgba(255,255,255,.82); }
.imgband .eyebrow { color: var(--gold); }

/* Expanded coverage callout */
.callout {
  display: flex; gap: 22px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 30px 34px; border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(31,86,196,.08), rgba(253,201,49,.14));
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.callout__t h3 { margin-bottom: 8px; }
.callout__t p { font-size: 1rem; max-width: 640px; margin: 0; }
.callout .btn { flex: none; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.contact-card .ci { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.contact-card .ci svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: 1rem; }
.contact-card a:hover { color: var(--brand-2); }
.order-panel {
  padding: clamp(28px, 4vw, 44px); background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
}
.order-panel__label {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-2); margin-bottom: 14px;
}
.order-panel h2 { font-size: clamp(1.5rem, 2.5vw, 1.95rem); margin-bottom: 14px; }
.order-panel > p { margin-bottom: 26px; }
.order-panel__list {
  list-style: none; display: grid; gap: 12px; margin-bottom: 28px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.order-panel__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 1rem; color: var(--ink-soft); }
.order-panel__list li svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--orange); margin-top: 3px; }
.order-panel__actions { display: grid; gap: 12px; }
.order-panel__actions .btn { width: 100%; justify-content: center; }
.order-panel__actions .btn svg { width: 16px; height: 16px; }
.order-panel__actions .btn--ghost:hover svg { transform: none; }
.order-panel__note { font-size: .85rem; color: var(--muted); margin-top: 18px; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .split--rev .split__media { grid-template-columns: 1fr; order: unset; }
  .split--rev .split__body { order: 2; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__phone { display: none; }
  .nav__cta > .btn { display: none; }
  .nav__logo img { height: 34px; }
  .nav__burger { display: flex; }
  .grid-2, .grid-3, .grid-4, .cover-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero--home { min-height: 88svh; padding-bottom: 110px; }
  .callout { flex-direction: column; align-items: flex-start; }
}
