/* =========================
   7kzu — Landing styles
   Bilingual RU / KZ release
   ========================= */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg: #06070d;
  --bg-2: #0a0c14;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e6e8ee;
  --text-muted: #9aa3b2;
  --text-dim: #6b7280;

  --emerald: #10b981;
  --emerald-2: #34d399;
  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --grad: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  --grad-soft: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(59, 130, 246, 0.18) 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --container: 1180px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Background glow ===== */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 0% -10%, rgba(16,185,129,0.10), transparent 60%),
    radial-gradient(1000px 500px at 100% 10%, rgba(59,130,246,0.10), transparent 60%),
    var(--bg);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}
.glow--emerald { width: 520px; height: 520px; background: #10b981; top: -120px; left: -100px; }
.glow--blue    { width: 560px; height: 560px; background: #3b82f6; top: 200px; right: -160px; opacity: 0.4; }
.glow--purple  { width: 420px; height: 420px; background: #6366f1; bottom: -150px; left: 30%; opacity: 0.25; }

/* ===== Glass ===== */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  user-select: none;
}
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 14px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 10px 30px rgba(16,185,129,0.25), 0 8px 30px rgba(59,130,246,0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16,185,129,0.35), 0 12px 40px rgba(59,130,246,0.28);
}

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn--whatsapp { background: #25D366; color: #06281a; }
.btn--telegram { background: #229ED9; color: white; }
.btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
  color: white;
}
.btn--whatsapp:hover, .btn--telegram:hover, .btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* ===== Navbar ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(6, 7, 13, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 68px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand__name {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav__links a { transition: color 0.15s ease; }
.nav__links a:hover { color: var(--text); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}
.brand { flex-shrink: 0; }

/* Language toggle */
.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  gap: 2px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active {
  color: white;
  background: var(--grad);
  box-shadow: 0 6px 18px rgba(16,185,129,0.25);
}

.nav__cta-btn { display: inline-flex; }

.nav__burger {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.nav__burger:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  position: absolute;
  left: 9px;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease, background 0.2s ease;
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 18.5px; }
.nav__burger span:nth-child(3) { top: 25px; }
/* Open state: clear emerald-tinted X — explicit "close" affordance */
.nav__burger--open {
  background: rgba(16, 185, 129, 0.22);
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.10);
}
.nav__burger--open span { background: var(--emerald-2); }
.nav__burger--open span:nth-child(1) { top: 18.5px; transform: rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger--open span:nth-child(3) { top: 18.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  /* Fullscreen overlay below header — use dvh for iOS dynamic URL bar.
     Fallback to vh for older browsers. */
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  background: #06070d;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 110;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu--open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

body.menu-open { overflow: hidden; }
/* Hide floating WhatsApp FAB behind the open menu — it must not poke through */
body.menu-open .fab-wa {
  opacity: 0;
  pointer-events: none;
}
/* On mobile the nav is always opaque so its appearance is identical
   in closed and open states (the user opens the menu and the header
   should not visually change). */
@media (max-width: 760px) {
  .nav {
    background: rgba(6, 7, 13, 0.88);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom-color: var(--border);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
}
.hero__inner { text-align: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-2);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
}
.hero__title {
  font-size: clamp(32px, 7.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
  /* Allow long Russian compounds like "день-в-день" to break cleanly */
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__subtitle {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
}
.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__cta .btn { max-width: 100%; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
.badge-card { max-width: 100%; }
.badge-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.badge-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.badge-card__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-soft);
  color: var(--emerald-2);
  border: 1px solid rgba(16,185,129,0.25);
  font-size: 12px;
  font-weight: 700;
}

/* Hero ticket visual */
.hero__visual { max-width: 880px; margin: 0 auto; padding: 0 6px; }
.hero__visual-card {
  border-radius: var(--radius-xl);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(16,185,129,0.05), rgba(59,130,246,0.04)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.hv-top { display: grid; gap: 18px; }
.hv-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-2);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
.pill--ok { color: #d3f7e5; background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.25); }
.hv-route {
  display: grid; gap: 0;
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.hv-point { display: flex; align-items: flex-start; gap: 12px; padding: 6px 0; text-align: left; }
.hv-dot {
  width: 10px; height: 10px; border-radius: 50%; margin-top: 6px;
  display: inline-block;
  flex-shrink: 0;
}
.hv-dot--from { background: var(--emerald); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
.hv-dot--to   { background: var(--blue);    box-shadow: 0 0 0 4px rgba(59,130,246,0.18); }
.hv-line {
  width: 2px; height: 20px; margin-left: 4px;
  background: linear-gradient(180deg, var(--emerald), var(--blue));
  opacity: 0.5; border-radius: 2px;
}
.hv-point__label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.hv-point__name { font-weight: 600; font-size: 15px; }
.hv-bottom {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
}
.hv-courier { display: flex; align-items: center; gap: 12px; }
.hv-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad);
  color: white; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hv-courier__name { font-weight: 700; font-size: 15px; text-align: left; }
.hv-courier__role { font-size: 12.5px; color: var(--text-muted); text-align: left; }
.hv-stats { display: flex; gap: 18px; }
.hv-stats > div { text-align: right; }
.hv-num { font-weight: 700; font-size: 15px; font-family: var(--font-mono); }
.hv-cap { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== Section ===== */
.section { padding: 100px 0; position: relative; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-2);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.22);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section__title {
  font-size: clamp(28px, 4.2vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 14px;
}
.section__sub {
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0;
}

/* ===== HOW ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.how-card {
  padding: 26px 22px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.how-card::after {
  content: "";
  position: absolute; inset: -1px;
  background: var(--grad);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity 0.3s ease;
}
.how-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 50px rgba(0,0,0,0.35); }
.how-card:hover::after { opacity: 0.22; }
.how-card__num {
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.how-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--emerald-2);
  border: 1px solid rgba(16,185,129,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 12px 0 18px;
}
.how-card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.how-card p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* ===== FEATURES ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feat-card {
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.2s ease;
}
.feat-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feat-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-soft);
  color: var(--emerald-2);
  border: 1px solid rgba(16,185,129,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feat-card h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -0.01em; }
.feat-card p { margin: 0; color: var(--text-muted); font-size: 14px; }
.feat-card--accent {
  background: linear-gradient(180deg, rgba(16,185,129,0.10), rgba(59,130,246,0.06));
  border-color: rgba(16,185,129,0.25);
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.pricing__breakdown { padding: 28px; }
.pricing__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; letter-spacing: -0.01em; margin: 0 0 18px;
}
.pricing__title-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16,185,129,0.12);
  color: var(--emerald-2);
  border: 1px solid rgba(16,185,129,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row__main { display: flex; align-items: center; gap: 14px; }
.price-row__icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}
.price-row__name { font-weight: 600; }
.price-row__hint { color: var(--text-muted); font-size: 13px; }
.price-row__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.price-row__value span { color: var(--text-dim); font-weight: 500; font-size: 12px; margin-left: 4px; }
.pricing__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
}

.pricing__examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.example-card {
  padding: 22px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.example-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.example-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.example-card__tag { font-size: 11px; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; }
.example-card__title { font-weight: 700; font-size: 16px; }
.example-card__calc { display: grid; gap: 8px; margin: 10px 0 16px; }
.example-card__calc > div {
  display: flex; justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
}
.example-card__calc b { color: var(--text); font-weight: 600; font-family: var(--font-mono); }
.example-card__total {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.example-card__total span { color: var(--text-muted); font-size: 13px; }
.example-card__total strong {
  font-size: 22px; letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.example-card--featured {
  background: linear-gradient(180deg, rgba(16,185,129,0.10), rgba(59,130,246,0.06));
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 20px 60px rgba(16,185,129,0.12);
}
.example-card__ribbon {
  position: absolute; top: 14px; right: -32px;
  background: var(--grad);
  color: white;
  font-size: 11px;
  padding: 5px 36px;
  transform: rotate(35deg);
  letter-spacing: 0.06em;
  font-weight: 700;
}

.pricing__guarantee {
  grid-column: span 2;
  display: flex; gap: 14px; align-items: center;
  padding: 18px;
}
.guarantee__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--emerald-2);
  border: 1px solid rgba(16,185,129,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guarantee__title { font-weight: 700; }
.guarantee__text { color: var(--text-muted); font-size: 13.5px; }

/* ===== PRODUCT MOCKUPS ===== */
.mockups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mockup { padding: 26px 22px 22px; position: relative; text-align: center; }
.mockup__tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--emerald-2);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 24px;
}
.mockup__text { margin: 18px 0 0; color: var(--text-muted); font-size: 14px; }

/* device chrome */
.device {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0d1018;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.device--phone {
  max-width: 280px; margin: 0 auto;
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(180deg, #1a1f2b, #0a0d14);
  border: 1px solid var(--border-strong);
  position: relative;
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; background: #06070d; border-radius: 12px; z-index: 2;
}
.phone__screen {
  background: #07090f;
  border-radius: 28px;
  padding: 38px 16px 18px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 360px;
  text-align: left;
}
.phone__head { display: flex; align-items: center; justify-content: space-between; }
.phone__hello { font-weight: 700; font-size: 14px; }
.phone__balance { font-size: 12px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.phone__balance b { color: var(--emerald-2); }
.phone__card {
  background: linear-gradient(180deg, rgba(16,185,129,0.08), rgba(59,130,246,0.04));
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone__pill {
  display: inline-block; align-self: flex-start;
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: rgba(16,185,129,0.12); color: var(--emerald-2); border: 1px solid rgba(16,185,129,0.25);
}
.phone__btn {
  margin-top: 4px;
  background: var(--grad);
  color: white; border: 0; padding: 11px; border-radius: 10px; font-weight: 600;
  box-shadow: 0 8px 20px rgba(16,185,129,0.25);
  font-size: 14px;
}

/* phone mock rows */
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.mock-row b { color: var(--text); font-weight: 600; font-family: var(--font-mono); }
.mock-row--total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
}
.mock-row--total b {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 16px;
}

/* Admin timeline */
.phone__card--timeline { gap: 0; padding: 16px; }
.tl-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  padding: 8px 0;
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: 7px; top: 22px; bottom: -8px;
  width: 2px;
  background: rgba(255,255,255,0.08);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  margin-top: 4px;
}
.tl-item--done .tl-dot {
  background: var(--emerald);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}
.tl-item--done::before { background: linear-gradient(180deg, rgba(16,185,129,0.45), rgba(59,130,246,0.3)); }
.tl-item--active .tl-dot {
  background: var(--blue);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.22);
  animation: pulse 1.6s ease-in-out infinite;
}
.tl-item > div {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.tl-item > div b { font-weight: 600; }
.tl-item > div span { color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; }
.tl-item:not(.tl-item--done):not(.tl-item--active) > div b { color: var(--text-dim); }

.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-2);
  animation: pulse 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); display: inline-block; }
.dot--ok { background: var(--emerald-2); box-shadow: 0 0 0 3px rgba(16,185,129,0.18); }

/* ===== WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-card {
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--emerald-2);
  border: 1px solid rgba(16,185,129,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-card h3 { margin: 0 0 6px; font-size: 17px; letter-spacing: -0.01em; }
.why-card p { margin: 0; color: var(--text-muted); font-size: 14px; }
.why-card--accent {
  background: linear-gradient(180deg, rgba(16,185,129,0.08), rgba(59,130,246,0.05));
  border-color: rgba(16,185,129,0.25);
}

/* ===== CTA ===== */
.cta-section { padding-top: 60px; }
.cta {
  position: relative;
  padding: 56px 32px;
  text-align: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 300px at 50% -10%, rgba(16,185,129,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 30% 50%, rgba(16,185,129,0.20), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(59,130,246,0.20), transparent 50%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta .eyebrow { margin-bottom: 14px; }
.cta__title {
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 12px; font-weight: 800;
}
.cta__sub { color: var(--text-muted); max-width: 560px; margin: 0 auto 28px; }
.cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta__bullets {
  margin-top: 24px;
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; margin-right: 4px;
  border-radius: 50%; background: rgba(16,185,129,0.16); color: var(--emerald-2);
  font-size: 10px; font-weight: 700;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  padding: 56px 0 24px;
  margin-top: 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p { color: var(--text-muted); font-size: 14px; max-width: 320px; margin-top: 12px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin: 0 0 8px;
  font-weight: 600;
}
.footer__col a, .footer__col span {
  color: var(--text-muted); font-size: 14px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-dim); font-size: 13px;
}

/* ===== WhatsApp floating button ===== */
.fab-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #06281a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-wa::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: ringPulse 2.2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.fab-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .mockups { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .nav__links { display: none; }
}

@media (max-width: 760px) {
  .nav__cta-btn { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
  .hero { padding: 56px 0 40px; }
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 36px; }
  .feat-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mockups { grid-template-columns: 1fr; }
  .pricing__examples { grid-template-columns: 1fr; }
  .pricing__guarantee { grid-column: span 1; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hv-bottom { grid-template-columns: 1fr; gap: 16px; }
  .hv-stats { justify-content: space-between; }
  .hv-stats > div { text-align: left; }
  .cta { padding: 40px 22px; }
  .btn--lg { padding: 13px 18px; font-size: 14px; }
  .fab-wa { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .nav__inner { gap: 10px; }
  .hero__title { font-size: 34px; line-height: 1.08; }
  .hero__subtitle { font-size: 14.5px; }
  .cta__bullets { gap: 12px; }
  .lang-btn { padding: 5px 9px; font-size: 11px; }
  .brand__name { font-size: 17px; }
  .badge-card { padding: 9px 14px; font-size: 12.5px; }
  .hero__badge { font-size: 12.5px; padding: 7px 12px; }
  .hero__cta .btn { width: 100%; }
}

/* On phones the brand name is hidden — only the gradient mark stays.
   This guarantees room for [mark] [lang switch] [close burger] at 320-430. */
@media (max-width: 430px) {
  .brand__name { display: none; }
}

@media (max-width: 380px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 14px; }
  .hero__title { font-size: 30px; }
  .badge-card { padding: 8px 12px; font-size: 12px; }
  .badge-card__ico { width: 18px; height: 18px; }
  .lang-btn { padding: 4px 8px; font-size: 10.5px; letter-spacing: 0.02em; }
  .nav__inner { gap: 8px; height: 64px; }
  .brand__name { font-size: 16px; }
  .brand { gap: 8px; }
  .nav__burger { width: 36px; height: 36px; }
  .nav__burger span { width: 16px; left: 10px; }
  .nav__burger span:nth-child(1) { top: 11px; }
  .nav__burger span:nth-child(2) { top: 17px; }
  .nav__burger span:nth-child(3) { top: 23px; }
  .nav__burger--open span:nth-child(1) { top: 17px; }
  .nav__burger--open span:nth-child(3) { top: 17px; }
}

/* Sub-360px (e.g. iPhone SE 1st gen at 320) — keep everything fitting in nav */
@media (max-width: 340px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 12px; }
  .nav__inner { gap: 6px; height: 60px; }
  .brand__mark svg { width: 24px; height: 24px; }
  .brand__name { font-size: 15px; }
  .lang-btn { padding: 4px 7px; font-size: 10px; }
  .nav__burger { width: 34px; height: 34px; }
  .nav__burger span { width: 14px; left: 10px; }
  .hero__title { font-size: 26px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
