/* ═══════════════════════════════════════════════════════
   OVERHELPER — Landing Page
   ═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
  --bg:            #080c14;
  --bg-raised:     #0d1320;
  --bg-card:       #111a2b;
  --bg-card-hover: #162035;
  --text:          #e2eaf5;
  --text-mid:      #7a8b9f;
  --text-dim:      #3a4b60;
  --orange:        #fe8701;
  --orange-bright: #ffa033;
  --orange-glow:   rgba(254, 135, 1, 0.15);
  --teal:          #0ea5e9;
  --teal-glow:     rgba(14, 165, 233, 0.12);
  --gold:          #febc43;
  --border:        #152030;
  --border-light:  #1e2d42;
  --radius:        10px;
  --max-w:         1140px;
  --nav-h:         64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

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

a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-bright); }
img { display: block; max-width: 100%; height: auto; }

/* ── Scanline Overlay ───────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.025) 3px,
    rgba(0, 0, 0, 0.025) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────── */
.section-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.6;
}

.accent { color: var(--orange); }
.teal { color: var(--teal); }

.section-divider {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--border-light) 25%, var(--border-light) 75%, transparent);
}

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.nav-brand:hover { color: var(--text); }
.nav-brand svg { width: 30px; height: 30px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: 'Oxanium', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bg) !important;
  background: var(--orange);
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--orange-bright);
  color: var(--bg) !important;
  transform: translateY(-1px);
}

/* ── Hero Section ───────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 80px 24px 0;
  overflow: clip;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 30%, var(--orange-glow) 0%, var(--teal-glow) 50%, transparent 75%);
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oxanium', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--orange);
  background: rgba(254, 135, 1, 0.08);
  border: 1px solid rgba(254, 135, 1, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.6s ease-out both;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-word {
  display: block;
  animation: fadeInUp 0.7s ease-out both;
}

.hero-word:nth-child(2) { animation-delay: 0.12s; }

.hero-word:nth-child(3) {
  animation-delay: 0.24s;
  color: var(--orange);
  text-shadow: 0 0 60px var(--orange-glow);
}

.hero-sub {
  position: relative;
  z-index: 1;
  color: var(--text-mid);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
  animation: fadeInUp 0.7s ease-out 0.35s both;
}

.hero .badge-row {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.7s ease-out 0.45s both;
}

.badge-row a {
  display: inline-flex;
  transition: transform 0.2s, opacity 0.2s;
}

.badge-row a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.badge-row img { height: 44px; width: auto; }

/* ── Hero Phones ────────────────────────────────────── */
.hero-phones {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 56px;
  padding-bottom: 20px;
  animation: fadeInUp 0.9s ease-out 0.55s both;
}

.hero-phones::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: url('../images/hero-bg.webp') center / cover no-repeat;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}

.phone {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.phone--left {
  width: 200px;
  transform: rotate(-8deg) translateY(20px);
  z-index: 1;
  margin-right: -24px;
}

.phone--center {
  width: 240px;
  z-index: 3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px var(--orange-glow);
}

.phone--right {
  width: 200px;
  transform: rotate(8deg) translateY(20px);
  z-index: 1;
  margin-left: -24px;
}

.hero-phones:hover .phone--left  { transform: rotate(-10deg) translateY(16px) translateX(-8px); }
.hero-phones:hover .phone--center { transform: translateY(-6px); }
.hero-phones:hover .phone--right { transform: rotate(10deg) translateY(16px) translateX(8px); }

/* ── Stats Bar ──────────────────────────────────────── */
.stats {
  position: relative;
  padding: 48px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── How It Works ───────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px 32px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: 'Oxanium', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(254, 135, 1, 0.1);
  border: 1px solid rgba(254, 135, 1, 0.25);
}

.step-card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.step-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Features ───────────────────────────────────────── */
.features {
  padding: 100px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 2px 10px 10px 2px;
  padding: 28px 28px 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-left-color: var(--orange-bright);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), -4px 0 20px var(--orange-glow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(254, 135, 1, 0.08);
  margin-bottom: 16px;
  color: var(--orange);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
  background: rgba(14, 165, 233, 0.08);
  color: var(--teal);
}

.feature-card:nth-child(2),
.feature-card:nth-child(4) {
  border-left-color: var(--teal);
}

.feature-card:nth-child(2):hover,
.feature-card:nth-child(4):hover {
  border-left-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), -4px 0 20px var(--teal-glow);
}

.feature-card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Screenshots ────────────────────────────────────── */
.screenshots {
  padding: 100px 0 80px;
  text-align: center;
}

.screenshot-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 40px max(24px, calc((100vw - var(--max-w)) / 2)) 20px;
  scrollbar-width: none;
  margin-top: 16px;
}

.screenshot-track::-webkit-scrollbar { display: none; }

.screenshot-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.screenshot-item:hover { transform: translateY(-8px); }

.screenshot-item img {
  width: 240px;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-caption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
  position: relative;
  text-align: center;
  padding: 100px 24px;
  overflow: clip;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center / cover no-repeat;
  opacity: 0.15;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  pointer-events: none;
}

.cta .container { position: relative; z-index: 1; }

.cta .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.cta .section-sub {
  margin: 0 auto 40px;
  text-align: center;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  color: var(--text-mid);
  font-size: 0.85rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.footer-brand svg { width: 26px; height: 26px; }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.88rem;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  line-height: 1.7;
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-dim);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Privacy Page ───────────────────────────────────── */
.privacy-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.privacy-page h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.privacy-page .effective-date {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 44px;
}

.privacy-page h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.privacy-page p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-page ul {
  color: var(--text-mid);
  margin: 0 0 16px 24px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-page li { margin-bottom: 4px; }

.privacy-page strong {
  color: var(--text);
  font-weight: 600;
}

.privacy-page a { color: var(--orange); }

.privacy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.88rem;
}

.privacy-page th,
.privacy-page td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
}

.privacy-page th {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  font-family: 'Oxanium', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.privacy-page td { color: var(--text-mid); }

/* ── Scroll Animations ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Mobile Nav Toggle ──────────────────────────────── */
.nav-toggle { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Privacy Table Mobile ──────────────────────────── */
.privacy-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.8rem, 9vw, 5rem); }
}

@media (max-width: 768px) {
  /* Nav: hamburger menu */
  .nav-hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 12, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-links .nav-cta {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 12px 18px;
  }

  /* Layout */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 56px auto 0;
    gap: 16px;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .screenshot-item img { width: 200px; }
  .hero { padding-top: 56px; min-height: auto; }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-glow { width: 600px; height: 500px; }

  .hero-phones::before { width: 500px; height: 350px; }

  /* Privacy */
  .privacy-page { padding: 40px 20px 80px; }
  .privacy-page h1 { font-size: 1.6rem; }
  .privacy-page h2 { font-size: 1.1rem; margin-top: 36px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .nav { padding: 0; }
  .nav .container { padding: 0 16px; }
  .nav-brand { font-size: 0.95rem; gap: 8px; }
  .nav-brand svg { width: 24px; height: 24px; }

  .hero-title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero { padding: 36px 16px 0; }
  .hero-badge { font-size: 0.6rem; padding: 6px 14px; margin-bottom: 24px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 28px; }

  .phone--left, .phone--right { width: 120px; }
  .phone--center { width: 150px; }
  .phone--left { margin-right: -14px; }
  .phone--right { margin-left: -14px; }
  .hero-phones { margin-top: 40px; }

  /* Disable hover effects on touch */
  .hero-phones:hover .phone--left  { transform: rotate(-8deg) translateY(20px); }
  .hero-phones:hover .phone--center { transform: none; }
  .hero-phones:hover .phone--right { transform: rotate(8deg) translateY(20px); }

  .how-it-works, .features, .screenshots, .cta { padding: 60px 0; }

  .stats { padding: 32px 0; }
  .stat-value { font-size: 1.3rem; }
  .stat-label { font-size: 0.75rem; }

  .badge-row { padding: 10px 14px; gap: 10px; }
  .badge-row img { height: 36px; }

  .screenshot-track { padding: 32px 16px 16px; gap: 14px; }
  .screenshot-item img { width: 170px; border-radius: 16px; }
  .screenshot-caption { font-size: 0.75rem; margin-top: 10px; }

  .feature-card { padding: 20px 18px 20px 16px; }
  .feature-card h3 { font-size: 0.95rem; }
  .feature-card p { font-size: 0.85rem; }

  .section-label { font-size: 0.68rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-sub { font-size: 0.92rem; }

  .step-card { padding: 28px 20px 24px; }

  .cta { padding: 60px 16px; }
  .cta .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .footer { padding: 36px 0 32px; }
  .footer-links { gap: 20px; }
  .footer-disclaimer { font-size: 0.7rem; }

  /* Privacy mobile */
  .privacy-page p, .privacy-page ul { font-size: 0.88rem; }
  .privacy-page table { font-size: 0.8rem; }
  .privacy-page th, .privacy-page td { padding: 8px 10px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.2rem; }
  .hero-badge { font-size: 0.55rem; letter-spacing: 0.12em; }

  .phone--left, .phone--right { width: 100px; }
  .phone--center { width: 130px; }

  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-value { font-size: 1.15rem; }

  .badge-row img { height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  body::after { display: none; }
}

/* Touch: disable hover transforms on touch devices */
@media (hover: none) {
  .step-card:hover { transform: none; box-shadow: none; }
  .feature-card:hover { transform: none; }
  .screenshot-item:hover { transform: none; }
  .hero-phones:hover .phone--left  { transform: rotate(-8deg) translateY(20px); }
  .hero-phones:hover .phone--center { transform: none; }
  .hero-phones:hover .phone--right { transform: rotate(8deg) translateY(20px); }
}

/* ── Utility ────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
