/* ============================================================
   ZAFBOT — Design System
   Websites built to move small businesses forward.
   ============================================================ */

:root {
  /* Colour tokens */
  --navy-950: #07111F;
  --navy-900: #0D1B2A;
  --navy-850: #101F31;
  --navy-800: #132439;
  --blue-500: #246BFD;
  --blue-400: #4A85FD;
  --cyan-400: #39D9FF;
  --violet-500: #8B5CF6;
  --white: #FFFFFF;
  --offwhite: #F6F8FC;
  --mist: #E5EBF4;
  --slate-400: #91A3B8;
  --slate-300: #A9B8CA;
  --ink: #132033;
  --ink-soft: #3D4E63;

  --grad-blue-cyan: linear-gradient(100deg, var(--blue-500), var(--cyan-400));
  --grad-blue-violet: linear-gradient(120deg, var(--blue-500), var(--violet-500));

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --fs-hero: clamp(2.55rem, 6.4vw, 5.1rem);
  --fs-h1: clamp(2.3rem, 5vw, 4rem);
  --fs-h2: clamp(1.85rem, 3.6vw, 2.9rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.6rem);
  --fs-h4: 1.15rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-tiny: 0.78rem;

  /* Layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 9vw, 8.5rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --border-dark: 1px solid rgba(145, 163, 184, 0.16);
  --border-light: 1px solid rgba(19, 32, 51, 0.1);

  --shadow-card: 0 24px 60px -24px rgba(4, 12, 24, 0.55);
  --shadow-card-light: 0 24px 60px -30px rgba(19, 32, 51, 0.18);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--offwhite);
  background: var(--navy-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 0.6em; font-weight: 700; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-h4); }
p { margin: 0 0 1.1em; }
strong { font-weight: 650; }
::selection { background: rgba(36, 107, 253, 0.45); color: var(--white); }

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

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 300;
  padding: 12px 20px; background: var(--blue-500); color: var(--white);
  border-radius: 8px; font-weight: 600; transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 14px; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container-wide { width: min(var(--container-wide), 100% - 2 * var(--gutter)); margin-inline: auto; }

.section { padding-block: var(--section-pad); position: relative; }
.section-light { background: var(--offwhite); color: var(--ink); }
.section-light .section-eyebrow { color: var(--blue-500); border-color: rgba(36, 107, 253, 0.25); }
.section-light .section-lede, .section-light .muted { color: var(--ink-soft); }
.section-deep { background: var(--navy-900); }
.muted { color: var(--slate-400); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: var(--fs-tiny);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan-400);
  border: 1px solid rgba(57, 217, 255, 0.28);
  padding: 0.4rem 0.85rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.section-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.section-lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--slate-300); max-width: 60ch; }

.grad-text {
  background: var(--grad-blue-cyan);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.01em; white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--grad-blue-cyan); color: var(--navy-950);
  box-shadow: 0 10px 30px -10px rgba(36, 107, 253, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(57, 217, 255, 0.6); }
.btn-ghost {
  border: 1px solid rgba(145, 163, 184, 0.35); color: var(--offwhite);
  background: rgba(246, 248, 252, 0.02);
}
.btn-ghost:hover { border-color: var(--cyan-400); color: var(--cyan-400); transform: translateY(-2px); }
.section-light .btn-ghost { border-color: rgba(19, 32, 51, 0.25); color: var(--ink); }
.section-light .btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-500); }
.btn-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.45); color: #4be08a;
  background: rgba(37, 211, 102, 0.06);
}
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.14); transform: translateY(-2px); }
.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height 0.35s var(--ease-out), background-color 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(145, 163, 184, 0.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: min(var(--container-wide), 100% - 2 * var(--gutter)); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--white); line-height: 1; }
.brand-word .brand-dot { color: var(--blue-500); }
.brand-word em { font-style: normal; color: var(--cyan-400); }

.main-nav { display: flex; align-items: center; gap: 0.35rem; }
.main-nav a {
  position: relative; padding: 0.55rem 0.9rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; color: var(--slate-300);
  transition: color 0.25s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.is-active { color: var(--white); }
.main-nav a.is-active::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
  height: 2px; border-radius: 2px; background: var(--grad-blue-cyan);
}
.header-actions { display: flex; align-items: center; gap: 0.7rem; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(145, 163, 184, 0.3); color: var(--slate-300);
  transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.icon-btn:hover { color: #4be08a; border-color: rgba(37, 211, 102, 0.5); transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(145, 163, 184, 0.3);
  position: relative; z-index: 220;
}
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px;
  background: var(--offwhite); transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: linear-gradient(160deg, var(--navy-950) 20%, #0B1830 70%, #131637);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6.5rem var(--gutter) 2.5rem;
  visibility: hidden; opacity: 0; pointer-events: none;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2.25rem; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(1.9rem, 7vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--offwhite);
  padding: 0.35rem 0; display: flex; align-items: baseline; gap: 0.9rem;
}
.mobile-menu nav a .num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--cyan-400); }
.mobile-menu nav a.is-active { color: var(--cyan-400); }
.mobile-menu-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mobile-menu-contact { margin-top: 2rem; font-size: var(--fs-small); color: var(--slate-400); }
.mobile-menu-contact a { color: var(--slate-300); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 82% 18%, rgba(36, 107, 253, 0.16), transparent 60%),
    radial-gradient(700px 500px at 12% 85%, rgba(139, 92, 246, 0.12), transparent 60%),
    var(--navy-950);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background-image:
    linear-gradient(rgba(145, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 75% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: var(--fs-tiny); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan-400); margin-bottom: 1.5rem;
}
.hero-kicker::before { content: ""; width: 34px; height: 1px; background: var(--grad-blue-cyan); }
.hero h1 {
  font-size: var(--fs-hero); margin-bottom: 1.25rem; max-width: 13ch;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero-lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--slate-300); max-width: 52ch; margin-bottom: 2.1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.55rem; font-size: var(--fs-small); color: var(--slate-400); }
.hero-trust svg { width: 17px; height: 17px; color: var(--cyan-400); flex: none; }

.hero-visual { position: relative; min-height: clamp(340px, 44vw, 560px); }
.hero-shot { position: absolute; inset: 0; display: grid; place-items: center; }
.hero-shot::before { content: ""; position: absolute; inset: 8% 2%; background: radial-gradient(closest-side, rgba(36, 107, 253, 0.35), rgba(57, 217, 255, 0.12) 55%, transparent 75%); filter: blur(30px); }
.hero-shot .hv-desktop { position: relative; width: min(100%, 640px); height: auto; border-radius: 16px; box-shadow: 0 40px 90px -30px rgba(2, 8, 20, 0.9), 0 0 0 1px rgba(57, 217, 255, 0.14); transform: rotate(-1.2deg); }
.hero-shot .hv-phone { position: absolute; right: -2%; bottom: -6%; width: clamp(110px, 22%, 168px); height: auto; border-radius: 22px; box-shadow: 0 30px 60px -18px rgba(2, 8, 20, 0.95), 0 0 0 1px rgba(139, 92, 246, 0.2); transform: rotate(3deg); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--slate-400); z-index: 2;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(var(--cyan-400), transparent);
  animation: hint-drop 2.2s var(--ease-out) infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Cards / grids ---------- */
.card {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(19, 36, 57, 0.85), rgba(13, 27, 42, 0.95));
  border: var(--border-dark);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s var(--ease-out);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 260px at var(--mx, 50%) var(--my, 0%), rgba(57, 217, 255, 0.09), transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(57, 217, 255, 0.3); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card:focus-within { border-color: rgba(57, 217, 255, 0.45); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }

/* Problem cards */
.problem-card h3 { display: flex; align-items: center; gap: 0.7rem; font-size: 1.1rem; }
.problem-card .p-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(36, 107, 253, 0.12); color: var(--cyan-400);
  border: 1px solid rgba(57, 217, 255, 0.2);
}
.problem-card .p-icon svg { width: 22px; height: 22px; }
.problem-card p { color: var(--slate-400); font-size: var(--fs-small); margin: 0.8rem 0 0; }

/* Service cards */
.service-card { display: flex; flex-direction: column; gap: 0.9rem; }
.service-card .s-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(36, 107, 253, 0.18), rgba(139, 92, 246, 0.16));
  border: 1px solid rgba(57, 217, 255, 0.22); color: var(--cyan-400);
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .s-icon { transform: translateY(-4px) rotate(-4deg); }
.service-card .s-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin: 0; font-size: 1.2rem; }
.service-card p { color: var(--slate-400); font-size: var(--fs-small); margin: 0; flex: 1; }
.service-card .s-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--cyan-400);
}
.service-card .s-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.service-card:hover .s-link svg { transform: translateX(4px); }
.service-card .s-link::after { content: ""; position: absolute; inset: 0; }

/* Benefit tiles */
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(19, 32, 51, 0.1); border: var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.benefit-tile { background: var(--white); padding: 1.6rem 1.5rem; transition: background 0.3s; }
.benefit-tile:hover { background: #EEF3FB; }
.benefit-tile svg { width: 24px; height: 24px; color: var(--blue-500); margin-bottom: 0.9rem; }
.benefit-tile h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.benefit-tile p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Process ---------- */
.process-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.process-visual { position: sticky; top: calc(var(--header-h) + 2rem); }
.process-stage {
  border-radius: var(--radius-lg); border: var(--border-dark);
  background: linear-gradient(170deg, rgba(19, 36, 57, 0.7), rgba(13, 27, 42, 0.9));
  aspect-ratio: 4 / 3.1; position: relative; overflow: hidden;
}
.process-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; padding: 8%; opacity: 0; transition: opacity 0.5s var(--ease-out); }
.process-stage svg.is-active { opacity: 1; }
.process-steps { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3.5rem); }
.process-step {
  border-left: 2px solid rgba(145, 163, 184, 0.18);
  padding: 0.25rem 0 0.25rem 1.75rem; position: relative;
  transition: border-color 0.4s;
}
.process-step::before {
  content: ""; position: absolute; left: -7px; top: 0.55rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy-900); border: 2px solid var(--slate-400);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.process-step.is-active { border-color: var(--cyan-400); }
.process-step.is-active::before { border-color: var(--cyan-400); box-shadow: 0 0 0 5px rgba(57, 217, 255, 0.15); }
.process-step .step-num { font-family: var(--font-mono); font-size: var(--fs-tiny); letter-spacing: 0.18em; color: var(--cyan-400); }
.process-step h3 { margin: 0.4rem 0 0.5rem; }
.process-step p { color: var(--slate-400); margin: 0; max-width: 44ch; }

/* ---------- Portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.work-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: var(--border-dark); background: var(--navy-850); transition: transform 0.45s var(--ease-out), border-color 0.35s; }
.work-card:hover { transform: translateY(-6px); border-color: rgba(57, 217, 255, 0.35); }
.work-card .work-shot { position: relative; aspect-ratio: 16 / 10.4; overflow: hidden; background: radial-gradient(120% 120% at 20% 0%, rgba(36, 107, 253, 0.16), transparent 60%), var(--navy-800); }
.work-shot .shot-desktop { position: absolute; left: 6%; top: 9%; width: 88%; height: auto; border-radius: 10px; box-shadow: 0 24px 50px -18px rgba(2, 8, 20, 0.9), 0 0 0 1px rgba(145, 163, 184, 0.14); transition: transform 0.6s var(--ease-out); }
.work-shot .shot-phone { position: absolute; right: 5%; bottom: -14%; width: 24%; height: auto; border-radius: 14px; box-shadow: 0 20px 44px -14px rgba(2, 8, 20, 0.95), 0 0 0 1px rgba(145, 163, 184, 0.16); transition: transform 0.6s var(--ease-out); }
.work-card:hover .shot-desktop { transform: translateY(-8px); }
.work-card:hover .shot-phone { transform: translateY(-12px) rotate(-1.5deg); }
.work-meta { padding: 1.35rem clamp(1.2rem, 3vw, 2rem) 1.6rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.work-meta h3 { font-size: 1.15rem; margin: 0 0 0.3rem; }
.work-meta .work-obj { font-size: 0.88rem; color: var(--slate-400); margin: 0; max-width: 40ch; }
.work-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.7rem; }
.work-tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-300); border: 1px solid rgba(145, 163, 184, 0.28); border-radius: 100px; padding: 0.22rem 0.6rem; }
.work-tag.concept { color: var(--cyan-400); border-color: rgba(57, 217, 255, 0.35); }
.work-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate-400); flex: none; padding-top: 0.2rem; }

/* CSS website mockups (original, no stock imagery) */


/* Filters */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.55rem 1.15rem; border-radius: 100px; font-size: 0.9rem; font-weight: 550;
  border: 1px solid rgba(145, 163, 184, 0.3); color: var(--slate-300);
  transition: all 0.3s var(--ease-out);
}
.filter-btn:hover { color: var(--white); border-color: var(--cyan-400); }
.filter-btn[aria-pressed="true"] { background: var(--grad-blue-cyan); border-color: transparent; color: var(--navy-950); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  background: linear-gradient(170deg, rgba(19, 36, 57, 0.85), rgba(13, 27, 42, 0.95));
  border: var(--border-dark);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s var(--ease-out);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(57, 217, 255, 0.3); }
.price-card.is-featured {
  border: 1px solid transparent;
  background:
    linear-gradient(170deg, #12253E, #0D1B2A) padding-box,
    var(--grad-blue-cyan) border-box;
  box-shadow: 0 30px 70px -30px rgba(36, 107, 253, 0.5);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-blue-cyan); color: var(--navy-950);
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1.1rem; border-radius: 100px; white-space: nowrap;
}
.price-card .pkg-name { font-size: 1.28rem; margin-bottom: 0.2rem; }
.price-card .pkg-for { font-size: var(--fs-small); color: var(--slate-400); margin-bottom: 1.3rem; }
.price-amount { font-family: var(--font-display); display: flex; align-items: baseline; gap: 0.45rem; margin-bottom: 1.4rem; }
.price-amount .from { font-size: 0.82rem; color: var(--slate-400); font-family: var(--font-body); }
.price-amount .cur { font-size: 1rem; color: var(--cyan-400); font-weight: 600; }
.price-amount .val { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price-features { display: grid; gap: 0.55rem; margin-bottom: 1.4rem; }
.price-features li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--slate-300); }
.price-features li svg { width: 16px; height: 16px; flex: none; margin-top: 0.22rem; color: var(--cyan-400); }
.price-more-toggle {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600;
  font-size: 0.88rem; color: var(--cyan-400); margin-bottom: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.price-more-toggle svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease-out); }
.price-more-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.price-more { overflow: hidden; height: 0; }
.price-card .btn { margin-top: auto; }
.price-note { font-size: 0.8rem; color: var(--slate-400); margin: 1rem 0 0; }
.pricing-disclaimer {
  margin-top: 3rem; padding: 1.6rem 1.8rem; border-radius: var(--radius);
  border: 1px dashed rgba(145, 163, 184, 0.3);
  font-size: var(--fs-small); color: var(--slate-400); max-width: 900px;
}
.pricing-disclaimer ul { margin-top: 0.8rem; display: grid; gap: 0.4rem; }
.pricing-disclaimer li { padding-left: 1.1rem; position: relative; }
.pricing-disclaimer li::before { content: "—"; position: absolute; left: 0; color: var(--cyan-400); }

/* Comparison table */
.compare-scroll { overflow-x: auto; border: var(--border-dark); border-radius: var(--radius-lg); -webkit-overflow-scrolling: touch; }
.compare-table { border-collapse: collapse; width: 100%; min-width: 980px; font-size: 0.88rem; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid rgba(145, 163, 184, 0.13); }
.compare-table thead th { background: var(--navy-850); font-family: var(--font-display); font-size: 0.92rem; position: sticky; top: 0; }
.compare-table tbody th { text-align: left; font-weight: 550; color: var(--slate-300); background: rgba(13, 27, 42, 0.96); position: sticky; left: 0; min-width: 190px; }
.compare-table thead th:first-child { position: sticky; left: 0; z-index: 3; }
.compare-table td { color: var(--slate-300); }
.compare-table td .yes { color: var(--cyan-400); font-weight: 600; }
.compare-table td .no { color: rgba(145, 163, 184, 0.5); }
.compare-table .col-featured { background: rgba(36, 107, 253, 0.1); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item { border: var(--border-dark); border-radius: var(--radius); background: rgba(19, 36, 57, 0.5); overflow: hidden; transition: border-color 0.3s; }
.faq-item.is-open { border-color: rgba(57, 217, 255, 0.35); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
}
.faq-q .chev { flex: none; width: 20px; height: 20px; color: var(--cyan-400); transition: transform 0.35s var(--ease-out); }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; height: 0; }
.faq-item.is-open .faq-a { height: auto; }
.faq-a p { padding: 0 1.4rem 1.25rem; margin: 0; color: var(--slate-400); font-size: 0.95rem; }
.section-light .faq-item { background: var(--white); border: var(--border-light); }
.section-light .faq-a p { color: var(--ink-soft); }
.section-light .faq-item.is-open { border-color: rgba(36, 107, 253, 0.4); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 420px at 78% 20%, rgba(57, 217, 255, 0.13), transparent 60%),
    radial-gradient(700px 420px at 15% 90%, rgba(139, 92, 246, 0.15), transparent 60%),
    var(--navy-900);
}
.cta-band .cta-inner { position: relative; z-index: 2; text-align: center; max-width: 780px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.2rem; }
.cta-nodes { position: absolute; inset: 0; opacity: 0.6; pointer-events: none; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; font-family: var(--font-display); }
.form-field label .req { color: var(--cyan-400); }
.form-field .hint { font-size: 0.78rem; color: var(--slate-400); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 0.95rem; color: var(--offwhite);
  background: rgba(7, 17, 31, 0.6); border: 1px solid rgba(145, 163, 184, 0.3);
  border-radius: 12px; padding: 0.8rem 1rem; width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2391A3B8' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(57, 217, 255, 0.18);
}
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #FF6B81; }
.field-error { font-size: 0.8rem; color: #FF8FA0; display: none; }
.form-field.has-error .field-error { display: block; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; grid-column: 1 / -1; font-size: 0.86rem; color: var(--slate-400); }
.form-consent input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--blue-500); flex: none; }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-flex; padding: 0.5rem 1.05rem; border-radius: 100px;
  border: 1px solid rgba(145, 163, 184, 0.3); font-size: 0.88rem; color: var(--slate-300);
  transition: all 0.25s;
}
.radio-pill input:checked + span { background: var(--grad-blue-cyan); color: var(--navy-950); border-color: transparent; font-weight: 600; }
.radio-pill input:focus-visible + span { outline: 2px solid var(--cyan-400); outline-offset: 2px; }
.form-status { grid-column: 1 / -1; border-radius: 12px; padding: 1rem 1.2rem; font-size: 0.92rem; display: none; }
.form-status.is-error { display: block; background: rgba(255, 107, 129, 0.12); border: 1px solid rgba(255, 107, 129, 0.4); color: #FFB3BE; }
.form-status.is-success { display: block; background: rgba(57, 217, 255, 0.1); border: 1px solid rgba(57, 217, 255, 0.4); color: var(--cyan-400); }
.btn[aria-busy="true"] { opacity: 0.65; pointer-events: none; }
.form-success-panel { text-align: center; padding: 3rem 1.5rem; display: none; }
.form-success-panel.is-visible { display: block; }
.form-success-panel .tick { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; display: grid; place-items: center; background: rgba(57, 217, 255, 0.12); border: 1px solid rgba(57, 217, 255, 0.4); color: var(--cyan-400); }
.form-success-panel .tick svg { width: 30px; height: 30px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-panel { border-radius: var(--radius-lg); border: var(--border-dark); background: linear-gradient(170deg, rgba(19, 36, 57, 0.8), rgba(13, 27, 42, 0.95)); padding: clamp(1.6rem, 3vw, 2.4rem); }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid rgba(145, 163, 184, 0.14); }
.contact-detail:last-of-type { border-bottom: 0; }
.contact-detail .cd-icon { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(36, 107, 253, 0.13); border: 1px solid rgba(57, 217, 255, 0.22); color: var(--cyan-400); }
.contact-detail .cd-icon svg { width: 21px; height: 21px; }
.contact-detail h3 { font-size: 0.98rem; margin: 0 0 0.2rem; }
.contact-detail p, .contact-detail address { font-style: normal; font-size: 0.92rem; color: var(--slate-400); margin: 0; line-height: 1.55; }
.contact-detail a { color: var(--slate-300); text-decoration: underline; text-underline-offset: 3px; }
.contact-detail a:hover { color: var(--cyan-400); }
.map-panel {
  margin-top: 1.4rem; border-radius: var(--radius); overflow: hidden; border: var(--border-dark);
  aspect-ratio: 16 / 9; position: relative;
  background:
    radial-gradient(320px 200px at 60% 45%, rgba(36, 107, 253, 0.22), transparent 70%),
    linear-gradient(rgba(145, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 163, 184, 0.07) 1px, transparent 1px),
    var(--navy-850);
  background-size: auto, 34px 34px, 34px 34px, auto;
}
.map-pin { position: absolute; left: 60%; top: 45%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.map-pin .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 8px rgba(57, 217, 255, 0.18), 0 0 0 18px rgba(57, 217, 255, 0.07); }
.map-pin span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--slate-300); background: rgba(7, 17, 31, 0.8); padding: 0.3rem 0.7rem; border-radius: 6px; }

/* ---------- Detail service sections (services page) ---------- */
.service-detail { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 4vw, 3.5rem); padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid rgba(145, 163, 184, 0.14); }
.service-detail:last-of-type { border-bottom: 0; }
.service-detail .sd-index { font-family: var(--font-mono); color: var(--cyan-400); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 0.9rem; display: block; }
.sd-lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; margin: 1.2rem 0 1.8rem; }
.sd-lists h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-300); margin-bottom: 0.7rem; }
.sd-lists li { font-size: 0.92rem; color: var(--slate-400); padding: 0.3rem 0 0.3rem 1.3rem; position: relative; }
.sd-lists li::before { content: ""; position: absolute; left: 0; top: 0.85em; width: 7px; height: 7px; border-radius: 2px; background: var(--grad-blue-cyan); }
.sd-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Before / after slider */
.ba-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: var(--border-dark); aspect-ratio: 16 / 9.5; user-select: none; background: #0A1626; }
.ba-layer { position: absolute; inset: 0; padding: clamp(1rem, 3vw, 2rem); }
.ba-after { clip-path: inset(0 0 0 var(--ba, 50%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba, 50%); width: 2px; background: var(--cyan-400);
  z-index: 3; transform: translateX(-1px);
}
.ba-handle::after {
  content: "⇔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy-950); border: 2px solid var(--cyan-400); color: var(--cyan-400); font-size: 1.1rem;
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; margin: 0; }
.ba-label { position: absolute; top: 14px; z-index: 3; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 100px; background: rgba(7, 17, 31, 0.8); border: 1px solid rgba(145, 163, 184, 0.3); color: var(--slate-300); }
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; color: var(--cyan-400); border-color: rgba(57, 217, 255, 0.4); }

/* ---------- Values (about) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.value-card h3 { display: flex; gap: 0.6rem; align-items: center; font-size: 1.05rem; }
.value-card h3 svg { width: 20px; height: 20px; color: var(--cyan-400); flex: none; }
.value-card p { font-size: var(--fs-small); color: var(--slate-400); margin: 0.6rem 0 0; }

/* ---------- Legal ---------- */
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.45rem; margin-top: 2.4rem; }
.legal-body p, .legal-body li { color: var(--slate-300); font-size: 0.98rem; }
.legal-body ul { list-style: disc; padding-left: 1.4rem; display: grid; gap: 0.4rem; }
.legal-note {
  border: 1px dashed rgba(57, 217, 255, 0.4); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; font-size: 0.9rem; color: var(--cyan-400); margin-bottom: 2.5rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(36, 107, 253, 0.14), transparent 60%),
    radial-gradient(600px 400px at 5% 100%, rgba(139, 92, 246, 0.1), transparent 60%),
    var(--navy-950);
  position: relative; overflow: hidden;
}
.page-hero .breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 1.4rem; }
.page-hero .breadcrumbs a:hover { color: var(--cyan-400); }
.page-hero .breadcrumbs .sep { color: rgba(145, 163, 184, 0.4); }
.page-hero h1 { max-width: 17ch; }
.page-hero .section-lede { margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); border-top: 1px solid rgba(145, 163, 184, 0.12); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--slate-400); font-size: 0.92rem; max-width: 34ch; margin-top: 1rem; }
.footer-col h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate-300); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--slate-400); font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--cyan-400); }
.footer-col address { font-style: normal; color: var(--slate-400); font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(145, 163, 184, 0.12); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: var(--slate-400); }
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a:hover { color: var(--cyan-400); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 110;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #07301A;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.55);
  transform: translateY(120px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s, box-shadow 0.3s;
}
.wa-float.is-visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { box-shadow: 0 18px 44px -10px rgba(37, 211, 102, 0.75); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; pointer-events: none; z-index: 400; border-radius: 50%; }
.cursor-dot { width: 8px; height: 8px; background: var(--cyan-400); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(57, 217, 255, 0.55);
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background-color 0.3s, border-color 0.3s;
}
.cursor-ring .cursor-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-950); opacity: 0; transition: opacity 0.2s; }
.cursor-ring.is-hover { width: 56px; height: 56px; background: rgba(57, 217, 255, 0.12); }
.cursor-ring.has-label { width: 68px; height: 68px; background: var(--cyan-400); border-color: var(--cyan-400); }
.cursor-ring.has-label .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }
body.has-cursor { cursor: auto; } /* keep native cursor visible for reliability */

/* ---------- Page transition overlay ---------- */
.page-transition {
  position: fixed; inset: 0; z-index: 500; pointer-events: none;
  display: grid; place-items: center;
  background: var(--navy-950);
  clip-path: inset(0 0 100% 0);
}
.page-transition .pt-logo { opacity: 0; font-size: 1.4rem; }
.page-transition.is-active { pointer-events: auto; }

/* Intro loader (first visit) */
.intro-loader {
  position: fixed; inset: 0; z-index: 600; display: grid; place-items: center;
  background: var(--navy-950);
}
.intro-loader .intro-inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }

/* ---------- Reveal helpers (GSAP) ---------- */
/* Content is ALWAYS visible by default. Animations are opt-in:
   JS adds html.js-anim only when it can guarantee the reveal will run. */
html.js-anim .reveal,
html.js-anim .reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s var(--ease-out);
}
html.js-anim .reveal.is-in { opacity: 1; transform: none; }
html.js-anim .reveal-stagger.is-in > * { opacity: 1; transform: none; }
html.js-anim .reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.07s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.14s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.21s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.28s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.35s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(7) { transition-delay: 0.42s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(8) { transition-delay: 0.49s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(9) { transition-delay: 0.56s; }
html.js-anim .reveal-stagger.is-in > *:nth-child(n+10) { transition-delay: 0.62s; }
html.js-anim [data-split] .sw { display: inline-block; overflow: hidden; vertical-align: top; }
html.js-anim [data-split] .sw > span { display: inline-block; transform: translateY(112%); transition: transform 0.85s var(--ease-out); }
html.js-anim [data-split].is-in .sw > span { transform: none; }
.reduced-motion .reveal, .reduced-motion .reveal-stagger > * { opacity: 1 !important; transform: none !important; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero-visual { min-height: clamp(300px, 55vw, 440px); order: 2; }
  .scroll-hint { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-wrap { grid-template-columns: 1fr; }
  .process-visual { position: relative; top: 0; max-width: 560px; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  :root { --header-h: 72px; }
  .grid-2, .grid-3, .grid-4, .pricing-grid, .form-grid, .sd-lists, .values-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .form-field.full, .form-consent, .form-status { grid-column: auto; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .price-card.is-featured { transform: none; }
  .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .cta-band .cta-actions .btn { width: 100%; }
}
@media (max-width: 420px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* Utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ============ Contact page (fixes + layout) ============ */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-aside { display: grid; gap: 1.6rem; position: sticky; top: 96px; }
.contact-card { background: var(--navy-800); border: 1px solid rgba(145, 163, 184, 0.16); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); }
.contact-list { display: grid; gap: 1.3rem; margin: 1.3rem 0 1.5rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; flex: none; color: var(--cyan-400); margin-top: 0.15rem; }
.contact-list .c-label { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 0.25rem; }
.contact-list a { color: var(--offwhite); font-weight: 500; }
.contact-list a:hover { color: var(--cyan-400); }
.contact-list address { color: var(--slate-300); font-size: 0.95rem; line-height: 1.55; }
.check-row { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--slate-300); cursor: pointer; }
.check-row input { width: 18px; height: 18px; flex: none; margin-top: 0.15rem; accent-color: var(--blue-500); }
.check-row a { color: var(--cyan-400); text-decoration: underline; }
.field-hint { font-size: 0.82rem; color: var(--cyan-400); margin-top: 0.4rem; min-height: 1em; }
.form-success-panel > svg { width: 56px; height: 56px; color: var(--cyan-400); margin-bottom: 1.2rem; }
.form-success-panel { text-align: left; padding: clamp(1.6rem, 4vw, 2.6rem); background: var(--navy-800); border: 1px solid rgba(57, 217, 255, 0.3); border-radius: var(--radius); }
.form-success-panel h2 { font-size: 1.35rem; }

/* ============ Before / after (image version) ============ */
.ba-layer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; }

/* Hero visual on small screens */
@media (max-width: 700px) {
  .hero-shot .hv-phone { right: 0; bottom: -2%; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .work-shot .shot-phone { bottom: -18%; }
}

/* Final fixes */
.container-narrow { max-width: 780px; }
[id] { scroll-margin-top: 96px; }
@media (min-width: 981px) { .pricing-preview { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ============ Scroll-to-top button ============ */
.scroll-top {
  position: fixed; right: 22px; bottom: calc(20px + 56px + 14px); z-index: 60;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: var(--navy-800); color: var(--cyan-400);
  border: 1px solid rgba(57, 217, 255, 0.55);
  box-shadow: 0 8px 26px -8px rgba(2, 8, 20, 0.8), 0 0 18px -4px rgba(57, 217, 255, 0.35);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.scroll-top.is-visible { visibility: visible; }
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top:hover { border-color: var(--cyan-400); box-shadow: 0 10px 30px -8px rgba(2, 8, 20, 0.9), 0 0 26px -2px rgba(57, 217, 255, 0.5); }
.scroll-top:focus-visible { outline: 2px solid var(--cyan-400); outline-offset: 3px; opacity: 1; visibility: visible; }
@media (max-width: 700px) {
  .scroll-top { width: 46px; height: 46px; right: 25px; bottom: calc(20px + 56px + 12px); }
}

/* ============ Contact-method & submit spacing ============ */
.form-field #pref-label, #pref-label { display: block; margin-top: 0.9rem; margin-bottom: 0.85rem; }
.radio-row { margin-bottom: 0.4rem; }
.radio-row .radio-pill { min-height: 44px; display: inline-flex; align-items: center; }
form[data-enquiry] .check-row { margin-top: 0.9rem; padding-bottom: 0.2rem; }
form[data-enquiry] button[type="submit"] { margin-bottom: 0.2rem; }
@media (max-width: 700px) {
}

/* ============ Startup package audience tag ============ */
.pkg-tag {
  font-size: 0.78rem; line-height: 1.45; color: var(--cyan-400);
  background: rgba(57, 217, 255, 0.08); border: 1px solid rgba(57, 217, 255, 0.25);
  border-radius: 8px; padding: 0.45rem 0.65rem; margin: 0.4rem 0 0.2rem;
}

/* ============ Launch story visual (new-company section) ============ */
.launch-visual { position: relative; aspect-ratio: 4 / 3.1; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 100% at 70% 0%, rgba(36, 107, 253, 0.14), transparent 55%), var(--navy-900, #0D1B2A);
  border: 1px solid rgba(145, 163, 184, 0.14); }
.launch-stage { position: absolute; inset: 0; padding: 6%; opacity: 0; transform: scale(0.97); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.launch-stage.is-active { opacity: 1; transform: scale(1); }
.launch-stage svg, .launch-stage img { width: 100%; height: 100%; object-fit: contain; }
.launch-caption { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-400); margin-top: 0.9rem; }

/* ============ Testimonials (hidden until verified reviews exist) ============ */
.testimonial-card blockquote { margin: 0 0 1rem; }
.testimonial-card blockquote p { font-size: 0.98rem; color: var(--offwhite); line-height: 1.65; }
.testimonial-card figcaption { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-card .t-company { display: block; font-weight: 400; color: var(--slate-400); font-size: 0.82rem; margin-top: 0.15rem; }

/* Footer legal name */
.footer-legal-name { font-weight: 600; color: var(--offwhite); margin-bottom: 0.6rem; font-size: 0.92rem; }

/* Launch section benefit cards */
.launch-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
@media (max-width: 700px) { .launch-benefits { grid-template-columns: 1fr; } }

/* Submit row (structural spacing, cache-proof companion to inline fallback) */
.form-submit-row { margin-top: 28px; margin-bottom: 0.6rem; }
.form-submit-row .btn { min-width: 240px; justify-content: center; }
@media (max-width: 700px) {
  .form-submit-row { margin-top: 22px; }
  .form-submit-row .btn { width: 100%; }
}
