/* ============================================================
   STREAKS LANDING PAGE — styles.css
   Theme: Dark · Accent: Lime Green · Fonts: Space Grotesk + DM Sans
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
blockquote { font-style: normal; }

/* ===== CSS VARIABLES ===== */
:root {
  --color-primary:     #b8ea6c;
  --color-primary-d:   #9dd44f;
  --color-primary-l:   #d0f58a;
  --color-bg:          #0E1116;
  --color-surface:     #181D24;
  --color-surface-2:   #1e2530;
  --color-text:        #E9EEF3;
  --color-muted:       #7A8899;
  --color-border:      #232A33;
  --color-danger:      #ef4444;

  --font-display:      'Space Grotesk', sans-serif;
  --font-body:         'DM Sans', sans-serif;

  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
  --radius-xl:         36px;
  --radius-full:       9999px;

  --shadow-sm:         0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:         0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:         0 24px 64px rgba(0,0,0,0.45);
  --glow:              0 0 48px rgba(184,234,108,0.18);
  --glow-sm:           0 0 24px rgba(184,234,108,0.14);

  --ease:              cubic-bezier(0.4, 0, 0.2, 1);
  --t:                 0.28s var(--ease);
  --t-slow:            0.6s var(--ease);

  --max-w:             1200px;
  --pad-x:             1.5rem;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: 6rem 0; }

/* ===== UTILITIES ===== */
.text-accent { color: var(--color-primary); }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(184,234,108,0.08);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(184,234,108,0.2);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.section-header p { color: var(--color-muted); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.82rem 1.65rem;
  border-radius: var(--radius-full);
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #0E1116;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
}

.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover {
  background: var(--color-primary-l);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface-2);
  border-color: rgba(184,234,108,0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.95rem 2rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1rem 0;
  transition: background var(--t-slow), border-color var(--t-slow), padding var(--t);
}

.navbar.scrolled {
  background: rgba(14,17,22,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark { flex-shrink: 0; line-height: 0; }
.logo-mark img { border-radius: 8px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.nav-badges { display: flex; gap: 0.5rem; }

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: color var(--t), border-color var(--t), background var(--t);
}

.nav-badge:hover {
  color: var(--color-primary);
  border-color: rgba(184,234,108,0.3);
  background: rgba(184,234,108,0.06);
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 65% at 50% -5%, rgba(184,234,108,0.13) 0%, transparent 62%),
    radial-gradient(ellipse 55% 55% at 92% 88%, rgba(184,234,108,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 480px;
  height: 480px;
  top: -140px;
  right: 8%;
  background: rgba(184,234,108,0.09);
}

.hero-orb-2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: 4%;
  background: rgba(184,234,108,0.055);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.4rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease infinite;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Phone mockup */
.hero-phone { position: relative; }

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(184,234,108,0.13);
  filter: blur(80px);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: 268px;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 7px #181D24,
    0 0 0 9px rgba(255,255,255,0.05),
    0 40px 100px rgba(0,0,0,0.55),
    var(--glow);
  overflow: hidden;
  background: #0d0f14;
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.55s var(--ease);
}

.phone-frame:hover {
  transform: perspective(900px) rotateY(-1deg) rotateX(0deg);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 2.75rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.25rem 3rem;
}

.proof-stars {
  color: var(--color-primary);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.15rem;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.proof-label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.proof-divider {
  width: 1px;
  height: 52px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ===== PROBLEM / SOLUTION ===== */
.problem-solution { background: var(--color-bg); }

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 1.75rem;
  align-items: center;
}

.ps-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.problem-card { border-color: rgba(239,68,68,0.18); }
.solution-card {
  border-color: rgba(184,234,108,0.2);
  background: rgba(184,234,108,0.03);
}

.ps-icon { margin-bottom: 1.25rem; }

.ps-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.ps-card p { color: var(--color-muted); font-size: 0.95rem; line-height: 1.7; }

.ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features { background: var(--color-surface); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.feature-card:hover {
  border-color: rgba(184,234,108,0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(184,234,108,0.08);
  border: 1px solid rgba(184,234,108,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-primary);
  transition: background var(--t), box-shadow var(--t);
}

.feature-card:hover .feature-icon {
  background: rgba(184,234,108,0.14);
  box-shadow: var(--glow-sm);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  background: var(--color-bg);
  overflow: hidden;
}

.gallery-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1.5rem 0 4rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-wrapper::-webkit-scrollbar { display: none; }
.gallery-wrapper.dragging { cursor: grabbing; }

.gallery-track {
  display: flex;
  gap: 1.25rem;
  padding-left:  max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x)));
  padding-right: max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x)));
  width: max-content;
}

.gallery-item { flex-shrink: 0; }

.gallery-phone {
  width: 232px;
  border-radius: 34px;
  border: 1.5px solid rgba(255,255,255,0.09);
  box-shadow:
    0 0 0 5px #181D24,
    0 0 0 6.5px rgba(255,255,255,0.04),
    var(--shadow-lg);
  overflow: hidden;
  background: #0d0f14;
  transition: transform var(--t), box-shadow var(--t);
}

.gallery-phone:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 0 0 5px #181D24,
    0 0 0 6.5px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.5),
    var(--glow-sm);
}

.gallery-phone img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.gallery-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  margin-top: -2rem;
  padding-bottom: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--color-surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t), transform var(--t);
}

.testimonial-card:hover {
  border-color: rgba(184,234,108,0.2);
  transform: translateY(-4px);
}

.t-stars {
  color: var(--color-primary);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card blockquote p::before { content: '\201C'; }
.testimonial-card blockquote p::after  { content: '\201D'; }

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(184,234,108,0.12);
  border: 1px solid rgba(184,234,108,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.t-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
}

.t-role { font-size: 0.78rem; color: var(--color-muted); }

/* ===== DOWNLOAD CTA ===== */
.download-cta {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(184,234,108,0.055);
  filter: blur(100px);
  pointer-events: none;
}

.download-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.download-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.download-inner p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.download-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: var(--color-muted);
}

/* ===== FAQ ===== */
.faq { background: var(--color-surface); }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item.open { border-color: rgba(184,234,108,0.28); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--t);
}

.faq-q:hover { color: var(--color-primary); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform var(--t), color var(--t);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease);
}

.faq-a p {
  padding: 0 1.4rem 1.4rem;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.faq-a a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 0.75rem; }

.footer-brand p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 240px;
}

.footer-stores { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.footer-store-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: color var(--t), border-color var(--t);
}

.footer-store-link:hover {
  color: var(--color-primary);
  border-color: rgba(184,234,108,0.3);
}

.footer-nav-group h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.footer-nav-group ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav-group a {
  font-size: 0.88rem;
  color: var(--color-text);
  transition: color var(--t);
}

.footer-nav-group a:hover { color: var(--color-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-left {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up   { animation: fade-up   0.8s var(--ease) both; }
.animate-fade-left { animation: fade-left 1.0s var(--ease) 0.35s both; }

.animate-d1 { animation-delay: 0.14s; }
.animate-d2 { animation-delay: 0.28s; }
.animate-d3 { animation-delay: 0.42s; }
.animate-d4 { animation-delay: 0.56s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s var(--ease), transform 0.62s var(--ease);
}

.reveal.visible   { opacity: 1; transform: translateY(0); }
.reveal-d1        { transition-delay: 0.11s; }
.reveal-d2        { transition-delay: 0.22s; }
.reveal-d3        { transition-delay: 0.33s; }

/* ===== RESPONSIVE — TABLET ≤ 900px ===== */
@media (max-width: 900px) {
  section { padding: 4.5rem 0; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-note { text-align: center; }

  .hero-phone { display: flex; justify-content: center; }
  .phone-frame { transform: none; }
  .phone-frame:hover { transform: none; }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ps-arrow { transform: rotate(90deg); }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

  .proof-item { padding: 1.25rem 1.75rem; }
}

/* ===== RESPONSIVE — MOBILE ≤ 600px ===== */
@media (max-width: 600px) {
  :root { --pad-x: 1.1rem; }

  section { padding: 3.5rem 0; }

  .hero { padding-top: 4.5rem; min-height: auto; }
  .hero-headline { font-size: 2.1rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary, .btn-outline { width: 100%; justify-content: center; }

  .phone-frame { width: 220px; }

  .nav-badges { display: none; }

  .proof-list { flex-wrap: wrap; }
  .proof-item { width: 50%; padding: 1.1rem 0.5rem; }
  .proof-divider { display: none; }

  .ps-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .gallery-phone { width: 195px; }

  .download-ctas { flex-direction: column; align-items: stretch; }
  .download-ctas .btn-primary,
  .download-ctas .btn-outline { justify-content: center; }
  .trust-badges { flex-direction: column; align-items: center; gap: 0.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-header { margin-bottom: 2.5rem; }
}

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