/* ============================================================
   Zaliga Marketing — Performance Trading Aesthetic
   ============================================================ */

:root {
  /* Backgrounds */
  --bg: #07090f;
  --bg-elev: #0d111c;
  --surface: #121829;
  --surface-2: #1a2238;
  --border: #1f2942;
  --border-strong: #2a375a;

  /* Foreground */
  --fg: #f0f3f9;
  --fg-soft: #c9d0e0;
  --fg-mute: #7d879f;
  --fg-dim: #4f5973;

  /* Accent (tweakable) */
  --accent: #00d9ff;
  --accent-soft: rgba(0, 217, 255, 0.16);
  --accent-line: rgba(0, 217, 255, 0.32);
  --accent-fg: #04121a;

  /* Status */
  --pos: #39ff8b;
  --pos-soft: rgba(57, 255, 139, 0.14);
  --neg: #ff5b7a;
  --neg-soft: rgba(255, 91, 122, 0.14);
  --wa: #25d366;

  /* Rhythm */
  --container: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  /* Type */
  --f-he: "Heebo", -apple-system, system-ui, sans-serif;
  --f-en: "Inter", -apple-system, system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-he);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 1200px 600px at 50% -200px, rgba(0, 217, 255, 0.07), transparent 60%),
    radial-gradient(ellipse 800px 500px at 100% 30%, rgba(0, 217, 255, 0.04), transparent 60%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.55;
}

/* Grid overlay subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

#root { position: relative; z-index: 1; }

/* Type */
h1, h2, h3, h4, h5 {
  font-family: var(--f-he);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.4vw, 72px); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0; color: var(--fg-soft); text-wrap: pretty; }

.mono { font-family: var(--f-mono); font-feature-settings: "tnum"; }
.en { font-family: var(--f-en); direction: ltr; display: inline-block; }
.num { font-family: var(--f-en); font-variant-numeric: tabular-nums; }

a { color: inherit; text-decoration: none; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: var(--f-he);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 0 0 0 var(--accent-line), 0 8px 32px -10px var(--accent);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px var(--accent-line), 0 14px 38px -10px var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn-wa {
  background: var(--wa);
  color: #07210d;
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px var(--wa); }
.btn-sm { height: 40px; font-size: 14px; padding: 0 16px; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--border-strong); }

/* Section spacing */
section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head p { font-size: 17px; color: var(--fg-mute); margin-top: 16px; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  color: #07210d;
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.12);
  z-index: 100;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0.6;
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Header */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
/* Push everything below the fixed header */
#root > main, #root > section { padding-top: 0; }
body { padding-top: 72px; }
@media (max-width: 720px) { body { padding-top: 64px; } }
@media (max-width: 960px) {
  .hdr-inner { height: 64px; }
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent), white 15%));
  color: var(--accent-fg);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 0 18px -4px var(--accent);
}
.logo small {
  font-family: var(--f-he);
  font-size: 11px;
  color: var(--fg-mute);
  font-weight: 500;
  letter-spacing: 0;
  margin-right: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 14.5px;
  color: var(--fg-soft);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
}
.nav a:hover { color: var(--fg); background: rgba(255,255,255,0.04); }
.nav a.active { color: var(--accent); }
.hdr-cta { display: flex; align-items: center; gap: 12px; }

.hamburger { display: none; }

@media (min-width: 961px) {
  .hamburger { display: none !important; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    background: #04060c;
    background-image:
      radial-gradient(ellipse 600px 400px at 50% 0%, rgba(0, 217, 255, 0.08), transparent 60%);
    flex-direction: column;
    padding: 24px 20px 32px;
    align-items: stretch;
    gap: 8px;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    z-index: 49;
    box-sizing: border-box;
  }
  .nav.open a {
    padding: 16px 20px;
    font-size: 17px;
    color: var(--fg);
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 10px;
    margin: 0;
    display: block;
    text-align: right;
  }
  .nav.open a:hover, .nav.open a.active {
    border-color: var(--accent);
    background: var(--bg-elev);
    color: var(--accent);
  }
  /* CTAs inside the mobile menu */
  .nav.open .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .nav.open .mobile-cta .btn {
    width: 100%;
    height: 52px;
    justify-content: center;
    font-size: 16px;
  }
  .nav.open .mobile-cta .mobile-phone {
    text-align: center;
    color: var(--fg-mute);
    font-family: var(--f-en);
    font-size: 13px;
    margin-top: 12px;
    letter-spacing: 0.02em;
  }
  .nav.open .mobile-cta .mobile-phone strong {
    color: var(--fg);
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-top: 4px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--border-strong);
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    order: -1;
    margin-left: 12px;
  }
  .hamburger span {
    width: 18px; height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hdr-cta .btn-ghost { display: none; }
  .hdr-cta .btn-primary { display: none; }
  /* On mobile, hamburger sits first (right side in RTL); logo follows */
  .hdr-inner { gap: 0; }
  .hamburger { order: 0; margin-left: 0; margin-right: 0; }
  .logo { order: 1; flex: 1; justify-content: flex-start; padding-right: 14px; }
  .hdr-cta { order: 2; }
  .hdr-cta .btn-wa-mobile {
    display: inline-flex;
    width: 40px; height: 40px;
    padding: 0;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
  }
  .logo small { display: none; }
  /* Lock body scroll when menu open */
  body.menu-open { overflow: hidden; }
}

@media (min-width: 961px) {
  .btn-wa-mobile { display: none !important; }
  .nav .mobile-cta { display: none !important; }
}

/* Hero */
.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  margin-right: 6px;
  border-radius: 2px;
  transform: translateY(-12px);
  box-shadow: 0 0 12px var(--accent);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  margin-top: 28px;
  color: var(--fg-soft);
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-plat {
  font-family: var(--f-en);
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.hero-plat span:not(:last-child)::after {
  content: "/";
  margin-right: 12px;
  color: var(--fg-dim);
}

/* Dashboard hero card */
.dash {
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}
.dash::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-line), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.dash-head .title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-soft);
}
.dash-head .title .gicon {
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 5px;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.dash-head .live {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pos);
  display: flex; align-items: center; gap: 6px;
}
.dash-head .live .dot {
  width: 6px; height: 6px;
  background: var(--pos);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pos);
  animation: pulse 1.6s infinite;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.kpi {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.kpi .label {
  font-family: var(--f-en);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 8px;
}
.kpi .val {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.kpi .val .unit { font-size: 13px; color: var(--fg-mute); font-weight: 500; }
.kpi .delta {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.kpi .delta.up { color: var(--pos); }
.kpi .delta.down { color: var(--neg); }
@media (max-width: 540px) {
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
}

.chart-wrap {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  height: 200px;
}
.chart-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.chart-head .name {
  font-family: var(--f-en);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chart-head .now {
  font-family: var(--f-en);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.chart-svg { width: 100%; height: 130px; display: block; }

.dash-foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 16px;
}
.tick {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-en);
  font-size: 12.5px;
  color: var(--fg-soft);
}
.tick .src { display: flex; align-items: center; gap: 8px; }
.tick .badge {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.tick .value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tick .value .arr { color: var(--pos); margin-left: 4px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 720px) and (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Pain points */
.pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
@media (max-width: 720px) { .pain-list { grid-template-columns: 1fr; } }
.pain-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15.5px;
  color: var(--fg-soft);
}
.pain-item .x {
  color: var(--neg);
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

/* Pillar cards */
.pillar {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-2px); }
.pillar .num {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--fg-mute); }
.pillar::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 70%);
  opacity: 0; transition: opacity 0.25s;
}
.pillar:hover::after { opacity: 1; }

/* Service cards */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-height: 320px;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(0, 217, 255, 0.18);
}
.service-card .plat-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.service-card .plat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.service-card .plat-tag {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.25; }
.service-card p { font-size: 15px; color: var(--fg-mute); margin-bottom: 22px; flex-grow: 1; }
.service-card .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: flex; align-items: center; gap: 6px;
}
.service-card .more::after {
  content: "←";
  font-family: var(--f-en);
  transition: transform 0.2s;
}
.service-card:hover .more::after { transform: translateX(-4px); }

/* Process timeline */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.step {
  padding: 0 14px;
  text-align: center;
  position: relative;
}
.step .circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.step h4 { margin-bottom: 8px; font-size: 16px; }
.step p { font-size: 13.5px; color: var(--fg-mute); }
@media (max-width: 960px) {
  .process { grid-template-columns: 1fr; gap: 24px; }
  .process::before { display: none; }
  .step { display: grid; grid-template-columns: 64px 1fr; text-align: right; gap: 16px; align-items: start; padding: 0; }
  .step .circle { margin: 0; }
}

/* Clients */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 960px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.client {
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 16px;
  text-align: center;
  font-family: var(--f-he);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  min-height: 110px;
}
.client:hover { color: var(--accent); background: var(--surface); }
.client .industry { font-size: 11px; color: var(--fg-dim); font-weight: 500; letter-spacing: 0.06em; font-family: var(--f-en); }

/* Testimonials */
.testi { padding: 32px; }
.testi .quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 500;
}
.testi .quote::before {
  content: "“";
  display: block;
  font-family: var(--f-en);
  font-size: 60px;
  line-height: 0.4;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 900;
}
.testi .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--f-he);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.testi .who .name { font-weight: 700; font-size: 15px; }
.testi .who .role { font-size: 13px; color: var(--fg-mute); }

/* About strip */
.about-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 720px) { .about-strip { grid-template-columns: 1fr; } }
.about-portrait {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0px, transparent 12px, var(--border) 12px, var(--border) 13px);
  opacity: 0.4;
}
.about-portrait .badge {
  position: absolute;
  inset: auto 0 0 0;
  margin: 12px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--fg-mute);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
.about-portrait .initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 84px;
  color: var(--fg);
  letter-spacing: -0.04em;
  opacity: 0.9;
}
.about-portrait .initials small {
  font-size: 14px;
  display: block;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-top: 8px;
}

/* Big CTA */
.cta-big {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-big::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at center top, var(--accent-soft), transparent 70%);
}
.cta-big > * { position: relative; }
.cta-big h2 { margin-bottom: 16px; }
.cta-big p { font-size: 18px; color: var(--fg-soft); max-width: 600px; margin: 0 auto 32px; }
.cta-big .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 720px) { .cta-big { padding: 48px 24px; } }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 64px 0 32px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer li a { color: var(--fg-soft); font-size: 14px; }
.footer li a:hover { color: var(--accent); }
.footer .brand { color: var(--fg-mute); font-size: 14px; max-width: 320px; margin-top: 16px; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-en);
  font-size: 12px;
  color: var(--fg-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--f-he);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.success {
  background: var(--pos-soft);
  border: 1px solid rgba(57,255,139,0.3);
  color: var(--pos);
  padding: 16px;
  border-radius: 8px;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}

/* Service page hero */
.svc-hero {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 800px 400px at 100% 0%, var(--accent-soft), transparent 70%);
}
.svc-hero .crumb {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.svc-hero .crumb a { color: var(--fg-mute); }
.svc-hero .crumb a:hover { color: var(--accent); }
.svc-hero h1 { font-size: clamp(36px, 4.6vw, 56px); max-width: 900px; }
.svc-hero p { font-size: 19px; max-width: 720px; margin-top: 24px; }

/* Service detail blocks */
.svc-blocks { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
@media (max-width: 960px) { .svc-blocks { grid-template-columns: 1fr; } }
.svc-list h3 { margin-bottom: 16px; font-size: 22px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px) { .checks { grid-template-columns: 1fr; } }
.checks li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--fg-soft);
}
.checks li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.checks li::after {
  content: "✓";
  position: absolute;
  margin-right: 16px;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 12px;
  color: var(--accent-fg);
  transform: translateX(-2px) translateY(-1px);
}

.fit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.fit-card h4 {
  font-size: 13px;
  font-family: var(--f-en);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-soft);
  font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.fit-list li:last-child { border-bottom: 0; }
.fit-list li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--f-en);
  font-weight: 700;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee tick row */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item { display: flex; gap: 10px; align-items: center; color: var(--fg-mute); }
.ticker-item .lbl { color: var(--fg-mute); letter-spacing: 0.04em; }
.ticker-item .v { color: var(--fg); }
.ticker-item .v.up::after { content: " ↑"; color: var(--pos); }
.ticker-item .v.down::after { content: " ↓"; color: var(--neg); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ============================================================
   Hero services (4 prominent platform cards)
   ============================================================ */
.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .hero-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hero-services { grid-template-columns: 1fr; } }

.hero-svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.hero-svc:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 40px 80px -36px rgba(0, 217, 255, 0.28);
}
.hero-svc-bg {
  position: absolute;
  inset: auto -60px -60px auto;
  opacity: 0.06;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s, transform 0.4s;
}
.hero-svc:hover .hero-svc-bg {
  opacity: 0.12;
  transform: translate(-8px, -8px) scale(1.08);
}
.hero-svc-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hero-svc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-svc-tag {
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.hero-svc h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.hero-svc p {
  font-size: 14.5px;
  color: var(--fg-mute);
  flex-grow: 1;
}
.hero-svc .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-svc:hover .more { transform: translateX(-2px); }

/* Per-platform accent — when hovering, the card border takes the brand color */
.hero-svc--google:hover { border-color: #4285f4; box-shadow: 0 40px 80px -36px rgba(66, 133, 244, 0.3); }
.hero-svc--facebook:hover { border-color: #1877f2; box-shadow: 0 40px 80px -36px rgba(24, 119, 242, 0.3); }
.hero-svc--youtube:hover { border-color: #ff0000; box-shadow: 0 40px 80px -36px rgba(255, 0, 0, 0.28); }

/* ============================================================
   Blog Article — full post body
   ============================================================ */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--f-he);
  color: var(--fg-soft);
}
.article-body p {
  font-size: 17.5px;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--fg-soft);
}
.article-body h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  margin-top: 48px;
  margin-bottom: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
  position: relative;
  padding-right: 18px;
}
.article-body h2::before {
  content: "";
  position: absolute;
  right: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
}
.article-body ul li {
  position: relative;
  padding: 12px 24px 12px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-soft);
  border-bottom: 1px solid var(--border);
}
.article-body ul li:last-child { border-bottom: none; }
.article-body ul li::before {
  content: "←";
  display: inline-block;
  margin-left: 12px;
  color: var(--accent);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 14px;
}
.article-cta {
  margin-top: 56px;
  padding: 36px;
  background: linear-gradient(135deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-right: 3px solid var(--accent);
}

/* ============================================================
   Clients Showcase — compact 5-col grid, uniform logos
   ============================================================ */
.clients-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.clients-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.clients-grid-v2 > .client-tile:nth-child(n+10) { display: none; } /* safety: max 2 rows of 5 = 10 */
@media (max-width: 1024px) {
  .clients-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .clients-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
.client-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  padding: 16px 20px;
}
.client-tile--dark { background: #0a0e1a; border-color: var(--border-strong); }
.client-tile:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 36px -18px rgba(0, 217, 255, 0.35);
  z-index: 2;
}
.client-tile img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 540px) {
  .client-tile { padding: 12px; }
  .client-tile img { max-height: 48px; }
}
/* Name shown only on hover via title attr / accessible label */
.client-tile-name { display: none; }

/* Meta stats row */
.clients-meta {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.clients-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .clients-meta-row { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
}
.meta-stat {
  text-align: center;
  position: relative;
}
.meta-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--border);
}
@media (max-width: 720px) {
  .meta-stat:not(:last-child)::after { display: none; }
}
.meta-num {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.meta-plus {
  color: var(--accent);
  font-size: 0.65em;
  font-weight: 700;
}
.meta-lbl {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--fg-mute);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Show 2 logos per row even on mobile (each item is 50%) — already correct */

/* ============================================================
   Moshe portrait image override (replaces default striped block)
   ============================================================ */
.about-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 1;
}
.about-portrait .badge { z-index: 3; }
.about-portrait::before { z-index: 0; }
.about-portrait { background: var(--surface-2); }

.svc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
}
.svc-tabs a {
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--fg-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
}
.svc-tabs a:hover { color: var(--fg); }
.svc-tabs a.active { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   ███  COMPREHENSIVE MOBILE  ███
   Bulletproof phone layout — iPhone + Galaxy + everything
   ============================================================ */

/* Global anti-overflow safety on every viewport */
html, body { max-width: 100%; overflow-x: hidden; }
#root { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; }

/* Unify header height across mobile/tablet */
@media (max-width: 960px) {
  .hdr-inner { height: 60px; }
  body { padding-top: 60px; }
  .nav.open {
    top: 60px;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
  }
}

/* ---------- PHONES (≤ 720px) ---------- */
@media (max-width: 720px) {
  /* Container & section rhythm */
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 15px; margin-top: 12px; }

  /* Type scale */
  h1 { font-size: clamp(30px, 8vw, 42px) !important; line-height: 1.12 !important; }
  h2 { font-size: clamp(23px, 6.2vw, 32px) !important; line-height: 1.15 !important; }
  h3 { font-size: 18px !important; }

  /* ---------- HEADER ---------- */
  .logo { font-size: 15px; min-width: 0; }
  .logo > span {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: inline-block; max-width: calc(100vw - 150px);
  }
  .logo-mark { width: 24px; height: 24px; font-size: 13px; border-radius: 6px; flex-shrink: 0; }
  .hdr-cta { gap: 6px; }
  /* Only WA icon stays visible in the bar */
  .hdr-cta .btn-ghost,
  .hdr-cta .btn-primary { display: none !important; }
  .hdr-cta .btn-wa-mobile { display: inline-flex !important; }

  /* ---------- HERO ---------- */
  .hero { padding: 28px 0 48px; }
  .hero-grid { gap: 28px; }
  .hero h1 .accent::after { display: none; }
  .hero-sub { font-size: 16px; margin-top: 16px; line-height: 1.6; max-width: 100%; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; min-width: 0; height: 50px; font-size: 15px; padding: 0 14px; }
  .hero-plat {
    margin-top: 18px; font-size: 11px; gap: 7px;
    justify-content: flex-start; line-height: 1.9;
  }
  .hero-plat span:not(:last-child)::after { margin-right: 7px; }

  /* ---------- DASHBOARD (the big offender) ---------- */
  .dash { padding: 14px; border-radius: 16px; max-width: 100%; overflow: hidden; }
  .dash-head { margin-bottom: 14px; padding-bottom: 12px; gap: 8px; }
  .dash-head .title { font-size: 11px; gap: 6px; min-width: 0; flex: 1; overflow: hidden; }
  .dash-head .title > span:last-child {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .dash-head .title .gicon { width: 18px; height: 18px; font-size: 10px; flex-shrink: 0; }
  .dash-head .live { font-size: 10px; flex-shrink: 0; }

  .kpi-row { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; margin-bottom: 14px; }
  .kpi { padding: 11px 12px; min-width: 0; }
  .kpi .label { font-size: 9.5px; margin-bottom: 4px; }
  .kpi .val { font-size: 19px; }
  .kpi .val .unit { font-size: 11px; }
  .kpi .delta { font-size: 10px; margin-top: 4px; }

  .chart-wrap { padding: 12px; height: auto; }
  .chart-head .name { font-size: 10px; }
  .chart-head .now { font-size: 12px; }
  .chart-svg { height: 96px; }

  .dash-foot { grid-template-columns: 1fr !important; gap: 8px; margin-top: 12px; }
  .tick { padding: 10px 12px; font-size: 12px; }
  .tick .badge, .tick .src span:first-child { flex-shrink: 0; }

  /* ---------- PAIN / GRIDS ---------- */
  .pain-list { grid-template-columns: 1fr !important; gap: 8px; margin-top: 22px; }
  .pain-item { padding: 14px 16px; font-size: 14.5px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; gap: 12px; }
  .pillar { padding: 24px 20px; }
  .pillar p { font-size: 14px; }

  /* ---------- HERO SERVICES ---------- */
  .hero-services { grid-template-columns: 1fr !important; gap: 12px; }
  .hero-svc { min-height: auto; padding: 24px 20px 20px; }
  .hero-svc-head { margin-bottom: 16px; }
  .hero-svc h3 { font-size: 18px !important; margin-bottom: 10px; }
  .hero-svc p { font-size: 14px; }
  .hero-svc-bg { display: none; }

  /* ---------- CARDS ---------- */
  .card { padding: 22px 18px; }
  .service-card { padding: 24px 20px; min-height: auto; }
  .service-card h3 { font-size: 19px; }
  .service-card p { font-size: 14px; }

  /* ---------- PROCESS ---------- */
  .step { grid-template-columns: 46px 1fr; gap: 14px; }
  .step .circle { width: 40px; height: 40px; font-size: 14px; }
  .step h4 { font-size: 15px; }
  .step p { font-size: 13.5px; }

  /* ---------- CLIENTS ---------- */
  .clients-grid-v2 { gap: 8px; }
  .client-tile { padding: 12px; }
  .client-tile img { max-height: 42px; }
  .clients-meta { padding-top: 20px; margin-top: 12px; }
  .clients-meta-row { gap: 18px 0; }

  /* ---------- TESTIMONIALS ---------- */
  .testi { padding: 24px 20px; }
  .testi .quote { font-size: 15.5px; margin-bottom: 18px; }
  .testi .quote::before { font-size: 46px; }
  .testi .who { padding-top: 16px; }
  .testi .avatar { width: 38px; height: 38px; font-size: 14px; }

  /* ---------- ABOUT ---------- */
  .about-strip { grid-template-columns: 1fr !important; gap: 28px; }
  .about-portrait { max-width: 220px; width: 100%; margin: 0 auto; }

  /* ---------- BIG CTA ---------- */
  .cta-big { padding: 40px 22px; }
  .cta-big p { font-size: 15px; }
  .cta-big .actions { gap: 10px; }
  .cta-big .actions .btn { flex: 1 1 100%; }

  /* ---------- SERVICE PAGES ---------- */
  .svc-hero { padding: 36px 0 28px; }
  .svc-hero h1 { font-size: clamp(26px, 7vw, 36px) !important; }
  .svc-hero p { font-size: 15.5px; margin-top: 16px; }
  .svc-blocks { grid-template-columns: 1fr !important; gap: 28px; }
  .checks { grid-template-columns: 1fr !important; gap: 8px; }
  .checks li { padding: 12px 14px; font-size: 14px; }
  .fit-card { padding: 22px 20px; }
  .fit-list li { font-size: 14px; padding: 10px 0; }

  /* ---------- ARTICLE ---------- */
  .article-body p { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
  .article-body h2 { font-size: 22px !important; margin-top: 34px; margin-bottom: 14px; }
  .article-body ul li { padding: 12px 18px; font-size: 14.5px; }
  .article-cta { padding: 24px 20px; margin-top: 40px; }

  /* ---------- FORM ---------- */
  .form-card { padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr !important; gap: 0; }
  .field { margin-bottom: 16px; }
  .field input, .field select, .field textarea { padding: 13px 14px; font-size: 16px; }
  .contact-cols { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* ---------- FOOTER ---------- */
  .footer { padding: 44px 0 24px; margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px 20px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; font-size: 11px; text-align: center; }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float { width: 52px; height: 52px; bottom: 16px; left: 16px; }
  .wa-float svg { width: 25px; height: 25px; }

  /* ---------- TICKER ---------- */
  .ticker { font-size: 12px; padding: 10px 0; }
}

/* ---------- SMALL PHONES (≤ 420px) ---------- */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  h1 { font-size: clamp(26px, 8.6vw, 36px) !important; }
  .kpi .val { font-size: 17px; }
  .hero-plat { font-size: 10.5px; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 26px; }
  .clients-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  /* keep logo from pushing hamburger off-screen */
  .logo > span { max-width: calc(100vw - 140px); }
}

/* iOS: stop auto-zoom on input focus */
@supports (-webkit-touch-callout: none) {
  input, select, textarea { font-size: 16px !important; }
}
