/* ============================================================
   SignalFleet — editorial dark, restrained green accent.
   Flat, high-contrast, minimal motion. No neon glow, no mono.
   Type: Saira (display) + Hanken Grotesk (body).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0B0E0C;
  --bg-2:      #0F120E;
  --surface:   #13170F;
  --surface-2: #181D14;
  --line:      rgba(236, 239, 233, 0.12);
  --line-2:    rgba(236, 239, 233, 0.07);
  --line-strong: rgba(236, 239, 233, 0.22);

  --green:   #B6FF3B;
  --green-700: #93D62B;

  --text:    #ECEFE9;
  --muted:   #97A595;
  --muted-2: #69755F;
  --ink:     #0B0E0C;   /* text on green */

  --font-display: "Saira", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1160px;
  --radius: 6px;
  --radius-sm: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; touch-action: manipulation; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--green); color: var(--ink);
  padding: 11px 18px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; outline: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }
.section { padding-block: clamp(60px, 8vw, 120px); position: relative; }
.section--tight { padding-block: clamp(44px, 5.5vw, 76px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-700); }
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.015em; }
.h-xl { font-size: clamp(2.7rem, 6.6vw, 5.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.96; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.25rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.0; }
.h-md { font-size: clamp(1.4rem, 2.6vw, 1.95rem); font-weight: 700; }
.lead { font-size: clamp(1.06rem, 1.55vw, 1.22rem); color: var(--muted); max-width: 56ch; line-height: 1.55; }
.section-head { max-width: 60ch; margin-bottom: clamp(38px, 4.5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.accent { color: var(--green); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: transform 0.18s var(--ease), background 0.18s, border-color 0.18s, color 0.18s;
}
.btn--primary { background: var(--green); color: var(--ink); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn .arrow { transition: transform 0.18s var(--ease); }
@media (hover: hover) {
  .btn--primary:hover { background: #c8ff5e; transform: translateY(-2px); }
  .btn--ghost:hover { border-color: var(--green); color: var(--green); }
  .btn:hover .arrow { transform: translateX(3px); }
}

/* ---------- Brand / logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 38px; height: 38px; flex: none; color: #C8FF52; }
.brand__mark .r1 { stroke: #B6FF3B; stroke-width: 4; opacity: 1; }
.brand__mark .r2 { stroke: #7CA62C; stroke-width: 4; opacity: 1; }
.brand__mark .r3 { stroke: #36481A; stroke-width: 3.5; opacity: 1; }
.brand__mark circle:last-child { r: 1.7; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.025em; color: var(--text); }
.brand__name span { color: var(--green); font-size: 0.8em; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
}
.header.is-stuck {
  background: rgba(11, 14, 12, 0.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 0.96rem; color: var(--muted); font-weight: 500; transition: color 0.18s; position: relative; }
.nav__links a.is-active { color: var(--text); }
@media (hover: hover) { .nav__links a:hover { color: var(--text); } }
.nav__links a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--green); }
.nav__phone { font-size: 0.94rem; color: var(--text); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-weight: 600; }
.nav__phone svg { width: 15px; height: 15px; color: var(--green); }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: 0.25s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: 0.25s; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(44px, 6vw, 88px); padding-bottom: clamp(52px, 7vw, 104px); }
.hero__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .glow { color: var(--green); }
.hero__lead { margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line-2); }
.hero__meta li { font-size: 0.92rem; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.hero__meta li::before { content: ""; width: 6px; height: 6px; background: var(--green); flex: none; }

/* Hero info panel (flat, honest) */
.readout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.readout__top { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.readout__live { display: none; }
.readout__rows { display: grid; gap: 0; }
.readout__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.readout__row:first-child { padding-top: 0; }
.readout__row:last-child { border-bottom: 0; padding-bottom: 0; }
.readout__label { font-size: 0.92rem; color: var(--muted); }
.readout__val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--text); letter-spacing: -0.01em; }
.readout__val small { font-size: 0.92rem; color: var(--green); font-weight: 600; }

/* ---------- Stats (editorial row) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 30px 26px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 3.4vw, 2.9rem); color: var(--green); line-height: 1; letter-spacing: -0.03em; }
.stat__num small { font-size: 0.42em; color: var(--text); font-weight: 700; }
.stat__label { margin-top: 12px; color: var(--muted); font-size: 0.94rem; }

/* ---------- Generic card grid ---------- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
@media (hover: hover) { .card:hover { border-color: var(--line-strong); background: var(--surface-2); } }
.card__icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center; background: rgba(182, 255, 59, 0.08); color: var(--green); margin-bottom: 18px; }
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Platforms (Uber / Bolt) ---------- */
.platform { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px; transition: border-color 0.2s, background 0.2s; }
@media (hover: hover) { .platform:hover { border-color: var(--line-strong); background: var(--surface-2); } }
.platform__logo { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5.2vw, 3.6rem); letter-spacing: -0.05em; line-height: 1; margin-bottom: 20px; }
.platform__logo--uber { color: #ffffff; }
.platform__logo--bolt { color: #34D186; }
.platform p { color: var(--muted); font-size: 1rem; max-width: 48ch; }

/* ---------- Benefits ---------- */
.benefit--compact { align-items: center; }
.benefit--compact b { margin-bottom: 0; }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.benefit { display: flex; gap: 15px; align-items: flex-start; padding: 24px 26px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.benefit:nth-child(3n) { border-right: 0; }
.benefit__check { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 2px; }
.benefit__check svg { width: 22px; height: 22px; }
.benefit b { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; display: block; margin-bottom: 4px; }
.benefit span { color: var(--muted); font-size: 0.93rem; }

/* ---------- Process (numbered steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 30px 26px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; padding-left: 0; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--line-strong); line-height: 1; letter-spacing: -0.04em; }
.step.is-visible .step__num, .step .step__num { color: rgba(182, 255, 59, 0.3); }
.step__bar { display: none; }
.step h3 { font-size: 1.12rem; margin: 18px 0 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Earnings (signal bars) ---------- */
.earn { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.earn__panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.earn__panel-top { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; display: flex; justify-content: space-between; }
.bars { display: flex; align-items: flex-end; gap: 22px; height: 200px; }
.bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; max-width: 92px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; background: var(--surface-2); position: relative; height: 0; transition: height 1s var(--ease); overflow: hidden; }
.bar i { position: absolute; inset: 0; background: var(--green); }
.bar--week { border: 1px solid var(--line-strong); }
.bar--week i { background: var(--surface-2); }
.is-visible .bar { height: var(--h); }
.bar-cap { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; text-align: center; }
.bar-cap small { display: block; font-weight: 500; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; font-family: var(--font-body); }
.earn__list { display: grid; gap: 15px; }
.earn__list li { display: flex; gap: 14px; align-items: flex-start; }
.earn__list .ck { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 2px; }
.earn__list .ck svg { width: 22px; height: 22px; }
.earn__list b { color: var(--text); font-family: var(--font-display); font-weight: 700; }

/* ---------- Coverage (static diagram) ---------- */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* Croatia map + radar */
.cromap { position: relative; width: 100%; max-width: 480px; margin-inline: auto; aspect-ratio: 863 / 838; }
.cromap__map { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0.42; }
.cromap__grid {
  position: absolute; left: 46%; top: 44%; width: 122%; aspect-ratio: 1;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: repeating-radial-gradient(circle, transparent 0 46px, rgba(182,255,59,0.11) 46px 47px);
  -webkit-mask: radial-gradient(circle, #000 0%, #000 50%, transparent 70%);
          mask: radial-gradient(circle, #000 0%, #000 50%, transparent 70%);
  pointer-events: none;
}
.cromap__grid::before, .cromap__grid::after { content: ""; position: absolute; background: rgba(182,255,59,0.11); }
.cromap__grid::before { left: 0; right: 0; top: 50%; height: 1px; }
.cromap__grid::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.cromap__sweep {
  position: absolute; left: 46%; top: 44%; width: 122%; aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(182,255,59,0.36) 0deg, rgba(182,255,59,0.10) 28deg, rgba(182,255,59,0) 80deg, rgba(182,255,59,0) 360deg);
  -webkit-mask: radial-gradient(circle, #000 0%, #000 66%, transparent 100%);
          mask: radial-gradient(circle, #000 0%, #000 66%, transparent 100%);
  animation: cromapSweep 6s linear infinite;
  pointer-events: none;
}
@keyframes cromapSweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.ping--below .lbl { left: 50%; top: 14px; transform: translateX(-50%); }
.ping--left .lbl { left: auto; right: 14px; top: -7px; }
.ping--above .lbl { left: 50%; top: -20px; transform: translateX(-50%); }
.chip--more { border-color: var(--green); color: var(--green); }
@media (prefers-reduced-motion: reduce) { .cromap__sweep { animation: none; transform: translate(-50%, -50%); opacity: 0.5; } }
.scope { position: relative; aspect-ratio: 1; width: 100%; max-width: 440px; margin-inline: auto; border-radius: 50%; overflow: hidden; }
.scope__rings { position: absolute; inset: 0; border-radius: 50%; }
.scope__rings span { position: absolute; border: 1px solid var(--line); border-radius: 50%; inset: 0; }
.scope__rings span:nth-child(2) { inset: 14%; }
.scope__rings span:nth-child(3) { inset: 28%; }
.scope__rings span:nth-child(4) { inset: 42%; border-color: var(--line-2); }
.scope__cross { position: absolute; inset: 0; }
.scope__cross::before, .scope__cross::after { content: ""; position: absolute; background: var(--line-2); }
.scope__cross::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-0.5px); }
.scope__cross::after { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-0.5px); }
.scope__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(182, 255, 59, 0.42), rgba(182, 255, 59, 0.10) 32deg, rgba(182, 255, 59, 0) 90deg, rgba(182, 255, 59, 0) 360deg);
  animation: sweep 4.5s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.scope__core { position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--green); transform: translate(-50%, -50%); z-index: 3; }
.ping { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
.ping .pt { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.ping .lbl { position: absolute; left: 15px; top: -7px; font-size: 11px; letter-spacing: 0.02em; color: var(--muted); white-space: nowrap; }
.ping.is-hub .pt { width: 11px; height: 11px; }
.ping.is-hub .lbl { color: var(--text); font-weight: 700; }

.coverage__cities { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip { font-size: 0.9rem; color: var(--muted); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 15px; display: inline-flex; align-items: center; gap: 9px; transition: border-color 0.18s, color 0.18s; }
@media (hover: hover) { .chip:hover { border-color: var(--line-strong); color: var(--text); } }
.chip::before { content: ""; width: 6px; height: 6px; background: var(--green); flex: none; }
.chip--hub { color: var(--text); font-weight: 600; }

/* WhatsApp inline link */
.wa-note { margin-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; font-size: 0.96rem; color: var(--muted); }
.wa-note p { margin: 0; color: var(--muted); max-width: 52ch; }
.wa-link { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; max-width: 340px; color: var(--green); font-family: var(--font-display); font-weight: 700; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 14px 18px; transition: border-color 0.18s, background 0.18s, transform 0.18s; }
@media (hover: hover) { .wa-link:hover { background: rgba(182, 255, 59, 0.06); border-color: var(--green); } }
.wa-link svg { width: 17px; height: 17px; }

/* ---------- Requirements ---------- */
.reqs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.req { padding: 28px 26px; border-right: 1px solid var(--line); }
.req:last-child { border-right: 0; }
.req__n { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: rgba(182, 255, 59, 0.35); letter-spacing: -0.03em; }
.req h3 { font-size: 1.12rem; margin: 14px 0 8px; }
.req p { color: var(--muted); font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(40px, 6vw, 76px); text-align: center; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { margin-inline: auto; margin-bottom: 32px; }
.cta-band__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Highlight band (fast start) ---------- */
.highlight { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: var(--radius); padding: 28px 32px; }
.highlight__icon { flex: none; width: 50px; height: 50px; border-radius: 12px; background: rgba(182, 255, 59, 0.1); color: var(--green); display: grid; place-items: center; }
.highlight__icon svg { width: 26px; height: 26px; }
.highlight__text { flex: 1; min-width: 240px; }
.highlight__text h3 { font-size: 1.3rem; margin-bottom: 5px; }
.highlight__text p { color: var(--muted); font-size: 1rem; }
.highlight .btn { flex: none; }
@media (max-width: 560px) { .highlight .btn { width: 100%; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; min-height: 118px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2397A595' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex: none; }
.form__note { font-size: 0.82rem; color: var(--muted); }
.form-success { display: none; text-align: center; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.form-success.show { display: block; }
.form-success svg { width: 44px; height: 44px; color: var(--green); margin: 0 auto 14px; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); }
.form-card__head { margin-bottom: 24px; }
.form-card__head h2 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card__head p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

/* contact info */
.cinfo { display: grid; gap: 0; margin-top: 8px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cinfo li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cinfo li:last-child { border-bottom: 0; }
.cinfo .ic { flex: none; width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(182, 255, 59, 0.08); color: var(--green); display: grid; place-items: center; }
.cinfo .ic svg { width: 20px; height: 20px; }
.cinfo .k { font-size: 0.78rem; color: var(--muted); margin-bottom: 3px; }
.cinfo .v { font-size: 1.04rem; color: var(--text); font-weight: 600; }
.cinfo .v small { color: var(--muted); font-weight: 400; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding-top: clamp(44px, 5vw, 76px); padding-bottom: clamp(26px, 3.5vw, 44px); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 18px; }

/* prose */
.prose p { color: var(--muted); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }

/* ---------- Price (najam) ---------- */
.price-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5.4vw, 3.5rem); line-height: 1; letter-spacing: -0.03em; color: var(--green); }
.price-amount small { font-size: 0.3em; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-left: 6px; }
.price-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(48px, 6vw, 72px) 28px; margin-top: clamp(40px, 6vw, 80px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 38ch; margin-top: 16px; }
.footer__col h4 { font-size: 0.84rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; font-family: var(--font-display); }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--text); font-size: 0.95rem; opacity: 0.8; transition: opacity 0.18s, color 0.18s; }
@media (hover: hover) { .footer__col a:hover { opacity: 1; color: var(--green); } }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer__bottom p { font-size: 0.84rem; color: var(--muted); }

/* ---------- Floating WhatsApp ---------- */
.wa-fab {
  position: fixed; z-index: 120;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.6);
  transition: transform 0.18s var(--ease);
  touch-action: manipulation;
}
@media (hover: hover) { .wa-fab:hover { transform: translateY(-3px); } }
.wa-fab svg { width: 30px; height: 30px; }
@media (max-width: 560px) {
  .wa-fab {
    width: 52px; height: 52px;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* ---------- Reveal (subtle) ---------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.06s; }
[data-reveal][data-delay="2"] { transition-delay: 0.12s; }
[data-reveal][data-delay="3"] { transition-delay: 0.18s; }
[data-reveal][data-delay="4"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: calc(74px + env(safe-area-inset-top)); right: 0; left: 0; bottom: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(11, 14, 12, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0.3s;
    padding: 22px 26px 28px;
    z-index: 90;
  }
  body.menu-open .nav__menu { transform: translateY(0); visibility: visible; }
  .nav__menu .nav__links { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav__menu .nav__links a { padding: 12px 0; font-size: 1.1rem; width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav__menu .nav__links a.is-active { color: var(--green); }
  .nav__menu .nav__links a.is-active::after { display: none; }
  .nav__menu .nav__phone { display: inline-flex; margin-top: 16px; }
  .nav__menu .btn { margin-top: 18px; width: 100%; }

  .hero__grid { grid-template-columns: 1fr; }
  .readout { max-width: 480px; }
  .earn, .coverage, .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: 0; padding-left: 0; }
  .step { padding-top: 24px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(3n) { border-right: 1px solid var(--line); }
  .benefit:nth-child(2n) { border-right: 0; }
  .reqs { grid-template-columns: repeat(2, 1fr); }
  .req:nth-child(2) { border-right: 0; }
  .req:nth-child(1), .req:nth-child(2) { border-bottom: 1px solid var(--line); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col a { display: inline-block; padding-block: 8px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: max(18px, env(safe-area-inset-left)) max(18px, env(safe-area-inset-right)); }
  .stats, .steps, .benefits, .reqs, .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stat, .req { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child, .req:last-child { border-bottom: 0; }
  .benefit { border-right: 0 !important; }
  .step { border-left: 0; padding-left: 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .bars { height: 165px; gap: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .bar { height: var(--h); }
}

/* ---------- Mobile draggable slider (Prednosti) ---------- */
.slider-viewport { overflow: hidden; touch-action: pan-y; cursor: grab; }
.slider-viewport.is-grabbing { cursor: grabbing; }
@media (max-width: 768px) {
  .benefits--slider {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    border: 0;
    gap: 0;
    will-change: transform;
  }
  .benefits--slider .benefit {
    flex: 0 0 auto;
    width: 78vw;
    max-width: 300px;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius);
    margin-right: 14px;
    opacity: 1 !important;
    transform: none !important;
  }
}
