/* ═══════════════════════════════════════════════════════════════
   SyncIT MSP — Homepage premium layer
   Apple-meets-fintech · clean, crisp, confident
═══════════════════════════════════════════════════════════════ */

body.home {
  /* Dark premium theme — deep navy base, electric-blue accent */
  --home-bg:       #0A0F1A;  /* page background (near-black navy) */
  --home-surface:  #161F30;  /* cards — lighter than every section band so they always pop */
  --home-surface-2:#0E1626;  /* inset fields / inner panels */
  --home-charcoal: #F2F5FA;  /* primary text + headings (light) */
  --home-ink:      #C6D0DE;  /* body text */
  --home-muted:    #B8C4D4;  /* muted / secondary — bright enough to skim on navy */
  --home-border:   rgba(255, 255, 255, 0.10);
  --home-border-strong: rgba(255, 255, 255, 0.16);
  --home-accent:   #3B82F6;  /* electric blue */
  --home-accent-2: #60A5FA;
  --home-teal:     #22D3EE;  /* cyan pop (secondary accent) */
  --home-glow:     rgba(59, 130, 246, 0.18);
  --home-radius:   18px;
  --home-shadow:   0 1px 2px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.35);
  --home-shadow-lg:0 2px 6px rgba(0,0,0,.45), 0 26px 64px rgba(0,0,0,.55);
  /* Layout: every full-bleed section aligns to these two values, so the
     nav, hero, stats strip and cards all share one left/right edge. */
  --home-maxw:     1860px;
  --home-gutter:   2.2vw;
  background: var(--home-bg);
  color: var(--home-ink);
}
@media (max-width: 900px) {
  body.home { --home-gutter: 20px; }
}

body.home h1, body.home h2, body.home h3,
body.home .brand, body.home .stat-num, body.home .hero-stat-val {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.025em;
}

/* ── Topbar & nav (homepage) ──────────────────────────────── */
body.home .topbar {
  background: #05080F;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
body.home .topbar a { color: rgba(255,255,255,.72); }
body.home .topbar a:hover { color: #fff; }

body.home .navbar {
  background: rgba(10,15,26,.78);
  border-bottom: 1px solid var(--home-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
body.home .navbar.scrolled {
  background: rgba(10,15,26,.94);
  box-shadow: 0 1px 0 var(--home-border), 0 10px 34px rgba(0,0,0,.4);
}
body.home .nav-logo { gap: 16px; position: relative; }
body.home .nav-logo .brand {
  color: var(--home-charcoal);
  font-weight: 700; font-size: 42px; letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline; line-height: 1;
}
body.home .nav-logo .brand span {
  font-size: 1.14em; font-weight: 800; letter-spacing: -0.01em; margin-left: 0;
  background: linear-gradient(120deg, #38BDF8, #22D3EE);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(34,211,238,.38));
}
body.home .nav-logo .tagline {
  color: #C5D0DE; font-weight: 600; font-size: 14px;
  letter-spacing: 1.5px; margin-top: 5px;
}
@media (max-width: 640px) {
  body.home .logo-mark { width: 64px; height: 64px; }
  body.home .nav-logo::after { width: 64px; height: 64px; }
  body.home .nav-logo .brand { font-size: 34px; }
  body.home .nav-logo .tagline { font-size: 12.5px; }
  body.home .nav-logo { gap: 12px; }
}
body.home .footer-brand .brand span { margin-left: 0; font-weight: 800; }
body.home .nav-links a { color: var(--home-ink); font-weight: 500; }
body.home .nav-links a:hover { background: rgba(11,127,232,.06); color: var(--home-accent); }
body.home .nav-links .btn-nav-cta {
  background: linear-gradient(120deg, var(--home-accent), #2563EB) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(59,130,246,.32) !important;
  border-radius: 100px !important;
  padding: 10px 22px !important;
  transition: transform .2s, box-shadow .2s, background .2s !important;
}
body.home .nav-links .btn-nav-cta:hover {
  background: linear-gradient(120deg, var(--home-accent-2), var(--home-accent)) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(59,130,246,.42) !important;
}

/* ── Logo sync animation ("living sync core") ─────────────── */
body.home .logo-mark {
  width: 76px; height: 76px;
  overflow: visible;
  /* Crisp dark edge grounds the mark; wide soft blue aura sits behind it
     (kept far out + low-opacity so it never bleeds onto the white). */
  filter: drop-shadow(0 1px 2px rgba(6,12,24,.65))
          drop-shadow(0 0 20px rgba(59,130,246,.50))
          drop-shadow(0 0 42px rgba(56,189,248,.30));
  transition: filter .25s ease, transform .25s ease;
}
body.home .nav-logo:hover .logo-mark {
  filter: drop-shadow(0 1px 2px rgba(6,12,24,.65))
          drop-shadow(0 0 24px rgba(59,130,246,.66))
          drop-shadow(0 0 50px rgba(56,189,248,.42));
  transform: translateY(-1px);
}

/* Specular shine — a light streak sweeps across the S on hover only.
   Masked to the mark shape so it never spills into the padding. */
body.home .nav-logo::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 76px; height: 76px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  background-image: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.92) 50%, transparent 58%);
  background-size: 250% 100%;
  background-repeat: no-repeat;
  background-position: 100% 0;
  -webkit-mask: url(/images/syncit-mark.svg?v=4) center / contain no-repeat;
          mask: url(/images/syncit-mark.svg?v=4) center / contain no-repeat;
}
body.home .nav-logo:hover::after { animation: logoShine .62s ease-out; }
@keyframes logoShine {
  0%   { background-position: 100% 0; opacity: 0; }
  12%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { background-position: 0% 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  body.home .nav-logo:hover::after { animation: none; }
}
body.home .logo-mark g,
body.home .logo-mark .lm-breathe,
body.home .logo-mark .lm-glow,
body.home .logo-mark .lm-core { transform-box: fill-box; transform-origin: center; }

body.home .logo-mark .lm-rotor { animation: lmSpin 5.5s linear infinite; transform-origin: 24px 24px; }
body.home .logo-mark .lm-rotor-rev { animation: lmSpinRev 7s linear infinite; transform-origin: 24px 24px; }
body.home .logo-mark .lm-comet { filter: drop-shadow(0 0 3px #22D3EE) drop-shadow(0 0 6px #0B7FE8); }
body.home .logo-mark .lm-breathe { transform-origin: 24px 24px; animation: lmBreathe 3.2s ease-in-out infinite; }
body.home .logo-mark .lm-glow { transform-origin: 24px 24px; animation: lmGlow 3.2s ease-in-out infinite; }
body.home .logo-mark .lm-core { transform-origin: 24px 24px; animation: lmCore 3.2s ease-in-out infinite; }

/* Handshake accent on hover — speeds the sync up subtly */
body.home .nav-logo:hover .lm-rotor { animation-duration: 2.4s; }
body.home .nav-logo:hover .lm-rotor-rev { animation-duration: 3s; }

@keyframes lmSpin { to { transform: rotate(360deg); } }
@keyframes lmSpinRev { to { transform: rotate(-360deg); } }
@keyframes lmBreathe {
  0%, 100% { transform: scale(1); opacity: .28; }
  50% { transform: scale(1.12); opacity: .55; }
}
@keyframes lmGlow {
  0%, 100% { opacity: .5; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.12); }
}
@keyframes lmCore {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* ── Buttons (homepage) ───────────────────────────────────── */
body.home .btn {
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
body.home .btn-primary {
  background: linear-gradient(120deg, var(--home-accent), #2563EB);
  color: #fff;
  box-shadow: 0 1px 2px rgba(6,20,45,.4), 0 8px 24px rgba(37,99,235,.32);
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, background .3s;
}
body.home .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
body.home .btn-primary:hover {
  background: linear-gradient(120deg, var(--home-accent-2), var(--home-accent));
  box-shadow: 0 2px 4px rgba(6,20,45,.45), 0 14px 38px rgba(37,99,235,.5);
  transform: translateY(-2px);
  color: #fff;
}
body.home .btn-primary:hover::after { transform: translateX(120%); }
body.home .btn-outline {
  border-color: var(--home-border-strong);
  color: var(--home-charcoal);
  background: rgba(255,255,255,.03);
  box-shadow: none;
}
body.home .btn-outline:hover {
  border-color: rgba(59,130,246,.5);
  background: rgba(59,130,246,.1);
  color: #fff;
}
body.home .btn-lg { padding: 20px 42px; font-size: 20px; }

/* ── Hero ─────────────────────────────────────────────────── */
/* ── Wide, near-full-bleed layout ────────────────────────── */
body.home .container,
body.home .hero-wrap,
body.home .nav-inner {
  max-width: var(--home-maxw);
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}
/* Taller nav so the larger logo + wordmark don't clip */
body.home .nav-inner { height: 92px; }
body.home .navbar.scrolled .nav-inner { height: 80px; }
body.home .footer-grid,
body.home .footer-bottom { max-width: none; }

/* ── Hero background photograph (managed-IT signal) ──────── */
body.home .hero-bgimg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  opacity: .72;
}
body.home .hero-bgimg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,13,22,.96) 0%, rgba(9,13,22,.8) 38%, rgba(9,13,22,.42) 100%),
    linear-gradient(180deg, rgba(9,13,22,.28) 0%, rgba(9,13,22,.88) 100%);
}

body.home .hero {
  background: var(--home-bg);
  color: var(--home-charcoal);
  padding: 0;
  min-height: auto;
  position: relative;
  overflow: hidden;
}
body.home .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
body.home .hero-orb--a {
  width: 380px; height: 380px;
  top: -80px; right: 4%;
  background: radial-gradient(circle, rgba(59,130,246,.4), transparent 70%);
  animation: orbFloatA 19s ease-in-out infinite;
}
body.home .hero-orb--b {
  width: 320px; height: 320px;
  bottom: -70px; left: 0%;
  background: radial-gradient(circle, rgba(34,211,238,.26), transparent 70%);
  animation: orbFloatB 23s ease-in-out infinite;
}
@keyframes orbFloatA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-26px, 28px); } }
@keyframes orbFloatB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(24px, -22px); } }
body.home .hero::before { display: none; }
body.home .hero .grid-fx {
  opacity: 1;
  background-image:
    linear-gradient(rgba(59,130,246,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, #000 20%, transparent 75%);
  animation: homeGridDrift 40s linear infinite;
}
@keyframes homeGridDrift {
  to { background-position: 56px 56px, 56px 56px; }
}
body.home .hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 18%, rgba(59,130,246,.16), transparent 65%),
    radial-gradient(ellipse 40% 35% at 12% 75%, rgba(34,211,238,.1), transparent 60%);
  pointer-events: none;
}
body.home .hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--home-maxw);
  margin: 0 auto;
  padding: 72px var(--home-gutter) 0;
}
body.home .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
body.home .hero-inner { max-width: none; margin: 0; }
body.home .hero-eyebrow {
  color: var(--home-accent-2);
  background: rgba(59,130,246,.14);
  border: 1px solid rgba(59,130,246,.3);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 8px 18px;
  margin-bottom: 26px;
}
body.home .hero-eyebrow .pulse {
  background: var(--home-teal);
  box-shadow: 0 0 0 0 rgba(18,165,148,.5);
  animation: homePulse 2.5s ease infinite;
}
@keyframes homePulse {
  0% { box-shadow: 0 0 0 0 rgba(18,165,148,.45); }
  70% { box-shadow: 0 0 0 8px rgba(18,165,148,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,165,148,0); }
}
body.home .hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--home-charcoal);
  margin-bottom: 22px;
  letter-spacing: -0.04em;
  word-spacing: 0.12em;
}
body.home .hero h1 .grad-text {
  background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-teal) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.16;
  padding-bottom: 0.14em;
}
body.home .hero .lead {
  color: var(--home-ink);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}
body.home .hero-ctas { margin-bottom: 0; gap: 16px; }
/* Compact proof line — replaces the 4-card trust grid that competed with the form */
body.home .hero-proof {
  margin: 22px 0 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--home-ink);
  line-height: 1.5;
}
body.home .hero-proof a {
  color: var(--home-accent-2);
  font-weight: 600;
  text-decoration: none;
}
body.home .hero-proof a:hover { color: #fff; }
body.home .hero-trust {
  border-top: none;
  padding-top: 40px;
  gap: 20px;
}
body.home .trust-item {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 14px;
  padding: 14px 16px;
  flex: 1;
  min-width: 140px;
  box-shadow: var(--home-shadow);
  transition: transform .25s, box-shadow .25s;
}
body.home .trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow-lg);
}
body.home .trust-item strong { color: var(--home-charcoal); font-size: 14px; }
body.home .trust-item { color: var(--home-ink); font-size: 14px; }
body.home .trust-item .ico svg { stroke: var(--home-accent); }

/* Hero visual */
body.home .hero-visual { position: relative; }
body.home .sync-showcase {
  position: relative;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: var(--home-shadow-lg);
  overflow: hidden;
}
body.home .sync-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,127,232,.04), transparent 50%);
  pointer-events: none;
}
body.home .sync-showcase-svg {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
}
body.home .sync-live-tag {
  position: absolute;
  top: 18px; right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--home-teal);
  background: rgba(18,165,148,.08);
  border: 1px solid rgba(18,165,148,.2);
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 2;
}
body.home .sync-live-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #12A594;
  box-shadow: 0 0 0 0 rgba(18,165,148,.5);
  animation: livePulse 2s ease infinite;
}
body.home .sync-showcase-label {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--home-muted);
  letter-spacing: 0.02em;
}
body.home .sync-showcase-label span {
  color: var(--home-teal);
  font-weight: 700;
}

/* Hero stats strip */
body.home .hero-stats {
  position: relative;
  z-index: 2;
  max-width: var(--home-maxw);
  margin: 56px auto 0;
  padding: 0 var(--home-gutter) 64px;
}
body.home .hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 8px;
  box-shadow: var(--home-shadow-lg);
}
body.home .hero-stat {
  text-align: center;
  padding: 28px 16px;
  border-radius: 14px;
  transition: background .25s;
}
body.home .hero-stat:hover { background: rgba(11,127,232,.04); }
body.home .hero-stat-val {
  display: block;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--home-charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
}
body.home .hero-stat-val .accent { color: var(--home-accent); }
body.home .hero-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--home-ink);
  line-height: 1.4;
}

/* ── Marquee ──────────────────────────────────────────────── */
body.home .logostrip {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  padding: 28px 0;
}
body.home .logostrip .label { color: var(--home-ink); font-size: 14px; letter-spacing: 2px; font-weight: 600; }
body.home .marquee span {
  color: #C5CDD8;
  font-weight: 600;
  font-size: 17px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: 1;
}

/* ── Sections ─────────────────────────────────────────────── */
body.home .section {
  padding: 112px 22px;
  border-top: 1px solid var(--home-border);
}
body.home .section-bg { background: #10192B; }
body.home .section-tint-blue { background: linear-gradient(180deg, #0C1526 0%, #0A0F1A 100%); }
body.home .section-tint-teal { background: linear-gradient(180deg, #091722 0%, #0A0F1A 100%); }

/* Drifting color glow accents on section bands (scroll stimulation) */
body.home .section-tint-blue,
body.home .section-tint-teal,
body.home .section-ink { position: relative; overflow: hidden; }
body.home .section-tint-blue::before,
body.home .section-tint-teal::before,
body.home .section-ink::before {
  content: '';
  position: absolute; z-index: 0;
  width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  top: -18%; right: -12%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(59,130,246,.20), transparent 66%);
  filter: blur(20px);
  animation: bandGlowA 20s ease-in-out infinite;
}
body.home .section-tint-teal::before { background: radial-gradient(circle, rgba(34,211,238,.18), transparent 66%); }
body.home .section-tint-blue::after,
body.home .section-tint-teal::after {
  content: '';
  position: absolute; z-index: 0;
  width: 42vw; height: 42vw; max-width: 560px; max-height: 560px;
  bottom: -20%; left: -10%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(34,211,238,.14), transparent 68%);
  filter: blur(22px);
  animation: bandGlowB 26s ease-in-out infinite;
}
body.home .section-tint-blue > *,
body.home .section-tint-teal > *,
body.home .section-ink > * { position: relative; z-index: 1; }
@keyframes bandGlowA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.14); }
}
@keyframes bandGlowB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, -6%) scale(1.12); }
}

/* ── Vibrant full-bleed protection band ──────────────────── */
body.home .image-band {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 12vw, 138px) 0;
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}
body.home .image-band-bg {
  position: absolute; inset: -12% 0;
  width: 100%; height: 124%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
body.home .image-band-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,15,26,.84), rgba(10,15,26,.64) 45%, rgba(10,15,26,.92)),
    radial-gradient(120% 95% at 12% 18%, rgba(59,130,246,.34), transparent 55%),
    radial-gradient(120% 95% at 92% 92%, rgba(34,211,238,.24), transparent 55%);
}
body.home .image-band-inner { position: relative; z-index: 2; max-width: 840px; }
body.home .image-band h2 {
  font-size: clamp(28px, 4.6vw, 50px);
  line-height: 1.07; color: #fff; margin: 16px 0 18px;
  letter-spacing: -0.025em;
}
body.home .image-band p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--home-ink); max-width: 640px; margin-bottom: 32px;
}
body.home .image-band-stats { display: flex; gap: 44px; flex-wrap: wrap; }
body.home .ib-stat { display: flex; flex-direction: column; }
body.home .ib-num {
  font-size: clamp(30px, 4.2vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, var(--home-accent-2), var(--home-teal));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
body.home .ib-num em { font-style: normal; font-size: .48em; margin-left: 3px; -webkit-text-fill-color: var(--home-teal); }
body.home .ib-label { font-size: 12.5px; color: var(--home-muted); margin-top: 6px; letter-spacing: .3px; text-transform: uppercase; }
@media (max-width: 640px) { body.home .image-band-stats { gap: 26px; } }
body.home .section-ink {
  background: #070B14;
  color: #fff;
}

/* ── Light section — breaks up the dark for rhythm ───────── */
body.home .section-light {
  position: relative;
  background: linear-gradient(180deg, #EEF3FB 0%, #DCE7F4 100%);
  color: #1B2740;
  border-top: 1px solid rgba(20,40,70,.10);
  border-bottom: 1px solid rgba(20,40,70,.10);
}
body.home .section-light .eyebrow {
  color: var(--home-accent);
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.22);
}
body.home .section-light .section-title { color: #0E1A2E; }
body.home .section-light .section-subtitle { color: #47576F; }
body.home .section-light .why-card {
  background: #fff;
  border: 1px solid #DCE5F1;
  box-shadow: 0 12px 34px rgba(20,40,70,.09);
}
body.home .section-light .why-card h3 { color: #0E1A2E; }
body.home .section-light .why-card p { color: #4E5E77; }
body.home .section-light .why-card::before { background: radial-gradient(240px circle at var(--mx) var(--my), rgba(59,130,246,.10), transparent 60%); }

/* ── Directional scroll reveals (movement as you scroll) ──── */
body.home .reveal-left,
body.home .reveal-right {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
body.home .reveal-left { transform: translateX(-46px); }
body.home .reveal-right { transform: translateX(46px); }
body.home .reveal-left.in,
body.home .reveal-right.in { opacity: 1; transform: none; }
html:not(.js) .reveal-left,
html:not(.js) .reveal-right { opacity: 1 !important; transform: none !important; }

body.home .eyebrow {
  color: var(--home-accent-2);
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}
body.home .section-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--home-charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
body.home .section-ink .section-title { color: #fff; }
body.home .section-subtitle {
  font-size: 17px;
  color: var(--home-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}
body.home .section-ink .section-subtitle { color: rgba(255,255,255,.65); }
body.home .section-ink .eyebrow { color: var(--home-teal); }
/* Brand wordmark inside eyebrows: "Sync" white, "IT" blue/cyan (matches the logo) */
body.home .eyebrow .eb-sync { color: #F2F5FA; }
body.home .eyebrow .eb-it {
  background: linear-gradient(120deg, #38BDF8, #22D3EE);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Service cards ────────────────────────────────────────── */
body.home .service-grid { gap: 20px; }
body.home .service-card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 32px 28px;
  box-shadow: var(--home-shadow);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
body.home .service-card::after {
  height: 2px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-teal));
}
body.home .service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--home-shadow-lg);
  border-color: rgba(11,127,232,.12);
}
/* Cursor spotlight */
body.home .service-card, body.home .why-card { --mx: 50%; --my: 0%; }
body.home .service-card::before,
body.home .why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(59,130,246,.16), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
}
body.home .service-card:hover::before,
body.home .why-card:hover::before { opacity: 1; }
body.home .service-card > *, body.home .why-card > * { position: relative; z-index: 1; }
body.home .section-ink .why-card::before { background: radial-gradient(240px circle at var(--mx) var(--my), rgba(18,165,148,.14), transparent 60%); }
body.home .service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(59,130,246,.14);
  transition: transform .35s, background .35s;
}
body.home .service-card:hover .service-icon {
  transform: scale(1.08);
}
body.home .service-card h3 { font-size: 18px; font-weight: 700; color: var(--home-charcoal); }
body.home .service-card p { font-size: 16.5px; color: var(--home-ink); }
body.home .service-card .learn-more { color: var(--home-accent); font-weight: 600; transition: gap .2s; }

/* ── SyncIT Switch panel ──────────────────────────────────── */
body.home .sync-panel {
  position: relative;
  border-radius: 24px;
  padding: 28px 24px;
  background: linear-gradient(165deg, #0B1220, #070B14);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--home-shadow-lg);
  overflow: hidden;
}
body.home .sync-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
body.home .sync-panel-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.04em;
}
body.home .sync-panel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #6EE7B7;
  letter-spacing: 0.08em;
}
body.home .sync-panel-status .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
body.home .sync-panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: background .3s, border-color .3s, transform .3s;
}
body.home .sync-panel-row:last-child { margin-bottom: 0; }
body.home .sync-panel-row.in-view {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
}
body.home .sync-panel-row .indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
body.home .sync-panel-row .indicator.ok {
  background: #34D399;
  box-shadow: 0 0 14px rgba(52,211,153,.5);
  animation: indicatorGlow 3s ease infinite;
}
body.home .sync-panel-row .indicator.sync {
  background: var(--home-teal);
  box-shadow: 0 0 14px rgba(18,165,148,.5);
  animation: indicatorGlow 3s ease infinite 1.5s;
}
@keyframes indicatorGlow {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
body.home .sync-panel-row .label { flex: 1; font-size: 14px; color: rgba(255,255,255,.88); font-weight: 500; }
body.home .sync-panel-row .badge-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6EE7B7;
  background: rgba(52,211,153,.12);
  padding: 4px 10px;
  border-radius: 100px;
  animation: badgeShimmer 4s ease infinite;
}
@keyframes badgeShimmer {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}
body.home .col-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.03em;
  color: var(--home-charcoal);
}
body.home .check-list li::before { background: rgba(59,130,246,.16); }
body.home .check-list li::after { color: var(--home-teal); }

/* ── How it works ─────────────────────────────────────────── */
body.home .steps {
  gap: 0;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
}
body.home .steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--home-border), var(--home-accent), var(--home-teal), var(--home-border));
  opacity: .5;
  z-index: 0;
}
body.home .step {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
body.home .step.in { opacity: 1; transform: none; }
body.home .step .num {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--home-surface);
  color: var(--home-charcoal);
  border: 2px solid var(--home-border);
  font-size: 18px;
  box-shadow: var(--home-shadow);
  transition: transform .4s, background .4s, border-color .4s, color .4s, box-shadow .4s;
}
body.home .step.in .num {
  background: linear-gradient(135deg, var(--home-accent), #2563EB);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 26px rgba(59,130,246,.4);
  animation: stepPop .5s cubic-bezier(.2,.7,.2,1) both;
}
body.home .step:nth-child(2).in .num { animation-delay: .1s; }
body.home .step:nth-child(3).in .num { animation-delay: .2s; }
body.home .step:nth-child(4).in .num { animation-delay: .3s; }
@keyframes stepPop {
  0% { transform: scale(.6); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
body.home .step h3 { font-size: 17px; font-weight: 700; color: var(--home-charcoal); margin-bottom: 8px; }
body.home .step p { font-size: 14px; color: var(--home-muted); line-height: 1.65; }

/* ── Why cards (light + dark sections) ────────────────────── */
body.home .why-card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 32px 28px;
  box-shadow: var(--home-shadow);
  transition: transform .3s, box-shadow .3s;
}
body.home .why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-lg);
}
body.home .why-icon {
  background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(34,211,238,.14));
  border-radius: 14px;
}
body.home .why-icon svg { stroke: var(--home-accent); }
body.home .section-ink .why-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
body.home .section-ink .why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
body.home .section-ink .why-icon { background: rgba(255,255,255,.08); }
body.home .section-ink .why-icon svg { stroke: var(--home-teal); }

/* ── Testimonials ─────────────────────────────────────────── */
body.home .quote-card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 36px 32px;
  box-shadow: var(--home-shadow);
  transition: transform .35s, box-shadow .35s;
  position: relative;
}
body.home .quote-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 64px;
  line-height: 1;
  color: rgba(96,165,250,.18);
  font-family: Georgia, serif;
  pointer-events: none;
}
body.home .quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--home-shadow-lg);
}
body.home .quote-card .stars { color: #F59E0B; letter-spacing: 3px; }
body.home .quote-card p { font-size: 16px; line-height: 1.75; color: var(--home-ink); }
body.home .quote-card .who .av {
  background: linear-gradient(135deg, var(--home-accent), var(--home-teal));
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Shared-component dark overrides (text that came from style.css) ── */
body.home .why-card h3 { color: var(--home-charcoal); }
body.home .why-card p { color: var(--home-muted); }
body.home .check-list li { color: var(--home-ink); }
body.home .quote-card .who .nm { color: var(--home-charcoal); }
body.home .quote-card .who .rl { color: var(--home-muted); }
body.home .service-card p,
body.home .step p { color: var(--home-muted); }

/* ── Pills ────────────────────────────────────────────────── */
body.home .pill {
  background: var(--home-surface);
  border: 1px solid var(--home-border-strong);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--home-ink);
  box-shadow: var(--home-shadow);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
body.home .pill:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.4);
  box-shadow: var(--home-shadow-lg);
}

/* ── CTA ──────────────────────────────────────────────────── */
body.home .cta-banner {
  background: linear-gradient(135deg, #0C1424 0%, #070B14 100%);
  padding: 96px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--home-border);
}
body.home .cta-banner::before {
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(11,127,232,.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(18,165,148,.12), transparent 55%);
}
body.home .cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent);
  pointer-events: none;
}
body.home .cta-banner h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
body.home .cta-banner p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 540px; }
body.home .cta-banner .btn-white {
  background: #fff;
  color: #0A0F1A;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
body.home .cta-banner .btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

/* ── Footer ───────────────────────────────────────────────── */
body.home .footer {
  background: #111418;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 16px;
}
body.home .footer-brand .brand { font-size: 28px; }
body.home .footer-brand .brand span { color: var(--home-teal); }
body.home .footer-brand p { font-size: 16px; color: #A8B4C4; line-height: 1.65; }
body.home .footer h4 { font-size: 14px; }
body.home .footer ul a { font-size: 16px; color: #A8B4C4; }
body.home .footer-bottom { font-size: 14.5px; color: #8A97A8; }

/* ── Reveal refinements ───────────────────────────────────── */
body.home .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
body.home .reveal.in { opacity: 1; transform: none; }
body.home .reveal-scale {
  opacity: 0;
  transform: scale(.96) translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
body.home .reveal-scale.in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  body.home .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  body.home .steps::before { display: none; }
}
@media (max-width: 900px) {
  body.home .hero-grid { grid-template-columns: 1fr; gap: 40px; max-width: 640px; margin: 0 auto; }
  body.home .hero-visual { max-width: 100%; margin: 0; }
}
@media (max-width: 768px) {
  body.home .hero-wrap { padding-top: 48px; }
  body.home .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  body.home .hero-stat + .hero-stat::after { display: none; }
  body.home .hero-trust { flex-direction: column; }
  body.home .trust-item { min-width: 0; }
  body.home .section { padding: 76px 20px; }
  body.home .steps { grid-template-columns: 1fr; }
  body.home .step { text-align: left; padding: 0; }
  body.home .step .num { margin: 0 0 16px; }
}
@media (max-width: 460px) {
  body.home .hero-stats-inner { grid-template-columns: 1fr; }
  body.home .hero-ctas { flex-direction: column; }
  body.home .hero-ctas .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   Premium elevation layer (v2) — depth, motion, polish
═══════════════════════════════════════════════════════════════ */

/* Logo — extra life: comet trail + inner counter-orbit dot */
body.home .logo-mark .lm-comet2 { filter: drop-shadow(0 0 2px #22D3EE); }
body.home .logo-mark .lm-trail { opacity: .4; }

/* Accent pill (Boca Raton) */
body.home .pill-accent {
  background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(34,211,238,.14));
  border-color: rgba(34,211,238,.42);
  color: var(--home-accent-2);
  font-weight: 700;
}

/* Hero — floating depth + orbital motion */
body.home .hero-mesh { animation: heroMeshDrift 20s ease-in-out infinite; will-change: transform; }
@keyframes heroMeshDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-2.5%, 2%, 0); }
}
body.home .sync-showcase { animation: showcaseFloat 7s ease-in-out infinite; will-change: transform; }
@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
body.home .sync-showcase-svg .sat > circle:first-child { transform-box: fill-box; transform-origin: center; }

/* Hero metrics — refined dividers + top accent */
body.home .hero-stats-inner { position: relative; }
body.home .hero-stats-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--home-accent), var(--home-teal), transparent);
  opacity: .55;
}
body.home .hero-stat { position: relative; }
body.home .hero-stat + .hero-stat::after {
  content: '';
  position: absolute;
  left: -8px; top: 24%; bottom: 24%;
  width: 1px;
  background: var(--home-border);
}

/* Service card learn-more interaction */
body.home .service-card .learn-more {
  display: inline-flex;
  align-items: center;
  transition: color .25s, transform .25s;
}
body.home .service-card:hover .learn-more { color: var(--home-teal); transform: translateX(3px); }

/* SyncIT Switch — live dashboard feel */
body.home .sync-panel-scan { position: absolute; inset: 0; overflow: hidden; pointer-events: none; border-radius: inherit; }
body.home .sync-panel-scan::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 38%;
  top: -38%;
  background: linear-gradient(180deg, transparent, rgba(52,211,153,.06), transparent);
  animation: panelScan 4.5s ease-in-out infinite;
}
@keyframes panelScan { 0% { top: -38%; } 100% { top: 100%; } }
body.home .sync-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
body.home .sync-panel-uptime { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .02em; }
body.home .sync-panel-uptime strong { display: block; color: #6EE7B7; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
body.home .sync-bars { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
body.home .sync-bars span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #34D399, var(--home-teal));
  transform-origin: bottom;
  animation: barPulse 1.7s ease-in-out infinite;
}
body.home .sync-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
body.home .sync-bars span:nth-child(2) { height: 70%; animation-delay: .2s; }
body.home .sync-bars span:nth-child(3) { height: 55%; animation-delay: .4s; }
body.home .sync-bars span:nth-child(4) { height: 90%; animation-delay: .6s; }
body.home .sync-bars span:nth-child(5) { height: 65%; animation-delay: .8s; }
@keyframes barPulse { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

/* How it works — traveling highlight along the timeline */
body.home .steps::after {
  content: '';
  position: absolute;
  top: 47px;
  left: 12%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--home-teal);
  box-shadow: 0 0 14px var(--home-teal);
  z-index: 0;
  animation: stepTravel 6s ease-in-out infinite;
}
@keyframes stepTravel {
  0% { left: 12%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 88%; opacity: 0; }
}

/* Testimonials — top accent reveal + avatar ring */
body.home .quote-card { overflow: hidden; }
body.home .quote-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
body.home .quote-card:hover::after { transform: scaleX(1); }
body.home .quote-card .who .av {
  box-shadow: 0 0 0 3px rgba(11,127,232,.12);
}

/* Final CTA — animated glow + trust row */
body.home .cta-banner::before { animation: ctaGlow 11s ease-in-out infinite; will-change: transform, opacity; }
@keyframes ctaGlow {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
body.home .cta-trust {
  display: flex;
  gap: 14px 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
body.home .cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  font-weight: 500;
}
body.home .cta-trust svg { stroke: var(--home-teal); flex-shrink: 0; }

/* ── Hero photo + floating glass cards ────────────────────── */
body.home .hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-lg);
  aspect-ratio: 3 / 2.2;
}
body.home .hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
body.home .hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,24,32,.10) 0%, transparent 32%, rgba(16,24,32,.34) 100%);
  pointer-events: none;
}
body.home .hero-photo .sync-live-tag {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.7);
  color: var(--home-teal);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(16,24,32,.18);
  z-index: 3;
}
body.home .hero-photo-chip {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--home-charcoal);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(16,24,32,.18);
  animation: floatY 5s ease-in-out infinite;
}
body.home .hero-photo-chip svg { stroke: var(--home-accent); }
body.home .hero-photo-card {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px 13px 15px;
  border-radius: 16px;
  background: rgba(20,24,29,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 12px 34px rgba(16,24,32,.32);
  animation: floatY 6.5s ease-in-out infinite;
}
body.home .hero-photo-card .hpc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: livePulse 2s ease infinite;
  flex-shrink: 0;
}
body.home .hpc-text { display: flex; flex-direction: column; line-height: 1.25; }
body.home .hpc-text strong { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
body.home .hpc-text span { color: rgba(255,255,255,.66); font-size: 12px; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ── Hero offer: photo strip + discovery-call form ───────── */
/* One unified premium card: photo header + form body (no overlap) */
body.home .hero-offer {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--home-border-strong);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-lg);
  scroll-margin-top: 110px;
}
body.home .hero-offer-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}
body.home .hero-offer-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(.82) contrast(1.06) brightness(.95);
}
body.home .hero-offer-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,26,0) 40%, rgba(10,15,26,.92) 100%),
    linear-gradient(125deg, rgba(37,99,235,.30) 0%, rgba(34,211,238,.14) 100%);
}
body.home .hero-offer-photo .sync-live-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  color: var(--home-teal);
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(16,24,32,.18);
}
body.home .discovery-card {
  position: relative;
  z-index: 4;
  background: transparent;
  padding: 24px 26px 26px;
}
body.home .discovery-success { position: relative; z-index: 4; }
body.home .discovery-card .dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--home-teal);
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.24);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
body.home .discovery-card .dc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--home-teal);
  box-shadow: 0 0 0 0 rgba(34,211,238,.5);
  animation: livePulse 2s ease infinite;
}
body.home .discovery-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--home-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
body.home .discovery-card p { font-size: 19px; color: var(--home-ink); line-height: 1.55; margin-bottom: 20px; }
body.home .dc-field { margin-bottom: 12px; }
body.home .dc-field input {
  width: 100%;
  padding: 16px 18px;
  font-size: 18px;
  font-family: inherit;
  color: var(--home-charcoal);
  background: var(--home-surface-2);
  border: 1px solid var(--home-border-strong);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
body.home .dc-field input::placeholder { color: #8A96A8; }
body.home .dc-field input:focus { border-color: var(--home-accent); background: #0B1322; box-shadow: 0 0 0 3px rgba(59,130,246,.2); }
body.home .discovery-card > .btn {
  width: 100%;
  margin-top: 6px;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--home-accent), #2563EB);
  box-shadow: 0 8px 24px rgba(59,130,246,.36);
}
body.home .discovery-card > .btn:hover {
  background: linear-gradient(120deg, var(--home-accent-2), var(--home-accent));
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(59,130,246,.46);
}
body.home .dc-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; margin-top: 16px; }
body.home .dc-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 15.5px; font-weight: 600; color: var(--home-ink); }
body.home .dc-trust svg { width: 16px; height: 16px; stroke: var(--home-teal); }
body.home .discovery-success {
  background: transparent;
  padding: 32px 26px 34px;
  text-align: center;
}
body.home .discovery-success .ds-check {
  width: 54px; height: 54px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--home-accent), var(--home-teal));
  box-shadow: 0 10px 26px rgba(59,130,246,.4);
}
body.home .discovery-success h3 { font-size: 19px; font-weight: 700; color: var(--home-charcoal); margin-bottom: 8px; }
body.home .discovery-success p { font-size: 14px; color: var(--home-muted); line-height: 1.6; }
body.home .discovery-success a { color: var(--home-accent); font-weight: 700; }

/* ── Feature photo band ───────────────────────────────────── */
body.home .feature-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-lg);
}
body.home .feature-photo img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(.84) contrast(1.05) brightness(.96);
}
body.home .feature-photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(160deg, rgba(37,99,235,.26) 0%, rgba(34,211,238,.10) 55%, rgba(10,15,26,.42) 100%);
}
body.home .feature-badge {
  position: absolute;
  z-index: 2;
  right: 18px; bottom: 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(11,16,26,.78);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 12px 34px rgba(0,0,0,.4);
}
body.home .feature-badge .fb-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--home-accent-2);
  letter-spacing: -0.02em;
}
body.home .feature-badge .fb-label { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.7); margin-top: 3px; }
body.home .col-text .eyebrow { display: inline-block; margin-bottom: 12px; }
body.home .col-text .btn { margin-top: 8px; }

/* ── CTA background image ─────────────────────────────────── */
body.home .cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .3;
  z-index: 0;
  filter: saturate(1.15);
}
body.home .cta-banner::before,
body.home .cta-banner::after { z-index: 1; }
body.home .cta-banner .container { position: relative; z-index: 2; }

/* ── Animated onboarding → security flow ─────────────────── */
body.home .flow {
  position: relative;
  margin-top: 54px;
  padding: 46px 40px 30px;
  border: 1px solid var(--home-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #121B2C, #0C1320);
  box-shadow: var(--home-shadow-lg);
  overflow: hidden;
}
body.home .flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--home-accent), var(--home-teal), transparent);
  opacity: .7;
}
body.home .flow-track { display: flex; align-items: flex-start; }
body.home .flow-node {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
  opacity: .4;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
body.home .flow.playing .flow-node { opacity: 1; transform: none; transition-delay: var(--d); }
body.home .flow-ico {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #7C8BA1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--home-border);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: color .5s ease, background .5s ease, box-shadow .5s ease;
}
body.home .flow-ico svg { width: 28px; height: 28px; }
body.home .flow.playing .flow-node .flow-ico {
  color: #fff;
  background: linear-gradient(135deg, var(--home-accent), var(--home-teal));
  box-shadow: 0 12px 26px rgba(11,127,232,.28);
  transition-delay: var(--d);
}
body.home .flow.playing .flow-node--secure .flow-ico {
  background: linear-gradient(135deg, var(--home-teal), #0EA5A0);
  animation: securePulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--d) + .3s);
}
@keyframes securePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18,165,148,.45), 0 12px 26px rgba(18,165,148,.3); }
  50% { box-shadow: 0 0 0 10px rgba(18,165,148,0), 0 12px 30px rgba(18,165,148,.42); }
}
body.home .flow-step {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--home-accent);
  margin-bottom: 4px;
}
body.home .flow-node--secure .flow-step { color: var(--home-teal); }
body.home .flow-node h4 { font-size: 16px; font-weight: 700; color: var(--home-charcoal); letter-spacing: -.01em; margin-bottom: 5px; }
body.home .flow-node p { font-size: 12.5px; color: var(--home-muted); line-height: 1.45; max-width: 180px; margin: 0 auto; }
body.home .flow-link {
  flex: 0 1 64px;
  min-width: 28px;
  align-self: flex-start;
  margin-top: 31px;
  height: 3px;
  border-radius: 3px;
  background: var(--home-border);
  position: relative;
}
body.home .flow-link::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
body.home .flow.playing .flow-link::before { transform: scaleX(1); transition-delay: var(--d); }
body.home .flow-packet {
  position: absolute;
  top: 50%; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px var(--home-teal), 0 0 10px 2px rgba(18,165,148,.55);
  transform: translate(-50%, -50%);
  opacity: 0;
}
body.home .flow.playing .flow-packet { animation: packet 1.8s linear infinite; animation-delay: var(--d); }
@keyframes packet { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
body.home .flow-caption {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  margin-top: 34px; padding-top: 20px;
  border-top: 1px solid var(--home-border);
}
body.home .flow-live { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--home-charcoal); }
body.home .flow-live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--home-teal); animation: livePulse 2s ease infinite; }
body.home .flow-replay {
  display: inline-flex; align-items: center; gap: 7px;
  font: inherit; font-size: 13px; font-weight: 600;
  color: var(--home-ink);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--home-border-strong);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
body.home .flow-replay:hover { color: #fff; border-color: rgba(59,130,246,.5); background: rgba(59,130,246,.12); }
body.home .flow-replay svg { transition: transform .5s ease; }
body.home .flow-replay:hover svg { transform: rotate(-180deg); }
/* no-JS / stale-JS safety net: show the flow fully lit */
html:not(.js) .flow-node { opacity: 1; transform: none; }
html:not(.js) .flow-node .flow-ico { color: #fff; background: linear-gradient(135deg, var(--home-accent), var(--home-teal)); }
html:not(.js) .flow-link::before { transform: scaleX(1); }

@media (max-width: 860px) {
  body.home .flow { padding: 32px 20px 24px; }
  body.home .flow-track { flex-direction: column; align-items: stretch; }
  body.home .flow-node {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    text-align: left;
    align-items: center;
  }
  body.home .flow-ico { width: 56px; height: 56px; margin: 0; grid-row: 1 / span 3; align-self: center; }
  body.home .flow-node h4, body.home .flow-node p, body.home .flow-step { text-align: left; }
  body.home .flow-node p { max-width: none; margin: 0; }
  body.home .flow-link {
    flex: none;
    width: 3px; height: 26px;
    align-self: flex-start;
    margin: 2px 0 2px 26px;
  }
  body.home .flow-link::before { transform: scaleY(0); transform-origin: top; }
  body.home .flow.playing .flow-link::before { transform: scaleY(1); }
  body.home .flow-packet { top: 0; left: 50%; }
  body.home .flow.playing .flow-packet { animation: packetV 1.8s linear infinite; animation-delay: var(--d); }
}
@keyframes packetV { 0% { top: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

@media (max-width: 1024px) {
  body.home .steps::after { display: none; }
  body.home .hero-photo { aspect-ratio: 3 / 2; max-width: 560px; margin: 0 auto; }
}

/* ── Modern gradient icon tiles (service + why) ──────────── */
body.home .service-icon,
body.home .why-icon {
  position: relative;
  width: 66px; height: 66px;
  border-radius: 19px;
  display: grid; place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(140deg, #2563EB 0%, #22D3EE 100%);
  box-shadow: 0 10px 26px rgba(37,99,235,.30), inset 0 1px 0 rgba(255,255,255,.40);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
}
body.home .service-icon svg,
body.home .why-icon svg {
  width: 33px; height: 33px;
  position: relative; z-index: 2;
  stroke: #fff !important;
  filter: drop-shadow(0 1px 2px rgba(2,10,25,.35));
}
body.home .service-icon svg [stroke="#06B6D4"],
body.home .why-icon svg [stroke="#06B6D4"] { stroke: rgba(255,255,255,.7) !important; }
/* glossy shimmer sweep (the "alive" motion) */
body.home .service-icon::before,
body.home .why-icon::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 66%);
  transform: translateX(-135%);
  animation: iconSheen 5s ease-in-out infinite;
}
@keyframes iconSheen {
  0%, 60% { transform: translateX(-135%); }
  82%, 100% { transform: translateX(135%); }
}
/* One disciplined blue→cyan accent family across every tile (premium restraint) */
/* de-sync the shimmer so the grid doesn't flash in unison */
body.home .service-grid > *:nth-child(even) .service-icon::before,
body.home .why-grid > *:nth-child(even) .why-icon::before { animation-delay: 1.5s; }
body.home .service-grid > *:nth-child(3n) .service-icon::before { animation-delay: 2.8s; }
/* hover: lift, tilt, intensify */
body.home .service-card:hover .service-icon,
body.home .why-card:hover .why-icon {
  transform: translateY(-4px) scale(1.09) rotate(-4deg);
  box-shadow: 0 18px 38px rgba(59,130,246,.5), inset 0 1px 0 rgba(255,255,255,.55);
}
body.home .service-icon, body.home .why-icon { margin-bottom: 20px; }

/* ── Card polish (persistent top edge, stronger heads) ───── */
body.home .service-card { padding: 30px 26px 26px; border-radius: 20px; }
body.home .service-card::after {
  height: 3px; transform: scaleX(1); transform-origin: left;
  opacity: .32; transition: opacity .4s, filter .4s;
}
body.home .service-card:hover::after { opacity: 1; filter: drop-shadow(0 0 9px rgba(59,130,246,.6)); }
body.home .service-card h3 { font-size: 18.5px; margin-bottom: 9px; letter-spacing: -0.01em; }
body.home .service-card p { line-height: 1.62; }
/* single accent top edge across all cards (unified with the icon family) */

/* ══ Readability — LARGE, comfortable type everywhere ══════ */
body.home { font-size: 20px; }
body.home .nav-links a { font-size: 19px; }
body.home .nav-links .btn-nav-cta { font-size: 18px; padding: 12px 26px !important; }
body.home .nav-logo .tagline { font-size: 15px; }

body.home .hero-eyebrow { font-size: 16px; }
/* Brand-first H1 — each phrase on its own line; flat-fee lives in the lead */
body.home .hero h1 { font-size: clamp(42px, 4.6vw, 60px); line-height: 1.1; }
body.home .hero h1 .hl,
body.home .hero h1 .grad-text { display: block; white-space: nowrap; }
body.home .hero .lead { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.55; }
body.home .hero-proof { font-size: 18px; color: var(--home-ink); }

/* Booking CTAs — must win over earlier .discovery-card > .btn (15.5px) */
body.home .hero-ctas .btn-lg,
body.home .btn-lg {
  font-size: 21px;
  padding: 20px 44px;
  letter-spacing: -0.01em;
}
body.home .discovery-card > .btn {
  font-size: 21px;
  padding: 20px 22px;
}
body.home .discovery-card .dc-badge { font-size: 17.5px; padding: 9px 18px; }
body.home .discovery-card h3 { font-size: 32px; }
body.home .discovery-card p { font-size: 19.5px; }
body.home .dc-field input { font-size: 19px; padding: 17px 18px; }
body.home .dc-trust span { font-size: 16.5px; }

body.home .eyebrow { font-size: 14.5px; letter-spacing: 2.6px; }
body.home .section-title { font-size: clamp(34px, 3.8vw, 50px); }
body.home .section-subtitle { font-size: 22px; line-height: 1.6; max-width: 780px; color: var(--home-ink); }

body.home .service-card h3 { font-size: 24px; }
body.home .service-card p { font-size: 19px; line-height: 1.58; color: var(--home-ink); }
body.home .service-card .learn-more { font-size: 17px; }

body.home .why-card h3 { font-size: 22px; }
body.home .why-card p { font-size: 19px; line-height: 1.58; color: var(--home-ink); }

body.home .trust-item strong { font-size: 18.5px; }
body.home .trust-item,
body.home .trust-item div { font-size: 16.5px; line-height: 1.4; }
body.home .hero-stat-label { font-size: 17px; color: var(--home-ink); }

body.home .check-list li { font-size: 19px; }

body.home .quote-card p { font-size: 20px; line-height: 1.62; }
body.home .quote-card .who .nm { font-size: 18px; }
body.home .quote-card .who .rl { font-size: 16px; }

body.home .sync-panel-row .label { font-size: 16.5px; }
body.home .sync-panel-title { font-size: 16.5px; }

body.home .logostrip .label { font-size: 14px; }
body.home .marquee span { font-size: 18px; }

body.home .flow-node h4 { font-size: 19px; }
body.home .flow-node p { font-size: 16px; }

body.home .image-band h2 { font-size: clamp(33px, 4.6vw, 52px); }
body.home .image-band p { font-size: clamp(18px, 1.6vw, 21px); }

body.home .footer-brand p { font-size: 17px; }
body.home .footer-grid ul li,
body.home .footer-grid ul a { font-size: 17px; }
body.home .footer-grid h4 { font-size: 17px; }

body.home .col-text p { font-size: 19.5px; line-height: 1.6; }
body.home .feature-text p { font-size: 19px; line-height: 1.6; }
body.home .feature-text li { font-size: 18px; }
body.home .cta-banner p { font-size: 20px; }
body.home .page-header p { font-size: 21px; }

@media (max-width: 560px) {
  body.home .hero h1 { white-space: normal; font-size: 34px; }
  body.home .hero h1 .hl,
  body.home .hero h1 .grad-text { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  body.home .service-icon::before,
  body.home .why-icon::before,
  body.home .section-tint-blue::before,
  body.home .section-tint-teal::before,
  body.home .section-ink::before,
  body.home .section-tint-blue::after,
  body.home .section-tint-teal::after,
  body.home .logo-mark .lm-rotor,
  body.home .logo-mark .lm-rotor-rev,
  body.home .logo-mark .lm-breathe,
  body.home .logo-mark .lm-glow,
  body.home .logo-mark .lm-core,
  body.home .hero .grid-fx,
  body.home .hero-mesh,
  body.home .hero-orb,
  body.home .sync-showcase,
  body.home .sync-panel-scan::before,
  body.home .sync-bars span,
  body.home .steps::after,
  body.home .cta-banner::before,
  body.home .hero-photo-chip,
  body.home .hero-photo-card,
  body.home .sync-panel-status .live-dot,
  body.home .sync-panel-row .indicator,
  body.home .sync-panel-row .badge-live,
  body.home .flow-live-dot,
  body.home .flow-packet,
  body.home .discovery-card .dc-dot,
  body.home .step.in .num { animation: none !important; }

  body.home .reveal-left,
  body.home .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
  body.home [data-parallax] { transform: none !important; }
  body.home .flow-node { opacity: 1 !important; transform: none !important; }
  body.home .flow-node .flow-ico { color: #fff !important; background: linear-gradient(135deg, var(--home-accent), var(--home-teal)) !important; }
  body.home .flow-node--secure .flow-ico { background: linear-gradient(135deg, var(--home-teal), #0EA5A0) !important; }
  body.home .flow-link::before { transform: scaleX(1) !important; }
  body.home .flow-packet { opacity: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   Inner pages (services · about · service-area · contact) — dark premium
   These pages share style.css light components; re-skin them for the
   dark theme + push type up for readability.
═══════════════════════════════════════════════════════════════ */
body.home .page-header {
  background: linear-gradient(160deg, #0E1626 0%, var(--home-bg) 72%);
  border-bottom: 1px solid var(--home-border);
  padding: 96px var(--home-gutter) 68px;
}
body.home .page-header .container { max-width: var(--home-maxw); padding-left: 0; padding-right: 0; }
body.home .page-header .eyebrow { color: var(--home-teal); }
body.home .page-header h1 { color: var(--home-charcoal); font-size: clamp(40px, 4.8vw, 62px); }
body.home .page-header p { color: var(--home-ink); font-size: 21px; line-height: 1.55; max-width: 780px; }

body.home .section-title { color: var(--home-charcoal); }
body.home .section-subtitle { color: var(--home-muted); font-size: 21px; }

/* Quick-nav pills */
body.home .pill {
  background: var(--home-surface); color: var(--home-charcoal);
  border: 1px solid var(--home-border); font-size: 16px; padding: 11px 20px;
}
body.home .pill:hover { border-color: var(--home-accent); color: #fff; transform: translateY(-2px); }

/* Service blocks */
body.home .svc-block { border-bottom: 1px solid var(--home-border); }
body.home .svc-media {
  background: linear-gradient(160deg, var(--home-surface), var(--home-surface-2));
  border: 1px solid var(--home-border);
}
body.home .svc-body h2 { color: var(--home-charcoal); font-size: clamp(26px, 2.8vw, 34px); }
body.home .svc-body p { color: var(--home-ink); font-size: 18.5px; line-height: 1.7; }

/* Two-column text (about) */
body.home .col-text h2 { color: var(--home-charcoal); }
body.home .two-col .col-text p { color: var(--home-ink); font-size: 19px; }

/* Contact form */
body.home .form-card {
  background: var(--home-surface); border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-lg);
}
body.home .form-group label { color: var(--home-ink); font-size: 15px; }
body.home .form-group input,
body.home .form-group select,
body.home .form-group textarea {
  background: var(--home-surface-2); color: var(--home-charcoal);
  border: 1px solid var(--home-border); font-size: 16.5px;
}
body.home .form-group input::placeholder,
body.home .form-group textarea::placeholder { color: var(--home-muted); }
body.home .form-group input:focus,
body.home .form-group select:focus,
body.home .form-group textarea:focus { border-color: var(--home-accent); outline: none; }
body.home .form-group select option { color: #0A0F1A; }

/* Contact info blocks */
body.home .info-block h4 { color: var(--home-muted); }
body.home .info-block .value { color: var(--home-charcoal); font-size: 20px; }
body.home .info-block .value a { color: var(--home-charcoal); }
body.home .info-block .value a:hover { color: var(--home-accent-2); }
body.home .info-block .sub { color: var(--home-muted); font-size: 15px; }

/* Service-area panels (page-scoped inline component) */
body.home .area-panel {
  background: var(--home-surface); border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
}
body.home .area-panel h3 { color: var(--home-charcoal); font-size: 24px; }
body.home .area-panel .flag { color: var(--home-teal); }
body.home .area-list li { color: var(--home-ink); font-size: 16.5px; }

/* ═══════════════════════════════════════════════════════════════
   Mobile correctness & polish (phones)
═══════════════════════════════════════════════════════════════ */
/* Never allow sideways scroll / clipped text on phones */
html { overflow-x: hidden; }
body.home { overflow-x: hidden; }

/* Let grid/flex items shrink to the viewport instead of blowing it out
   (this is what caused the hero text + cards to get cut off on the right) */
body.home .hero-grid { min-width: 0; }
body.home .hero-grid > * { min-width: 0; }
body.home .hero-inner { min-width: 0; }
body.home .hero-visual { min-width: 0; max-width: 100%; }
body.home .discovery-card,
body.home .hero-offer,
body.home .hero-photo,
body.home .hero-offer-photo img,
body.home .hero-photo img { max-width: 100%; }
body.home .hero .lead,
body.home .hero-eyebrow,
body.home .svc-body p,
body.home .col-text p { overflow-wrap: break-word; }

/* Hamburger: light bars so it reads on the dark bar */
body.home .nav-toggle span { background: #E9EEF6; }

/* Quick tap-to-call button beside the hamburger (mobile only) */
body.home .nav-call {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--home-border-strong);
  background: rgba(59,130,246,.16); color: var(--home-accent-2);
  margin-left: auto; margin-right: 6px; flex-shrink: 0;
}
body.home .nav-call svg { width: 21px; height: 21px; stroke: currentColor; }
body.home .nav-call:active { background: rgba(59,130,246,.3); }

@media (max-width: 768px) {
  body.home .nav-call { display: inline-flex; }
  /* Dark, on-theme mobile dropdown menu (was white) */
  body.home .nav-links {
    top: 100%; background: #0E1626;
    border-bottom: 1px solid var(--home-border);
    box-shadow: 0 16px 34px rgba(0,0,0,.55);
  }
  body.home .nav-links a { color: var(--home-charcoal); }
  body.home .nav-links a:hover { background: rgba(255,255,255,.06); color: #fff; }
}

@media (max-width: 560px) {
  /* Tidy, centered eyebrow pill */
  body.home .hero-eyebrow {
    display: flex; width: fit-content; max-width: 100%;
    margin-left: auto; margin-right: auto;
    justify-content: center; text-align: center;
    font-size: 12px; letter-spacing: .8px; padding: 8px 16px; line-height: 1.4;
  }
  /* Strategy Call heading: fit cleanly on phones, still large */
  body.home .discovery-card h3 { font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; }
  body.home .discovery-card .dc-badge { font-size: 15.5px; }
  body.home .discovery-card > .btn,
  body.home .hero-ctas .btn-lg { font-size: 18.5px; padding: 17px 22px; }
}
