/* ============================================================
   GURU SMS — Design System
   Palette: deep indigo + violet gradient, saffron CTA, WA green
   ============================================================ */

:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-mute: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #faf6f0;
  --bg-dark: #221108;
  --bg-dark-2: #361a0a;
  --line: #eee6da;

  /* themeable surfaces */
  --surface: #ffffff;
  --surface-2: #faf6f0;
  --header-bg: rgba(255, 255, 255, .86);
  --input-bg: #fffdfa;

  --p1: #ea580c;          /* indigo */
  --p2: #f97316;          /* violet */
  --p3: #c2410c;          /* blue */
  --grad: linear-gradient(120deg, #ea580c 0%, #f97316 55%, #fb923c 100%);
  --grad-soft: linear-gradient(120deg, #fff7ed, #ffedd5);

  --accent: #f97316;       /* saffron CTA */
  --accent-dark: #ea580c;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --gold: #f59e0b;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-full: 999px;

  --shadow-sm: 0 1px 3px rgba(34, 17, 8, .08);
  --shadow-md: 0 6px 24px -6px rgba(234, 88, 12, .16);
  --shadow-lg: 0 24px 60px -18px rgba(54, 26, 10, .28);

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ============ DARK THEME ============ */
[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3ede6;
  --ink-soft: #c9b8a6;
  --ink-mute: #a18873;
  --bg: #16100a;
  --bg-soft: #1d150d;
  --line: #38291c;
  --surface: #251a10;
  --surface-2: #1a130c;
  --header-bg: rgba(22, 16, 10, .82);
  --input-bg: #2b1e12;
  --grad-soft: linear-gradient(120deg, #33200f, #40270f);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .45);
  --shadow-md: 0 6px 24px -6px rgba(0, 0, 0, .55);
  --shadow-lg: 0 24px 60px -18px rgba(0, 0, 0, .65);
}
[data-theme="dark"] body { background: var(--bg); }
[data-theme="dark"] .hero {
  background:
    radial-gradient(900px 500px at 80% 2%, rgba(249, 115, 22, .26), transparent 60%),
    radial-gradient(700px 460px at 8% 85%, rgba(245, 158, 11, .16), transparent 55%),
    linear-gradient(180deg, #16100a, #1e150c);
}
[data-theme="dark"] .page-hero,
[data-theme="dark"] .page-hero-center {
  background:
    radial-gradient(1000px 460px at 88% -10%, rgba(249, 115, 22, .22), transparent 60%),
    radial-gradient(800px 420px at -8% 30%, rgba(245, 158, 11, .13), transparent 55%),
    linear-gradient(180deg, #16100a, #1e150c);
}
[data-theme="dark"] .hero .orb { opacity: .4; }
[data-theme="dark"] .stats-strip {
  background: rgba(37, 26, 16, .72); border-color: rgba(255, 255, 255, .08);
  /* light-mode alphas (~5-9%) disappear against a dark page — deepen them */
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .3),
    0 12px 20px -6px rgba(0, 0, 0, .38),
    0 28px 48px -14px rgba(0, 0, 0, .45);
}
[data-theme="dark"] .stat { border-color: rgba(255, 255, 255, .08); }
[data-theme="dark"] .hero-bg-photo.active { opacity: .4; }
[data-theme="dark"] .hero-bg-photo::after {
  background:
    radial-gradient(140% 135% at 116% 46%, rgba(14,13,24,0) 22%, rgba(14,13,24,.55) 62%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(14,13,24,.95) 30%, rgba(14,13,24,.82) 62%, rgba(14,13,24,.66) 100%);
}
[data-theme="dark"] .pill-od { background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.35); color: #fdba74; }
[data-theme="dark"] .phone-screen { background: linear-gradient(180deg, #1a1830, #211f38); }
[data-theme="dark"] .alert-ok { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); color: #6ee7b7; }
[data-theme="dark"] .alert-err { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.3); color: #fca5a5; }
[data-theme="dark"] .service-card.has-thumb .service-icon { border-color: var(--surface); }
[data-theme="dark"] img.hero-visual-img { filter: none; }

/* theme toggle button */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 11px; cursor: pointer; flex: 0 0 auto;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.theme-toggle:hover { transform: translateY(-1px); color: var(--p1); border-color: var(--p1); }
.theme-toggle .ic-moon { display: none; }
[data-theme="dark"] .theme-toggle .ic-sun { display: none; }
[data-theme="dark"] .theme-toggle .ic-moon { display: inline-block; }
.header-inner { justify-content: flex-start; }
.main-nav { margin-left: auto; }
@media (max-width: 1024px) {
  .main-nav { margin-left: 0; }
  .theme-toggle { margin-left: auto; }
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: inline-block; vertical-align: middle; }
a { color: var(--p1); text-decoration: none; }
a:hover { color: var(--p2); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h3 { font-size: 1.12rem; font-weight: 700; }
p  { color: var(--ink-soft); }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container.narrow, .narrow { max-width: 820px; }
.center { text-align: center; }

/* icons */
.icon, .ic-md { width: 26px; height: 26px; }
.ic-lg { width: 34px; height: 34px; }
.ic-sm { width: 18px; height: 18px; }
.ic-xs { width: 14px; height: 14px; }
.ic-brand { width: 24px; height: 24px; }
.ic-star { width: 16px; height: 16px; fill: var(--gold); stroke: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: var(--r-full);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff; box-shadow: 0 10px 24px -8px rgba(249, 115, 22, .55);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(249, 115, 22, .6); }
.btn-outline { border-color: var(--p1); color: var(--p1); background: var(--surface); }
.btn-outline:hover { background: var(--grad-soft); transform: translateY(-2px); }
.btn-light { background: var(--surface); color: var(--p1); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); color: var(--p2); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }
/* header CTA — soft tint at rest, fills with the gradient on hover */
.btn-nav {
  padding: .65rem 1.7rem; font-size: .88rem;
  background: var(--grad-soft); color: var(--p1);
  border-color: rgba(234, 88, 12, .28); box-shadow: none;
}
.btn-nav:hover {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(249, 115, 22, .5);
}

/* ---------- Topbar ---------- */
.topbar { background: var(--bg-dark-2); color: #fed7aa; font-size: .8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: .42rem 0; gap: 1rem; }
.topbar a, .topbar span { color: #fed7aa; display: inline-flex; align-items: center; gap: .35rem; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 1.2rem; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(234, 88, 12, .55);
}
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: var(--ink); letter-spacing: -.02em; }
.brand-text em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-logo { height: 100px; width: auto; display: block; }
/* on dark surfaces the logo sits on a soft light chip so its fine print stays legible */
.brand-logo-foot { background: #fffdfa; border-radius: 12px; padding: .45rem .7rem; height: 58px; box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .5); }
/* Dark theme: the header is a warm peach panel, and the logo chip matches it so
   the transparent logo reads cleanly instead of glowing on a dark bar. */
[data-theme="dark"] .site-header { background: #ffceae; }
[data-theme="dark"] .site-header.scrolled { border-color: rgba(34, 17, 8, .14); }
[data-theme="dark"] .site-header .brand-logo { background: #ffceae; border-radius: 0 0 10px 10px; padding: 0 .55rem; }

/* …which means the header's controls must flip to dark ink — they inherit
   --ink (near-white in dark mode) and would otherwise vanish on the peach. */
[data-theme="dark"] .site-header .nav-toggle span { background: #221108; }
/* the toggle's default surface-2 is near-black — on peach that reads as a dark
   blob with an invisible icon, so give it a light chip to sit on */
[data-theme="dark"] .site-header .theme-toggle {
  color: #221108; background: rgba(255, 255, 255, .45); border-color: rgba(34, 17, 8, .24);
}
[data-theme="dark"] .site-header .theme-toggle:hover {
  color: var(--p1); background: rgba(255, 255, 255, .75); border-color: var(--p1);
}
/* Desktop only: the nav links sit in the peach row. On mobile they live in the
   slide-out panel (dark surface) and must keep their light ink. */
@media (min-width: 1025px) {
  [data-theme="dark"] .site-header .main-nav > a:not(.btn-nav),
  [data-theme="dark"] .site-header .nav-drop-btn { color: #221108; }
  [data-theme="dark"] .site-header .main-nav > a:not(.btn-nav):hover,
  [data-theme="dark"] .site-header .nav-drop-btn:hover { color: var(--p1); }
}

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav > a:not(.btn-nav), .nav-drop-btn {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink);
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: .3rem;
  padding: .35rem 0; position: relative;
}
.main-nav > a:not(.btn-nav)::after, .nav-drop-btn::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .22s ease;
}
.main-nav > a:not(.btn-nav):hover::after, .nav-drop:hover .nav-drop-btn::after { width: 100%; }
.main-nav > a:not(.btn-nav):hover, .nav-drop-btn:hover { color: var(--p1); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: .8rem;
  display: grid; grid-template-columns: repeat(2, 250px); gap: .15rem;
  opacity: 0; visibility: hidden; transition: all .22s ease;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a {
  display: flex; align-items: center; gap: .7rem; padding: .6rem .75rem; border-radius: var(--r-md);
  color: var(--ink); font-size: .88rem;
}
.nav-drop-menu a:hover { background: var(--grad-soft); }
.nav-drop-menu a .ic-sm { color: var(--p1); flex: 0 0 auto; }
.nav-drop-menu a span { display: flex; flex-direction: column; line-height: 1.25; }
.nav-drop-menu a small { color: var(--ink-mute); font-size: .73rem; }

/* close button + backdrop live only inside the mobile nav panel */
.nav-close { display: none; }
.nav-backdrop { display: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; border-radius: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; margin: 4.5px auto; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero, .page-hero {
  /* NOTE: no overflow:hidden here. The stats card is a child of .hero and is
     designed to overhang the section edge (margin-bottom:-3rem) — clipping here
     cut its bottom 48px off, hiding the labels. The orbs that needed clipping
     live in .hero-bg, so the clip belongs there instead. */
  position: relative;
  background:
    radial-gradient(1100px 480px at 88% -10%, rgba(249, 115, 22, .14), transparent 60%),
    radial-gradient(900px 420px at -10% 30%, rgba(245, 158, 11, .11), transparent 55%),
    linear-gradient(180deg, #fffcf8 0%, #faf2e8 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: drift 14s ease-in-out infinite alternate; }
.orb-1 { width: 380px; height: 380px; background: #fdba74; top: -120px; right: -80px; }
.orb-2 { width: 300px; height: 300px; background: #fcd34d; bottom: -100px; left: -60px; animation-delay: -5s; }
.orb-3 { width: 220px; height: 220px; background: #fed7aa; top: 40%; left: 55%; animation-delay: -9s; opacity: .35; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 28px) scale(1.12); } }

.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 3rem; align-items: center; padding: 4.2rem 0 3rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-full);
  padding: .4rem 1rem; font-size: .8rem; font-weight: 600; color: var(--p1);
  box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-sub { font-size: 1.08rem; max-width: 56ch; margin-inline: auto; }
.hero-copy .hero-sub { margin-inline: 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin: 1.3rem 0 1.7rem; }
.hero-points li { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.hero-points .ic-sm { color: #16a34a; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.center-actions { justify-content: center; }
.hero-mini { margin-top: 1rem; font-size: .82rem; color: var(--ink-mute); }

/* ---------- Hero slider ---------- */
/* per-slide photo backgrounds (crossfade with the active slide) */
.hero-bg-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  opacity: 0; transition: opacity 1s ease;
  filter: saturate(.85) blur(2px);
}
.hero-bg-photo.active { opacity: .55; }
/* soft veil: clean on the left, faint tint mid-right, fully faded at every edge — no hard seams */
.hero-bg-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(140% 135% at 116% 46%, rgba(251,250,255,0) 22%, rgba(251,250,255,.5) 62%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(251,250,255,.96) 30%, rgba(251,250,255,.84) 62%, rgba(251,250,255,.7) 100%);
}
@media (max-width: 1024px) {
  .hero-bg-photo.active { opacity: .35; }
  .hero-bg-photo::after { background: rgba(251, 250, 255, .9); }
}


.hero-slider { position: relative; overflow: hidden; }
.hero-track { display: flex; transition: transform .65s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.hero-slide {
  flex: 0 0 100%; min-width: 100%;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 3rem; align-items: center; padding: 3.6rem 0 2rem;
}
.slide-title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.01em;
  font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.18;
  color: var(--ink); margin-bottom: 1.1rem;
}
.hero-visual-img {
  width: 100%; max-width: 392px; height: auto; display: block;
  margin-inline: auto; animation: float 7s ease-in-out infinite;
}
.hero-nav { display: flex; align-items: center; justify-content: center; gap: 1.1rem; padding: .2rem 0 .6rem; position: relative; z-index: 5; }
.hero-arrow {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--p1);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: all .2s ease;
}
.hero-arrow:hover { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.08); }
.hero-dots { display: flex; gap: .45rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: #cdd2ec; cursor: pointer; transition: all .25s ease; padding: 0; }
.hero-dots button.active { width: 28px; border-radius: 6px; background: var(--grad); }

/* ===== Editorial hero refinements ===== */
.hero {
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(249, 115, 22,.10), transparent 60%),
    radial-gradient(700px 460px at 10% 80%, rgba(245, 158, 11, .07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbf5ed 100%);
}
.hero .orb { opacity: .26; filter: blur(90px); }
.hero .orb-3 { display: none; }
.hero-slide { padding: 2.6rem 0 1.4rem; gap: 2.6rem; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--p1);
  margin-bottom: .9rem;
}
.hero-eyebrow-line { width: 30px; height: 2px; background: linear-gradient(90deg, var(--p1), var(--p2)); border-radius: 2px; }
.hero-slide .hero-copy h1 {
  font-size: clamp(1.95rem, 3.3vw, 2.7rem); line-height: 1.14; letter-spacing: -.025em;
  margin-bottom: .9rem;
}
.hero-copy h1 .hl {
  background: linear-gradient(115deg, var(--p1), var(--p2) 60%, #fb923c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-slide .slide-title { font-size: clamp(1.9rem, 3.1vw, 2.5rem); line-height: 1.16; letter-spacing: -.025em; margin-bottom: .9rem; }
.hero-slide .hero-sub { font-size: 1.04rem; line-height: 1.6; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { margin-top: 1.4rem; align-items: center; }

.btn-text {
  background: none; border: 0; color: var(--p1); font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .2rem;
}
.btn-text svg { transition: transform .2s ease; }
.btn-text:hover { color: var(--p2); }
.btn-text:hover svg { transform: translateX(4px); }

.hero-trust { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; flex-wrap: wrap; }
.hero-stars { display: inline-flex; gap: .1rem; }
.hero-trust-text { font-size: .92rem; color: var(--ink-soft); }
.hero-trust-text strong { color: var(--ink); font-weight: 700; }

.hero-visual { position: relative; }
.hero-visual-glow {
  position: absolute; inset: 6% 4% 6% 4%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(249, 115, 22,.22), rgba(234, 88, 12,.10) 45%, transparent 70%);
  filter: blur(20px);
}
.hero-visual-img { position: relative; z-index: 1; }

/* refined glass stat strip */
/* NOTE: background/box-shadow here are overridden by the .stats-strip rule in the
   hero block below — don't set them twice. backdrop-filter was also dropped: the
   card's background is opaque, so it blurred nothing while forcing an extra
   composited layer the size of the card. */
.stats-strip { border: 1px solid rgba(255, 255, 255, .7); }
.stat { border-right: 1px solid rgba(34, 17, 8, .08); }
.stat-num { font-size: 1.85rem; }

/* ===== Bento services grid ===== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 212px; gap: 1rem; grid-auto-flow: dense; }
.bento-tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden; display: flex;
  text-decoration: none; transition: transform .28s ease, box-shadow .28s ease;
}
.bento-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.b-lg { grid-column: span 2; grid-row: span 2; }
.b-wide { grid-column: span 2; }

/* image tiles */
.bento-img { background-size: cover; background-position: center; align-items: flex-end; }
.bento-overlay { position: absolute; inset: 0; transition: opacity .3s ease;
  background: linear-gradient(to top, rgba(17,15,48,.94) 0%, rgba(17,15,48,.55) 45%, rgba(17,15,48,.12) 100%); }
.bento-img:hover .bento-overlay {
  background: linear-gradient(to top, rgba(17,15,48,.95) 0%, rgba(234, 88, 12,.55) 55%, rgba(249, 115, 22,.20) 100%); }
.bento-content { position: relative; z-index: 2; padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; width: 100%; }
.bento-icon {
  width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.32); color: #fff;
}
.bento-img h3 { color: #fff; font-size: 1.2rem; margin: 0; }
.bento-img p { color: rgba(255,255,255,.85); font-size: .88rem; margin: 0; }
.bento-img .card-link { color: #fff; font-size: .85rem; }
.bento-img:hover .card-link { gap: .6rem; }
.b-lg .bento-icon { width: 56px; height: 56px; }
.b-lg h3 { font-size: 1.75rem; line-height: 1.15; }
.b-lg p { font-size: .98rem; max-width: 34ch; }

/* mini tiles */
.bento-mini {
  flex-direction: column; background: var(--surface); border: 1px solid var(--line);
  padding: 1.4rem 1.45rem; gap: .55rem; color: var(--ink); justify-content: flex-start;
}
.bento-mini::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.bento-mini:hover { border-color: #d6d9ee; }
.bento-mini:hover::before { transform: scaleX(1); }
.bento-mini .bento-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-soft); border: 0; color: var(--p1); backdrop-filter: none; }
.bento-mini h3 { font-size: 1.04rem; margin: 0; }
.bento-mini p { font-size: .85rem; color: var(--ink-soft); margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bento-mini .card-link { color: var(--p1); font-size: .82rem; }

@media (max-width: 920px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 188px; }
  .b-lg { grid-column: span 2; grid-row: span 2; }
  .b-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .b-lg, .b-wide { grid-column: span 1; grid-row: auto; }
  .bento-img { min-height: 230px; }
  .bento-mini { min-height: 0; }
}

/* phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-mock {
  width: 290px; height: 560px; border-radius: 42px;
  background: linear-gradient(160deg, #361a0a, #43200b);
  padding: 14px; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative; z-index: 2; animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-notch { width: 110px; height: 22px; background: #221108; border-radius: 0 0 16px 16px; margin: -2px auto 10px; }
.phone-screen {
  background: linear-gradient(180deg, #ece9ff 0%, #f8f7ff 100%);
  border-radius: 28px; height: calc(100% - 34px); padding: 14px 12px; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-bubble {
  background: var(--surface); border-radius: 16px; padding: .7rem .85rem; font-size: .76rem; line-height: 1.45;
  color: var(--ink); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(14px);
  animation: bubble .6s ease forwards;
}
.cb-1 { animation-delay: .4s; border-left: 3px solid var(--p1); }
.cb-2 { animation-delay: 1.2s; border-left: 3px solid var(--accent); }
.cb-3 { animation-delay: 2s; border-left: 3px solid var(--wa); }
.cb-4 { animation-delay: 2.8s; border-left: 3px solid var(--p2); }
@keyframes bubble { to { opacity: 1; transform: translateY(0); } }
.cb-tag {
  display: inline-block; font-size: .6rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 5px; padding: .1rem .4rem; margin-right: .4rem; color: #fff; background: var(--p1);
}
.cb-otp .cb-tag { background: var(--accent); }
.cb-wa .cb-tag { background: var(--wa-dark); }
.cb-voice .cb-tag { background: var(--p2); }

.float-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface); border-radius: var(--r-full); padding: .55rem 1rem;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--ink);
  box-shadow: var(--shadow-md); animation: float 7s ease-in-out infinite;
}
.float-chip .ic-sm { color: var(--p1); }
.chip-1 { top: 12%; left: 0; animation-delay: -2s; }
.chip-2 { bottom: 22%; right: 0; animation-delay: -4s; }
.chip-3 { bottom: 6%; left: 6%; animation-delay: -1s; }

/* stats strip */
.stats-strip {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--surface); border-radius: var(--r-lg);
  /* Layered shadow rather than var(--shadow-lg): a single 60px/28% pass under a
     1180px card reads as a flat grey slab. Stacking several low-alpha passes of
     increasing blur mimics real light falloff — tight contact shadow first, wide
     ambient last — so the card reads as lifted, not smudged. */
  box-shadow:
    0 1px 2px rgba(54, 26, 10, .04),
    0 4px 8px -2px rgba(54, 26, 10, .05),
    0 12px 20px -6px rgba(54, 26, 10, .06),
    0 28px 48px -14px rgba(54, 26, 10, .09);
  /* no transform here: .reveal.visible sets translateY(0) at higher specificity,
     so any offset set here is silently discarded. Use margins for position.
     Bottom margin keeps a small overhang past the hero edge (the floating-card
     look) while leaving the shadow room to fall — the old -3rem yanked the next
     section up over it. */
  padding: 1.15rem 1rem; margin: 1.2rem 0 -1rem;
}
.stat { text-align: center; padding: .2rem 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num {
  display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.stats-on-dark { background: rgba(255,255,255,.04); box-shadow: none; border: 1px solid rgba(255,255,255,.1); margin: 0; transform: none; }
.stats-on-dark .stat { border-color: rgba(255,255,255,.12); }
.stats-on-dark .stat-num { background: linear-gradient(120deg, #fed7aa, #fde68a); -webkit-background-clip: text; background-clip: text; }
.stats-on-dark .stat-label { color: #fed7aa; }

/* ---------- Sections ---------- */
.section { padding: 5.2rem 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%); }
.section-dark .section-title, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-sub, .section-dark p { color: #fed7aa; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.8rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--p1);
  background: var(--grad-soft); border-radius: var(--r-full); padding: .35rem 1rem; margin-bottom: 1rem;
}
.eyebrow-light { background: rgba(255,255,255,.1); color: #fed7aa; }
.section-title { margin-bottom: .7rem; }
.section-sub { font-size: 1.02rem; }
.subhead { display: flex; align-items: center; gap: .5rem; margin: 2.4rem 0 1rem; font-size: 1.05rem; }
.subhead .ic-sm { color: var(--accent); }

/* ---------- Cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.3rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem; color: var(--ink); display: flex; flex-direction: column; gap: .65rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d6d9ee; color: var(--ink); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft); color: var(--p1); margin-bottom: .3rem;
}
.service-card p { font-size: .9rem; flex: 1; }
.card-link { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--p1); display: inline-flex; align-items: center; gap: .35rem; }
.service-card:hover .card-link { gap: .6rem; }
.card-link { transition: gap .2s ease; }
.card-on-dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.card-on-dark h3 { color: #fff; font-size: 1rem; }
.card-on-dark .service-icon { background: rgba(255,255,255,.1); color: #fed7aa; }
.card-on-dark:hover { border-color: rgba(255,255,255,.3); box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); }
.card-on-dark .card-link { color: #fed7aa; }

/* service card with photo thumbnail */
.service-card.has-thumb { padding: 0; overflow: hidden; }
.service-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--grad-soft); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.service-card.has-thumb:hover .service-thumb img { transform: scale(1.06); }
.service-card.has-thumb .service-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.service-card.has-thumb .service-icon {
  width: 48px; height: 48px; border-radius: 13px; margin-top: -42px; position: relative;
  border: 3px solid #fff; background: var(--grad); color: #fff; box-shadow: var(--shadow-md);
}
.service-card.has-thumb:hover { color: var(--ink); }

/* "why" section concept illustrations */
.why-item-art { flex-direction: column; text-align: center; align-items: center; }
.why-art { width: 100%; max-width: 150px; margin-bottom: .4rem; }
.why-art img { width: 100%; height: auto; display: block; }
.why-item-art > div h3 { margin-bottom: .35rem; }

/* service page header with banner image */
.page-hero-img { background-size: cover; background-position: center; position: relative; }
.page-hero-img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28, 14, 6, .93) 0%, rgba(54, 26, 10, .86) 42%, rgba(54, 26, 10, .55) 70%, rgba(54, 26, 10, .30) 100%);
}
.page-hero-img .hero-bg { opacity: .4; }
.page-hero-img .page-hero-inner { position: relative; z-index: 2; }
.page-hero-img .hero-badge { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); color: #fff; }
.page-hero-img .page-hero-copy h1 { color: #fff; }
.page-hero-img .page-hero-copy .hero-sub { color: #d6d9f5; }
.page-hero-img .hero-points li { color: #eef0ff; }
.page-hero-img .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.page-hero-img .btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; }

/* overview text + image split */
.overview-split { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.6rem; align-items: center; }
.overview-split-solo { display: block; max-width: 820px; margin-inline: auto; }
.overview-media img { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; }

.feature-grid, .usecase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.2rem; }
.feature-card, .usecase-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1.3rem; transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover, .usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft); color: var(--p1); margin-bottom: .8rem;
}
.feature-card h3, .usecase-card h3 { margin-bottom: .4rem; font-size: 1rem; }
.feature-card p, .usecase-card p { font-size: .88rem; }
.usecase-card { border-left: 3px solid var(--p1); }
.usecase-card:nth-child(even) { border-left-color: var(--p2); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem; transition: transform .2s ease, box-shadow .2s ease; }
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(234, 88, 12, .6);
}
.why-item h3 { margin-bottom: .3rem; }
.why-item p { font-size: .9rem; }
/* warning variant — used for "why templates get rejected" style lists */
.why-icon-warn { background: linear-gradient(120deg, var(--accent), var(--accent-dark)); box-shadow: 0 8px 18px -8px rgba(249, 115, 22, .6); }

/* small supporting lines */
.mute-line { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--ink-mute); margin-bottom: .4rem; }
.muted-note { font-size: .9rem; color: var(--ink-soft); margin-top: 1.6rem; }
.muted-note a { font-weight: 600; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; counter-reset: step; }
.step-card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 2.2rem 1.4rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: -18px; left: 1.3rem; width: 38px; height: 38px; border-radius: 12px;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.step-card h3 { margin-bottom: .35rem; font-size: 1rem; }
.step-card p { font-size: .88rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.1rem; }
.benefit-item { display: flex; gap: .9rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.2rem; }
.benefit-check { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: rgba(37, 211, 102, .15); color: #4ade80; display: inline-flex; align-items: center; justify-content: center; }
.benefit-item h3 { font-size: .98rem; margin-bottom: .25rem; }
.benefit-item p { font-size: .87rem; }

/* industries chips */
.industry-chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.chip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #ffedd5;
  border-radius: var(--r-full); padding: .55rem 1.2rem; font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  transition: background .2s ease, transform .2s ease;
}
.chip:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ---------- City pills ---------- */
.city-cloud { display: flex; flex-wrap: wrap; gap: .6rem; }
.city-pill {
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  border-radius: var(--r-full); padding: .45rem 1.05rem; font-size: .86rem; font-weight: 600;
  transition: all .18s ease; display: inline-flex; align-items: center; gap: .35rem;
}
.city-pill:hover { border-color: var(--p1); color: var(--p1); background: var(--grad-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pill-od { border-color: #fde2c5; background: #fff8f1; color: var(--accent-dark); }
.pill-od:hover { border-color: var(--accent); color: var(--accent-dark); background: #fff1e2; }
.city-pill-more { background: var(--grad); border: 0; color: #fff; }
.city-pill-more:hover { color: #fff; opacity: .92; }

/* state grid */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .9rem; }
.state-card {
  display: flex; align-items: center; gap: .7rem; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.2rem; color: var(--ink); transition: all .2s ease;
}
.state-card:hover { border-color: var(--p1); transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--p1); }
.state-name { font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex: 1; }
.state-count { font-size: .78rem; color: var(--ink-mute); white-space: nowrap; }
.state-card .ic-xs { color: var(--p1); }

/* city table on state page */
.citytable { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.citytable-row { display: flex; gap: 1rem; padding: .9rem 1.3rem; border-bottom: 1px solid var(--line); align-items: baseline; flex-wrap: wrap; }
.citytable-row:nth-child(odd) { background: var(--bg-soft); }
.citytable-row:last-child { border-bottom: 0; }
.citytable-city { font-family: var(--font-head); font-weight: 700; min-width: 180px; display: inline-flex; gap: .4rem; align-items: center; }
.citytable-city .ic-xs { color: var(--accent); }
.citytable-links { display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.citytable-links a { font-size: .82rem; color: var(--ink-soft); border-bottom: 1px dashed transparent; }
.citytable-links a:hover { color: var(--p1); border-color: var(--p1); }

/* ---------- Prose ---------- */
.prose h2 { margin: 1.6rem 0 .7rem; font-size: 1.45rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; font-size: 1rem; }
.local-line {
  background: var(--grad-soft); border-left: 3px solid var(--p1); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .8rem 1rem; font-size: .92rem !important; color: var(--ink);
}
.local-line .ic-xs { color: var(--p1); }

/* ---------- Testimonials ---------- */
.testi-slider { overflow: hidden; position: relative; }
.testi-track { display: flex; gap: 1.2rem; transition: transform .5s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.testi-card {
  flex: 0 0 calc((100% - 2.4rem) / 3); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: .9rem;
}
.testi-stars { display: flex; gap: .15rem; }
.testi-card blockquote { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.testi-card figcaption { display: flex; align-items: center; gap: .7rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff;
  font-family: var(--font-head); font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}
.testi-card figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.testi-card small { color: var(--ink-mute); font-size: .78rem; }
.testi-dots { display: flex; gap: .45rem; justify-content: center; margin-top: 1.6rem; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: #d3d7ea; cursor: pointer; transition: all .2s ease; }
.testi-dots button.active { width: 26px; border-radius: 6px; background: var(--grad); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: #d6d9ee; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 1.3rem; font-family: var(--font-head); font-weight: 700; font-size: .98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-soft); position: relative; transition: transform .25s ease; }
.faq-chevron::before { content: ""; position: absolute; top: 9px; left: 8px; width: 8px; height: 8px; border-right: 2px solid var(--p1); border-bottom: 2px solid var(--p1); transform: rotate(45deg); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.3rem 1.2rem; }
.faq-answer p { font-size: .92rem; }

/* ---------- Forms ---------- */
.enquiry-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.8rem;
}
.enquiry-card h3, .enquiry-card .enquiry-title { font-family: var(--font-head); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; color: var(--ink); font-size: 1.25rem; margin-bottom: .25rem; }
.enquiry-sub { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-field { margin-bottom: .9rem; }
.form-field label { display: block; font-size: .78rem; font-weight: 700; font-family: var(--font-head); margin-bottom: .3rem; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: .7rem .9rem;
  font-family: var(--font-body); font-size: .92rem; color: var(--ink); background: var(--input-bg);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--p1); box-shadow: 0 0 0 4px rgba(234, 88, 12, .12); background: var(--surface);
}
.form-note { margin-top: .8rem; font-size: .76rem; color: var(--ink-mute); text-align: center; display: flex; gap: .35rem; justify-content: center; align-items: center; }
.hp-field { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; opacity: 0; }
.alert { border-radius: 10px; padding: .85rem 1rem; font-size: .9rem; margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; }
.alert-ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert-err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 0; }
.page-hero-inner {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem;
  padding: 3.6rem 0 4rem; align-items: start;
}
.page-hero-center { padding: 4rem 0 4.4rem; position: relative; }
.page-hero-copy h1 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin-bottom: 1rem; }
.page-hero-form { position: relative; z-index: 2; }

/* breadcrumbs */
.breadcrumbs { background: var(--bg-dark-2); padding: .55rem 0; font-size: .8rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .3rem; color: #a5b4fc; }
.breadcrumbs li + li::before { content: "›"; color: #fb923c; margin-right: .3rem; }
.breadcrumbs a { color: #fed7aa; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: #ffedd5; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.contact-item h3 { font-size: .98rem; margin-bottom: .2rem; }
.contact-item p { font-size: .92rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.mv-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; }
.mv-card h3 { margin: .9rem 0 .4rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,.08); top: -200px; right: -100px;
}
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 3.2rem 0; position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { color: #ffedd5; }
.cta-band-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.section-cta-inline { background: var(--grad-soft); }
.section-cta-inline h2 { margin-bottom: .6rem; }
.section-cta-inline p { margin-bottom: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #cbd5e1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4rem 0 2.5rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: #94a3b8; font-size: .86rem; }
.footer-col a:hover { color: #fed7aa; }
.footer-brand p { font-size: .86rem; color: #94a3b8; margin: 1rem 0; }
.brand-foot .brand-text { color: #fff; }
.footer-contact { line-height: 2; }
.footer-contact .ic-xs { color: var(--accent); margin-right: .3rem; }
.footer-more { color: var(--accent) !important; font-weight: 700; }
.footer-links-row { border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0; font-size: .84rem; }
.footer-links-row a { color: #94a3b8; }
.footer-links-row a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; }
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom p { color: #64748b; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(140deg, #25d366, #128c7e); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -6px rgba(18, 140, 126, .55);
  transition: transform .2s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6); animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }

/* ---------- Pricing plans ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2rem; }
.plan-card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-featured { border-color: var(--p1); box-shadow: var(--shadow-md); }
.plan-featured::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.plan-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: .3rem .9rem; border-radius: var(--r-full); box-shadow: var(--shadow-md); white-space: nowrap; }
.plan-card h3 { font-size: 1.3rem; }
.plan-for { font-size: .85rem; color: var(--ink-mute); min-height: 2.4em; }
.plan-price { margin: .4rem 0 .6rem; }
.plan-price span { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan-price small { display: block; color: var(--ink-mute); font-size: .78rem; }
.plan-features { display: flex; flex-direction: column; gap: .55rem; margin: .4rem 0 1.2rem; flex: 1; }
.plan-features li { display: flex; gap: .5rem; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); }
.plan-features .ic-sm { color: #16a34a; flex: 0 0 auto; margin-top: .1rem; }

/* ---------- FAQ page groups ---------- */
.faq-group { margin-bottom: 2.4rem; }
.faq-group-title { font-size: 1.25rem; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--line); }

/* ---------- Free tools ---------- */
.tool-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.8rem;
}
.tool-label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: .4rem; }
.tool-textarea, .tool-input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: .85rem 1rem;
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--input-bg); resize: vertical;
}
.tool-textarea:focus, .tool-input:focus { outline: none; border-color: var(--p1); box-shadow: 0 0 0 4px rgba(234, 88, 12,.12); }
.tool-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin: 1.2rem 0 .9rem; }
.tstat { background: var(--grad-soft); border-radius: var(--r-md); padding: .8rem .5rem; text-align: center; }
.tstat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--p1); }
.tstat-label { font-size: .72rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.tool-meter { height: 8px; border-radius: 6px; background: var(--bg-soft); border: 1px solid var(--line); overflow: hidden; }
.tool-meter-fill { height: 100%; width: 0; border-radius: 6px; background: linear-gradient(90deg, #16a34a, #ea580c); transition: width .2s ease; }
.tool-meter-fill.meter-multi { background: linear-gradient(90deg, var(--accent), var(--accent-dark)); }
.tool-note { margin-top: .6rem; font-size: .88rem; color: var(--ink-soft); }
.tool-warn {
  margin-top: .9rem; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.35);
  color: var(--accent-dark); border-radius: var(--r-md); padding: .8rem 1rem; font-size: .88rem;
}
[data-theme="dark"] .tool-warn { color: #fdba74; }
.tool-result { margin-top: 1.3rem; }
.tool-result-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.tool-result-row .tool-input { flex: 1; min-width: 220px; font-size: .9rem; }
.tstat-num { overflow-wrap: anywhere; }
@media (max-width: 560px) { .tool-stats { grid-template-columns: repeat(2, 1fr); } .tstat-num { font-size: 1.05rem; line-height: 1.6; } }

/* ---------- Search page ---------- */
.search-form { display: flex; gap: .7rem; max-width: 560px; margin: 1.4rem auto 0; }
.search-form input[type="search"] {
  flex: 1; border: 1.5px solid var(--line); border-radius: var(--r-full); padding: .85rem 1.3rem;
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--input-bg);
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--p1); box-shadow: 0 0 0 4px rgba(234, 88, 12,.12); }
.search-group { margin-bottom: 2.2rem; }
.search-group h2 { font-size: 1.2rem; margin-bottom: .9rem; padding-bottom: .45rem; border-bottom: 2px solid var(--line); }
.search-list { display: flex; flex-direction: column; gap: 1rem; }
.search-list li a { font-size: 1.02rem; }
.search-list li p { font-size: .88rem; color: var(--ink-soft); margin-top: .15rem; }

/* ---------- Glossary ---------- */
.glossary-list { display: flex; flex-direction: column; gap: 1rem; }
.glossary-item {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--p1);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.1rem 1.3rem;
}
.glossary-item dt { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: .3rem; }
.glossary-item dd { font-size: .93rem; color: var(--ink-soft); margin: 0; }
.glossary-item:nth-child(even) { border-left-color: var(--p2); }

.center-desktop { text-align: center; }
@media (max-width: 640px) { .center-desktop { text-align: left; } }

/* ---------- Legal pages ---------- */
.legal-prose h2 { font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.legal-prose p { margin-bottom: 1rem; }
.legal-intro { font-size: 1.05rem; color: var(--ink); }

@media (max-width: 980px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .plans-grid { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
/* gradient cover variants (rotate per post) with decorative pattern */
.blog-cover, .blog-feature-cover {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.cv-0 { background-image: linear-gradient(135deg, #ea580c, #fb923c); }
.cv-1 { background-image: linear-gradient(135deg, #0ea5e9, #ea580c); }
.cv-2 { background-image: linear-gradient(135deg, #f97316, #db2777); }
.cv-3 { background-image: linear-gradient(135deg, #ea580c, #d97706); }
.cv-0::before, .cv-1::before, .cv-2::before, .cv-3::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.18) 0 60px, transparent 61px),
    radial-gradient(circle at 12% 85%, rgba(255,255,255,.12) 0 90px, transparent 91px),
    radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.5px);
  background-size: auto, auto, 22px 22px;
}
.cover-icon {
  position: relative; width: 74px; height: 74px; border-radius: 50%;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cover-icon-sm { width: 54px; height: 54px; }
.cover-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--p1);
  font-family: var(--font-head); font-weight: 800; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: var(--r-full);
}

/* featured (latest) post — horizontal editorial card */
.blog-feature {
  display: grid; grid-template-columns: 1.05fr 1fr; min-height: 320px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; color: var(--ink); margin-bottom: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--ink); }
.blog-feature-body { display: flex; flex-direction: column; gap: .9rem; padding: 2.2rem 2.4rem; justify-content: center; align-items: flex-start; }
.blog-feature-body h2 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.3; }
.blog-feature-body p { font-size: .98rem; }
.blog-feature .btn { margin-top: .4rem; }

/* standard cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.blog-card {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; color: var(--ink);
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--ink); }
/* Match the cover art's own 1200x630 ratio instead of a fixed height: with
   background-size:cover a 150px box cropped ~48px off a 378px-wide card, which
   is precisely where the generated cover puts its logo and badge. Ratio-locked
   means the full composition shows at any card width. min-height is the fallback
   for browsers without aspect-ratio, where height:auto would collapse to 0. */
.blog-cover { aspect-ratio: 1200 / 630; height: auto; min-height: 150px; }
.blog-body { display: flex; flex-direction: column; gap: .5rem; padding: 1.2rem 1.3rem 1.4rem; flex: 1; }
.blog-card h2 { font-size: 1.04rem; line-height: 1.38; }
.blog-card p { font-size: .87rem; flex: 1; }

/* shared meta row */
.blog-meta { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.blog-date { font-size: .74rem; font-weight: 700; color: var(--p1); text-transform: uppercase; letter-spacing: .08em; }
.blog-read { display: inline-flex; align-items: center; gap: .3rem; font-size: .76rem; color: var(--ink-mute); font-weight: 600; }
.blog-read .ic-xs { color: var(--accent); }

/* article body */
.post-body h2 { margin: 1.8rem 0 .7rem; font-size: 1.4rem; }
.post-body ul, .post-body ol { margin: 0 0 1rem 1.4rem; color: var(--ink-soft); }
.post-body li { margin-bottom: .4rem; }
.post-body a { text-decoration: underline; }

@media (max-width: 860px) {
  .blog-feature { grid-template-columns: 1fr; min-height: 0; }
  /* stacked = full-width, so a fixed 190px cropped >200px off the art. Ratio-lock
     it like .blog-cover. (Desktop is unaffected: there the cover is a grid column
     whose ~604x320 box already sits within ~2px of the art's own ratio.) */
  .blog-feature-cover { aspect-ratio: 1200 / 630; height: auto; }
  .blog-feature-body { padding: 1.5rem 1.4rem 1.7rem; }
}

/* ---------- 404 ---------- */
.notfound { padding: 6rem 0; }
.nf-code {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 14vw, 9rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.notfound h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin: .5rem 0 1rem; }
.notfound .hero-actions { margin-top: 1.6rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease var(--d, 0ms), transform .6s ease var(--d, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  /* nav collapses to the hamburger here — the full link row + logo + CTA
     doesn't fit below ~1024px and would wrap into a fake "open menu" */
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh;
    background: var(--surface); flex-direction: column; align-items: flex-start; gap: .4rem;
    padding: 1.1rem 1.6rem 2rem; box-shadow: var(--shadow-lg);
    overflow-y: auto; z-index: 70;
    /* visibility guard: a closed panel can never peek through horizontal
       overflow or receive keyboard focus; delay hiding until the slide ends */
    visibility: hidden;
    transition: right .3s ease, visibility 0s linear .3s;
  }
  .main-nav.open { right: 0; visibility: visible; transition: right .3s ease; }
  .main-nav > a:not(.btn-nav), .nav-drop-btn { font-size: 1.05rem; padding: .55rem 0; }

  /* close button — the header's hamburger sits under the panel (z 60 vs 70),
     so the panel needs its own dismiss affordance. Sticky = always reachable. */
  .nav-close {
    display: inline-flex; align-items: center; justify-content: center;
    position: sticky; top: 0; align-self: flex-end; flex: 0 0 auto;
    width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
    background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
    margin-bottom: .5rem; z-index: 2;
    transition: color .18s ease, border-color .18s ease;
  }
  .nav-close:hover { color: var(--p1); border-color: var(--p1); }

  /* No frosted glass on mobile. backdrop-filter makes the header a containing
     block for fixed children, which breaks the nav panel three ways:
       1. the off-screen closed panel (right:-100%) then counts toward document
          scroll width — dragging the page ~390px wide with a phantom h-scroll;
       2. the panel's top:0 resolves to the header's top, not the viewport's;
       3. the header becomes a stacking context, so the panel's z-index:70 only
          ranks it inside the header (which composites at 60).
     Dropping the filter here makes the panel truly viewport-fixed — and fixed
     boxes never contribute to scrollable overflow. It's also cheaper to paint. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--surface); }

  /* scrim sits below the header (z 60) so it can never cover the panel */
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 55;
    background: rgba(20, 10, 4, .5); opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  /* [hidden] must be honoured explicitly — this author rule would otherwise
     beat the UA stylesheet's [hidden]{display:none}. pointer-events stays off
     until shown so a transparent layer never eats clicks meant for the page. */
  .nav-backdrop[hidden] { display: none; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }

  .nav-drop { width: 100%; }
  .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; display: none;
    box-shadow: none; border: 0; padding: 0 0 0 .6rem; grid-template-columns: 1fr;
  }
  /* must also reset transform HERE: the desktop `.nav-drop.open .nav-drop-menu`
     rule is more specific than `.nav-drop-menu`, so its translateX(-50%) would
     survive and shove the open submenu half its width outside the panel. */
  .nav-drop.open .nav-drop-menu { display: grid; transform: none; }
  .btn-nav { margin-top: .8rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 3rem; }
  .hero-slide { grid-template-columns: 1fr; text-align: center; padding-top: 3rem; gap: 1.6rem; }
  .hero-slide .hero-sub { margin-inline: auto; }
  .hero-visual-img { max-width: 360px; }
  .hero-copy .hero-sub { margin-inline: auto; }
  .hero-points, .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 1.5rem; }
  .stats-strip { grid-template-columns: repeat(3, 1fr); gap: 1rem 0; }
  .stat:nth-child(3n) { border-right: 0; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .overview-split { grid-template-columns: 1fr; gap: 1.8rem; }
  .overview-media { order: -1; max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc((100% - 1.2rem) / 2); }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .brand-logo { height: 64px; }
  .mv-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  .section { padding: 3.6rem 0; }
  .topbar-right { display: none; }
}

@media (max-width: 520px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 1.2rem .6rem; }
  .stat { border-right: 0 !important; padding: .4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hide-sm { display: none !important; }
  .phone-mock { width: 250px; height: 490px; }
  .float-chip { font-size: .72rem; padding: .45rem .8rem; }
  .citytable-row { flex-direction: column; gap: .3rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .enquiry-card { padding: 1.3rem; }
}

/* ============================================================
   MOBILE POLISH — attractive, tighter, left-aligned hero
   ============================================================ */
@media (max-width: 640px) {
  /* tighter vertical rhythm so users scroll less */
  .section { padding: 2.9rem 0; }
  .section-head { margin-bottom: 1.8rem; }
  .section-title { font-size: clamp(1.4rem, 6.2vw, 1.85rem); }
  .section-sub { font-size: .95rem; }

  /* ---- HERO: left-aligned, tighter, modern ---- */
  .hero-slide { text-align: left; padding: 1.9rem 0 1.2rem; gap: 1.5rem; }
  .hero-eyebrow { margin-bottom: .7rem; font-size: .72rem; letter-spacing: .13em; }
  .hero-slide .hero-copy h1 { font-size: clamp(1.85rem, 7.8vw, 2.2rem); line-height: 1.15; margin-bottom: .8rem; }
  .hero-slide .slide-title { font-size: clamp(1.8rem, 7.4vw, 2.1rem); line-height: 1.16; }
  .hero-slide .hero-sub { font-size: .97rem; line-height: 1.55; max-width: none; margin-inline: 0; }
  .hero-points { justify-content: flex-start; gap: .45rem 1rem; margin: 1rem 0 0; }
  .hero-points li { font-size: .9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: 1.2rem; gap: .7rem; }
  .hero-actions .btn:not(.btn-text) { width: 100%; justify-content: center; }
  .btn-text { justify-content: flex-start; padding: .35rem .2rem; }
  .hero-trust { justify-content: flex-start; margin-top: 1.1rem; gap: .55rem; }
  .hero-trust-text { font-size: .88rem; }
  .hero-visual { margin-top: .4rem; }
  .hero-visual-img { max-width: 290px; }
  .hero-nav { padding: .1rem 0 .3rem; }

  /* buttons a touch smaller everywhere */
  .btn-lg { padding: .85rem 1.5rem; font-size: 1rem; }

  /* stat strip: flow normally on mobile (no overlap clipping), balance the odd one out */
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin: 1.2rem 0 2.2rem; transform: none; padding: 1.1rem .6rem; gap: .4rem; }
  .stat { padding: .75rem .3rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-last-child(-n+2):nth-child(odd) ~ .stat, .stat:last-child { border-bottom: 0; }
  .stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .74rem; }

  /* cards & grids: consistent breathing room */
  .cards-grid, .why-grid, .feature-grid, .usecase-grid, .benefit-grid, .steps-grid, .bento { gap: .85rem; }
  .service-card, .feature-card, .usecase-card, .why-item, .step-card, .mv-card, .plan-card { padding: 1.25rem; }
  .why-item { gap: .8rem; }
  .why-icon { flex: 0 0 46px; width: 46px; height: 46px; }

  /* bento: image tiles readable, mini tiles tidy */
  .bento-img { min-height: 200px; }
  .b-lg h3 { font-size: 1.3rem; }
  .bento-img h3 { font-size: 1.08rem; }
  .bento-content, .bento-mini { padding: 1.15rem 1.2rem; }

  /* inner page heroes tighter */
  .page-hero-center { padding: 2.2rem 0 2.4rem; }
  .page-hero-center h1 { font-size: clamp(1.7rem, 7.6vw, 2.1rem); line-height: 1.16; }
  .page-hero-inner { padding: 2rem 0 2.4rem; gap: 1.6rem; }
  .page-hero-copy h1 { font-size: clamp(1.7rem, 7.4vw, 2.1rem); line-height: 1.16; }
  .hero-sub { font-size: .98rem; line-height: 1.55; }
  .page-hero-center .hero-sub { max-width: 34ch; margin-inline: auto; }
  .breadcrumbs { font-size: .76rem; }

  /* CTA band + inline CTA */
  .cta-band-inner { padding: 2.4rem 0; gap: 1.2rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .section-cta-inline h2 { font-size: 1.4rem; }

  /* forms comfortable on mobile */
  .enquiry-card { padding: 1.25rem; }
  .enquiry-card h3, .enquiry-card .enquiry-title { font-size: 1.15rem; }

  /* city pills: bigger tap targets */
  .city-pill { padding: .55rem 1rem; font-size: .88rem; }

  /* glossary / search tighter */
  .glossary-item { padding: 1rem 1.1rem; }
  .search-form { flex-direction: column; }
  .search-form .btn { width: 100%; justify-content: center; }
}

/* extra-small phones (≤380px) */
@media (max-width: 380px) {
  .hero-slide .hero-copy h1 { font-size: 1.75rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.35rem; }
  .brand-text { font-size: 1.3rem; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-logo { height: 48px; }
  .brand-logo-foot { height: 54px; }
}
