/* ── Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b1110;
  --bg-card: #111a18;
  --accent: #3dd68c;
  --accent-dim: rgba(61, 214, 140, 0.15);
  --text: #f0f4f2;
  --text-muted: #8a9b95;
  --radius: 20px;
  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ── Header ──────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(11, 17, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 214, 140, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.header-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

/* Glow behind hero screenshot */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.store-badge:hover {
  border-color: var(--accent);
  background: rgba(61, 214, 140, 0.06);
  text-decoration: none;
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-phone {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow:
    0 0 80px rgba(61, 214, 140, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── Features ────────────────────────────────────── */
.features {
  padding: 80px 24px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-heading {
  text-align: center;
  margin-bottom: 56px;
}

.features-heading h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.features-heading p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: rgba(61, 214, 140, 0.25);
  transform: translateY(-4px);
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Legal / Content Pages ───────────────────────── */
.legal-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--accent);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

.warning-box {
  background: rgba(255, 180, 50, 0.08);
  border: 1px solid rgba(255, 180, 50, 0.25);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.header-link:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 20px 60px;
  }
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-phone {
    max-width: 240px;
  }

  .features {
    padding: 60px 16px 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }
}
