/* ===========================================================
   MOMZAK VPN — Landing Page Styles
   Aesthetic: aggressive cyberpunk / gaming
   Palette: pure black + carmine red + red neon glow
   =========================================================== */

:root {
  --bg: #050505;
  --bg-1: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #16191c;
  --line: #1f2226;
  --line-2: #2a2d31;
  --text: #f4f4f5;
  --text-mute: #a0a3a8;
  --text-dim: #6b6e73;
  --red: #ff1f2e;
  --red-2: #e10817;
  --red-3: #b3050f;
  --red-glow: rgba(255, 31, 46, 0.45);
  --red-glow-2: rgba(255, 31, 46, 0.15);
  --white: #ffffff;

  --f-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  --container: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 1200px 800px at 50% -200px, rgba(255,31,46,0.18), transparent 70%),
    radial-gradient(ellipse 900px 600px at 100% 30%, rgba(255,31,46,0.08), transparent 60%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 40%, transparent 100%);
}

/* Scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.008) 0,
    rgba(255,255,255,0.008) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}

section { position: relative; z-index: 3; }

/* ===== TYPOGRAPHY ===== */
.h-display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.h-mono {
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--red);
}
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  border: 1px solid rgba(255,31,46,0.35);
  border-radius: 999px;
  background: rgba(255,31,46,0.06);
}
.h-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,60%,100%{opacity:1} 30%{opacity:0.2} }

.red { color: var(--red); }
.text-mute { color: var(--text-mute); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(5,5,5,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo img { width: 34px; height: 34px; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--red-2), 0 8px 24px -8px var(--red-glow), 0 0 40px -8px var(--red-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--red), 0 12px 32px -6px var(--red-glow), 0 0 60px -6px var(--red-glow);
  background: #ff2e3c;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255,31,46,0.04);
}
.btn-lg {
  padding: 18px 34px;
  font-size: 15px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-halo {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,31,46,0.35), transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow-row {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 28px;
}
.hero h1 .cut {
  display: inline-block;
  color: var(--red);
  position: relative;
  text-shadow: 0 0 30px rgba(255,31,46,0.5);
}
.hero h1 .cut::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  box-shadow: 0 0 20px var(--red);
}
.hero-sub {
  font-size: 19px;
  color: var(--text-mute);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.5;
}
.hero-sub b { color: var(--white); font-weight: 600; }
.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Live IP terminal */
.ip-plate {
  background: linear-gradient(135deg, rgba(20,20,22,0.9), rgba(10,10,12,0.9));
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 18px 20px;
  max-width: 520px;
  position: relative;
  overflow: hidden;
}
.ip-plate::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}
.ip-plate-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ip-plate-head .dots {
  display: flex;
  gap: 5px;
}
.ip-plate-head .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2);
}
.ip-plate-head .dots span:nth-child(1) { background: #ff5555; }
.ip-plate-head .dots span:nth-child(2) { background: #ffb340; }
.ip-plate-head .dots span:nth-child(3) { background: #34c759; }
.ip-plate-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-family: var(--f-mono);
  font-size: 13px;
  border-bottom: 1px dashed var(--line);
}
.ip-plate-row:last-child { border-bottom: 0; }
.ip-plate-row .key { color: var(--text-dim); }
.ip-plate-row .val { color: var(--white); font-weight: 500; }
.ip-plate-row .status-red { color: var(--red); animation: pulseRed 1.6s infinite; }
@keyframes pulseRed { 0%,100%{opacity:1} 50%{opacity:0.55} }

/* Hero visual — hosts the iPhone with Telegram bot */
.hero-visual {
  position: relative;
  min-height: 640px;
  justify-self: end;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 50% 50%, rgba(255,31,46,0.35), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.hero-visual-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,31,46,0.12);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
  z-index: 0;
}
.hero-visual-ring::before,
.hero-visual-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,31,46,0.08);
}
.hero-visual-ring::before { inset: 30px; }
.hero-visual-ring::after {
  inset: -30px;
  border-style: dashed;
  border-color: rgba(255,31,46,0.15);
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* Hero trust strip */
.hero-strip {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-strip-item .n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.hero-strip-item .n .red { text-shadow: 0 0 20px var(--red-glow); }
.hero-strip-item .l {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ===== SECTION BASICS ===== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-header {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header.left {
  margin-left: 0;
  text-align: left;
}
.section-header h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
  margin: 16px 0 20px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.55;
}

/* ===== PROBLEM ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.problem-card:hover {
  border-color: rgba(255,31,46,0.5);
  transform: translateY(-4px);
}
.problem-card .cross {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,31,46,0.1);
  border: 1px solid rgba(255,31,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
  position: relative;
}
.problem-card .cross svg { width: 22px; height: 22px; }
.problem-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--white);
  text-transform: uppercase;
}
.problem-card p {
  margin: 0;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.55;
}
.problem-card .glitch-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.3;
}

/* ===== SOLUTION ===== */
.solution {
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(255,31,46,0.12), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.counter-cell {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.counter-cell:last-child { border-right: 0; }
.counter-cell .icn {
  width: 32px; height: 32px;
  color: var(--red);
  margin-bottom: 14px;
}
.counter-cell .num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.counter-cell .num .suffix {
  font-size: 28px;
  color: var(--red);
}
.counter-cell .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: linear-gradient(180deg, var(--bg-1) 0%, #080808 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(255,31,46,0.4); }
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(255,31,46,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(255,31,46,0.08);
  border: 1px solid rgba(255,31,46,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.feature-card p {
  color: var(--text-mute);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}
.feature-card .tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,31,46,0.1);
  color: var(--red);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,31,46,0.25);
}

/* Feature card VARIANT - big */
.feature-card.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,31,46,0.1), transparent 60%), var(--bg-1);
  border-color: rgba(255,31,46,0.35);
}
.feature-card.wide h3 { font-size: 28px; }

/* ===== COMPARISON TABLE ===== */
.compare {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-row > div:last-child { border-right: 0; }
.compare-head {
  background: var(--bg-2);
}
.compare-head > div {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.compare-head .col-momzak {
  color: var(--red);
  background: rgba(255,31,46,0.06);
  position: relative;
}
.compare-head .col-momzak::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}
.compare-row .label {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}
.compare-row .cell {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.compare-row .cell.bad {
  color: #ff6b74;
}
.compare-row .cell.mid {
  color: #ffb340;
}
.compare-row .cell.good {
  color: var(--red);
  font-weight: 600;
}
.compare-row .col-momzak {
  background: rgba(255,31,46,0.04);
}
.compare-row .cell svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== DEVICES ===== */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.device-tile {
  aspect-ratio: 1;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.device-tile:hover {
  border-color: var(--red);
  background: rgba(255,31,46,0.04);
}
.device-tile.active {
  border-color: var(--red);
  background: rgba(255,31,46,0.06);
}
.device-tile.active::after {
  content: "СЕЙЧАС";
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--red);
  padding: 2px 6px;
  border: 1px solid rgba(255,31,46,0.4);
  border-radius: 999px;
  background: rgba(255,31,46,0.08);
}
.device-tile svg {
  width: 40px; height: 40px;
  color: var(--text-mute);
  transition: color 0.25s;
}
.device-tile:hover svg,
.device-tile.active svg { color: var(--red); }
.device-tile span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.download-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 24px 32px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.download-row .os-name {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.download-row .os-name b { color: var(--white); font-weight: 700; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: rgba(255,31,46,0.4); }
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--red);
}
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-3), #400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255,31,46,0.35);
}
.review-user-info { display: flex; flex-direction: column; }
.review-user-info .name { font-weight: 600; font-size: 14px; color: var(--white); }
.review-user-info .role { font-size: 12px; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(255,31,46,0.5); }
.faq-q {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
}
.faq-q:hover { color: var(--red); }
.faq-q .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.25s;
}
.faq-item.open .plus { transform: rotate(45deg); background: rgba(255,31,46,0.1); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 28px 22px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(255,31,46,0.2), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.final-cta-mask {
  position: absolute;
  top: 50%; left: 50%;
  width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  z-index: 0;
  overflow: hidden;
  border-radius: 50%;
  filter: blur(6px) saturate(1.2);
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}
.final-cta-mask img {
  position: absolute;
  width: 240%;
  height: 240%;
  top: -62%;
  left: -152%;
  max-width: none;
}
.final-cta .container { position: relative; z-index: 3; }
.final-cta h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--white);
}
.final-cta h2 .red { color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.final-cta p {
  font-size: 20px;
  color: var(--text-mute);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  background: #030303;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--f-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--text-mute);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--white); }
.footer-brand p {
  color: var(--text-mute);
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 340px;
  line-height: 1.55;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   iPHONE (hero-embedded, realistic)
   Structure: .iphone > .iphone-body > .iphone-screen
   Dimensions scale from width (--iphone-w)
   ============================================================ */
.iphone {
  --iphone-w: 340px;
  width: var(--iphone-w);
  aspect-ratio: 9 / 19.5;
  position: relative;
  z-index: 2;
  animation: iphoneFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1200px;
}
@keyframes iphoneFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-14px) rotate(-3deg); }
}

/* Soft shadow puddle under phone */
.iphone-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.8), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

/* Phone titanium frame */
.iphone-body {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--iphone-w) * 0.16);
  background:
    linear-gradient(135deg, #3a3d42 0%, #1a1c1f 25%, #2a2d31 50%, #14161a 75%, #3a3d42 100%);
  padding: calc(var(--iphone-w) * 0.028);
  box-shadow:
    /* outer ambient */
    0 40px 80px -20px rgba(0, 0, 0, 0.75),
    0 20px 40px -10px rgba(0, 0, 0, 0.5),
    /* red rim glow */
    0 0 60px -10px rgba(255, 31, 46, 0.4),
    /* inner titanium bevel */
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 2px 3px rgba(255, 255, 255, 0.06),
    inset 0 -2px 3px rgba(0, 0, 0, 0.6);
}

/* Metallic sheen line */
.iphone-body::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -1px;
  width: 3px;
  height: 25%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
  border-radius: 2px;
  pointer-events: none;
}

/* Side buttons */
.iphone-side-btn {
  position: absolute;
  background: linear-gradient(90deg, #2a2d31, #14161a);
  border-radius: 1px;
  pointer-events: none;
}
.iphone-side-btn--power {
  top: 22%;
  right: -2px;
  width: 3px;
  height: 12%;
  background: linear-gradient(270deg, #2a2d31, #14161a);
}
.iphone-side-btn--volup {
  top: 20%;
  left: -2px;
  width: 3px;
  height: 8%;
}
.iphone-side-btn--voldn {
  top: 30%;
  left: -2px;
  width: 3px;
  height: 8%;
}
.iphone-side-btn--mute {
  top: 13%;
  left: -2px;
  width: 3px;
  height: 4%;
}

/* Inner screen */
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--iphone-w) * 0.135);
  background: #17212b;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1.5px #000;
}

/* Dynamic island */
.iphone-island {
  position: absolute;
  top: calc(var(--iphone-w) * 0.028);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--iphone-w) * 0.28);
  height: calc(var(--iphone-w) * 0.075);
  background: #000;
  border-radius: 999px;
  z-index: 20;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.05);
}
.iphone-island::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1c 30%, #050505 60%);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 0.5px rgba(70, 100, 180, 0.3);
}

/* Home indicator */
.iphone-home-bar {
  position: absolute;
  bottom: calc(var(--iphone-w) * 0.02);
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  z-index: 5;
}

/* ===== TELEGRAM UI (inside iPhone) ===== */
.tg-status {
  padding: calc(var(--iphone-w) * 0.035) calc(var(--iphone-w) * 0.085) calc(var(--iphone-w) * 0.012);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
  color: #fff;
  font-size: calc(var(--iphone-w) * 0.041);
  font-weight: 600;
  position: relative;
  z-index: 15;
}
.tg-time { font-variant-numeric: tabular-nums; }
.tg-status-icons {
  display: flex;
  align-items: center;
  gap: calc(var(--iphone-w) * 0.012);
}
.tg-status-icons svg {
  height: calc(var(--iphone-w) * 0.035);
  width: auto;
  color: #fff;
}

/* TG header */
.tg-header {
  display: flex;
  align-items: center;
  gap: calc(var(--iphone-w) * 0.025);
  padding: calc(var(--iphone-w) * 0.018) calc(var(--iphone-w) * 0.035);
  background: #212d3b;
  border-bottom: 0.5px solid #0f151c;
  position: relative;
  z-index: 10;
}
.tg-back {
  color: #6ab3f3;
  font-size: calc(var(--iphone-w) * 0.075);
  font-weight: 300;
  line-height: 1;
  padding-right: calc(var(--iphone-w) * 0.008);
  font-family: -apple-system, sans-serif;
}
.tg-avatar {
  width: calc(var(--iphone-w) * 0.11);
  height: calc(var(--iphone-w) * 0.11);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff2c3a, #7a020a);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--iphone-w) * 0.018);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.tg-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}
.tg-title {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
  min-width: 0;
}
.tg-title .name {
  font-size: calc(var(--iphone-w) * 0.046);
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(var(--iphone-w) * 0.012);
}
.tg-title .name svg {
  width: calc(var(--iphone-w) * 0.038);
  height: calc(var(--iphone-w) * 0.038);
  color: #4fb3ff;
  flex-shrink: 0;
}
.tg-title .st {
  font-size: calc(var(--iphone-w) * 0.035);
  color: #7d8e9e;
  display: flex;
  align-items: center;
}
.tg-title .st .dot {
  display: inline-block;
  width: calc(var(--iphone-w) * 0.018);
  height: calc(var(--iphone-w) * 0.018);
  background: #4dd07a;
  border-radius: 50%;
  margin-right: calc(var(--iphone-w) * 0.012);
}
.tg-header-menu {
  display: flex;
  flex-direction: column;
  gap: calc(var(--iphone-w) * 0.008);
  padding: calc(var(--iphone-w) * 0.015);
}
.tg-header-menu span {
  width: calc(var(--iphone-w) * 0.012);
  height: calc(var(--iphone-w) * 0.012);
  background: #7d8e9e;
  border-radius: 50%;
}

/* Chat body */
.tg-chat {
  flex: 1;
  overflow: hidden;
  padding: calc(var(--iphone-w) * 0.03) calc(var(--iphone-w) * 0.025);
  display: flex;
  flex-direction: column;
  gap: calc(var(--iphone-w) * 0.022);
  background:
    /* subtle chat wallpaper pattern */
    radial-gradient(circle at 20% 10%, rgba(255,31,46,0.06), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(75, 179, 255, 0.04), transparent 40%),
    #0e1621;
  position: relative;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
}
.tg-date {
  align-self: center;
  background: rgba(0,0,0,0.4);
  color: #c8d6e5;
  font-size: calc(var(--iphone-w) * 0.033);
  font-weight: 600;
  padding: calc(var(--iphone-w) * 0.008) calc(var(--iphone-w) * 0.028);
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: calc(var(--iphone-w) * 0.008);
}
.tg-msg {
  max-width: 82%;
  padding: calc(var(--iphone-w) * 0.022) calc(var(--iphone-w) * 0.032) calc(var(--iphone-w) * 0.018);
  border-radius: calc(var(--iphone-w) * 0.045);
  font-size: calc(var(--iphone-w) * 0.041);
  line-height: 1.35;
  color: #fff;
  position: relative;
  animation: msgIn 0.5s ease both;
  word-wrap: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.tg-msg.in {
  align-self: flex-start;
  background: #182533;
  border-bottom-left-radius: calc(var(--iphone-w) * 0.012);
}
.tg-msg.out {
  align-self: flex-end;
  background: #2b5278;
  border-bottom-right-radius: calc(var(--iphone-w) * 0.012);
}
.tg-msg .time {
  font-size: calc(var(--iphone-w) * 0.03);
  color: rgba(255,255,255,0.55);
  float: right;
  margin: calc(var(--iphone-w) * 0.018) 0 0 calc(var(--iphone-w) * 0.02);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.tg-msg .rd-tick {
  width: calc(var(--iphone-w) * 0.038);
  height: calc(var(--iphone-w) * 0.028);
  color: #6ab3f3;
  margin-left: 2px;
}
.tg-msg .b { color: #6ab3f3; font-weight: 600; }
.tg-msg .rd { color: #ff5a6a; font-weight: 600; }
.tg-msg strong { font-weight: 700; }

/* Staggered entry */
.msg-1 { animation-delay: 0.4s; }
.msg-2 { animation-delay: 0.9s; }
.msg-3 { animation-delay: 1.4s; }
.msg-4 { animation-delay: 1.9s; }
.msg-5 { animation-delay: 2.4s; }

/* Chat CTA button (inside chat) */
.tg-cta-btn {
  align-self: stretch;
  margin: calc(var(--iphone-w) * 0.015) 0 0;
  padding: calc(var(--iphone-w) * 0.03) calc(var(--iphone-w) * 0.03);
  background: linear-gradient(135deg, #ff2c3a, #c1030d);
  color: #fff;
  font-family: var(--f-display);
  font-size: calc(var(--iphone-w) * 0.043);
  font-weight: 700;
  text-align: center;
  border-radius: calc(var(--iphone-w) * 0.035);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--iphone-w) * 0.015);
  animation: msgIn 0.5s ease both, pulseGlow 2.2s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(255,31,46,0.5);
}
.tg-cta-btn svg {
  width: calc(var(--iphone-w) * 0.038);
  height: calc(var(--iphone-w) * 0.038);
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 4px 14px rgba(255,31,46,0.5); }
  50%     { box-shadow: 0 4px 26px rgba(255,31,46,0.9); }
}

/* TG input bar */
.tg-input {
  padding: calc(var(--iphone-w) * 0.02) calc(var(--iphone-w) * 0.028) calc(var(--iphone-w) * 0.05);
  background: #212d3b;
  border-top: 0.5px solid #0f151c;
  display: flex;
  gap: calc(var(--iphone-w) * 0.02);
  align-items: center;
}
.tg-input .field {
  flex: 1;
  background: #182533;
  border-radius: 999px;
  padding: calc(var(--iphone-w) * 0.02) calc(var(--iphone-w) * 0.035);
  font-size: calc(var(--iphone-w) * 0.037);
  color: #7d8e9e;
  font-family: inherit;
}
.tg-input .tg-attach,
.tg-input .tg-mic {
  width: calc(var(--iphone-w) * 0.055);
  height: calc(var(--iphone-w) * 0.055);
  color: #7d8e9e;
  flex-shrink: 0;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== FLOATING TG BUTTON (bottom-right) ===== */
.tg-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, #ff2c3a, #c1030d);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(255,31,46,0.45), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatBtn 3s ease-in-out infinite;
}
.tg-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(255,31,46,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  animation-play-state: paused;
}
.tg-float svg { flex-shrink: 0; }
.tg-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1.5px solid var(--red);
  animation: ping 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes ping { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.35);opacity:0} }
@keyframes floatBtn { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

/* ===== REVEAL ANIM ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; justify-self: center; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.wide { grid-column: span 2; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .counter-cell:nth-child(2) { border-right: 0; }
  .counter-cell:nth-child(1), .counter-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr 1fr; font-size: 13px; }
  .compare-row > div { padding: 14px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ===================================================
   TABLET & SMALL-DESKTOP
   =================================================== */
@media (max-width: 900px) {
  .nav .nav-cta { padding: 12px 16px; font-size: 12px; }
}

/* ===================================================
   MOBILE (<=720px)
   =================================================== */
@media (max-width: 720px) {
  .container { padding: 0 18px; }

  /* NAV */
  .nav-inner { height: 60px; }
  .nav-logo span { font-size: 18px; }
  .nav-logo img { width: 28px; height: 28px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav .nav-cta { padding: 10px 12px; gap: 0; }
  .nav .nav-cta-label { display: none; }
  .nav .nav-cta svg { width: 18px; height: 18px; }

  /* SECTIONS — tighter vertical rhythm */
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 15px; }
  .h-eyebrow { font-size: 10px; padding: 5px 10px; letter-spacing: 0.12em; }

  /* HERO — copy first, phone below */
  .hero { padding: 32px 0 50px; }
  .hero-halo { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-eyebrow-row { gap: 8px; margin-bottom: 22px; }
  .hero-eyebrow-row .h-eyebrow:nth-child(2) { display: none; }
  .hero h1 { font-size: 52px; margin-bottom: 20px; }
  .hero h1 .cut::after { height: 3px; bottom: -5px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 26px; }
  .hero-cta { gap: 10px; margin-bottom: 28px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; padding: 15px 20px; font-size: 13px; }

  /* IP plate — smaller */
  .ip-plate { padding: 14px 16px; }
  .ip-plate-head { font-size: 10px; margin-bottom: 8px; }
  .ip-plate-row { font-size: 11.5px; padding: 5px 0; }

  /* iPhone in hero */
  .hero-visual { min-height: auto; margin-top: 8px; padding-bottom: 30px; }
  .iphone { --iphone-w: 280px; }

  /* Hero trust strip — 2-2-1 rows on mobile */
  .hero-strip {
    margin-top: 50px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  .hero-strip-item:nth-child(5) { grid-column: 1 / -1; }
  .hero-strip-item .n { font-size: 22px; }
  .hero-strip-item .l { font-size: 10px; letter-spacing: 0.1em; }

  /* PROBLEM */
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 22px 20px; }
  .problem-card .cross { width: 38px; height: 38px; margin-bottom: 14px; }
  .problem-card h3 { font-size: 17px; }
  .problem-card p { font-size: 13.5px; }

  /* SOLUTION / COUNTERS — stack, tighter */
  .counters {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
  }
  .counter-cell {
    padding: 26px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .counter-cell:nth-child(2n) { border-right: 0; }
  .counter-cell:nth-child(n+3) { }
  .counter-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .counter-cell .icn { width: 24px; height: 24px; margin-bottom: 10px; }
  .counter-cell .num { font-size: 34px; }
  .counter-cell .num .suffix { font-size: 18px; }
  .counter-cell .lbl { font-size: 10px; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 24px 22px; min-height: 0; }
  .feature-card.wide { grid-column: span 1; }
  .feature-card.wide h3 { font-size: 22px; }
  .feature-card h3 { font-size: 18px; }
  .feature-card p { font-size: 13.5px; }
  .feature-icon { width: 42px; height: 42px; }
  .feature-icon svg { width: 22px; height: 22px; }

  /* COMPARISON — turn into stacked cards on mobile */
  .compare {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr auto;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .compare-row > div {
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 12px 16px !important;
  }
  /* Header row → column labels above data */
  .compare-head { display: none; }
  /* First cell: what we're comparing */
  .compare-row .label {
    grid-column: 1 / -1;
    background: var(--bg-2);
    padding: 12px 16px !important;
    font-family: var(--f-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 13px;
    border-bottom: 1px solid var(--line) !important;
    color: var(--white);
    display: block !important;
  }
  /* Show all three cells now, but label them */
  .compare-row .cell {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    padding: 10px 16px !important;
    border-bottom: 1px solid var(--line) !important;
    grid-column: 1 / -1;
  }
  .compare-row .cell:last-child { border-bottom: 0 !important; }
  .compare-row .cell::before {
    content: attr(data-label);
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .compare-row .col-noVpn::before { content: "БЕЗ VPN"; }
  .compare-row .col-otherVpn::before { content: "ОБЫЧНЫЙ VPN"; }
  .compare-row .col-momzak::before { content: "MOMZAK"; color: var(--red); }
  .compare-row .col-momzak {
    background: rgba(255,31,46,0.06);
    border-left: 2px solid var(--red);
  }

  /* DEVICES */
  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .device-tile { padding: 16px; gap: 10px; }
  .device-tile svg { width: 32px; height: 32px; }
  .device-tile span { font-size: 11.5px; }
  .device-tile.active::after { font-size: 8px; top: 6px; right: 6px; padding: 1px 5px; }
  .download-row {
    padding: 18px 20px;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .download-row .os-name { font-size: 12px; }
  .download-row .btn { width: 100%; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 22px; }
  .review-text { font-size: 14px; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 15px; gap: 14px; }
  .faq-q .plus { width: 26px; height: 26px; }
  .faq-a-inner { padding: 0 20px 18px; font-size: 13.5px; }

  /* FINAL CTA */
  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: 54px; }
  .final-cta p { font-size: 16px; margin-bottom: 30px; }
  .final-cta .btn { width: 100%; }
  .final-cta-mask { width: 460px; height: 460px; }

  /* FOOTER */
  .footer { padding: 40px 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-bottom: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 13px; }
  .footer-grid a { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; font-size: 11px; }

  /* FLOATING TG — icon only, smaller */
  .tg-float {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    font-size: 0;
    gap: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .tg-float svg { width: 24px; height: 24px; }
}

/* ===================================================
   SMALL MOBILE (<=480px)
   =================================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* HERO */
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 15px; }
  .iphone { --iphone-w: 250px; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 32px; }

  /* Trust strip: everything in single col */
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip-item .n { font-size: 20px; }

  /* Counters: single column */
  .counters { grid-template-columns: 1fr; }
  .counter-cell {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .counter-cell:last-child { border-bottom: 0 !important; }
  .counter-cell .num { font-size: 40px; }

  /* Final CTA */
  .final-cta h2 { font-size: 42px; }
  .final-cta-mask { width: 380px; height: 380px; }
}

/* ===================================================
   XS (<=360px)
   =================================================== */
@media (max-width: 360px) {
  .hero h1 { font-size: 38px; }
  .iphone { --iphone-w: 230px; }
  .section-header h2 { font-size: 28px; }
}
