/* ==========================================================================
   WorkPark Private Limited — Corporate Website Stylesheet
   Palette: Blue / White / Charcoal + subtle teal accent
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand */
  --blue-50:  #eaf7fd;
  --blue-100: #d3effb;
  --blue-200: #a9dff8;
  --blue-300: #6bc9f2;
  --blue-400: #13aceb;  /* WorkPark logo cyan */
  --blue-500: #0e93cb;
  --blue-600: #0a73a1;  /* primary — 5.3:1 on white */
  --blue-700: #08608a;
  --blue-800: #074e70;
  --blue-900: #063e59;

  /* Charcoal / neutrals */
  --ink-900: #0b1220;
  --ink-800: #111a2b;
  --ink-700: #1b2537;
  --ink-600: #2c3949;
  --ink-500: #475569;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;
  --ink-100: #e2e8f0;
  --ink-50:  #f1f5f9;

  --paper: #ffffff;
  --paper-soft: #f7f9fc;
  --paper-tint: #f2f6fd;

  /* Accent */
  --accent: #13aceb;
  --accent-soft: #d3effb;
  --amber: #f59e0b;

  /* Semantics */
  --text: var(--ink-800);
  --text-muted: var(--ink-500);
  --heading: var(--ink-900);
  --line: #e6ebf3;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);

  /* Spacing / rhythm */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: 24px;
  --section-y: 104px;
  --section-y-sm: 72px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(11, 18, 32, .06);
  --shadow-sm: 0 2px 8px rgba(11, 18, 32, .06);
  --shadow-md: 0 12px 28px -12px rgba(11, 18, 32, .18);
  --shadow-lg: 0 28px 60px -24px rgba(11, 18, 32, .28);
  --shadow-blue: 0 18px 40px -18px rgba(10, 115, 161, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --speed: .28s;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--speed) var(--ease); }
a:hover { color: var(--blue-700); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0 0 .6em;
  line-height: 1.16;
  letter-spacing: -.022em;
  font-weight: 700;
}

h1 { font-size: clamp(2.3rem, 1.35rem + 3.1vw, 3.85rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.05vw, 2.75rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.22rem, 1.07rem + .5vw, 1.5rem); }
h4 { font-size: 1.08rem; }
p  { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue-600); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue-600); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 3. Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: var(--section-y-sm); }
.section--soft { background: var(--paper-soft); }
.section--tint { background: linear-gradient(180deg, var(--paper-tint) 0%, #ffffff 100%); }
.section--dark { background: var(--ink-900); color: var(--ink-200); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.06rem; margin-bottom: 0; }
.section--dark .section-head p { color: var(--ink-300); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--accent));
}
.section-head--center .eyebrow::before { display: none; }
.section--dark .eyebrow { color: var(--blue-300); }

.grid { display: grid; gap: 26px; }
.grid--tight { gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.lead { font-size: 1.14rem; color: var(--text-muted); }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: .96rem; font-weight: 650; letter-spacing: -.01em;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; text-align: center; white-space: nowrap;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
              background-color var(--speed) var(--ease), color var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform var(--speed) var(--ease); }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: var(--shadow-blue); }
.btn--primary:hover { --btn-bg: var(--blue-700); box-shadow: 0 22px 46px -18px rgba(10, 115, 161, .6); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-800); border-color: var(--ink-200); }
.btn--ghost:hover { --btn-fg: var(--blue-700); border-color: var(--blue-300); background: var(--blue-50); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn--light:hover { --btn-fg: var(--blue-700); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.32); }
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.1); --btn-fg: #fff; border-color: rgba(255,255,255,.6); }

.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 650; font-size: .93rem;
  color: var(--blue-600);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--speed) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 5. Header / navigation ---------- */
.topbar {
  background: var(--ink-900); color: var(--ink-300);
  font-size: .84rem; padding: 9px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar a { color: var(--ink-200); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--blue-300); flex: none; }
.topbar-note { display: inline-flex; align-items: center; gap: 8px; }
.topbar-note .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .22);
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--speed) var(--ease), background-color var(--speed) var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px -14px rgba(11, 18, 32, .34); background: rgba(255,255,255,.96); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-900); }
.brand:hover { color: var(--ink-900); }
.brand-logo {
  width: auto; height: 40px; flex: none;
  transition: transform var(--speed) var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: -.03em; }
.brand-sub { font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 13px; border-radius: var(--r-sm);
  font-size: .95rem; font-weight: 550; color: var(--ink-600); white-space: nowrap;
}
.nav > .btn { display: none; }
.nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--blue-600); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--speed) var(--ease);
}
.nav a:hover { color: var(--blue-700); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--blue-700); font-weight: 650; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1px solid var(--ink-200); background: #fff; color: var(--ink-800);
  place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0b1220 0%, #0a2f45 48%, #0a73a1 100%);
  color: #fff;
  padding-block: 110px 120px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 82% 12%, rgba(19, 172, 235, .35), transparent 62%),
    radial-gradient(560px 340px at 6% 88%, rgba(19, 172, 235, .2), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent {
  background: linear-gradient(100deg, #6bc9f2, #13aceb);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p { color: rgba(226, 232, 240, .88); font-size: 1.14rem; max-width: 54ch; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 9px; margin-bottom: 26px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  font-size: .84rem; font-weight: 550; color: rgba(226,232,240,.95);
  backdrop-filter: blur(6px);
}
.pill b {
  background: linear-gradient(120deg, var(--blue-500), var(--blue-400));
  color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
}

.hero-actions { margin-top: 34px; }
.hero-trust {
  margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px 30px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(226,232,240,.82); }
.hero-trust svg { width: 18px; height: 18px; color: #6bc9f2; flex: none; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl); padding: 26px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-card-head h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.hero-card-head .status {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #6bc9f2; display: inline-flex; align-items: center; gap: 7px;
}
.hero-card-head .status i { width: 7px; height: 7px; border-radius: 50%; background: #6bc9f2; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(107,201,242,.55); } 50% { box-shadow: 0 0 0 7px rgba(107,201,242,0); } }

.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.hero-metric { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 16px; }
.hero-metric b { display: block; font-family: var(--font-display); font-size: 1.55rem; color: #fff; line-height: 1.1; }
.hero-metric span { font-size: .8rem; color: rgba(203,213,225,.8); }

.hero-list { display: grid; gap: 10px; }
.hero-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-md);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  font-size: .92rem; color: rgba(226,232,240,.92);
  transition: background-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.hero-list li:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.hero-list .tick {
  width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(107,201,242,.18); color: #6bc9f2;
}
.hero-list .tick svg { width: 12px; height: 12px; }
.hero-list .meta { margin-left: auto; font-size: .78rem; color: rgba(148,163,184,.9); }

.hero-float {
  position: absolute; left: -26px; bottom: -30px;
  background: #fff; color: var(--ink-900);
  border-radius: var(--r-lg); padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float .icon {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); flex: none;
}
.hero-float .icon svg { width: 20px; height: 20px; }
.hero-float b { font-family: var(--font-display); font-size: 1.02rem; display: block; line-height: 1.2; }
.hero-float span { font-size: .8rem; color: var(--ink-400); }

/* ---------- 7. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, #0b1220 0%, #0b3349 60%, #0a73a1 130%);
  padding-block: 84px 92px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px 340px at 88% 8%, rgba(19,172,235,.32), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 860px; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { color: rgba(226,232,240,.88); font-size: 1.1rem; max-width: 62ch; }
.page-hero .eyebrow { color: var(--blue-300); }
.page-hero .btn-row { margin-top: 30px; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .86rem; margin-bottom: 20px; color: rgba(148,163,184,.9); }
.breadcrumb a { color: rgba(226,232,240,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(148,163,184,.7); }

/* ---------- 8. Logo strip ---------- */
.logo-strip { padding-block: 44px; border-bottom: 1px solid var(--line); background: #fff; }
.logo-strip p {
  text-align: center; font-size: .8rem; font-weight: 650; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-400); margin-bottom: 26px;
}
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 46px; }
.logo-row div {
  font-family: var(--font-display); font-weight: 750; font-size: 1.16rem;
  color: var(--ink-300); letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 9px;
  transition: color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.logo-row div:hover { color: var(--ink-600); transform: translateY(-2px); }
.logo-row svg { width: 20px; height: 20px; }

/* ---------- 9. Stats strip ---------- */
.stats {
  background: linear-gradient(135deg, var(--ink-900), #0b3349);
  color: #fff; border-radius: var(--r-xl);
  padding: 46px 34px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(500px 260px at 92% 0%, rgba(19,172,235,.32), transparent 62%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding-inline: 12px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 1.9vw, 2.85rem); line-height: 1; letter-spacing: -.035em;
  background: linear-gradient(120deg, #fff, #6bc9f2);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.stat > span { font-size: .92rem; color: rgba(203,213,225,.86); }
.stats--plain { background: none; box-shadow: none; padding: 0; }

/* ---------- 10. Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .34s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .97rem; }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); margin-bottom: 20px;
  transition: background-color var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.card-icon svg { width: 25px; height: 25px; }
.card:hover .card-icon { background: var(--blue-600); color: #fff; transform: scale(1.06) rotate(-4deg); }

.card-list { margin-top: 18px; display: grid; gap: 8px; }
.card-list li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-500); }
.card-list li::before {
  content: ""; width: 6px; height: 6px; margin-top: 10px; border-radius: 50%;
  background: var(--blue-300); flex: none;
}
.card .link-arrow { margin-top: auto; padding-top: 20px; align-self: flex-start; }

/* Numbered / value cards */
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.value-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800)); color: #fff;
  box-shadow: var(--shadow-blue);
}
.value-num svg { width: 20px; height: 20px; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* Industry cards */
.industry-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.industry-card::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-50), transparent 70%);
  transition: transform .4s var(--ease);
}
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.industry-card:hover::before { transform: scale(1.5); }
.industry-card > * { position: relative; z-index: 2; }
.industry-icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--ink-900); color: #fff; margin-bottom: 18px;
  transition: background-color var(--speed) var(--ease);
}
.industry-icon svg { width: 22px; height: 22px; }
.industry-card:hover .industry-icon { background: var(--blue-600); }
.industry-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.industry-card p { font-size: .93rem; color: var(--text-muted); margin: 0; }
.section--dark .industry-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section--dark .industry-card::before { background: radial-gradient(circle, rgba(19,172,235,.28), transparent 70%); }
.section--dark .industry-card:hover { border-color: rgba(107,201,242,.42); box-shadow: 0 24px 48px -26px rgba(0,0,0,.8); }
.section--dark .industry-card h3 { color: #fff; }
.section--dark .industry-card p { color: var(--ink-400); }
.section--dark .industry-icon { background: rgba(19,172,235,.2); color: #6bc9f2; }
.section--dark .industry-icon--teal { background: rgba(19,172,235,.28); color: #a9dff8; }
.section--dark .industry-icon--violet { background: rgba(255,255,255,.1); color: #d3effb; }
.section--dark .industry-icon--amber { background: rgba(245,158,11,.2); color: #fcd34d; }
.section--dark .industry-card:hover .industry-icon { background: var(--blue-600); color: #fff; }

.industry-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag {
  font-size: .74rem; font-weight: 600; letter-spacing: .02em;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--ink-50); color: var(--ink-500);
}
.tag--blue { background: var(--blue-50); color: var(--blue-700); }
.tag--accent { background: var(--accent-soft); color: #0f766e; }

/* Case study cards */
.case-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.case-visual {
  height: 172px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink-900), #084e70);
  display: grid; place-items: center; color: #fff;
}
.case-visual::before {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
}
.case-visual svg { width: 54px; height: 54px; position: relative; z-index: 2; opacity: .9; transition: transform .4s var(--ease); }
.case-card:hover .case-visual svg { transform: scale(1.12) rotate(-5deg); }
.case-visual--alt { background: linear-gradient(135deg, #0a73a1, #13aceb); }
.case-visual--alt2 { background: linear-gradient(135deg, #063e59, #0e93cb); }
.case-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-size: .72rem; font-weight: 650; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); backdrop-filter: blur(6px);
}
.case-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.case-body h3 { font-size: 1.14rem; margin-bottom: 10px; }
.case-body p { color: var(--text-muted); font-size: .95rem; }
.case-results { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 18px 0 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.case-results div b {
  display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--blue-600); line-height: 1.1;
}
.case-results div span { font-size: .78rem; color: var(--ink-400); }
.case-body .link-arrow { margin-top: auto; }

/* Testimonials */
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; display: flex; flex-direction: column; height: 100%;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: .8; color: var(--blue-200); margin-bottom: 12px; }
.testimonial blockquote { margin: 0 0 22px; font-size: 1.02rem; color: var(--ink-700); line-height: 1.72; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; }
.person { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
}
.avatar--a { background: linear-gradient(135deg, #13aceb, #0a73a1); }
.avatar--b { background: linear-gradient(135deg, #063e59, #0e93cb); }
.person b { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--ink-900); line-height: 1.3; }
.person > span > span { font-size: .84rem; color: var(--ink-400); }

/* Blog / insight cards */
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.post-visual { height: 8px; background: linear-gradient(90deg, var(--blue-600), var(--accent)); }
.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: .8rem; color: var(--ink-400); margin-bottom: 14px; }
.post-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.post-body h3 a { color: inherit; }
.post-body h3 a:hover { color: var(--blue-600); }
.post-body p { font-size: .94rem; color: var(--text-muted); }
.post-body .link-arrow { margin-top: auto; padding-top: 18px; }

/* ---------- 11. Split / media sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.split--wide { grid-template-columns: 1.05fr .95fr; }

.checklist { display: grid; gap: 14px; margin: 26px 0 0; }
.checklist--tight { margin-top: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: .98rem; color: var(--ink-600); }
.checklist .tick {
  width: 24px; height: 24px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); margin-top: 2px;
}
.checklist .tick svg { width: 13px; height: 13px; }
.section--dark .checklist li { color: var(--ink-300); }
.section--dark .checklist .tick { background: rgba(107,201,242,.16); color: #6bc9f2; }

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.panel--dark {
  background: linear-gradient(150deg, var(--ink-900), #0b3349);
  border-color: rgba(255,255,255,.1); color: var(--ink-300);
}
.panel--dark h3, .panel--dark h4 { color: #fff; }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini {
  background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.mini:hover { transform: translateY(-3px); border-color: var(--blue-200); }
.panel--dark .mini { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.panel--dark .mini:hover { border-color: rgba(107,201,242,.4); }
.panel--dark .mini > span { color: var(--ink-400); }
.mini b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-600); line-height: 1.1; margin-bottom: 4px; }
.mini span { font-size: .86rem; color: var(--ink-500); }

/* Process timeline */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-500), var(--blue-200));
  opacity: .55;
}
.step { position: relative; text-align: center; }
.step-num {
  width: 54px; height: 54px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 2;
  background: #fff; border: 2px solid var(--blue-200); color: var(--blue-700);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  transition: all var(--speed) var(--ease);
}
.step:hover .step-num { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: scale(1.08); }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--text-muted); margin: 0; }
.section--dark .process::before { background: linear-gradient(90deg, rgba(107,201,242,.3), rgba(94,234,212,.5), rgba(107,201,242,.3)); }
.section--dark .step-num { background: rgba(255,255,255,.06); border-color: rgba(107,201,242,.4); color: #6bc9f2; }
.section--dark .step p { color: var(--ink-400); }

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 24px 0; font-family: var(--font-display); font-size: 1.05rem; font-weight: 650;
  color: var(--ink-900); transition: color var(--speed) var(--ease);
}
.acc-trigger:hover { color: var(--blue-600); }
.acc-trigger .chev {
  width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  transition: transform var(--speed) var(--ease), background-color var(--speed) var(--ease);
}
.acc-trigger .chev svg { width: 15px; height: 15px; }
.acc-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); background: var(--blue-600); color: #fff; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .36s var(--ease); }
.acc-panel > div { padding-bottom: 24px; color: var(--text-muted); font-size: .99rem; max-width: 76ch; }

/* ---------- 12. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #0b2b3e 0%, #0a73a1 55%, #13aceb 145%);
  border-radius: var(--r-xl); padding: 64px 56px;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 80% 20%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 80% 20%, #000, transparent 72%);
}
.cta-band .container { position: relative; z-index: 2; padding-inline: 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 12px; max-width: 20ch; }
.cta-band p { color: rgba(226,232,240,.9); max-width: 56ch; margin: 0; }

/* ---------- 13. Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-size: .88rem; font-weight: 650; color: var(--ink-700); }
.field label .req { color: #dc2626; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: .96rem; color: var(--ink-800);
  padding: 13px 15px; border: 1px solid var(--ink-200); border-radius: var(--r-md);
  background: #fff; width: 100%;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background-color var(--speed) var(--ease);
}
.field textarea { resize: vertical; min-height: 132px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(19, 172, 235, .2);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 17px; padding-right: 42px; }
.field .hint { font-size: .8rem; color: var(--ink-400); }
.field .error { font-size: .82rem; color: #dc2626; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, .1); }
.field.has-error .error { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .89rem; color: var(--ink-500); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--blue-600); }

.form-note { font-size: .84rem; color: var(--ink-400); display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

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

.form-error {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 20px;
  font-size: .93rem;
}
.form-error[hidden] { display: none; }

.form-success {
  display: none; align-items: flex-start; gap: 14px;
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
  border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 22px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; color: #059669; margin-top: 2px; }
.form-success b { display: block; font-family: var(--font-display); margin-bottom: 3px; }
.form-success p { margin: 0; font-size: .92rem; }

/* Contact info tiles */
.contact-tile {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.contact-tile:hover { transform: translateY(-3px); border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.contact-tile .icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
}
.contact-tile .icon svg { width: 21px; height: 21px; }
.contact-tile h3 { font-size: 1rem; margin-bottom: 5px; }
.contact-tile p, .contact-tile a {
  font-size: .94rem; color: var(--text-muted); margin: 0;
  overflow-wrap: anywhere;   /* long emails must not overflow the tile */
}
.contact-tile > div { min-width: 0; }
.contact-tile a:hover { color: var(--blue-600); }

.map-frame {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ink-50), var(--blue-50));
  min-height: 280px; display: grid; place-items: center; text-align: center; padding: 30px;
}
.map-frame .icon { width: 52px; height: 52px; border-radius: 15px; background: #fff; color: var(--blue-600); display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow-sm); }
.map-frame .icon svg { width: 25px; height: 25px; }
.map-frame p { color: var(--ink-500); font-size: .94rem; margin: 0; }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--ink-300); padding-block: 76px 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 52px; }
.site-footer h4 {
  color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 20px;
}
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand-logo { height: 44px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand-sub { color: var(--ink-400); }
.footer-about p { font-size: .94rem; color: var(--ink-400); max-width: 40ch; }
.footer-reg {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem !important; color: var(--ink-500) !important;
  letter-spacing: .01em;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: var(--ink-300); font-size: .94rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before {
  content: ""; width: 0; height: 1px; background: var(--blue-300);
  transition: width var(--speed) var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 12px; }

.footer-contact { display: grid; gap: 16px; }
.footer-contact li { display: flex; gap: 13px; font-size: .94rem; color: var(--ink-300); }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-300); flex: none; margin-top: 3px; }
.footer-contact a { color: var(--ink-300); overflow-wrap: anywhere; }
.footer-contact a:hover { color: #fff; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: var(--ink-200); border: 1px solid rgba(255,255,255,.09);
  transition: all var(--speed) var(--ease);
}
.socials a:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  font-size: .88rem; color: var(--ink-400);
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a { color: var(--ink-400); }
.footer-bottom a:hover { color: #fff; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--blue-600); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-blue);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all var(--speed) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue-700); transform: translateY(-3px); }
.to-top svg { width: 19px; height: 19px; }

/* ---------- 15. Small utilities ---------- */
.u-m0 { margin: 0; }
.u-mt-sm { margin-top: 24px; }
.u-mt-md { margin-top: 32px; }
.u-mt-lg { margin-top: 46px; }
.u-muted { color: var(--text-muted); font-size: .97rem; }
.u-divider-top { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- 16. Animation utilities ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .66s var(--ease), transform .66s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

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

/* ---------- 17. Responsive ---------- */
@media (max-width: 1180px) {
  .nav a { padding: 10px 9px; font-size: .9rem; }
  .nav a::after { left: 9px; right: 9px; }
  .brand-sub { display: none; }
  .brand-logo { height: 34px; }
}

@media (max-width: 1080px) {
  :root { --section-y: 84px; --section-y-sm: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; }
  .split, .split--wide { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process { grid-template-columns: 1fr 1fr; gap: 34px; }
  .process::before { display: none; }
}

@media (max-width: 900px) {
  /* NOTE: the header uses backdrop-filter, which makes it the containing
     block for fixed-position children — so the drawer is positioned
     absolutely against the header instead. */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 18px var(--gutter) 34px;
    max-height: calc(100vh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    transform: translateX(100%); transition: transform .32s var(--ease);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 44px -22px rgba(11, 18, 32, .4);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 15px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a::after { display: none; }
  .nav > .btn {
    display: inline-flex; margin-top: 22px;
    border-bottom: 0; border-radius: var(--r-pill);
    color: var(--btn-fg); font-size: .98rem; padding: 15px 24px;
    justify-content: center;
  }
  .nav > .btn:hover { color: var(--btn-fg); }
  .nav-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .stat:nth-child(3)::before { display: none; }
  .cta-band { padding: 46px 32px; }
  /* On small screens keep the tappable phone number, drop the rest */
  .topbar-links a:not(:first-child) { display: none; }
  .topbar-note { display: none; }
  .topbar .container { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --section-y: 66px; --section-y-sm: 52px; }
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .mini-grid, .form-grid, .process { grid-template-columns: 1fr; }
  .stats { padding: 34px 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
  .card, .value-card, .testimonial, .panel { padding: 24px; }
  .hero { padding-block: 72px 84px; }
  .hero-float { position: static; margin-top: 20px; animation: none; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-band { padding: 38px 24px; border-radius: var(--r-lg); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero-trust { gap: 10px 20px; }
  .value-card { flex-direction: column; gap: 16px; }
}
