/* ============================================================
   matcha.one — Marketing Website Styles
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --primary: #8B5CF6;
  --primary-dark: #7C3AED;
  --secondary: #6366F1;
  --tertiary: #1E1B4B;
  --text: #1A1A2E;
  --text-secondary: #717483;
  --text-tertiary: #919191;
  --border: #E2E0EB;
  --bg: #FFFFFF;
  --bg-subtle: #FAFAFA;
  --surface: #FFFFFF;
  --success: #22C55E;
  --event: #7C3AED;

  --gradient-brand: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #1E1B4B 100%);
  --gradient-card: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(99,102,241,0.05) 100%);

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

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(139,92,246,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(139,92,246,0.15), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(139,92,246,0.25);

  --max-width: 1200px;
  --section-padding: 96px 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-padding); }
.section--dark {
  background: var(--tertiary);
  color: #fff;
}
.section--subtle { background: var(--bg-subtle); }

/* ---------- Scroll Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,224,235,0.6);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo img { height: 28px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--primary); background: rgba(139,92,246,0.06); }
.nav__link.active { color: var(--primary); }
.nav__cta {
  margin-left: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(139,92,246,0.3);
}
.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139,92,246,0.4); }
.nav__hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav__hamburger:hover { background: rgba(139,92,246,0.06); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { padding: 12px 16px; font-size: 1rem; display: block; border-radius: var(--radius-md); }
.nav__mobile .nav__cta { margin: 8px 0 0; padding: 14px 20px; text-align: center; border-radius: var(--radius-md); font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 136px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(139,92,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at -10% 80%, rgba(99,102,241,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.12);
  top: -100px; right: -80px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(99,102,241,0.08);
  bottom: -60px; left: -60px;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero__badge::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 6px var(--success); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero__title em { font-style: normal; }
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.store-badge {
  display: block;
  height: 52px;
  width: auto;
  transition: transform 0.2s, opacity 0.2s;
}
.store-badge:hover { transform: translateY(-2px); opacity: 0.88; }
/* Two-mode pills */
.hero__modes {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__mode {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.hero__mode-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.hero__mode-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hero__mode-desc { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.hero__mode-divider {
  width: 1px;
  height: 36px;
  background: rgba(139,92,246,0.2);
  flex-shrink: 0;
}

.hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }

/* Phone mockup area */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup-wrap {
  position: relative;
  display: flex;
  gap: -20px;
}
.phone-mockup {
  width: 220px;
  height: 440px;
  border-radius: 36px;
  border: 2px solid rgba(139,92,246,0.2);
  background: linear-gradient(160deg, rgba(139,92,246,0.06) 0%, rgba(30,27,75,0.04) 100%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 60px rgba(139,92,246,0.15), 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.phone-mockup--main {
  z-index: 2;
  width: 240px;
  height: 480px;
}
.phone-mockup--side {
  opacity: 0.65;
  transform: scale(0.88);
  margin-left: -40px;
}
.phone-mockup__screen {
  width: 88%;
  height: 88%;
  border-radius: 28px;
  overflow: hidden;
  background: #f5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.phone-mockup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-mockup__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--primary);
  padding: 20px;
  text-align: center;
}
.phone-mockup__placeholder svg { opacity: 0.4; }
.phone-mockup__placeholder-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
}
.phone-mockup__label {
  position: absolute;
  bottom: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* Notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: rgba(139,92,246,0.15);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: var(--section-padding);
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.2;
  pointer-events: none;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}
.step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(139,92,246,0.35);
  position: relative;
  z-index: 1;
}
.step__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.step__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: var(--section-padding); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(139,92,246,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Feature icon colors */
.icon-violet { background: rgba(124,58,237,0.1); }
.icon-indigo { background: rgba(99,102,241,0.1); }
.icon-emerald { background: rgba(16,185,129,0.1); }
.icon-rose { background: rgba(236,72,153,0.1); }
.icon-amber { background: rgba(245,158,11,0.1); }
.icon-cyan { background: rgba(6,182,212,0.1); }

/* ============================================================
   SCREENSHOTS
   ============================================================ */
.screenshots {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
}
.screenshots__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.screenshot-phone {
  width: 200px;
  height: 400px;
  border-radius: 32px;
  border: 2px solid var(--border);
  background: #f7f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}
.screenshot-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 5px;
  border-radius: 3px;
  background: var(--border);
}
.screenshot-phone:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.screenshot-phone--center { transform: translateY(-16px); z-index: 1; }
.screenshot-phone--center:hover { transform: translateY(-22px); }
.screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.screenshot-phone__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  text-align: center;
  width: 100%;
  height: 100%;
}
.screenshot-phone__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.5;
}
.screenshot-phone__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.screenshots__caption {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.download__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139,92,246,0.35), 0 4px 16px rgba(0,0,0,0.1);
}
.download__inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.download__inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.download__logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.download__logo img { width: 100%; height: 100%; object-fit: cover; }
.download__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.download__subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.download__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.download__stores .store-badge {
  height: 52px;
  filter: brightness(1.05);
}
.download__stores .store-badge:hover { transform: translateY(-3px); opacity: 0.88; }
.download__qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.download__qr-box {
  width: 96px; height: 96px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.download__qr-box img { width: 100%; height: 100%; }
.download__qr-text {
  text-align: left;
  opacity: 0.9;
  font-size: 0.88rem;
  line-height: 1.5;
}
.download__qr-text strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--tertiary);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { }
.footer__logo { height: 24px; width: auto; margin-bottom: 16px; opacity: 0.9; }
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 260px;
  opacity: 0.7;
}
.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__link:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.82rem;
  opacity: 0.5;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social-link:hover { border-color: var(--primary); color: #fff; background: rgba(139,92,246,0.2); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 80vh;
}
.legal__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.legal__meta {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal__content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal__content h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
  color: var(--text);
  font-weight: 600;
}
.legal__content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal__content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.legal__content ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 20px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding-top: 108px; padding-bottom: 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .phone-mockup-wrap { gap: 8px; }
  .phone-mockup--main { width: 180px; height: 360px; }
  .phone-mockup--side { width: 140px; height: 280px; margin-left: -30px; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }

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

  .screenshots__phones { gap: 10px; }
  .screenshot-phone { width: 150px; height: 300px; }
  .screenshot-phone--center { transform: translateY(-10px); }
  .screenshot-phone--center:hover { transform: translateY(-16px); }

  .download__inner { padding: 44px 28px; }
  .download__qr { flex-direction: column; align-items: center; }
  .download__qr-text { text-align: center; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .download__stores { flex-direction: column; align-items: center; }
  .phone-mockup--side { display: none; }
}
