*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── THEME TOKENS ─────────────────────────────────── */
:root {
  --red: #C41230;
  --red-hover: #a00f28;
  --red-glow: rgba(196,18,48,0.25);
  --bg: #ffffff;
  --bg2: #f9f9f9;
  --bg3: #f3f3f3;
  --fg: #111111;
  --fg2: #444444;
  --fg3: #888888;
  --border: #e8e8e8;
  --card: #ffffff;
  --nav-bg: rgba(255,255,255,0.92);
  --phone-bg: #f5e8ea;
  --phone-frame: #1c1c1e;
  --pink-blob: rgba(255,192,203,0.45);
  --pink-blob2: rgba(255,192,203,0.25);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.1);
}
[data-theme="dark"] {
  --bg: #0f0f0f;
  --bg2: #181818;
  --bg3: #222222;
  --fg: #f0f0f0;
  --fg2: #b0b0b0;
  --fg3: #666666;
  --border: #2a2a2a;
  --card: #1a1a1a;
  --nav-bg: rgba(15,15,15,0.92);
  --phone-bg: #2a1a1d;
  --phone-frame: #0a0a0a;
  --pink-blob: rgba(196,18,48,0.15);
  --pink-blob2: rgba(196,18,48,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg); color: var(--fg);
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden; font-size: 14px; line-height: 1.5;
}
a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 80px); height: 58px;
  transition: background 0.35s ease, border-color 0.35s ease;
  animation: navIn .5s ease both;
}
@keyframes navIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: -.3px;
}
.logo-box {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--red); display: flex; align-items: center; justify-content: center;
}
.logo-box svg, .logo-box img { width: 14px; height: 14px; }
  .logo-box img { object-fit: contain; }
  .logo-box svg { fill: #fff; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a,
.nav-links button { font-size: 13.5px; font-weight: 500; color: var(--fg2); transition: color .2s; background: none; border: none; cursor: pointer; font: inherit; }
.nav-links a:hover,
.nav-links button:hover { color: var(--fg); }
.nav-links button { padding: 0; }
.nav-right { display: flex; align-items: center; gap: 10px; }

.modal-backdrop { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.55); z-index: 400; padding: 24px; }
.modal-backdrop.open { display: flex; }
.modal { width: min(100%, 520px); padding: 30px; border-radius: 28px; background: var(--card); box-shadow: 0 28px 70px rgba(0,0,0,.18); position: relative; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: none; border-radius: 50%; background: rgba(0,0,0,.04); color: var(--fg3); font-size: 22px; cursor: pointer; display: grid; place-items: center; }
.modal-close:hover { background: rgba(0,0,0,.08); color: var(--fg); }
.modal h2 { margin-bottom: 8px; font-size: 1.7rem; }
.modal p { margin-bottom: 24px; color: var(--fg2); line-height: 1.6; }
.modal label { display: block; font-size: 13px; color: var(--fg2); margin-bottom: 10px; }
.modal input,
.modal textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; background: var(--bg); color: var(--fg); font: inherit; padding: 14px 16px; transition: border-color .2s, box-shadow .2s; }
.modal input:focus,
.modal textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(196,18,48,.12); }
.modal textarea { min-height: 150px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.form-note { margin-top: 16px; font-size: 12px; color: var(--fg3); }
.feedback { margin-top: 12px; font-size: 13px; min-height: 20px; color: var(--fg2); }
.feedback.success { color: #0f766e; }
.feedback.error { color: #b91c1c; }
.feedback.info { color: #2563eb; }

@media (max-width: 680px) {
  .modal { padding: 22px; }
}

.lang-btn {
  height: 32px; padding: 0 10px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--fg); font-size: 12px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: border-color .2s, background .35s ease, color .35s ease;
}
.lang-btn:hover { border-color: var(--fg3); }

/* THEME TOGGLE */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  font-size: 15px; position: relative; overflow: hidden;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.08); border-color: var(--fg3); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon {
  position: absolute; transition: opacity .3s, transform .3s;
}
[data-theme="light"] .icon-sun  { opacity:1; transform:scale(1); }
[data-theme="light"] .icon-moon { opacity:0; transform:scale(.4); }
[data-theme="dark"]  .icon-sun  { opacity:0; transform:scale(.4); }
[data-theme="dark"]  .icon-moon { opacity:1; transform:scale(1); }

.btn-apk {
  height: 36px; padding: 0 16px; border-radius: 8px;
  background: var(--red); color: #fff;
  font-size: 12.5px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-apk:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px var(--red-glow); }
.btn-apk svg { width: 12px; height: 12px; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 58px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 4vw, 72px);
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
/* Full-width wrapper so blobs span full viewport */
.hero-outer {
  position: relative;
  overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; transition: background .35s ease; }
.blob-1 {
  width: 55vw; height: 55vw; max-width: 640px; max-height: 640px;
  top: -18%; right: -8%;
  background: radial-gradient(circle, var(--pink-blob) 0%, transparent 65%);
  animation: blobFloat 7s ease-in-out infinite;
}
.blob-2 {
  width: 30vw; height: 30vw; max-width: 360px; max-height: 360px;
  bottom: -10%; left: -5%;
  background: radial-gradient(circle, var(--pink-blob2) 0%, transparent 65%);
  animation: blobFloat 9s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(12px,-14px) scale(1.04); }
  66%      { transform: translate(-8px,10px) scale(.97); }
}
.hero-left { position: relative; z-index: 2; animation: fadeUp .7s .1s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

.hero-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fg3); margin-bottom: 22px; }
.hero-breadcrumb .tag { background: var(--bg3); border-radius: 5px; padding: 2px 7px; font-size: 11px; font-weight: 500; transition: background .35s ease; }

.hero h1 { font-size: clamp(32px, 4vw, 54px); font-weight: 800; line-height: 1.08; letter-spacing: -2px; margin-bottom: 18px; }
.hero h1 em { font-style: italic; font-weight: 800; color: var(--red); }
.hero-desc { font-size: 14px; color: var(--fg2); line-height: 1.75; margin-bottom: 30px; max-width: 42ch; }

.hero-ctas { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.btn-dl {
  height: 42px; padding: 0 20px; border-radius: 9px;
  background: var(--red); color: #fff; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  border: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-dl:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }
.btn-dl-count { background: rgba(255,255,255,.22); border-radius: 5px; padding: 1px 6px; font-size: 11px; }
.btn-play {
  height: 42px; padding: 0 18px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--fg); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  cursor: pointer; transition: border-color .2s, transform .2s, background .35s ease, color .35s ease;
}
.btn-play:hover { border-color: var(--fg3); transform: translateY(-2px); }

.social-proof { display: flex; align-items: center; gap: 12px; }
.sp-platforms { display: flex; gap: 5px; }
.sp-icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.sp-ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sp-tk  { background: #000; }
.sp-yt  { background: #FF0000; }
.sp-divider { width:1px; height:28px; background: var(--border); }
.sp-stars { color: #f5a623; font-size: 12px; letter-spacing: -1px; }
.sp-text { font-size: 11.5px; color: var(--fg3); margin-top: 1px; }
.sp-rating { font-weight: 700; font-size: 12px; }

/* ─── PHONE ─────────────────────────────────────────── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  animation: fadeUp .7s .3s ease both;
}
.phone-wrap {
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
  /* Fluid phone size: min 220px, scales with viewport, max 300px */
  width: clamp(220px, 22vw, 300px);
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(.4deg); }
  50%      { transform: translateY(-14px) rotate(-.4deg); }
}
.phone {
  width: 100%; background: var(--phone-frame);
  border-radius: clamp(32px, 4vw, 46px); padding: clamp(8px, 1vw, 11px);
  box-shadow: 0 0 0 .5px rgba(255,255,255,.08) inset, 0 40px 80px rgba(0,0,0,.4);
  transition: background .35s ease;
}
.phone-screen {
  background: var(--phone-bg);
  border-radius: clamp(24px, 3.5vw, 36px);
  padding: clamp(14px, 1.6vw, 18px) clamp(10px, 1.2vw, 14px) clamp(10px, 1.2vw, 14px);
  min-height: clamp(360px, 38vw, 480px);
  overflow: hidden; transition: background .35s ease;
}
.phone-notch { width: 72px; height: 5px; background: rgba(0,0,0,.18); border-radius: 3px; margin: 0 auto 18px; }
.phone-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.phone-app-name { font-size: 11px; font-weight: 700; color: #333; }
[data-theme="dark"] .phone-app-name { color: #eee; }
.phone-section-label { font-size: 9.5px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }

.dl-row {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.85); border-radius: 10px;
  padding: 9px 10px; margin-bottom: 7px; box-shadow: 0 2px 8px rgba(0,0,0,.07);
  animation: rowIn .4s ease both;
}
[data-theme="dark"] .dl-row { background: rgba(40,20,24,.8); }
.dl-row:nth-child(1) { animation-delay:.9s; }
.dl-row:nth-child(2) { animation-delay:1.1s; }
.dl-row:nth-child(3) { animation-delay:1.3s; }
.dl-row:nth-child(4) { animation-delay:1.5s; }
@keyframes rowIn {
  from { opacity:0; transform: translateX(18px) scale(.97); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
.dl-thumb { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; }
.dl-info { flex: 1; min-width: 0; }
.dl-name { font-size: 10px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #222; }
[data-theme="dark"] .dl-name { color: #eee; }
.dl-size { font-size: 9px; color: #888; margin-top: 1px; }
.dl-badge { font-size: 8.5px; font-weight: 700; background: var(--red); color: #fff; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.dl-badge.new { background: #22c55e; }

.phone-cta-btn {
  background: var(--red); color: #fff; border-radius: 10px; padding: 11px;
  text-align: center; font-size: 11px; font-weight: 700; margin-top: 12px; cursor: pointer;
  transition: transform .2s, box-shadow .2s; animation: rowIn .4s 1.7s ease both;
}
.phone-cta-btn:hover { transform: scale(1.02); box-shadow: 0 4px 16px var(--red-glow); }

.chip {
  position: absolute; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px 10px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: var(--shadow-md); font-size: 11px; font-weight: 600;
  pointer-events: none; transition: background .35s ease, border-color .35s ease;
  white-space: nowrap;
}
.chip-ig { top: 8%;  right: -30%; animation: chipFloat 3.2s ease-in-out infinite; }
.chip-tk { top: 44%; right: -34%; animation: chipFloat 3.8s 1s ease-in-out infinite; }
.chip-yt { bottom: 18%; right: -28%; animation: chipFloat 4.2s 2s ease-in-out infinite; }
@keyframes chipFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }
.chip-dot { width:6px; height:6px; border-radius:50%; background:#22c55e; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }

/* ─── SECTION COMMONS ───────────────────────────────── */
.section {
  padding: clamp(60px, 8vh, 100px) clamp(24px, 5vw, 80px);
  max-width: 1280px; margin: 0 auto; width: 100%;
}
/* Full-width wrappers that contain sections */
.section-outer { width: 100%; }
.section-outer.tinted { background: var(--bg2); transition: background .35s ease; }
.section-outer.gradient { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); transition: background .35s ease; }
.section-tag { font-size: 11px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 12px; }
.section-title em { font-style: italic; color: var(--red); }

.reveal { opacity:0; transform:translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity:1; transform:translateY(0); }

/* ─── PLATFORMS ─────────────────────────────────────── */
.platforms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.p-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 22px;
  background: var(--card); position: relative; overflow: hidden; cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .35s ease, border-color .35s ease;
}
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.p-card-x { position: absolute; top: 14px; right: 16px; font-size: 16px; color: var(--border); font-weight: 300; }
.p-card-logo {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; transition: transform .3s;
}
.p-card:hover .p-card-logo { transform: scale(1.1) rotate(-6deg); }
.p-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.p-card p  { font-size: 13px; color: var(--fg3); line-height: 1.65; margin-bottom: 14px; }
.p-card-status { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: #22c55e; }
.p-card-status1 { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: #f52a2a; }
.p-card-status::before { content:''; width:6px; height:6px; border-radius:50%; background:#22c55e; animation: pulseDot 2s infinite; }

.p-card.ig { background: linear-gradient(150deg, var(--card) 70%, rgba(240,148,51,.05)); }s
.p-card.tk { background: linear-gradient(150deg, var(--card) 70%, rgba(0,0,0,.03)); }
.p-card.yt { background: linear-gradient(150deg, var(--card) 70%, rgba(255,0,0,.04)); }
[data-theme="dark"] .p-card.ig { background: linear-gradient(150deg, var(--card) 70%, rgba(240,148,51,.09)); }
[data-theme="dark"] .p-card.tk { background: linear-gradient(150deg, var(--card) 70%, rgba(100,100,100,.07)); }
[data-theme="dark"] .p-card.yt { background: linear-gradient(150deg, var(--card) 70%, rgba(255,0,0,.08)); }

/* ─── WHY ───────────────────────────────────────────── */
.why-section { background: var(--bg2); transition: background .35s ease; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 44px; }
.why-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px;
  transition: transform .3s, box-shadow .3s, background .35s ease, border-color .35s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px; background: var(--bg3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: background .35s ease;
}
.why-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.why-card p  { font-size: 12.5px; color: var(--fg3); line-height: 1.65; }

/* ─── HOW IT WORKS ──────────────────────────────────── */
.how-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); transition: background .35s ease; }
.how-title-wrap { text-align: center; margin-bottom: 60px; }
.how-title-tag { font-size: 11px; font-weight: 600; color: var(--fg3); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.how-big-title { font-size: 44px; font-weight: 800; letter-spacing: -2px; color: var(--fg); }
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.step-arrow { padding-top: 44px; color: var(--border); font-size: 22px; display: flex; align-items: center; justify-content: center; width: 48px; }
.step { text-align: center; padding: 0 16px; opacity:0; transform:translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.step.in { opacity:1; transform:translateY(0); }
.step:nth-child(1) { transition-delay:.05s; }
.step:nth-child(3) { transition-delay:.2s; }
.step:nth-child(5) { transition-delay:.35s; }
.step-num { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 2px; margin-bottom: 10px; }
.step-icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, background .35s ease, border-color .35s ease;
}
.step:hover .step-icon { transform: scale(1.1); box-shadow: 0 8px 24px var(--red-glow); }
.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--fg3); line-height: 1.65; }

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section { max-width: 700px; margin: 0 auto; padding: clamp(60px,8vh,100px) clamp(20px,4vw,48px); width: 100%; }
.faq-title { text-align: center; margin-bottom: 44px; }
.faq-title h2 { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px;
  background: var(--card); overflow: hidden;
  transition: box-shadow .2s, border-color .35s ease, background .35s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 12px; user-select: none; font-size: 13.5px; font-weight: 500; }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 300;
  transition: transform .35s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: 13px; color: var(--fg2); line-height: 1.7; padding: 0 18px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 18px 17px; }

/* ─── CTA BANNER ────────────────────────────────────── */
.cta-wrap { padding: 0 clamp(24px,5vw,80px) clamp(60px,8vh,100px); max-width: 1280px; margin: 0 auto; width: 100%; }
.cta-banner {
  background: var(--red); border-radius: 22px; padding: 56px 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-80px; right:80px; width:350px; height:350px;
  border-radius:50%; background: rgba(255,255,255,.06); animation: blobFloat 5s ease-in-out infinite;
}
.cta-banner::after {
  content:''; position:absolute; bottom:-100px; left:180px; width:280px; height:280px;
  border-radius:50%; background: rgba(255,255,255,.04); animation: blobFloat 7s ease-in-out infinite reverse;
}
.cta-text { position: relative; z-index:2; }
.cta-text h2 { font-size: 38px; font-weight: 800; letter-spacing: -1.5px; color: #fff; margin-bottom: 10px; }
.cta-text p  { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.75; max-width: 400px; }
.cta-btns { display:flex; gap:10px; position:relative; z-index:2; flex-shrink:0; }
.btn-white {
  height: 40px; padding: 0 18px; border-radius: 9px; background: #fff; color: var(--red);
  font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.btn-outline-w {
  height: 40px; padding: 0 18px; border-radius: 9px; background: transparent; color: #fff;
  font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(255,255,255,.45); cursor: pointer; transition: background .2s, transform .2s;
}
.btn-outline-w:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ─── TICKER ────────────────────────────────────────── */
.ticker { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 13px 0; overflow: hidden; background: var(--bg); transition: background .35s ease, border-color .35s ease; }
.ticker-track { display: flex; width: max-content; animation: tickerRun 22s linear infinite; }
@keyframes tickerRun { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 24px; font-size: 13px; font-weight: 500; color: var(--fg3); white-space: nowrap; }
.ticker-dot { color: var(--red); font-size: 8px; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer-main {
  border-top: 1px solid var(--border);
  padding: clamp(40px,6vh,60px) clamp(24px,5vw,80px) clamp(28px,4vh,44px);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1280px; margin: 0 auto; width: 100%;
  background: var(--bg); transition: background .35s ease, border-color .35s ease;
}
.footer-brand-desc { font-size: 12.5px; color: var(--fg3); line-height: 1.7; margin: 12px 0 16px; max-width: 210px; }
.footer-socials { display: flex; gap: 8px; }
.f-social {
  width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border);
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; transition: background .2s, transform .2s, border-color .35s ease;
  text-decoration: none;
}
.f-social:hover { background: var(--bg3); transform: translateY(-2px); }
.footer-col h5 { font-size: 11.5px; font-weight: 700; letter-spacing: .5px; color: var(--fg); margin-bottom: 14px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: var(--fg3); transition: color .2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px clamp(24px,5vw,80px);
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; width: 100%;
  background: var(--bg); transition: background .35s ease, border-color .35s ease;
}
.footer-bottom p { font-size: 12px; color: var(--fg3); }
.built-badge { font-size: 11px; color: var(--fg3); background: var(--bg2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 20px; transition: background .35s ease, border-color .35s ease; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center; gap: 48px;
    min-height: auto;
    padding: 48px clamp(20px,5vw,40px);
    justify-items: center;
  }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }
  .hero-desc { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; }
  .social-proof { justify-content: center; }
  .chip { display: none; }
  .phone-wrap { width: clamp(200px, 50vw, 260px); }
  .section { padding: 56px clamp(20px,5vw,36px); }
  .faq-section { padding: 56px clamp(20px,5vw,36px); }
  .platforms-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
  .step-arrow { display: none; }
  .cta-wrap { padding: 0 clamp(16px,4vw,32px) 56px; }
  .cta-banner { flex-direction: column; padding: 40px 28px; }
  .cta-text h2 { font-size: clamp(24px,5vw,32px); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; letter-spacing: -1px; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-dl, .btn-play { justify-content: center; }
}

/* ─── FORMSPREE CONTACT MODAL ─────────────────────────────────── */
/* Modal Overlay */
.contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.contact-overlay.active {
  display: flex;
}

/* Modal Box */
.contact-modal {
  background: var(--card);
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  margin: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Dark mode */
[data-theme="dark"] .contact-modal {
  background: var(--card);
  color: var(--fg);
}
[data-theme="dark"] .contact-modal input,
[data-theme="dark"] .contact-modal textarea {
  background: var(--bg3);
  border-color: var(--border);
  color: var(--fg);
}
[data-theme="dark"] .contact-modal input::placeholder,
[data-theme="dark"] .contact-modal textarea::placeholder {
  color: var(--fg3);
}

.contact-modal h2 {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.contact-modal p.contact-sub {
  margin: 0 0 28px 0;
  font-size: 13.5px;
  color: var(--fg3);
  line-height: 1.5;
}

/* Close button */
.contact-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--fg3);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.contact-close:hover {
  color: var(--fg);
  background: var(--bg3);
}

/* Form fields */
.contact-modal .field {
  margin-bottom: 14px;
}
.contact-modal label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.contact-modal input,
.contact-modal textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background: var(--bg2);
  color: var(--fg);
}
.contact-modal input:focus,
.contact-modal textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
  background: var(--bg);
}
.contact-modal textarea {
  height: 120px;
  resize: vertical;
}

/* Submit button */
.contact-submit {
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.2px;
}
.contact-submit:hover { background: var(--red-hover); }
.contact-submit:active { transform: scale(0.98); }
.contact-submit:disabled {
  background: var(--fg3);
  cursor: not-allowed;
}

/* Status messages */
.contact-success,
.contact-error {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  text-align: center;
}
.contact-success {
  background: #e6f9f0;
  color: #1a7a4a;
  border: 1px solid #a8e6c7;
}
.contact-error {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}
.contact-success.show,
.contact-error.show {
  display: block;
}
