:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16162a;
  --bg-card-hover: #1c1c36;
  --border: #2a2a3e;
  --border-light: #3a3a52;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-secondary: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c8;
  --text-muted: #6a6a82;
  --gradient-accent: linear-gradient(135deg, #00d4ff, #0090ff);
  --gradient-card: linear-gradient(145deg, #16162a, #1a1a32);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,212,255,0.12) 0%, transparent 70%);
  --shadow-glow: 0 0 40px rgba(0,212,255,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', 'Manrope', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; padding: 6px 14px;
  background: var(--accent-glow); border: 1px solid rgba(0,212,255,0.2); border-radius: 100px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-secondary); max-width: 600px; line-height: 1.6;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 1rem; padding: 14px 28px; border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent); color: #000; box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.45); }
.btn-secondary {
  background: transparent; color: var(--text-primary); border: 1px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-glow); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes floatPhone { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
.animate-on-scroll { opacity:0; transform:translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all var(--transition); background: transparent;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.header.scrolled {
  background: rgba(10,10,15,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.26); padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; }
.logo-icon {
  width: 36px; height: 36px; background: var(--gradient-accent); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 0.9rem; color: var(--text-secondary); transition: color var(--transition); font-weight: 500; white-space: nowrap; }
.nav a:hover { color: var(--text-primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-switcher {
  display: flex; align-items: center; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 100px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 5px 12px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  border-radius: 100px; transition: all var(--transition);
}
.lang-btn:hover { color: var(--text-secondary); }
.lang-btn.active { background: var(--accent); color: #000; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; background:var(--gradient-hero); pointer-events:none; }
.hero::after {
  content:''; position:absolute; top:20%; right:-10%; width:500px; height:500px;
  background:radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  border-radius:50%; pointer-events:none; animation: float 8s ease-in-out infinite;
}
.hero-content { position:relative; z-index:2; max-width:720px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; padding:8px 16px;
  background:rgba(0,212,255,0.08); border:1px solid rgba(0,212,255,0.2);
  border-radius:100px; font-size:0.85rem; font-weight:500; color:var(--accent);
  margin-bottom:24px; animation: fadeInUp 0.6s ease both;
}
.hero-badge svg { width:16px; height:16px; }
.hero-title {
  font-size:clamp(2.4rem, 6vw, 4rem); font-weight:800; line-height:1.08;
  letter-spacing:-0.03em; margin-bottom:20px; animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .accent { color: var(--accent); }
.hero-subtitle {
  font-size:clamp(1.05rem, 2.2vw, 1.25rem); color:var(--text-secondary); line-height:1.6;
  margin-bottom:36px; max-width:560px; animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:48px; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-trust { display:flex; flex-wrap:wrap; gap:24px; animation: fadeInUp 0.6s ease 0.4s both; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--text-muted); }
.trust-item svg { width:18px; height:18px; color:var(--accent); flex-shrink:0; }

/* HERO MODERN */
.hero-modern {
  position: relative;
  min-height: clamp(680px, 92svh, 920px);
  padding-top: 154px;
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(17, 191, 255, 0.19) 0%, rgba(17, 191, 255, 0) 65%),
    radial-gradient(800px 480px at 88% 72%, rgba(6, 98, 255, 0.16) 0%, rgba(6, 98, 255, 0) 70%),
    linear-gradient(160deg, #080a12 0%, #0a1120 50%, #080a13 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.32;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(122, 182, 255, 0.15) 1px, transparent 0),
    radial-gradient(circle at 14px 18px, rgba(128, 145, 255, 0.12) 1px, transparent 0);
  background-size: 22px 22px, 30px 30px;
}
.hero-modern .container {
  position: relative;
  z-index: 2;
}
.hero-modern h1 { font-family: var(--font-display); }
.hero-layout {
  display: grid;
  align-items: start;
  gap: 3rem;
}
.hero-modern.section {
  padding-top: clamp(88px, 10vh, 128px);
  padding-bottom: clamp(48px, 7vw, 92px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: clamp(20px, 3.8vh, 56px);
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.42);
  background: rgba(14, 116, 144, 0.2);
  padding: 8px 14px;
  color: #c8ecff;
  font-size: 0.86rem;
  font-weight: 700;
}
.hero-modern-title {
  margin: 0;
  font-size: clamp(2.15rem, 5.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero-title-accent {
  background: linear-gradient(130deg, #7ce9ff 10%, #53d5ff 45%, #2b8bff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-modern-subtitle {
  margin: 0;
  max-width: 700px;
  color: #c7d4e9;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.58;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-cta-primary,
.hero-cta-secondary {
  border-radius: 13px;
  padding: 10px 16px;
  line-height: 1.1;
  white-space: nowrap;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}
.hero-cta-primary {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #08c5ff, #0a8df7);
  box-shadow: 0 16px 44px rgba(8, 143, 255, 0.3);
}
.hero-cta-secondary {
  font-weight: 600;
  color: #e4efff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(15, 23, 42, 0.56);
}
.hero-cta-note {
  margin-top: -8px;
  color: #94a3b8;
  font-size: 0.9rem;
}
.hero-preview {
  width: 100%;
  max-width: 350px;
  margin-top: clamp(22px, 3vh, 44px);
  animation: floatPhone 7.5s ease-in-out infinite;
  justify-self: end;
}
.hero-modern .hero-trust .trust-item {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.5);
}
.hero-modern .hero-trust .trust-item svg { color: #38bdf8; }
.hero-points {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(170deg, rgba(16, 26, 42, 0.9), rgba(10, 16, 30, 0.9)),
    radial-gradient(140px 80px at 14% 15%, rgba(125, 211, 252, 0.12), transparent 70%);
  padding: 14px 14px;
  line-height: 1.42;
  color: #d7e2ef;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-point::after {
  content: '';
  position: absolute;
  inset: auto -30% -60% auto;
  width: 180px;
  height: 120px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-point:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow: 0 14px 28px rgba(8, 47, 73, 0.28);
}
.hero-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: linear-gradient(130deg, rgba(103, 232, 249, 0.3), rgba(34, 211, 238, 0.18));
  border: 1px solid rgba(125, 211, 252, 0.34);
}
.hero-point-text {
  display: block;
  font-size: 0.92rem;
  font-weight: 620;
  letter-spacing: 0.003em;
}
.hero-point-alert { border-left: 2px solid rgba(56, 189, 248, 0.9); }
.hero-point-media { border-left: 2px solid rgba(99, 102, 241, 0.9); }
.hero-point-history { border-left: 2px solid rgba(34, 197, 94, 0.85); }

@media (min-width:960px) {
  .hero-points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-point { min-height: 88px; }
}
.phone-aura {
  position: absolute;
  inset: 12% 4% 6%;
  border-radius: 40px;
  background: radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.44), rgba(15, 23, 42, 0.04) 70%);
  filter: blur(42px);
  z-index: 0;
}
.phone-shell {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: min(100%, 385px);
  height: 760px;
  border-radius: 52px;
  padding: 18px 13px 14px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.74), rgba(217, 225, 236, 0.25) 17%, rgba(77, 85, 102, 0.64) 68%, rgba(31, 39, 57, 0.95) 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.45),
    inset 0 -10px 35px rgba(11, 17, 31, 0.95),
    0 42px 90px rgba(6, 13, 26, 0.7);
}
.phone-shell::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}
.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 30px;
  border-radius: 16px;
  background: linear-gradient(180deg, #05070f, #090d18);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 4;
}
.phone-statusbar {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 4;
}
.phone-chat-header {
  position: absolute;
  top: 74px;
  left: 20px;
  right: 20px;
  border-radius: 22px;
  border: 1px solid rgba(168, 190, 214, 0.24);
  background: linear-gradient(180deg, rgba(18, 24, 35, 0.9), rgba(12, 17, 27, 0.9));
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 4;
}
.phone-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}
.phone-chat-title {
  color: #f8fbff;
  font-weight: 700;
  line-height: 1.15;
  font-size: 1.02rem;
}
.phone-chat-subtitle {
  color: #9fb2cf;
  font-size: 0.8rem;
  line-height: 1.1;
}
.phone-screen {
  position: absolute;
  top: 122px;
  left: 16px;
  right: 16px;
  bottom: 14px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(200px 160px at 10% 10%, rgba(20, 93, 255, 0.2), transparent 70%),
    radial-gradient(220px 170px at 90% 20%, rgba(162, 28, 175, 0.22), transparent 70%),
    linear-gradient(150deg, #020409 0%, #060b15 45%, #05060b 100%);
}
.phone-slide {
  position: absolute;
  inset: 0;
  padding: 22px 16px 14px;
  opacity: 0;
  transform: translateX(22px) scale(0.99);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.phone-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(116, 156, 255, 0.26) 1px, transparent 0),
    radial-gradient(circle at 12px 18px, rgba(114, 75, 206, 0.22) 1px, transparent 0);
  background-size: 22px 22px, 28px 28px;
}
.phone-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.phone-slide-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: rgba(76, 29, 149, 0.32);
  color: #e9d5ff;
  padding: 5px 10px;
  font-size: 0.73rem;
  font-weight: 600;
}
.phone-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: linear-gradient(160deg, rgba(37, 50, 82, 0.9), rgba(61, 35, 67, 0.84));
  padding: 12px 12px 10px;
  margin-bottom: 10px;
  color: #e8edf8;
}
.phone-card-secondary { opacity: 0.92; }
.phone-card-title {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 7px;
}
.phone-label {
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.88rem;
}
.phone-quote {
  border-left: 3px solid #22d3ee;
  background: rgba(30, 58, 95, 0.66);
  border-radius: 8px;
  padding: 8px 9px;
  font-size: 0.84rem;
  line-height: 1.4;
}
.phone-track {
  margin-top: 9px;
  color: #38bdf8;
  font-style: italic;
  font-size: 0.9rem;
}
.phone-card-status .phone-status-line {
  font-size: 0.9rem;
  color: #dbe8ff;
  margin-top: 8px;
}
.phone-menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.phone-menu-item {
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.82);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.78rem;
  color: #dbe8ff;
}
.phone-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.48);
  border: none;
  transition: all 0.25s ease;
}
.phone-dot.is-active {
  width: 24px;
  background: linear-gradient(130deg, #38bdf8, #0ea5e9);
}
.phone-hint {
  margin-top: 10px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* REAL PHONE MOCKUPS (from /Desktop/shots) */
.phone-real-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  aspect-ratio: 1520 / 3068;
  margin: 0 auto;
}
.phone-real-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: none;
  transition: opacity 0.55s ease;
  pointer-events: none;
  filter: drop-shadow(0 30px 90px rgba(7, 14, 28, 0.74));
}
.phone-real-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.phone-hint {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
    column-gap: clamp(44px, 4vw, 64px);
  }
  .hero-preview { margin-top: 34px; }
}

/* STATS BRIDGE + FEATURES */
.stats-bridge {
  position: relative;
  z-index: 4;
  margin-top: -36px;
  padding: 6px 0 6px;
  background: linear-gradient(180deg, rgba(9, 14, 26, 0) 0%, rgba(9, 14, 26, 0.65) 68%, #0b1220 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stats-grid-bridge {
  margin: 0;
}
.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  background:
    linear-gradient(160deg, rgba(20, 32, 55, 0.85), rgba(12, 19, 35, 0.95)),
    radial-gradient(220px 140px at 15% 10%, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  backdrop-filter: blur(5px);
  padding: 28px 18px;
  text-align: center;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: -45% -15% auto;
  height: 130px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 72%);
  pointer-events: none;
}
.stat-number {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.86rem;
  color: #9fb3cb;
}

.social-proof {
  position: relative;
  padding-top: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(900px 280px at 50% -20%, rgba(56, 189, 248, 0.11) 0%, transparent 72%),
    linear-gradient(180deg, #0b1220 0%, #0d1424 100%);
  border-top: none;
}
.social-proof-head {
  text-align: center;
  margin-bottom: 30px;
}
.social-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(14, 165, 233, 0.13);
  color: #bae6fd;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.social-proof-sub {
  margin: 12px auto 0;
  max-width: 640px;
  color: #9db0c9;
  font-size: 0.96rem;
  line-height: 1.58;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.feature-showcase-card {
  position: relative;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background:
    linear-gradient(165deg, rgba(14, 24, 42, 0.92), rgba(9, 16, 30, 0.96)),
    radial-gradient(240px 120px at 14% -8%, rgba(56, 189, 248, 0.16) 0%, transparent 74%);
  padding: 16px 16px 20px;
  box-shadow: 0 16px 38px rgba(5, 12, 24, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.feature-showcase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow: 0 22px 48px rgba(8, 20, 38, 0.44);
}
.feature-shot-wrap {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    radial-gradient(220px 120px at 50% -20%, rgba(56, 189, 248, 0.13), transparent 72%),
    linear-gradient(160deg, rgba(7, 12, 23, 0.96), rgba(5, 10, 18, 0.98));
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.7), 0 12px 28px rgba(2, 8, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: clamp(276px, 30vw, 386px);
  background-color: #040814;
  overflow: hidden;
}
.feature-shot {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  clip-path: inset(2px round 12px);
  transform: translateZ(0) scale(1.005);
  filter: none;
}
.feature-shot[data-feature-type="photo"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.feature-showcase-title {
  margin: 10px 4px 8px;
  font-size: 1.08rem;
  font-weight: 740;
  line-height: 1.25;
  color: #e7eefc;
}
.feature-showcase-desc {
  margin: 0 4px 4px;
  color: #b6c5da;
  font-size: 0.94rem;
  line-height: 1.52;
}
.feature-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.feature-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.45);
  transition: all 0.28s ease;
}
.feature-dot.is-active {
  width: 52px;
  height: 16px;
  background: linear-gradient(130deg, #3fd0ff, #18b6ff);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.18), 0 8px 24px rgba(14, 165, 233, 0.25);
}

@media (max-width:1200px) {
  .feature-showcase-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 4px 2px 10px;
    gap: 18px;
    scrollbar-width: none;
  }
  .feature-showcase-grid::-webkit-scrollbar { display: none; }
  .feature-showcase-card {
    flex: 0 0 min(400px, calc(100vw - 88px));
    scroll-snap-align: start;
  }
  .feature-dots { display: flex; }
}

/* HOW IT WORKS */
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; }
.step-card {
  background:var(--gradient-card); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:32px 24px; text-align:center; transition:all var(--transition);
}
.step-card:hover { border-color:rgba(0,212,255,0.3); box-shadow:var(--shadow-glow); }
.step-number {
  display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px;
  border-radius:50%; background:var(--accent-glow); border:2px solid var(--accent);
  color:var(--accent); font-weight:800; font-size:1.1rem; margin-bottom:18px;
}
.step-icon { width:48px; height:48px; margin:0 auto 16px; color:var(--accent); }
.step-title { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.step-desc { font-size:0.88rem; color:var(--text-secondary); line-height:1.5; }

/* BENEFITS */
.benefits-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:48px; }
.benefit-card {
  background:var(--gradient-card); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:28px; transition:all var(--transition);
}
.benefit-card:hover { border-color:rgba(0,212,255,0.3); transform:translateY(-4px); box-shadow:var(--shadow-glow); }
.benefit-icon {
  width:44px; height:44px; border-radius:var(--radius-sm); background:var(--accent-glow);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--accent);
}
.benefit-icon svg { width:22px; height:22px; }
.benefit-title { font-size:1rem; font-weight:700; margin-bottom:8px; }
.benefit-desc { font-size:0.88rem; color:var(--text-secondary); line-height:1.5; }

/* SECURITY */
.security-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.security-card {
  background:var(--gradient-card); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:32px 24px; text-align:center; transition:all var(--transition);
}
.security-card:hover { border-color:rgba(0,212,255,0.2); }
.security-icon { width:56px; height:56px; margin:0 auto 16px; color:var(--accent); }
.security-title { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.security-desc { font-size:0.88rem; color:var(--text-secondary); line-height:1.5; }

/* PRICING */
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:48px; align-items:start; }
.price-card {
  background:var(--gradient-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:32px 24px; position:relative; transition:all var(--transition);
}
.price-card:hover { border-color:var(--border-light); transform:translateY(-4px); }
.price-card.popular { border-color:var(--accent); box-shadow:0 0 40px rgba(0,212,255,0.12); }
.price-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--gradient-accent); color:#000; font-size:0.75rem; font-weight:700;
  padding:4px 16px; border-radius:100px; white-space:nowrap;
}
.price-name { font-size:1.1rem; font-weight:700; margin-bottom:4px; }
.price-desc { font-size:0.82rem; color:var(--text-muted); margin-bottom:20px; }
.price-amount { font-size:2.4rem; font-weight:800; margin-bottom:4px; }
.price-amount .currency { font-size:1.2rem; font-weight:600; vertical-align:top; line-height:2; }
.price-amount .period { font-size:0.9rem; font-weight:400; color:var(--text-muted); }
.price-save { font-size:0.82rem; color:var(--accent); font-weight:600; margin-bottom:20px; min-height:20px; }
.price-features { margin:20px 0; display:flex; flex-direction:column; gap:10px; }
.price-feature { display:flex; align-items:flex-start; gap:8px; font-size:0.88rem; color:var(--text-secondary); }
.price-feature svg { width:18px; height:18px; color:var(--accent); flex-shrink:0; margin-top:1px; }
.price-cta { width:100%; margin-top:8px; }

/* FAQ */
.faq-list { max-width:760px; margin:48px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item {
  background:var(--gradient-card); border:1px solid var(--border); border-radius:var(--radius-md);
  overflow:hidden; transition:border-color var(--transition);
}
.faq-item.open { border-color:rgba(0,212,255,0.3); }
.faq-question {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; font-size:0.95rem; font-weight:600; color:var(--text-primary);
  width:100%; text-align:left; transition:color var(--transition);
}
.faq-question:hover { color:var(--accent); }
.faq-chevron { width:20px; height:20px; flex-shrink:0; transition:transform var(--transition); color:var(--text-muted); }
.faq-item.open .faq-chevron { transform:rotate(180deg); color:var(--accent); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height:300px; }
.faq-answer-inner { padding:0 24px 20px; font-size:0.9rem; color:var(--text-secondary); line-height:1.6; }

/* FINAL CTA */
.final-cta { text-align:center; position:relative; overflow:hidden; }
.final-cta::before {
  content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:600px; background:radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  border-radius:50%; pointer-events:none;
}
.final-cta-content { position:relative; z-index:2; }
.final-cta .section-title { font-size:clamp(2rem, 5vw, 3rem); }

/* FOOTER */
.footer { border-top:1px solid var(--border); padding:48px 0 32px; }
.footer-inner { display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; }
.footer-brand { max-width:280px; }
.footer-brand-desc { font-size:0.85rem; color:var(--text-muted); margin-top:12px; line-height:1.5; }
.footer-links { display:flex; gap:48px; }
.footer-col-title { font-size:0.82rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-muted); margin-bottom:14px; }
.footer-col a { display:block; font-size:0.88rem; color:var(--text-secondary); padding:4px 0; transition:color var(--transition); }
.footer-col a:hover { color:var(--accent); }
.footer-bottom {
  margin-top:40px; padding-top:24px; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.8rem; color:var(--text-muted); flex-wrap:wrap; gap:12px;
}

/* RESPONSIVE */
@media (max-width:1280px) {
  .header { padding: 12px 0; }
  .header-inner { gap: 12px; }
  .logo { font-size: 1.04rem; }
  .nav { gap: 16px; }
  .nav a { font-size: 0.84rem; }
  .header-actions { gap: 8px; }
  .header-cta { padding: 10px 16px; font-size: 0.86rem; }
  .hero-modern.section { padding-top: 112px; }
}

@media (max-width:1024px) {
  .hero-preview { display: none !important; }
  .hero-modern {
    min-height: auto;
    padding-top: 124px;
  }
  .hero-modern.section {
    padding-top: 104px;
    padding-bottom: 38px;
  }
  .hero-copy {
    margin-top: 0;
  }
  .stats-bridge {
    margin-top: -20px;
  }
  .stats-grid { grid-template-columns:repeat(3,1fr); }
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .benefits-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px) {
  .nav { display:none; }
  .mobile-toggle { display:flex; }
  .header-actions .btn { display:none; }
  .hero { min-height:auto; padding:120px 0 60px; }
  .hero-modern { min-height: auto; padding-top: 112px; }
  .hero-modern.section { padding-top: 98px; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.2rem; align-items: stretch; }
  .hero-copy { gap: 1.2rem; margin-top: 8px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-primary,
  .hero-cta-secondary { width: 100%; justify-content: center; text-align: center; }
  .hero-modern .hero-trust { gap: 8px; }
  .hero-modern .hero-trust .trust-item { font-size: 0.78rem; }
  .phone-real-wrap { width: min(100%, 305px); }
  .hero-preview { display: none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .feature-showcase-card { flex-basis: min(360px, calc(100vw - 68px)); }
  .feature-shot-wrap { height: clamp(253px, 60vw, 368px); }
  .steps-grid { grid-template-columns:1fr; }
  .benefits-grid { grid-template-columns:1fr; }
  .security-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; max-width:400px; margin-left:auto; margin-right:auto; }
  .footer-inner { flex-direction:column; }
  .footer-links { flex-direction:column; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .nav.open {
    display:flex; flex-direction:column; position:fixed; top:0; left:0; right:0; bottom:0;
    background:rgba(10,10,15,0.98); backdrop-filter:blur(20px);
    justify-content:center; align-items:center; gap:32px; z-index:999;
  }
  .nav.open a { font-size:1.3rem; }
}
@media (max-width:480px) {
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; }
  .hero-trust { flex-direction:column; gap:12px; }
  .hero-modern .hero-trust { flex-direction: row; }
  .hero-modern .hero-trust .trust-item { width: 100%; justify-content: center; }
  .hero-modern-title { font-size: clamp(1.8rem, 11vw, 2.35rem); }
  .hero-headline { gap: 18px; }
  .hero-modern-subtitle { font-size: 1rem; }
  .hero-chip { font-size: 0.78rem; }
  .hero-point { font-size: 0.87rem; }
  .stats-grid { grid-template-columns:1fr; }
  .feature-showcase-title { font-size: 1rem; }
  .feature-showcase-desc { font-size: 0.88rem; }
  .phone-real-wrap { width: min(100%, 282px); }
  .phone-hint { font-size: 0.78rem; }
  .lang-btn { padding:5px 8px; font-size:0.72rem; }
}

*:focus-visible { outline:2px solid var(--accent); outline-offset:2px; }

/* =========================================================
   2026 REDESIGN LAYER
   Goal: modern / premium / minimal + stable responsive
   (keeps existing text and section structure intact)
   ========================================================= */

:root {
  --bg-primary: #070c16;
  --bg-secondary: #090f1d;
  --bg-elevated: rgba(12, 20, 36, 0.76);
  --bg-card: rgba(12, 20, 36, 0.84);
  --bg-card-solid: #0e1628;
  --border: rgba(122, 156, 210, 0.24);
  --border-strong: rgba(114, 182, 255, 0.44);
  --accent: #17c6ff;
  --accent-2: #2f8dff;
  --text-primary: #eff6ff;
  --text-secondary: #b8c7df;
  --text-muted: #8b9bb7;
  --gradient-accent: linear-gradient(130deg, #2edbff 0%, #17c6ff 45%, #2f8dff 100%);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 50px rgba(3, 12, 26, 0.45);
  --shadow-accent: 0 28px 75px rgba(23, 198, 255, 0.24);
  --header-height: 84px;
}

html,
body {
  background:
    radial-gradient(1100px 650px at -6% 16%, rgba(24, 172, 255, 0.18) 0%, rgba(24, 172, 255, 0) 70%),
    radial-gradient(900px 560px at 104% 84%, rgba(45, 110, 255, 0.19) 0%, rgba(45, 110, 255, 0) 72%),
    linear-gradient(160deg, #060b14 0%, #080f1c 52%, #060b15 100%);
  color: var(--text-primary);
}

.container {
  width: min(1260px, calc(100% - 56px));
  padding: 0;
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-label {
  border-radius: 999px;
  border: 1px solid rgba(100, 195, 255, 0.5);
  background: linear-gradient(180deg, rgba(29, 142, 188, 0.22), rgba(20, 82, 126, 0.2));
  color: #c9edff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 7px 18px;
}

.section-title {
  font-family: var(--font-display);
  letter-spacing: -0.028em;
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  line-height: 1.1;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
  max-width: 760px;
}

.btn {
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #041022;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 90px rgba(23, 198, 255, 0.29);
}

.btn-secondary {
  color: #d8e6fb;
  border-color: rgba(125, 153, 196, 0.38);
  background: linear-gradient(170deg, rgba(15, 24, 41, 0.72), rgba(10, 16, 30, 0.8));
}

.btn-secondary:hover {
  border-color: rgba(120, 206, 255, 0.5);
  background: linear-gradient(170deg, rgba(18, 31, 52, 0.74), rgba(11, 21, 36, 0.84));
}

/* HEADER */
.header {
  padding: 10px 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.92), rgba(6, 10, 18, 0.78));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(142, 170, 212, 0.22);
}

.header.scrolled {
  padding: 8px 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.95), rgba(6, 10, 18, 0.82));
  border-bottom-color: rgba(142, 170, 212, 0.32);
}

.header-inner {
  min-height: calc(var(--header-height) - 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.8vw, 24px);
}

.logo {
  gap: 12px;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-accent);
  box-shadow: 0 10px 22px rgba(23, 198, 255, 0.26);
}

.nav {
  gap: clamp(14px, 2.4vw, 34px);
}

.nav a {
  font-size: 1rem;
  color: #b8c8e0;
  font-weight: 560;
}

.nav a:hover {
  color: #f0f6ff;
}

.lang-switcher {
  background: rgba(21, 28, 47, 0.84);
  border: 1px solid rgba(121, 142, 178, 0.34);
  padding: 4px;
  border-radius: 999px;
}

.lang-btn {
  padding: 7px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #9aabc5;
}

.lang-btn.active {
  color: #051a2f;
  background: var(--gradient-accent);
}

.header-cta {
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* HERO */
.hero-modern {
  min-height: min(920px, 100svh);
  padding-top: 0;
  background:
    radial-gradient(980px 520px at 14% 20%, rgba(22, 188, 255, 0.2) 0%, rgba(22, 188, 255, 0) 70%),
    radial-gradient(860px 500px at 90% 78%, rgba(52, 116, 255, 0.18) 0%, rgba(52, 116, 255, 0) 74%),
    linear-gradient(158deg, #070d18 0%, #091326 46%, #070f1f 100%);
}

.hero-modern.section {
  padding-top: calc(var(--header-height) + clamp(36px, 6vh, 74px));
  padding-bottom: clamp(44px, 5vw, 76px);
}

.hero-noise {
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(128, 165, 238, 0.16) 1px, transparent 0),
    radial-gradient(circle at 14px 17px, rgba(123, 145, 234, 0.14) 1px, transparent 0);
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: center;
  column-gap: clamp(48px, 6vw, 88px);
}

.hero-copy {
  margin-top: 0;
  gap: clamp(16px, 2.3vw, 28px);
  max-width: 760px;
}

.hero-modern-title {
  font-size: clamp(2.55rem, 5.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-headline {
  gap: 24px;
}

.hero-modern-subtitle {
  max-width: 680px;
  color: #c0cee3;
  font-size: clamp(1.06rem, 2vw, 1.38rem);
  line-height: 1.56;
}

.hero-cta-row {
  gap: 14px;
  margin-top: 4px;
}

.hero-cta-primary,
.hero-cta-secondary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 1.02rem;
}

.hero-preview {
  max-width: 390px;
  margin-top: 0;
  justify-self: end;
  transform: translateX(14px);
}

.phone-real-wrap {
  width: min(100%, 356px);
}

.phone-real-slide {
  transition: opacity 0.65s ease;
  filter: drop-shadow(0 34px 94px rgba(8, 14, 28, 0.76));
}

.phone-dot {
  width: 14px;
  height: 14px;
  background: rgba(127, 149, 190, 0.6);
}

.phone-dot.is-active {
  width: 42px;
  background: var(--gradient-accent);
}

/* STATS BRIDGE */
.stats-bridge {
  margin-top: clamp(-56px, -3.8vw, -26px);
  padding: 2px 0 6px;
  background: linear-gradient(180deg, rgba(7, 12, 22, 0) 0%, rgba(7, 12, 22, 0.72) 62%, #091122 100%);
}

.stats-grid {
  gap: 16px;
}

.stat-card {
  border-radius: 20px;
  border: 1px solid rgba(106, 154, 224, 0.34);
  background:
    linear-gradient(170deg, rgba(14, 25, 45, 0.88), rgba(10, 17, 32, 0.95)),
    radial-gradient(260px 160px at 50% -10%, rgba(42, 177, 255, 0.22) 0%, transparent 76%);
  box-shadow: 0 14px 34px rgba(5, 13, 26, 0.32);
  padding: 30px 18px 24px;
}

.stat-number {
  font-size: clamp(2rem, 3.7vw, 3rem);
  font-weight: 820;
}

.stat-label {
  color: #adc0db;
  font-size: 1.02rem;
}

/* BOT FEATURES */
.bot-features {
  background:
    radial-gradient(920px 300px at 50% -8%, rgba(29, 170, 255, 0.12) 0%, transparent 72%),
    linear-gradient(180deg, #091122 0%, #08101f 100%) !important;
}

.feature-showcase-grid {
  margin-top: clamp(32px, 4vw, 52px);
  gap: 22px;
}

.feature-showcase-card {
  border-radius: 22px;
  border: 1px solid rgba(104, 146, 213, 0.32);
  background:
    linear-gradient(165deg, rgba(13, 22, 39, 0.92), rgba(8, 14, 27, 0.97)),
    radial-gradient(280px 130px at 14% -12%, rgba(50, 188, 255, 0.16) 0%, transparent 75%);
  padding: 16px 16px 22px;
  box-shadow: var(--shadow-soft);
}

.feature-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(119, 187, 255, 0.45);
  box-shadow: 0 24px 56px rgba(4, 12, 24, 0.45);
}

.feature-shot-wrap {
  border-radius: 16px;
  border: 1px solid rgba(128, 157, 202, 0.3);
  background:
    radial-gradient(180px 120px at 50% -15%, rgba(58, 181, 255, 0.14), transparent 74%),
    linear-gradient(170deg, rgba(6, 10, 20, 0.98), rgba(4, 8, 17, 0.98));
  height: clamp(300px, 33vw, 420px);
  padding: 10px;
  overflow: hidden;
}

.feature-shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
  clip-path: none;
}

.feature-shot[data-feature-type="photo"] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.feature-showcase-title {
  margin: 12px 4px 8px;
  font-size: clamp(1.18rem, 2vw, 1.68rem);
  font-weight: 760;
  line-height: 1.2;
}

.feature-showcase-desc {
  margin: 0 4px;
  font-size: 1.03rem;
  line-height: 1.5;
  color: #b8c8df;
}

.feature-dots {
  margin-top: 16px;
}

.feature-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.feature-cta {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 26px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.feature-dot {
  width: 14px;
  height: 14px;
  background: rgba(127, 149, 190, 0.56);
}

.feature-dot.is-active {
  width: 44px;
  height: 14px;
  background: var(--gradient-accent);
}

/* PRICING */
.pricing-grid {
  margin-top: clamp(28px, 4vw, 48px);
  gap: 18px;
}

.price-card {
  border-radius: 22px;
  border: 1px solid rgba(116, 153, 218, 0.33);
  background:
    linear-gradient(165deg, rgba(13, 22, 39, 0.92), rgba(8, 14, 27, 0.97)),
    radial-gradient(220px 120px at 16% -10%, rgba(46, 191, 255, 0.14) 0%, transparent 72%);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-soft);
}

.price-card:hover {
  border-color: rgba(119, 187, 255, 0.45);
  transform: translateY(-4px);
}

.price-card.popular {
  border-color: rgba(64, 199, 255, 0.7);
  box-shadow: 0 24px 62px rgba(9, 39, 72, 0.46), inset 0 0 0 1px rgba(64, 199, 255, 0.15);
}

.price-badge {
  top: -14px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 6px 18px;
}

.price-name {
  font-size: 1.25rem;
}

.price-desc {
  color: #9bb0cd;
}

.price-amount {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
}

.price-save {
  color: #86dcff;
}

.price-feature {
  color: #b9c8df;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(107, 141, 205, 0.28);
  background: linear-gradient(165deg, rgba(13, 22, 39, 0.9), rgba(8, 14, 27, 0.95));
  box-shadow: 0 10px 30px rgba(4, 12, 24, 0.25);
}

.faq-item.open {
  border-color: rgba(98, 190, 255, 0.44);
}

.faq-question {
  padding: 20px 22px;
  font-size: 1rem;
}

.faq-answer-inner {
  color: #b5c5dc;
}

/* FINAL CTA + FOOTER */
.final-cta::before {
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(25, 181, 255, 0.15) 0%, transparent 70%);
}

.footer {
  border-top: 1px solid rgba(124, 156, 206, 0.26);
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.68), rgba(6, 10, 19, 0.92));
}

.footer-col a {
  color: #afc0d9;
}

.footer-col a:hover {
  color: #e6f3ff;
}

/* RESPONSIVE RE-LOCK */
@media (max-width: 1280px) {
  :root { --header-height: 78px; }
  .container { width: min(1180px, calc(100% - 40px)); }
  .logo { font-size: 1.8rem; }
  .nav a { font-size: 0.95rem; }
  .header-cta { padding: 11px 16px; font-size: 0.9rem; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(290px, 350px); column-gap: clamp(32px, 5vw, 56px); }
  .hero-preview { transform: translateX(8px); }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-preview {
    display: none !important;
  }

  .hero-modern {
    min-height: auto;
  }

  .hero-modern.section {
    padding-bottom: 30px;
  }

  .stats-bridge {
    margin-top: 0;
    padding-top: 16px;
  }

  .feature-showcase-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 18px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-showcase-card {
    flex: 0 0 min(430px, calc(100vw - 88px));
    scroll-snap-align: start;
  }

  .feature-dots {
    display: flex;
  }
}

@media (max-width: 1080px) {
  :root { --header-height: 74px; }

  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    min-height: calc(100dvh - var(--header-height));
    z-index: 1200;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(7, 12, 22, 0.96);
    backdrop-filter: blur(18px);
    padding: 24px 20px 38px;
    border-top: 1px solid rgba(133, 163, 209, 0.22);
  }

  .nav.open a {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
    color: #e8f1ff;
    font-weight: 650;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-modern.section {
    padding-top: calc(var(--header-height) + 26px);
  }

  .stats-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .stats-grid::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    flex: 0 0 min(320px, calc(100vw - 72px));
    scroll-snap-align: start;
  }
}

@media (max-width: 860px) {
  .container { width: calc(100% - 28px); }
  .hero-modern-title { font-size: clamp(2.1rem, 10.6vw, 3.3rem); }
  .hero-modern-subtitle { font-size: 1.06rem; }
  .hero-cta-primary,
  .hero-cta-secondary { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price-card { padding: 28px 20px 22px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 24px; }
}

@media (max-width: 560px) {
  :root { --header-height: 70px; }
  .header-inner { gap: 8px; }
  .logo { font-size: 1.62rem; }
  .logo span { display: inline-block; max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .logo-icon { width: 42px; height: 42px; }
  .lang-btn { padding: 6px 9px; font-size: 0.76rem; }
  .hero-chip { font-size: 0.78rem; }
  .hero-modern.section { padding-top: calc(var(--header-height) + 18px); }
  .hero-headline { gap: 18px; }
  .hero-modern-subtitle { line-height: 1.52; }
  .feature-showcase-card { flex-basis: calc(100vw - 38px); }
  .feature-shot-wrap { height: clamp(290px, 80vw, 390px); }
  .faq-question { font-size: 0.95rem; padding: 18px; }
}

/* Keep content visible on initial render across all capture/viewport modes */
.animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.animate-on-scroll.visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-on-scroll.visible {
    transition: none !important;
  }
}

/* 2026-03-24 visual polish pass */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-row .hero-cta-primary,
.hero-cta-row .hero-cta-secondary {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: clamp(0.96rem, 1.15vw, 1rem);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-cta-row .hero-cta-primary span,
.hero-cta-row .hero-cta-secondary span {
  display: inline-block;
  line-height: 1;
}

.hero-cta-row .hero-cta-secondary {
  box-shadow: inset 0 0 0 1px rgba(127, 154, 196, 0.12);
}

.bot-features .text-center,
#pricing .container.text-center,
#faq .container.text-center {
  max-width: 1140px;
}

.bot-features .section-label,
#pricing .section-label,
#faq .section-label {
  display: inline-flex;
  margin-inline: auto;
}

.bot-features .section-title {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  letter-spacing: -0.04em;
}

.bot-features .section-subtitle {
  max-width: 640px;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.55;
}

#pricing .section-title,
#faq .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
}

#pricing .section-subtitle,
#faq .section-subtitle {
  max-width: 700px;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.feature-showcase-grid {
  align-items: stretch;
}

.feature-showcase-card {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 22px;
  border-radius: 26px;
}

.feature-shot-wrap {
  height: clamp(258px, 27vw, 346px);
  padding: 14px;
  border-radius: 18px;
}

.feature-showcase-title {
  margin: 16px 2px 8px;
  font-size: clamp(1.08rem, 1.55vw, 1.4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.feature-showcase-desc {
  margin: 0 2px;
  max-width: 32ch;
  font-size: clamp(0.94rem, 1.2vw, 1rem);
  line-height: 1.5;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 26px 24px;
}

.price-name {
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  margin-bottom: 6px;
}

.price-desc {
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.price-amount {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: start;
  column-gap: 6px;
  row-gap: 2px;
  margin: 10px 0 8px;
  line-height: 1;
}

.price-amount > span:first-child {
  font-size: clamp(2.9rem, 4vw, 4rem);
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.price-amount .currency {
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  margin-top: 0.36rem;
  vertical-align: baseline;
}

.price-amount .period {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 2px;
  font-size: 0.97rem;
  line-height: 1.1;
  color: #8ea3c4;
}

.price-save {
  min-height: 24px;
  margin-bottom: 18px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.price-features {
  margin: 20px 0 0;
  gap: 12px;
  flex: 1 1 auto;
}

.price-feature {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-feature svg {
  margin-top: 2px;
}

.price-cta {
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer .logo {
  gap: 14px;
  font-size: clamp(1.45rem, 2vw, 1.82rem);
  line-height: 1;
}

.footer .logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-desc {
  margin-top: 18px;
  max-width: 26ch;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .hero-cta-row .hero-cta-primary,
  .hero-cta-row .hero-cta-secondary {
    min-height: 50px;
    padding: 0 20px;
  }
}

@media (max-width: 860px) {
  .hero-cta-row .hero-cta-primary,
  .hero-cta-row .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .bot-features .section-title,
  #pricing .section-title,
  #faq .section-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .feature-showcase-title {
    font-size: 1.18rem;
  }

  .feature-showcase-desc,
  .price-feature {
    font-size: 0.92rem;
  }

  .price-card {
    padding: 28px 22px 22px;
  }

  .price-amount > span:first-child {
    font-size: clamp(3rem, 12vw, 3.6rem);
  }

  .footer .logo {
    font-size: 1.58rem;
  }
}

@media (max-width: 560px) {
  .feature-shot-wrap {
    height: clamp(272px, 82vw, 390px);
  }

  .footer-brand-desc {
    max-width: none;
  }
}

@media (min-width: 981px) {
  .feature-showcase-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    gap: 22px;
    scroll-snap-type: none;
  }

  .feature-showcase-card {
    flex: initial;
    min-width: 0;
  }

  .feature-dots {
    display: none !important;
  }
}

/* 2026-03-24 spacing and scale cleanup */
.header .logo {
  gap: 10px;
  font-size: clamp(1.48rem, 1.6vw, 1.7rem);
  line-height: 1;
}

.header .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.header-cta {
  padding: 10px 17px;
  border-radius: 13px;
  font-size: 0.9rem;
}

.hero-cta-row {
  gap: 12px;
}

.hero-cta-row .hero-cta-primary,
.hero-cta-row .hero-cta-secondary {
  display: inline-grid;
  place-items: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 26px;
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1.02vw, 1rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.018em;
  text-decoration: none;
}

.hero-cta-row .hero-cta-primary span,
.hero-cta-row .hero-cta-secondary span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  transform: translateY(1px);
}

.hero-cta-row .hero-cta-primary {
  background: linear-gradient(135deg, #2fd8ff 0%, #19bfff 48%, #2f8dff 100%);
  color: #eff8ff;
  border: 1px solid rgba(120, 224, 255, 0.35);
  box-shadow:
    0 14px 34px rgba(20, 178, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-cta-row .hero-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 44px rgba(20, 178, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.bot-features.section {
  padding-top: clamp(74px, 7vw, 98px);
  padding-bottom: clamp(52px, 5vw, 68px);
}

#pricing.section {
  padding-top: clamp(58px, 5vw, 78px);
  padding-bottom: clamp(58px, 5vw, 78px);
}

#faq.section {
  padding-top: clamp(58px, 5vw, 78px);
  padding-bottom: clamp(68px, 6vw, 92px);
}

.price-save {
  min-height: 20px;
  margin-bottom: 14px;
}

.price-save:empty {
  display: none;
}

.price-cta {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .hero-cta-row .hero-cta-primary,
  .hero-cta-row .hero-cta-secondary {
    min-height: 54px;
    padding: 0 24px;
  }
}

@media (max-width: 560px) {
  .header .logo {
    font-size: 1.3rem;
  }

  .header .logo-icon {
    width: 36px;
    height: 36px;
  }

  .feature-cta {
    width: 100%;
  }
}

/* 2026-03-25 production pass */
:root {
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1240px;
}

html {
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4fbff;
  color: #04111f;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.32);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container-max), calc(100% - clamp(24px, 4vw, 64px)));
}

.header {
  padding: 8px 0;
}

.header-inner {
  min-height: 60px;
  gap: clamp(10px, 1.6vw, 20px);
}

.header .logo {
  gap: 12px;
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header .logo-icon {
  width: clamp(34px, 2.8vw, 40px);
  height: clamp(34px, 2.8vw, 40px);
  border-radius: 12px;
}

.header .logo-icon svg {
  width: 18px;
  height: 18px;
}

.nav {
  gap: clamp(14px, 1.8vw, 24px);
}

.nav a {
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
  line-height: 1.1;
}

.header-actions {
  gap: 10px;
}

.lang-switcher {
  padding: 4px;
}

.lang-btn {
  min-width: 40px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-modern.section {
  padding-top: calc(var(--header-height) + clamp(28px, 6vh, 66px));
  padding-bottom: clamp(36px, 4vw, 60px);
}

.hero-layout {
  align-items: center;
  column-gap: clamp(42px, 5vw, 78px);
}

.hero-copy {
  max-width: 720px;
}

.hero-modern-title {
  font-size: clamp(2.45rem, 5.2vw, 4.72rem);
  line-height: 1.03;
}

.hero-modern-subtitle {
  max-width: 64ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.56;
}

.hero-cta-row {
  align-items: stretch;
  gap: 12px;
}

.hero-cta-row .hero-cta-primary,
.hero-cta-row .hero-cta-secondary,
.feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transform: none;
}

.hero-cta-row .hero-cta-primary span,
.hero-cta-row .hero-cta-secondary span {
  display: inline-block;
  line-height: 1;
  transform: none;
}

.hero-cta-row .hero-cta-primary,
.feature-cta {
  color: #eff8ff;
  border: 1px solid rgba(120, 224, 255, 0.28);
  background: linear-gradient(135deg, #33dcff 0%, #17c6ff 46%, #2b8fff 100%);
  box-shadow:
    0 14px 34px rgba(20, 178, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-cta-row .hero-cta-secondary {
  color: #e7f0ff;
  border: 1px solid rgba(124, 146, 189, 0.34);
  background: linear-gradient(180deg, rgba(14, 23, 41, 0.86), rgba(11, 18, 32, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(3, 10, 21, 0.18);
}

.hero-cta-row .hero-cta-primary:hover,
.feature-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(20, 178, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-cta-row .hero-cta-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(133, 191, 255, 0.42);
  background: linear-gradient(180deg, rgba(17, 28, 48, 0.88), rgba(12, 20, 35, 0.94));
}

.hero-preview {
  max-width: 372px;
  transform: translateX(10px);
}

.phone-real-wrap {
  width: min(100%, 340px);
}

.stats-bridge {
  padding-top: 10px;
  padding-bottom: 2px;
}

.stats-grid-bridge {
  gap: 14px;
}

.stat-card {
  padding: 26px 16px 20px;
}

.stat-label {
  font-size: 0.9rem;
}

.bot-features.section {
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(40px, 4vw, 56px);
}

.bot-features .section-title,
#pricing .section-title,
#faq .section-title {
  font-size: clamp(1.95rem, 4vw, 3rem);
  letter-spacing: -0.032em;
}

.bot-features .section-subtitle,
#pricing .section-subtitle,
#faq .section-subtitle {
  max-width: 680px;
  font-size: clamp(0.98rem, 1.32vw, 1.08rem);
  line-height: 1.55;
}

.feature-showcase-grid {
  margin-top: clamp(28px, 4vw, 42px);
  gap: 18px;
}

.feature-showcase-card {
  padding: 16px 16px 18px;
  border-radius: 22px;
}

.feature-shot-wrap {
  height: clamp(268px, 24vw, 336px);
  padding: 12px;
}

.feature-showcase-title {
  margin: 14px 2px 8px;
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
  line-height: 1.18;
}

.feature-showcase-desc {
  margin: 0 2px;
  max-width: none;
  font-size: clamp(0.92rem, 1.06vw, 0.98rem);
  line-height: 1.48;
}

.feature-cta-wrap {
  margin-top: 22px;
}

#pricing.section {
  padding-top: clamp(44px, 4vw, 60px);
  padding-bottom: clamp(48px, 4vw, 64px);
}

.pricing-grid {
  margin-top: clamp(26px, 3vw, 40px);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  padding: 28px 22px 22px;
}

.price-name {
  font-size: clamp(1.02rem, 1.24vw, 1.18rem);
}

.price-desc {
  min-height: 2.7em;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.price-amount {
  margin: 10px 0 8px;
  column-gap: 8px;
}

.price-amount > span:first-child {
  font-size: clamp(2.55rem, 3.2vw, 3.35rem);
}

.price-amount .currency {
  margin-top: 0.24rem;
  font-size: 1.08rem;
}

.price-amount .period {
  margin-top: 3px;
  font-size: 0.9rem;
}

.price-save {
  min-height: auto;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.price-save:empty {
  display: none;
}

.price-features {
  margin-top: 12px;
  gap: 10px;
}

.price-feature {
  font-size: 0.9rem;
  line-height: 1.42;
}

.price-cta {
  min-height: 46px;
  margin-top: 16px;
  border-radius: 14px;
}

#faq.section {
  padding-top: clamp(48px, 4vw, 62px);
  padding-bottom: clamp(62px, 5vw, 80px);
}

.faq-list {
  margin-top: clamp(24px, 3vw, 36px);
}

.final-cta.section {
  padding-top: clamp(60px, 5vw, 78px);
  padding-bottom: clamp(60px, 5vw, 82px);
}

.final-cta .section-subtitle {
  max-width: 620px;
  margin-bottom: 28px !important;
}

.footer {
  padding: 34px 0 22px;
}

.footer .logo {
  gap: 10px;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.footer .logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.footer .logo-icon svg {
  width: 16px;
  height: 16px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand-desc {
  margin-top: 14px;
  max-width: 30ch;
  font-size: 0.92rem;
  line-height: 1.52;
}

.footer-links {
  gap: clamp(24px, 3vw, 40px);
}

.footer-col-title {
  font-size: 0.74rem;
}

.footer-col a {
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .hero-preview {
    display: none !important;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-modern.section {
    padding-bottom: 24px;
  }

  .feature-showcase-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 2px 8px;
  }

  .feature-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-showcase-card {
    flex: 0 0 min(390px, calc(100vw - 76px));
    scroll-snap-align: start;
  }

  .feature-dots {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .nav.open {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - var(--header-height));
  }

  .stats-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .stats-grid::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    flex: 0 0 min(280px, calc(100vw - 64px));
    scroll-snap-align: start;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-modern.section {
    padding-top: calc(var(--header-height) + 22px);
  }

  .hero-modern-title {
    font-size: clamp(2.1rem, 10vw, 3.18rem);
  }

  .hero-cta-row .hero-cta-primary,
  .hero-cta-row .hero-cta-secondary {
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
  }

  .price-desc {
    min-height: 0;
  }

  .footer-inner,
  .footer-links,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 20px);
  }

  .header .logo {
    font-size: 1.1rem;
    gap: 10px;
  }

  .header .logo span {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header .logo-icon {
    width: 34px;
    height: 34px;
  }

  .lang-switcher {
    gap: 0;
  }

  .lang-btn {
    min-width: 34px;
    min-height: 32px;
    padding: 4px 7px;
    font-size: 0.74rem;
  }

  .hero-chip {
    font-size: 0.74rem;
    padding: 8px 12px;
  }

  .hero-modern-subtitle {
    font-size: 0.98rem;
  }

  .feature-showcase-card {
    flex-basis: calc(100vw - 30px);
  }

  .feature-shot-wrap {
    height: clamp(286px, 80vw, 376px);
  }

  .feature-cta {
    width: 100%;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(116, 153, 218, 0.24);
  background:
    linear-gradient(165deg, rgba(10, 17, 32, 0.94), rgba(8, 13, 24, 0.98));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(4, 10, 22, 0.45);
}

.cookie-banner__copy {
  max-width: 780px;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #f4f8ff;
  margin-bottom: 6px;
}

.cookie-banner__text {
  margin: 0;
  color: #b8c7df;
  font-size: 0.94rem;
  line-height: 1.6;
}

.cookie-banner__link {
  display: inline-flex;
  margin-left: 8px;
  color: #7dd9ff;
  font-weight: 700;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.cookie-btn--primary {
  color: #04111f;
  background: linear-gradient(135deg, #30d6ff, #2594ff);
  box-shadow: 0 14px 34px rgba(8, 143, 255, 0.26);
}

.cookie-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(8, 143, 255, 0.32);
}

.cookie-btn--ghost {
  color: #e5efff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(15, 23, 42, 0.58);
}

.cookie-btn--ghost:hover {
  border-color: rgba(125, 211, 252, 0.44);
  background: rgba(18, 31, 54, 0.74);
}

@media (max-width: 860px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .cookie-banner__copy {
    max-width: none;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 0;
  }
}

@media (max-width: 520px) {
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-banner__text {
    font-size: 0.9rem;
  }
}

.affiliate-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.affiliate-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(110, 168, 255, 0.18);
  background:
    radial-gradient(460px 220px at 4% 0%, rgba(45, 212, 255, 0.12), transparent 70%),
    radial-gradient(340px 200px at 100% 100%, rgba(86, 82, 255, 0.12), transparent 72%),
    linear-gradient(165deg, rgba(11, 18, 32, 0.96), rgba(9, 14, 26, 0.98));
  box-shadow: 0 32px 80px rgba(4, 10, 24, 0.34);
}

.affiliate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.06), transparent 30%, transparent 70%, rgba(59, 130, 246, 0.06));
  pointer-events: none;
}

.affiliate-copy,
.affiliate-highlight {
  position: relative;
  z-index: 1;
}

.affiliate-copy .section-label {
  margin-bottom: 18px;
}

.affiliate-title {
  max-width: 12ch;
  margin-bottom: 14px;
}

.affiliate-subtitle {
  max-width: 62ch;
  margin: 0;
}

.affiliate-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.affiliate-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(155deg, rgba(14, 23, 38, 0.9), rgba(11, 18, 31, 0.78));
  color: var(--text-secondary);
}

.affiliate-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #08111f;
  background: linear-gradient(135deg, #5ee8ff, #2da8ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 28px rgba(0, 153, 255, 0.22);
}

.affiliate-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.affiliate-cta {
  min-width: 250px;
}

.affiliate-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background:
    radial-gradient(180px 140px at 50% 10%, rgba(56, 189, 248, 0.18), transparent 72%),
    linear-gradient(180deg, rgba(15, 26, 46, 0.98), rgba(9, 15, 29, 0.95));
  text-align: left;
}

.affiliate-highlight__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.affiliate-highlight__value {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #f8fbff 0%, #7dd9ff 50%, #3388ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.affiliate-highlight__desc {
  margin-top: 12px;
  max-width: 22ch;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .affiliate-card {
    grid-template-columns: 1fr;
  }

  .affiliate-title,
  .affiliate-subtitle {
    max-width: none;
  }

  .affiliate-highlight__desc {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .affiliate-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .affiliate-card {
    gap: 20px;
    padding: 20px;
    border-radius: 22px;
  }

  .affiliate-point {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 12px;
  }

  .affiliate-point-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .affiliate-actions,
  .affiliate-cta {
    width: 100%;
  }

  .affiliate-cta {
    min-width: 0;
  }

  .affiliate-highlight {
    padding: 20px;
  }
}
