/* =========================================================================
   HOME page — hero with live dashboard
   ========================================================================= */

/* -------- HERO -------- */
.hero {
  position: relative;
  background: var(--zg-navy-900);
  color: #fff;
  overflow: hidden;
  padding: clamp(56px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(0,232,190,0.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 100%, rgba(62,67,91,0.9), transparent 55%);
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0,0) scale(1); opacity: .85; }
  100% { transform: translate(-3%, 2%) scale(1.05); opacity: 1; }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 60%, transparent 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(0,232,190,.08);
  border: 1px solid rgba(0,232,190,.25);
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--zg-mint-500);
  margin-bottom: 28px;
}
.hero__badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--zg-mint-500);
  box-shadow: 0 0 0 0 rgba(0,232,190,.6);
  animation: hpulse 1.8s var(--zg-ease-out) infinite;
}
@keyframes hpulse {
  0% { box-shadow: 0 0 0 0 rgba(0,232,190,.7); }
  70% { box-shadow: 0 0 0 14px rgba(0,232,190,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,232,190,0); }
}
.hero__title {
  font: 800 clamp(42px, 6.2vw, 88px)/1.0 var(--zg-font-display);
  letter-spacing: -.03em;
  margin: 0 0 24px;
  max-width: 18ch;
  overflow-wrap: break-word;
}
.hero__title .range {
  font-style: normal;
  background: linear-gradient(120deg, var(--zg-mint-500) 0%, var(--zg-mint-300) 60%, var(--zg-mint-500) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.hero__title .stroke-underline {
  position: relative; display: inline-block;
}
.hero__title .stroke-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--zg-mint-500);
  border-radius: 4px;
  z-index: -1;
  opacity: .35;
}
.hero__sub {
  font: 500 clamp(16px, 1.4vw, 19px)/1.55 var(--zg-font-sans);
  color: var(--zg-navy-200);
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 620px;
}
.hero__proof-item .num {
  font: 800 clamp(26px, 2.6vw, 34px)/1 var(--zg-font-display);
  letter-spacing: -.02em;
}
.hero__proof-item .num em { font-style: normal; color: var(--zg-mint-500); }
.hero__proof-item .lbl { margin-top: 6px; font-size: 12px; color: var(--zg-navy-300); letter-spacing: .04em; }

/* ---- Live Dashboard ---- */
.dash {
  position: relative;
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.02) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotate(.5deg);
  overflow: hidden;
}
.dash::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(0,232,190,.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  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; gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 18px;
}
.dash__head .dot { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }
.dash__head .dot:nth-child(2) { background: #febc2e; }
.dash__head .dot:nth-child(3) { background: #28c840; }
.dash__head .title {
  margin-left: 8px; font-size: 12px; font-weight: 600;
  color: var(--zg-navy-200); letter-spacing: .08em;
  text-transform: uppercase;
}
.dash__head .live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--zg-mint-500);
}
.dash__head .live span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--zg-mint-500);
  animation: hpulse 2.2s infinite;
}
.dash__kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.dash__kpi {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.dash__kpi .lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--zg-navy-300); margin-bottom: 6px;
}
.dash__kpi .val {
  font: 800 24px/1 var(--zg-font-display);
  letter-spacing: -.01em;
}
.dash__kpi .delta {
  margin-top: 4px; font-size: 11px; font-weight: 700;
  color: var(--zg-mint-500);
  display: inline-flex; align-items: center; gap: 4px;
}
.dash__kpi .delta svg { width: 10px; height: 10px; }
.dash__chart {
  position: relative;
  height: 200px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  padding: 14px 16px;
}
.dash__chart .chart-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 8px;
}
.dash__chart .chart-head .lbl {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--zg-navy-300); font-weight: 700;
}
.dash__chart .chart-head .big {
  font: 800 28px/1 var(--zg-font-display);
  letter-spacing: -.02em;
}
.dash__chart .chart-head .big em { font-style: normal; color: var(--zg-mint-500); }
.dash__chart svg { width: 100%; height: calc(100% - 36px); display: block; }
.dash__chart .grid-line { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.dash__chart .area-line {
  fill: none; stroke: var(--zg-mint-500); stroke-width: 2;
  stroke-dasharray: 800; stroke-dashoffset: 800;
  animation: zg-dash 2.2s var(--zg-ease-out) .4s forwards;
}
.dash__chart .area-fill { fill: url(#dashGrad); opacity: 0; animation: fadein 1s ease-out 2s forwards; }
.dash__chart .area-baseline { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; stroke-dasharray: 3 4; }
@keyframes fadein { to { opacity: 1; } }
.dash__chart .pt {
  r: 4; fill: var(--zg-mint-500); opacity: 0;
  animation: fadein .4s ease-out forwards;
}
.dash__chart .tooltip {
  position: absolute; top: 36px; right: 18px;
  background: var(--zg-navy-900);
  border: 1px solid rgba(0,232,190,.4);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: zg-float 3s ease-in-out infinite;
}
.dash__chart .tooltip strong { color: var(--zg-mint-500); font-weight: 800; }
.dash__chart .tooltip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--zg-mint-500); }
.dash__channels {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 14px;
}
.dash__channels .ch {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 10px;
}
.dash__channels .ch .name {
  font-weight: 700; letter-spacing: .08em;
  color: var(--zg-navy-200); margin-bottom: 6px;
  text-transform: uppercase; font-size: 9px;
}
.dash__channels .ch .bar {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.06); overflow: hidden;
  position: relative;
}
.dash__channels .ch .bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--zg-mint-700), var(--zg-mint-500));
  width: 0;
  animation: barFill 1.6s var(--zg-ease-out) 1.2s forwards;
}
@keyframes barFill { to { width: var(--w, 60%); } }
.dash__channels .ch .pct { margin-top: 4px; font-weight: 700; color: #fff; font-size: 12px; }

/* Floating accent cards */
.hero__floatA {
  position: absolute;
  left: -36px; bottom: 42px;
  background: #fff;
  color: var(--zg-navy-900);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 12px;
  animation: zg-float 5s ease-in-out infinite;
  z-index: 2;
}
.hero__floatA .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--zg-mint-500);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--zg-navy-900);
}
.hero__floatA .icon svg { width: 20px; height: 20px; }
.hero__floatA .lbl { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--zg-fg-2); font-weight: 700; }
.hero__floatA .val { font: 800 18px/1 var(--zg-font-display); margin-top: 2px; }

.hero__floatB {
  position: absolute;
  right: -20px; top: 24px;
  background: var(--zg-navy-900);
  color: #fff;
  border: 1px solid rgba(0,232,190,.4);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  animation: zg-float 4s ease-in-out infinite .8s;
  z-index: 2;
}
.hero__floatB .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--zg-grad-brand);
  font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; letter-spacing: .04em;
}
.hero__floatB .txt { font-size: 11px; }
.hero__floatB .txt strong { display: block; }
.hero__floatB .txt span { color: var(--zg-navy-300); }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__floatA { left: 10px; bottom: 10px; }
  .hero__floatB { right: 10px; }
}

/* -------- Logos ticker -------- */
.ticker {
  background: #fff;
  border-top: 1px solid var(--zg-navy-100);
  border-bottom: 1px solid var(--zg-navy-100);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.ticker__label {
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--zg-fg-3);
  margin-bottom: 16px;
}
.ticker__track {
  display: flex; gap: 64px;
  animation: zg-ticker 35s linear infinite;
  width: max-content;
}
.ticker__logo {
  font: 800 22px var(--zg-font-display);
  letter-spacing: .04em;
  color: var(--zg-navy-400);
  opacity: .7;
  white-space: nowrap;
  transition: color 240ms;
}
.ticker__logo:hover { color: var(--zg-navy-600); opacity: 1; }

/* -------- Proposition big numbers -------- */
.prop {
  padding: clamp(64px, 8vw, 120px) 0;
  background: #fff;
}
.prop__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.prop__big {
  font: 800 clamp(96px, 18vw, 240px)/0.9 var(--zg-font-display);
  letter-spacing: -.05em;
  color: var(--zg-navy-900);
  text-align: center;
  position: relative;
}
.prop__big em {
  font-style: normal;
  background: var(--zg-grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prop__big::before {
  content: ""; position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle, rgba(0,232,190,.15), transparent 60%);
  z-index: -1;
}
.prop__big .range-dash {
  color: var(--zg-mint-500);
  font-weight: 500;
  padding: 0 .1em;
}
@media (max-width: 820px) { .prop__grid { grid-template-columns: 1fr; } }

/* -------- OTE steps -------- */
.steps {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--zg-navy-050);
  position: relative;
  overflow: hidden;
}
.steps__head { max-width: 780px; margin-bottom: 56px; }
.steps__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.steps__grid::before {
  content: ""; position: absolute;
  left: 14%; right: 14%; top: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--zg-mint-500) 0%, var(--zg-mint-500) 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
}
.step {
  position: relative;
  padding: 28px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--zg-navy-100);
  box-shadow: 0 2px 6px rgba(16,18,27,.03);
  transition: transform 320ms var(--zg-ease-out), box-shadow 320ms var(--zg-ease-out), border-color 320ms;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--zg-shadow-md); border-color: var(--zg-mint-400); }
.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--zg-navy-900);
  color: var(--zg-mint-500);
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 18px var(--zg-font-display);
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px var(--zg-navy-050);
  position: relative; z-index: 1;
}
.step h3 { font: 700 22px/1.2 var(--zg-font-display); margin: 0 0 10px; color: var(--zg-navy-900); letter-spacing: -.01em; }
.step p { margin: 0 0 16px; font-size: 14px; line-height: 1.55; color: var(--zg-fg-2); }
.step__chip {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--zg-navy-600);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--zg-mint-100);
  border: 1px solid var(--zg-mint-300);
}
.step__list { padding: 0; margin: 0 0 0; list-style: none; }
.step__list li {
  font-size: 13px; line-height: 1.5;
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--zg-fg-1);
  border-bottom: 1px dashed var(--zg-navy-100);
}
.step__list li:last-child { border-bottom: 0; }
.step__list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 12px;
  background: var(--zg-mint-500);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
@media (max-width: 900px) {
  .steps__grid { grid-template-columns: 1fr; }
  .steps__grid::before { display: none; }
}

/* -------- Services grid (home preview) -------- */
.services-preview {
  padding: clamp(72px, 9vw, 120px) 0;
}
.services-preview__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.services-preview__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-tile {
  position: relative;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--zg-navy-100);
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 320ms var(--zg-ease-out), border-color 320ms, background 320ms;
  overflow: hidden;
}
.svc-tile:hover { transform: translateY(-3px); border-color: var(--zg-mint-400); }
.svc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,232,190,.1), transparent 60%);
  opacity: 0; transition: opacity 240ms;
  pointer-events: none;
}
.svc-tile:hover::after { opacity: 1; }
.svc-tile__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--zg-navy-050);
  color: var(--zg-navy-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 240ms, color 240ms;
}
.svc-tile:hover .svc-tile__icon { background: var(--zg-mint-500); color: var(--zg-navy-900); }
.svc-tile__icon svg { width: 22px; height: 22px; }
.svc-tile h4 { margin: 0; font: 700 17px/1.3 var(--zg-font-display); color: var(--zg-navy-900); }
.svc-tile p { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: var(--zg-fg-2); }
@media (max-width: 900px) { .services-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-preview__grid { grid-template-columns: 1fr; } }

/* -------- Plans -------- */
.plans {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--zg-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.plans::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 30% at 50% 0%, rgba(0,232,190,.18), transparent 60%);
  pointer-events: none;
}
.plans__head { text-align: center; max-width: 760px; margin: 0 auto 56px; position: relative; }
.plans__head .lede { color: var(--zg-navy-200); margin: 18px auto 0; }
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.plan {
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 320ms var(--zg-ease-out), border-color 320ms, background 320ms;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(0,232,190,.4); }
.plan__level {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--zg-mint-500);
}
.plan__name {
  font: 800 30px/1 var(--zg-font-display);
  letter-spacing: -.02em;
  margin: 10px 0 8px;
}
.plan__pitch { font-size: 14px; line-height: 1.55; color: var(--zg-navy-200); min-height: 3em; margin: 0 0 24px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 24px; }
.plan__list li {
  padding: 8px 0 8px 26px; font-size: 14px; line-height: 1.5;
  border-bottom: 1px dashed rgba(255,255,255,.1);
  position: relative;
  color: rgba(255,255,255,.86);
}
.plan__list li:last-child { border-bottom: 0; }
.plan__list li::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(0,232,190,.15);
}
.plan__list li::after {
  content: ""; position: absolute; left: 6px; top: 15px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--zg-mint-500);
}
.plan__list li.plus {
  color: #fff; font-weight: 600;
}
.plan__list li.plus::before { background: var(--zg-mint-500); }
.plan__list li.plus::after { background: var(--zg-navy-900); }
.plan .btn { margin-top: auto; justify-content: center; }
.plan--featured {
  background: linear-gradient(180deg, rgba(0,232,190,.08), rgba(0,232,190,.02));
  border-color: var(--zg-mint-500);
  transform: translateY(-8px);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan--featured .ribbon {
  position: absolute; top: -14px; right: 24px;
  background: var(--zg-mint-500);
  color: var(--zg-navy-900);
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,232,190,.4);
}
@media (max-width: 920px) {
  .plans__grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
}

/* -------- Testimonials -------- */
.testi {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #fff;
}
.testi__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--zg-navy-100);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 320ms var(--zg-ease-out), box-shadow 320ms var(--zg-ease-out), border-color 320ms;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--zg-shadow-md); border-color: var(--zg-mint-400); }
.testi-card__metric {
  font: 800 56px/1 var(--zg-font-display);
  letter-spacing: -.03em;
  color: var(--zg-navy-900);
  margin-bottom: 8px;
}
.testi-card__metric em { font-style: normal; background: var(--zg-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.testi-card__mlabel {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--zg-fg-2);
  margin-bottom: 24px;
}
.testi-card__quote {
  font: 500 15px/1.55 var(--zg-font-sans);
  color: var(--zg-fg-1);
  margin: 0 0 20px;
  flex: 1;
}
.testi-card__person { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--zg-navy-100); }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--zg-grad-brand);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
.testi-card__who { font-size: 13px; }
.testi-card__who strong { display: block; color: var(--zg-navy-900); font-weight: 700; }
.testi-card__who span { color: var(--zg-fg-2); font-size: 12px; }
@media (max-width: 900px) { .testi__grid { grid-template-columns: 1fr; } }

/* -------- CTA final -------- */
.cta-final {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 8vw, 120px);
}
.cta-final__inner {
  position: relative;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: var(--zg-navy-900);
  color: #fff;
  text-align: center;
}
.cta-final__inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,232,190,.35), transparent 60%),
    repeating-linear-gradient(135deg, transparent 0 64px, rgba(255,255,255,.03) 64px 65px);
  pointer-events: none;
}
.cta-final__inner h2 {
  font: 800 clamp(32px, 5vw, 64px)/1.05 var(--zg-font-display);
  letter-spacing: -.02em;
  margin: 0 0 16px;
  position: relative;
  text-wrap: balance;
}
.cta-final__inner p { margin: 0 auto 32px; max-width: 56ch; color: var(--zg-navy-200); position: relative; }
.cta-final__ctas { display: inline-flex; gap: 12px; position: relative; flex-wrap: wrap; justify-content: center; }

/* ============================ MOBILE TUNING ============================ */
@media (max-width: 600px) {
  .hero { padding: 36px 0 56px; }
  .hero__title { font-size: 33px; line-height: 1.05; letter-spacing: -.02em; max-width: 100%; }
  .hero__title .stroke-underline::after { bottom: 2px; height: 8px; }
  .hero__sub { font-size: 16px; }
  .hero__badge { font-size: 10.5px; letter-spacing: .08em; padding: 7px 12px 7px 9px; }
  .hero__ctas { gap: 10px; margin-bottom: 36px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__proof { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .hero__proof-item:last-child { grid-column: 1 / -1; }
  .dash { transform: none; padding: 16px; }
  .dash__kpis { gap: 8px; }
  .dash__kpi { padding: 10px; }
  .dash__kpi .val { font-size: 20px; }
  .dash__kpi .delta { font-size: 10px; }
  .dash__channels { grid-template-columns: repeat(2, 1fr); }
  .hero__floatA, .hero__floatB { display: none; }

  .prop__big { font-size: clamp(88px, 30vw, 130px); }

  .steps__head, .services-preview__head, .testi__head, .plans__head { margin-bottom: 36px; }
  .services-preview__head, .testi__head { flex-direction: column; align-items: flex-start; }

  .plan { padding: 26px 22px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }

  .cta-final__inner { border-radius: 24px; }
  .cta-final__ctas { display: flex; width: 100%; }
  .cta-final__ctas .btn { width: 100%; justify-content: center; }
}
