/* ═══════════════════════════════════════════════════════════════════════
   FACE 2 FACE — PRODUCTION STYLESHEET
   Design System: "Deep Space Intimacy"
   ═══════════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --bg-void:       #0D0D1A;
  --bg-surface:    #1A1A2E;
  --bg-elevated:   #16213E;
  --bg-footer:     #0A0A14;

  --coral:         #FF6B6B;
  --coral-light:   #FF8E53;
  --coral-glow:    rgba(255, 107, 107, 0.35);
  --blue:          #4E5DFF;
  --blue-light:    #7B8AFF;
  --blue-glow:     rgba(78, 93, 255, 0.3);
  --green:         #52DEA2;
  --purple:        #A855F7;

  --text-primary:  #FFFFFF;
  --text-body:     #8892A4;
  --text-muted:    #5A6478;
  --text-faint:    rgba(255, 255, 255, 0.5);

  --border-glass:  rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 56px;
  --space-4xl: 80px;
  --space-5xl: 100px;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-med:  0.4s;
  --dur-slow: 0.6s;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ── FLOATING PARTICLES ────────────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particles .dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.15);
  animation: floatUp linear infinite;
}
.particles .dot:nth-child(even) {
  background: rgba(78, 93, 255, 0.12);
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ──────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-md);
}
.eyebrow--blue { color: var(--blue); }

/* ── GLASS CARD ─────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.glass-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
/* Gradient border on hover via pseudo-element */
.glass-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,107,107,0.2), transparent 40%, rgba(78,93,255,0.15));
  opacity: 0;
  z-index: 0;
  transition: opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.glass-card:hover::after { opacity: 1; }
.glass-card > * { position: relative; z-index: 1; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  color: white;
  box-shadow: 0 0 24px var(--coral-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--coral-glow);
}
.btn--glass {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 24px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn:active { transform: scale(0.97) !important; }

/* ── NAVBAR ─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-med), border-color var(--dur-med), backdrop-filter var(--dur-med);
}
.navbar.scrolled {
  background: rgba(13, 13, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-glass);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 72px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.navbar__logo-icon { width: 36px; height: 30px; }
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.navbar__logo-2 {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar__links {
  display: flex;
  gap: var(--space-xl);
}
.navbar__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  transition: color var(--dur-fast);
  letter-spacing: -0.01em;
}
.navbar__link:hover,
.navbar__link.active { color: var(--text-primary); }
.navbar__burger { display: none; }

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-5xl) var(--space-lg) var(--space-4xl);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-3xl);
}

/* Hero scroll indicator */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 5;
}
.hero__scroll-hint .material-symbols-outlined {
  font-size: 20px;
  color: var(--coral);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: pulseSlow 8s ease-in-out infinite alternate;
}
.hero__glow--coral {
  width: 500px;
  height: 500px;
  background: var(--coral);
  opacity: 0.08;
  top: 10%;
  right: -5%;
}
.hero__glow--blue {
  width: 400px;
  height: 400px;
  background: var(--blue);
  opacity: 0.06;
  bottom: 10%;
  left: -5%;
  animation-delay: 4s;
}
@keyframes pulseSlow {
  0%   { opacity: 0.05; transform: scale(1); }
  100% { opacity: 0.12; transform: scale(1.15); }
}

.hero__content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
}
.hero__subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-muted);
}
.hero__proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(82, 222, 162, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero__mockup {
  flex: 0 0 320px;
  z-index: 2;
}
.hero__phone {
  width: 300px;
  border-radius: 44px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5),
              0 0 60px var(--coral-glow);
  transform: perspective(800px) rotateY(-8deg) rotateX(2deg);
  transition: transform var(--dur-slow) var(--ease-out);
  aspect-ratio: 9/19;
}
.hero__phone:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(0deg);
}
.hero__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── STATS ──────────────────────────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: var(--space-2xl) var(--space-lg);
}
.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stats__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ── SECTIONS (Shared) ──────────────────────────────────────────────── */
.section {
  padding: var(--space-4xl) var(--space-lg);
}
.section--dark {
  background: rgba(10, 10, 20, 0.5);
}
.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  text-align: center;
}
.section__subtitle {
  font-size: 18px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
  line-height: 1.7;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}
.steps-card {
  padding: var(--space-2xl);
  text-align: center;
  border-radius: var(--radius-xl);
}
.steps-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.steps-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.steps-card__icon .material-symbols-outlined { font-size: 28px; color: white; }
.steps-card__icon--coral { background: linear-gradient(135deg, var(--coral), var(--coral-light)); box-shadow: 0 0 20px var(--coral-glow); }
.steps-card__icon--blue  { background: linear-gradient(135deg, var(--blue), var(--blue-light)); box-shadow: 0 0 20px var(--blue-glow); }
.steps-card__icon--green { background: linear-gradient(135deg, #2DD4A0, var(--green)); box-shadow: 0 0 20px rgba(82, 222, 162, 0.3); }
.steps-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.steps-card__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.steps-card__number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  z-index: 0;
}

/* ── FEATURE ROWS ───────────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-row__phone { position: relative; }
.feature-row__phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-row__phone-glow--coral { background: var(--coral); }
.feature-row__phone-glow--blue  { background: var(--blue); }

.phone-frame {
  border-radius: 44px;
  padding: 12px;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9/19;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.feature-row__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.feature-row__desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.feature-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.feature-row__list .material-symbols-outlined {
  color: var(--coral);
  background: rgba(255, 107, 107, 0.1);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  flex-shrink: 0;
}
.feature-row__list strong {
  color: var(--text-primary);
  font-size: 15px;
}
.feature-row__list small {
  color: var(--text-muted);
  font-size: 13px;
}

/* Bump preview */
.bump-preview {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-color: rgba(255, 107, 107, 0.2) !important;
}
.bump-preview__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.bump-preview__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bump-preview__icon .material-symbols-outlined { color: white; font-size: 22px; }
.bump-preview__label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 17px;
}
.bump-preview__message {
  font-size: 14px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── FEATURE GRID ───────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.feature-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  cursor: default;
}
.feature-card:hover {
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.08), 0 0 0 1px rgba(255,107,107,0.15);
}
.feature-card__icon {
  font-size: 28px;
  color: var(--coral);
  margin-bottom: var(--space-md);
  display: block;
  transition: transform var(--dur-med) var(--ease-out);
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.15);
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── SAFETY ─────────────────────────────────────────────────────────── */
.safety-hero {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.safety-hero__shield {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 40px var(--blue-glow);
}
.safety-hero__shield .material-symbols-outlined { color: white; }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}
.safety-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}
.safety-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-3px);
}
.safety-card__icon {
  font-size: 32px;
  margin-bottom: var(--space-md);
  display: block;
}
.safety-card__icon--coral  { color: var(--coral); }
.safety-card__icon--blue   { color: var(--blue); }
.safety-card__icon--green  { color: var(--green); }
.safety-card__icon--purple { color: var(--purple); }
.safety-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.safety-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-glass);
}
.trust-stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust-stats__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}
.testimonial-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}
.testimonial-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--coral);
  transition: border-color var(--dur-fast);
}
.testimonial-card:hover .testimonial-card__avatar {
  border-color: var(--coral-light);
  box-shadow: 0 0 16px var(--coral-glow);
}
.testimonial-card__header strong {
  color: var(--text-primary);
  font-size: 15px;
  display: block;
}
.testimonial-card__stars {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  position: relative;
}
/* Quote decoration */
.testimonial-card p::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: -4px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--coral);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-card__location {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── DOWNLOAD ───────────────────────────────────────────────────────── */
.download-section {
  position: relative;
  overflow: hidden;
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.download__content .section__title { text-align: left; }
.download__content .section__subtitle {
  text-align: left;
  margin-left: 0;
  max-width: 480px;
}
.download__badges {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  color: var(--text-primary);
  transition: all var(--dur-fast) var(--ease-out);
}
.store-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.store-badge small {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  line-height: 1;
}
.store-badge strong {
  font-family: var(--font-display);
  font-size: 16px;
  display: block;
  line-height: 1.2;
}
.download__info {
  display: flex;
  gap: var(--space-lg);
  font-size: 13px;
  color: var(--text-muted);
}
.download__phones {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
}
.download__phone {
  width: 260px;
  transition: transform var(--dur-slow) var(--ease-out);
}
.download__phone--left  { transform: rotate(-6deg); }
.download__phone--right { transform: rotate(6deg); }
.download__phone:hover { transform: rotate(0); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-footer);
  padding: 0 var(--space-lg);
}
.footer__gradient-line {
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--blue));
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border-glass);
}
.footer__brand { 
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__logo { width: 48px; height: 40px; }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
}
.footer__links {
  display: flex;
  gap: var(--space-3xl);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: var(--coral); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DOWNLOAD CTA GLOW ─────────────────────────────────────────────── */
.download-section .btn--primary {
  animation: ctaGlow 3s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 24px var(--coral-glow); }
  50%      { box-shadow: 0 0 48px var(--coral-glow), 0 0 80px rgba(255,107,107,0.15); }
}

/* ── SAFETY CARD ICON HOVER ────────────────────────────────────────── */
.safety-card:hover {
  transform: translateY(-4px);
}
.safety-card:hover .safety-card__icon {
  transform: scale(1.1);
  transition: transform var(--dur-med) var(--ease-out);
}

/* ── STEPS CARD HOVER GLOW ─────────────────────────────────────────── */
.steps-card:hover .steps-card__icon {
  transform: scale(1.08);
  transition: transform var(--dur-med) var(--ease-out);
}
.steps-card:hover .steps-card__number {
  color: rgba(255,255,255,0.06);
  transition: color var(--dur-slow);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero__content { max-width: 100%; }
  .hero__subtitle { margin: 0 auto var(--space-xl); }
  .hero__ctas { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__mockup { flex: none; }

  .feature-row,
  .feature-row--reverse { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .feature-row--reverse { direction: ltr; }

  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download__content .section__title,
  .download__content .section__subtitle { text-align: center; margin-left: auto; }
  .download__badges { justify-content: center; }
  .download__info { justify-content: center; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--dur-fast);
  }

  /* Mobile menu open */
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-glass);
    gap: var(--space-md);
  }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr; gap: var(--space-lg); }

  .download__phones { flex-direction: column; align-items: center; gap: var(--space-md); }
  .download__phone--left,
  .download__phone--right { transform: none; }
  .download__phone { width: 220px; }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__links { flex-wrap: wrap; gap: var(--space-xl); }

  .section { padding: var(--space-4xl) var(--space-md); }
  .hero__phone { width: 240px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .download__badges { flex-direction: column; align-items: center; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .stats__number { font-size: 28px; }
}
