:root {
  --ink: #0A1628;
  --ink-2: #14233A;
  --ink-3: #2A3A55;
  --muted: #5A6B85;
  --muted-2: #8593A8;
  --line: #E6EAF2;
  --line-2: #EEF1F7;
  --bg: #FFFFFF;
  --bg-2: #F6F8FC;
  --bg-3: #EEF2F9;
  --blue: #2F6BFF;
  --blue-ink: #1E4FCC;
  --blue-soft: #E8EFFF;
  --blue-soft-2: #F2F6FF;
  --green: #16A36A;
  --amber: #E2A52A;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 1px 1px rgba(10, 22, 40, 0.03);
  --shadow-md: 0 10px 30px -12px rgba(10, 22, 40, 0.12), 0 2px 6px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(10, 22, 40, 0.20), 0 10px 25px -10px rgba(10, 22, 40, 0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}
body { overflow-x: hidden; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.03em; }
h3 { font-size: 20px; line-height: 1.3; }
p { margin: 0; color: var(--muted); }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0; }

/* Eyebrow / chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #D6E2FF;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.15);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: '';
  width: 18px; height: 1px; background: var(--ink-3); display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 6px 18px -6px rgba(10, 22, 40, 0.4);
}
.btn-primary:hover { background: #001025; box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 12px 28px -10px rgba(10, 22, 40, 0.5); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: #C9D3E5; background: var(--bg-2); }
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(47, 107, 255, 0.55);
}
.btn-blue:hover { background: var(--blue-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
}
.btn-ghost:hover { background: var(--bg-2); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.head-cta { flex-shrink: 0; }
.btn-link .arrow { transition: transform 0.2s ease; }
.btn-link:hover .arrow { transform: translateX(3px); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute; right: -3px; bottom: -3px;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--blue);
  border: 2px solid #fff;
}
.brand-suffix { color: var(--muted); font-weight: 500; }

.nav-links {
  display: flex; gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-2); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
}

/* HERO */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .accent {
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 12px;
  background: var(--blue-soft);
  z-index: -1;
  border-radius: 4px;
}
.hero .sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
}
.hero-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 22px 28px;
  color: var(--muted); font-size: 13px;
}
.hero-meta .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .item svg { color: var(--green); flex-shrink: 0; }

.hero-visual {
  position: relative;
}
.hero-img {
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  border-radius: 20px;
  /* border: 1px solid var(--line);
  background: var(--bg-2); */
  display: block;
  /* object-fit: cover; */
}

/* Dashboard mockup */
.mockup {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.mockup-bar .dot { width: 10px; height: 10px; border-radius: 99px; background: #E5E9F2; }
.mockup-bar .urlbar {
  flex: 1;
  margin-left: 12px;
  height: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 12px;
  color: var(--muted-2);
  font-family: 'JetBrains Mono', monospace;
}
.mockup-bar .urlbar .lock { color: var(--green); margin-right: 6px; }

.mockup-body { padding: 22px; }
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.dash-title { font-size: 13px; color: var(--muted); font-weight: 500; }
.dash-h { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
  background: #E7F7EE; color: #0F7A48;
}
.pill .dot { width: 6px; height: 6px; border-radius: 99px; background: #16A36A; }

.dash-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.stat-card .l { font-size: 11px; color: var(--muted); font-weight: 500; }
.stat-card .v { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }
.stat-card .d { font-size: 11px; color: var(--green); margin-top: 2px; font-weight: 600; }
.stat-card .d.red { color: #C04545; }

.dash-chart {
  margin-top: 14px;
  height: 140px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px 6px;
  position: relative;
}
.chart-head { display: flex; justify-content: space-between; align-items: center; }
.chart-head .label { font-size: 12px; color: var(--muted); font-weight: 500; }
.chart-head .legend { display: flex; gap: 12px; font-size: 11px; color: var(--muted); }
.chart-head .legend .swatch { width: 10px; height: 3px; border-radius: 2px; display: inline-block; vertical-align: middle; margin-right: 5px; }

.dash-list {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.dash-list .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-2);
  font-size: 12px;
}
.dash-list .row:last-child { border-bottom: 0; }
.dash-list .row .left { display: flex; align-items: center; gap: 10px; }
.dash-list .row .badge {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--bg-2);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
}
.dash-list .row .right { color: var(--muted); font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* Floating cards near hero */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.float-card .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue-ink);
  display: grid; place-items: center;
}
.float-card .ic.green { background: #E7F7EE; color: #0F7A48; }
.float-card .t { font-weight: 600; color: var(--ink); }
.float-card .s { color: var(--muted); font-size: 12px; margin-top: 1px; }
.float-card.tl { top: -18px; left: -24px; }
.float-card.br { bottom: -18px; right: -16px; }

/* TRUST */
.trust {
  padding: 64px 0 24px;
}
.trust-head {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 28px;
}
.logo-slot {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slot img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s;
}
.logo-slot img:hover {
  filter: grayscale(0) opacity(1);
}
/* On desktop the slide wrapper is invisible to the grid */
.logo-slide { display: contents; }

/* STATS */
.stats {
  padding: 56px 0 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.stat .v {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .v .plus { color: var(--blue); }
.stat .l { margin-top: 10px; color: var(--muted); font-size: 14px; }

/* SECTION */
section { padding: 96px 0; }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .section-eyebrow { margin-bottom: 16px; }
.section-head .sh-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.section-head p { margin-top: 14px; font-size: 17px; color: var(--muted); max-width: 580px; }

/* SERVICES */
.services { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services .section-head { max-width: none; }
#testimonials .section-head { max-width: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 240px;
}
.service-card:hover {
  border-color: #C9D3E5;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card .ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--bg-3);
  display: grid; place-items: center;
  color: var(--ink);
  margin-bottom: 18px;
}
.service-card:hover .ic { background: var(--blue-soft); color: var(--blue-ink); }
.service-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.service-card p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; }
.service-card .more {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card:hover .more { color: var(--blue-ink); }
.service-card .tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 600;
  color: var(--muted); font-family: 'JetBrains Mono', monospace;
}

/* WORK */
.work { background: #fff; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.work-card:hover {
  border-color: #C9D3E5;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #E9EDF5;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.work-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-card:hover .work-thumb-img {
  transform: scale(1.04);
}
.work-thumb::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%);
}
.work-cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.work-cat::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 99px;
  background: var(--accent);
  margin-right: 7px;
  vertical-align: middle;
}
.work-mini {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-mini .bar {
  height: 7px;
  border-radius: 99px;
  background: rgba(10, 22, 40, 0.10);
}
.work-mini .bar:first-child { background: var(--accent); opacity: 0.65; }
.work-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-size: 10.5px;
  color: var(--muted-2);
  background: rgba(255,255,255,0.7);
  padding: 3px 7px;
  border-radius: 6px;
}
.work-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.work-meta h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.work-loc {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; color: var(--muted); white-space: nowrap;
}
.work-body p { font-size: 14px; line-height: 1.5; }
.work-result {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.work-metric { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; }
.work-metric-label { font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.work-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.work-cta-note { color: var(--muted); font-size: 14px; }

/* PRICING */
.pricing { background: #fff; }
.pricing .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.feat {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price-card.feat h3,
.price-card.feat .price,
.price-card.feat .feature-list li { color: #fff; }
.price-card.feat .price-meta,
.price-card.feat .tag-line,
.price-card.feat .feature-list li span.lbl { color: #B9C5D9; }
.price-card .ribbon {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.price-card .tag-line {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.price-card h3 {
  margin-top: 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.price-card .price {
  margin-top: 18px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-card .price .cur { font-size: 26px; font-weight: 600; }
.price-card .price-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.feature-list li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue-ink);
  display: grid; place-items: center;
  margin-top: 2px;
}
.price-card.feat .feature-list li .check {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.price-card .btn {
  margin-top: auto;
  width: 100%;
}
.price-card.feat .btn-primary { background: var(--blue); }
.price-card.feat .btn-primary:hover { background: var(--blue-ink); }

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  margin-top: 28px;
  padding: 4px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  gap: 2px;
}
.billing-toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.billing-toggle button.on {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.billing-toggle .save {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue-ink);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

/* WHY US */
.why { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.why-cell {
  background: #fff;
  padding: 28px;
  min-height: 180px;
}
.why-cell .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-ink);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.why-cell h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.why-cell p { font-size: 14px; margin-top: 6px; line-height: 1.55; }

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.testi-grid > .video-testi { grid-row: 1 / span 2; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-card .stars {
  display: flex; gap: 2px;
  color: #E2A52A;
}
.testi-card .quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.testi-card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.testi-card .avatar {
  width: 40px; height: 40px; border-radius: 99px;
  background: var(--bg-3);
  display: grid; place-items: center;
  font-weight: 700;
  color: var(--ink-3);
  font-size: 14px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.testi-card .who .name { font-size: 14px; font-weight: 600; }
.testi-card .who .role { font-size: 12px; color: var(--muted); margin-top: 1px; }

.video-testi {
  background: var(--ink);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
}
.video-testi .v-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}
.video-testi .v-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,22,40,0.15) 0%,
    rgba(10,22,40,0.55) 50%,
    rgba(10,22,40,0.95) 100%);
  z-index: 1;
}
.video-testi > * { position: relative; z-index: 2; }
.video-testi .v-thumb,
.video-testi .v-overlay { z-index: 0; }
.video-testi .v-overlay { z-index: 1; }
.video-testi .play {
  position: absolute;
  top: 24px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 99px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: grid; place-items: center;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
.video-testi:hover .play { transform: scale(1.06); }
.video-testi .v-content { margin-top: auto; }
.video-testi .v-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.video-testi .v-quote {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.video-testi .v-who { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.8); }
.video-testi .v-who .av {
  width: 36px; height: 36px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
}

/* PROCESS */
.process { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 6%; right: 6%;
  height: 1px;
  border-top: 1px dashed #C9D3E5;
  z-index: 0;
}
.process-step {
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.process-step .num {
  width: 60px; height: 60px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-ink);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
@keyframes num-ripple {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(1.85); opacity: 0;    }
}
.process-step .num::before,
.process-step .num::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 99px;
  border: 1.5px solid var(--blue);
  animation: num-ripple 2.6s ease-out infinite;
  pointer-events: none;
}
.process-step .num::after {
  animation-delay: 1.3s;
}
.process-step h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.process-step p { font-size: 14px; margin-top: 8px; }

/* FINAL CTA */
.final-cta {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(47, 107, 255, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(47, 107, 255, 0.12), transparent 60%);
}
.final-cta .container { position: relative; }
.final-cta h2 { color: #fff; font-size: clamp(34px, 4.5vw, 56px); }
.final-cta p { color: rgba(255,255,255,0.7); margin-top: 18px; font-size: 18px; max-width: 560px; }
.final-cta .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.final-cta .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.final-cta .btn-secondary:hover { background: rgba(255,255,255,0.15); }
.final-cta .btn-blue { box-shadow: 0 6px 18px -4px rgba(47, 107, 255, 0.6); }

.cta-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.cta-meta .item { display: inline-flex; align-items: center; gap: 8px; }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { background: #fff; color: var(--ink); }
.footer-brand .brand-suffix { color: rgba(255,255,255,0.5); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-top: 18px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  padding: 0;
  cursor: default;
  text-align: left;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.acc-chevron { display: none; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .socials { display: flex; gap: 8px; }
.footer-bottom .socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-bottom .socials a:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Anim */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Toast notifications ─────────────────────────────────────────────────── */
@keyframes toast-in {
  from { opacity: 0; transform: translateX(16px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0)     scale(1);   }
}
.toast-stack {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(380px, calc(100vw - 40px));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(15,23,42,0.2);
  animation: toast-in 0.3s cubic-bezier(0.34, 1.1, 0.64, 1) both;
  pointer-events: auto;
}
.toast-success { background: #0F7A48; color: #fff; }
.toast-error   { background: #C0392B; color: #fff; }
.toast-warning { background: #B07D10; color: #fff; }
.toast-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.toast-msg { flex: 1; }
.toast-x {
  flex-shrink: 0;
  background: none; border: none;
  cursor: pointer; padding: 2px;
  color: rgba(255,255,255,0.65);
  display: grid; place-items: center;
  border-radius: 4px;
  transition: color 0.15s;
}
.toast-x:hover { color: #fff; }
@media (max-width: 560px) {
  .toast-stack { top: 12px; right: 12px; left: 12px; width: auto; }
}

/* ── Booking modal ───────────────────────────────────────────────────────── */
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)     scale(1);   }
}
@keyframes success-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)     scale(1);   }
}
.modal-wrap {
  position: fixed; inset: 0;
  z-index: 400;
  background: rgba(15, 23, 42, 0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadein 0.2s ease forwards;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.booking-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%; max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-in 0.3s cubic-bezier(0.34, 1.1, 0.64, 1) forwards;
  scrollbar-width: none;
}
.booking-modal::-webkit-scrollbar { display: none; }

/* Header */
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: #fff; z-index: 1;
}
.modal-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-top: 6px; }

/* Form */
.modal-form {
  padding: 22px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row  { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 500; color: var(--ink); }
.form-req { color: var(--blue); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 14px; font-family: inherit; color: var(--ink); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; box-sizing: border-box;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,107,255,0.1);
}
.form-row input.error,
.form-row select.error,
.form-row input[aria-invalid="true"] { border-color: #E2456B; box-shadow: 0 0 0 3px rgba(226,69,107,0.1); }
.form-row textarea { resize: none; }
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}
.form-row input:disabled { background: var(--bg-2); cursor: not-allowed; opacity: 0.6; }

/* CAPTCHA */
.captcha-wrap {
  display: flex; gap: 10px; align-items: stretch;
}
.captcha-question {
  flex: 1; display: flex; align-items: center; gap: 8px;
  padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg-2); font-family: 'JetBrains Mono', monospace;
}
.captcha-math { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.captcha-reload {
  margin-left: auto; flex-shrink: 0;
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 2px; border-radius: 6px;
  display: grid; place-items: center;
  transition: color 0.15s, background 0.15s;
}
.captcha-reload:hover { color: var(--blue); background: var(--blue-soft); }
.captcha-loading { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.captcha-wrap input[type="number"] {
  width: 110px; flex-shrink: 0; text-align: center;
  -moz-appearance: textfield;
}
.captcha-wrap input[type="number"]::-webkit-inner-spin-button,
.captcha-wrap input[type="number"]::-webkit-outer-spin-button { display: none; }

/* Spinners */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  width: 15px; height: 15px; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
.mini-spinner {
  display: inline-block;
  width: 12px; height: 12px;
  border: 1.5px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
.btn.btn-loading { gap: 8px; }

/* Submit row */
.modal-submit { width: 100%; justify-content: center; margin-top: 4px; }
.modal-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  text-align: center; font-size: 12.5px; color: var(--muted); margin: 0;
}
.modal-note svg { color: var(--green); flex-shrink: 0; }
/* Rate-limit banner */
.rate-banner {
  display: flex; align-items: center; gap: 8px;
  margin: 0 28px; padding: 10px 14px;
  background: #FFF8E7; border: 1px solid #F0C040; border-radius: 10px;
  font-size: 13px; color: #7A5A00;
}
.rate-banner svg { flex-shrink: 0; color: #B07D10; }
/* Character counter */
.form-label-row { display: flex; justify-content: space-between; align-items: baseline; }
.char-count { font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.char-count.warn { color: #C0392B; font-weight: 600; }

/* ── Success state ───────────────────────────────────────────────────────── */
.modal-success {
  padding: 44px 28px 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  animation: success-in 0.4s cubic-bezier(0.34, 1.1, 0.64, 1) forwards;
  outline: none;
}
.success-ring {
  position: relative;
  width: 80px; height: 80px;
  margin-bottom: 24px;
}
.success-ring::before,
.success-ring::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1.5px solid #0F7A48;
  animation: success-pulse 2.4s ease-out infinite;
  opacity: 0;
}
.success-ring::after { animation-delay: 1.2s; }
@keyframes success-pulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0;   }
}
.success-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #E7F7EE; color: #0F7A48;
  display: grid; place-items: center;
}
.success-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px;
}
.success-body {
  font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 380px; margin-bottom: 20px;
}
.success-details {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 18px;
  font-size: 13px; color: var(--muted); text-align: left;
  width: 100%; max-width: 360px; margin-bottom: 28px;
  box-sizing: border-box;
}
.success-details span {
  display: flex; align-items: center; gap: 7px;
}
.success-details svg { color: var(--green); flex-shrink: 0; }

/* Countdown */
.countdown-wrap { width: 100%; max-width: 360px; margin-bottom: 20px; }
.countdown-track {
  height: 4px; background: var(--line); border-radius: 99px; overflow: hidden; margin-bottom: 10px;
}
.countdown-fill {
  height: 100%; background: var(--blue); border-radius: 99px;
  transition: width 1s linear;
}
.countdown-text { font-size: 12.5px; color: var(--muted); text-align: center; }
.countdown-text strong { color: var(--ink); }
.close-now-btn { font-size: 13px; padding: 9px 18px; }

@media (max-width: 560px) {
  .modal-wrap    { padding: 0; align-items: flex-end; }
  .booking-modal { border-radius: 24px 24px 0 0; max-height: 94vh; }
  .form-2col     { grid-template-columns: 1fr; }
  .captcha-wrap  { flex-direction: column; }
  .captcha-wrap input[type="number"] { width: 100%; }
}

/* Contact modal */
.contact-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  animation: modal-in 0.3s cubic-bezier(0.34, 1.1, 0.64, 1) forwards;
}
.contact-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
}
.contact-modal-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.contact-modal-body {
  padding: 24px 28px 32px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-item:hover {
  border-color: var(--blue);
  background: var(--blue-soft-2);
}
.contact-item-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
a.contact-item-value:hover { color: var(--blue); }
@media (max-width: 560px) {
  .contact-modal { border-radius: 24px 24px 0 0; }
}

/* Nav contact-us button */
.nav-link-btn {
  padding: 0;
  border: none;
  background: none;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

/* Mobile sheet contact link */
.mobile-sheet-contact {
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-2);
  border-top: none;
  border-left: none;
  border-right: none;
  background: none;
  font-family: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

/* Service detail drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.service-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(520px, 100vw);
  background: #fff;
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(15, 23, 42, 0.12);
}
.service-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: #fff;
  z-index: 1;
  flex-shrink: 0;
}
.drawer-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--bg-2); }
.drawer-body {
  padding: 36px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: grid; place-items: center;
  color: var(--blue-ink);
  margin-bottom: 22px;
  flex-shrink: 0;
}
.drawer-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.drawer-detail {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  flex: 1;
}
.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.drawer-ctas .btn {
  width: 100%;
  justify-content: center;
}
.service-card { cursor: pointer; }

/* Mobile menu sheet */
.mobile-sheet {
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 50;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-sheet.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-sheet a {
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-2);
}
.mobile-sheet .btn { margin-top: 16px; width: 100%; }

/* Carousel — dots hidden on desktop; track behaves as its grid class */
.carousel { width: 100%; }
.carousel-dots { display: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .float-card.tl { left: 0; }
  .float-card.br { right: 0; }
  .services-grid, .why-grid, .pricing .price-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid > .video-testi { grid-row: auto; grid-column: 1 / -1; min-height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .price-card.feat { transform: none; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .hero { padding-top: 40px; }
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero-visual { order: -1; }
  /* Trust logos — mobile carousel: 2 per slide, snap by slide */
  .logos {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 4px 20px 12px;
    scroll-padding-left: 20px;
  }
  .logos::-webkit-scrollbar { display: none; }
  .logo-slide {
    display: flex;
    flex: 0 0 calc(100% - 20px);
    gap: 12px;
    scroll-snap-align: start;
  }
  .logo-slide .logo-slot { flex: 1; }
  .pricing .price-grid { grid-template-columns: 1fr; }
  /* Why Us — mobile carousel: 1 card at a time, snap scroll */
  .why-grid {
    display: flex;
    grid-template-columns: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 4px 20px 16px;
    scroll-padding-left: 20px;
  }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-cell {
    flex: 0 0 86%;
    scroll-snap-align: start;
    border-radius: 14px;
    border: 1px solid var(--line);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head .sh-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-meta { gap: 14px 22px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* ---- Mobile card carousels: one card at a time, snap scroll ---- */
  .services-grid,
  .work-grid,
  .testi-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* let cards bleed to screen edges */
    margin: 0 -20px;
    padding: 4px 20px 16px;
    scroll-padding-left: 20px;
  }
  .services-grid::-webkit-scrollbar,
  .work-grid::-webkit-scrollbar,
  .testi-grid::-webkit-scrollbar { display: none; }

  .service-card,
  .work-card,
  .testi-grid > .testi-card,
  .testi-grid > .video-testi {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-height: 0;
  }
  .testi-grid > .video-testi { min-height: 360px; }

  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
  }
  .carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 99px;
    background: #C9D3E5;
    transition: width 0.28s ease, background 0.28s ease;
  }
  .carousel-dots button.on {
    width: 22px;
    background: var(--blue);
  }
  /* dark dots inside the navy testimonials/work-on-dark contexts stay readable */

  /* ---- Process: vertical timeline ---- */
  .process-grid {
    display: block;
    position: relative;
    padding-left: 8px;
  }
  .process-grid::before { display: none; }
  .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
    padding: 0 0 32px 0;
    position: relative;
  }
  .process-step:last-child { padding-bottom: 0; }
  /* connecting vertical line through the number column */
  .process-step::before {
    content: '';
    position: absolute;
    left: 29px; top: 60px; bottom: -4px;
    width: 1px;
    border-left: 1px dashed #C9D3E5;
  }
  .process-step:last-child::before { display: none; }
  .process-step .num { margin-bottom: 0; }
  .process-step h3 { margin-top: 16px; }
  .process-step > h3, .process-step > p { grid-column: 2; }

  /* ---- Footer accordion ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-brand { margin-bottom: 8px; }
  .footer-col {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-col:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col-head { padding: 18px 0; cursor: pointer; }
  .footer-col h4 { margin-bottom: 0; }
  .acc-chevron {
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.5);
    transform: rotate(90deg);
    transition: transform 0.25s ease;
  }
  .footer-col.open .acc-chevron { transform: rotate(-90deg); color: #fff; }
  .acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
    overflow: hidden;
  }
  .acc-body > * { min-height: 0; overflow: hidden; }
  .footer-col.open .acc-body { grid-template-rows: 1fr; }
  .acc-body ul { padding-bottom: 20px; }
}
