/* ============================================================
   Limora Beauty — Global Design System
   ============================================================ */

:root {
  --primary: #E91E8C;
  --primary-dark: #C2185B;
  --secondary: #9C27B0;
  --accent: #FF6B9D;
  --gradient: linear-gradient(135deg, #E91E8C 0%, #9C27B0 100%);
  --gradient-soft: linear-gradient(135deg, #FFF0F7 0%, #F3E5F5 100%);
  --bg-dark: #0D0D1A;
  --bg-dark-2: #13132A;
  --bg-section: #F9F0FF;
  --bg-light: #FDFAFF;
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-soft: rgba(233, 30, 140, 0.15);
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(233, 30, 140, 0.12);
  --shadow-lg: 0 12px 48px rgba(233, 30, 140, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-secondary); }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.45);
}
.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn--dark:hover { background: #1e1e38; transform: translateY(-2px); }
.btn--lg { padding: 18px 40px; font-size: 1.125rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--pink {
  background: rgba(233, 30, 140, 0.1);
  color: var(--primary);
  border: 1px solid rgba(233, 30, 140, 0.2);
}
.badge--white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.nav__logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a.active { color: var(--primary); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav--light .nav__links a { color: rgba(255,255,255,0.8); }
.nav--light .nav__links a:hover { color: white; }
.nav--light .nav__logo span { -webkit-text-fill-color: white; }
.nav--light .nav__hamburger span { background: white; }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 24px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--primary); padding-left: 8px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero__orb--1 { width: 600px; height: 600px; background: #E91E8C; top: -100px; right: -100px; }
.hero__orb--2 { width: 400px; height: 400px; background: #9C27B0; bottom: -50px; left: -50px; }
.hero__orb--3 { width: 300px; height: 300px; background: #3F51B5; top: 40%; left: 35%; }
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero__text { color: white; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__title { margin-bottom: 24px; color: white; }
.hero__title em { font-style: normal; display: block; }
.hero__description { font-size: 1.125rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 480px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; }
.hero__stat { }
.hero__stat-value { font-size: 1.75rem; font-weight: 800; color: white; letter-spacing: -0.03em; }
.hero__stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.hero__visuals { position: relative; display: flex; justify-content: center; }
.hero__phone-stack { position: relative; width: 340px; height: 580px; }
.hero__phone {
  position: absolute;
  width: 240px;
  background: linear-gradient(145deg, #1e1e3a, #2a1040);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero__phone--main { right: 0; top: 0; z-index: 2; width: 240px; }
.hero__phone--back { left: 0; top: 60px; z-index: 1; width: 220px; opacity: 0.7; }
.hero__phone-screen {
  background: var(--gradient);
  border-radius: 20px;
  aspect-ratio: 9/16;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
}
.hero__phone-label {
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  margin-bottom: 8px;
}
.hero__floating-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  white-space: nowrap;
  z-index: 3;
}
.hero__floating-badge--1 { top: 40px; left: -30px; }
.hero__floating-badge--2 { bottom: 80px; right: -20px; }
.hero__floating-badge .icon { font-size: 1.5rem; }
.hero__floating-badge .text { }
.hero__floating-badge .text strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.hero__floating-badge .text span { font-size: 0.75rem; color: var(--text-secondary); }

/* ---- Section Header ---- */
.section-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; }

/* ---- How It Works ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 48px);
  right: calc(16.67% + 48px);
  height: 2px;
  background: var(--gradient);
  opacity: 0.3;
}
.step { text-align: center; padding: 32px 24px; }
.step__number {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
}
.step__icon { font-size: 2rem; margin-bottom: 16px; }
.step h3 { margin-bottom: 12px; font-size: 1.25rem; }

/* ---- Templates Grid ---- */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.template-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  group: true;
}
.template-card__img {
  aspect-ratio: 3/4;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.template-card:hover .template-card__img { transform: scale(1.04); }
.template-card__preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.template-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.template-card:hover .template-card__overlay { opacity: 1; }
.template-card__info { color: white; }
.template-card__info h4 { font-size: 1rem; margin-bottom: 4px; }
.template-card__info p { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }
.template-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.template-card__name {
  padding: 14px 4px 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.template-card__cat { font-size: 0.8125rem; color: var(--text-secondary); padding-bottom: 4px; }

/* ---- Features ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-soft);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: 10px; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-card__stars { color: #FFC107; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card__text { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9375rem; color: var(--text-primary); }
.testimonial-card__meta { font-size: 0.8125rem; color: var(--text-muted); }

/* ---- Download Section ---- */
.download-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.download-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.download-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 96px 0;
}
.download-section__title { color: white; margin-bottom: 20px; }
.download-section__desc { font-size: 1.125rem; color: rgba(255,255,255,0.75); margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.download-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.download-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.download-btn__icon { font-size: 2rem; }
.download-btn__text span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-secondary); text-align: left; }
.download-btn__text strong { font-size: 1rem; color: var(--text-primary); }
.download-section__badges { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.download-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.9375rem; }
.download-badge__icon { font-size: 1.25rem; }

/* ---- Stats Bar ---- */
.stats-bar { background: var(--gradient); padding: 48px 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stat-item__value { font-size: 2.5rem; font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 0.9375rem; color: rgba(255,255,255,0.8); }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); }
.faq-chevron { font-size: 1.25rem; transition: var(--transition); flex-shrink: 0; color: var(--text-secondary); }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { padding: 0 24px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.footer__brand-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
.footer__tagline { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.6); }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: white;
}
.footer__social:hover { background: var(--primary); transform: translateY(-2px); }
.footer__col h4 { color: white; font-size: 0.9375rem; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: white; padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer__bottom-links a:hover { color: white; }

/* ---- Page Hero ---- */
.page-hero {
  background: var(--bg-dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__orb-1 { position: absolute; width: 400px; height: 400px; background: var(--primary); border-radius: 50%; filter: blur(100px); opacity: 0.25; top: -100px; right: -100px; }
.page-hero__orb-2 { position: absolute; width: 300px; height: 300px; background: var(--secondary); border-radius: 50%; filter: blur(80px); opacity: 0.2; bottom: -50px; left: -50px; }
.page-hero h1 { color: white; margin-bottom: 16px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 560px; margin: 0 auto; position: relative; }

/* ---- Filter Bar ---- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  background: white;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(233, 30, 140, 0.05);
}
.filter-btn.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

/* ---- Legal / Privacy ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 48px; }
.legal-content h2 { font-size: 1.5rem; margin: 48px 0 16px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.125rem; margin: 28px 0 12px; color: var(--text-primary); }
.legal-content p { margin-bottom: 16px; line-height: 1.8; }
.legal-content ul, .legal-content ol { margin: 16px 0 16px 24px; }
.legal-content li { margin-bottom: 10px; color: var(--text-secondary); line-height: 1.7; }
.legal-content li::marker { color: var(--primary); }
.legal-content a { color: var(--primary); }
.legal-content a:hover { text-decoration: underline; }
.legal-content .highlight-box {
  background: var(--bg-section);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-content .highlight-box p { margin-bottom: 0; }

/* ---- Web2App ---- */
.w2a-page {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.w2a-content { text-align: center; color: white; position: relative; z-index: 1; padding: 40px 24px; max-width: 600px; }
.w2a-app-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 24px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.4);
}
.w2a-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.w2a-description { font-size: 1.125rem; color: rgba(255,255,255,0.75); margin-bottom: 48px; }
.w2a-buttons { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.w2a-download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.0625rem;
  min-width: 260px;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.w2a-download-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.w2a-download-btn--ios { background: black; color: white; }
.w2a-download-btn--android { background: white; color: var(--text-primary); }
.w2a-rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; color: rgba(255,255,255,0.6); font-size: 0.9375rem; }
.w2a-rating .stars { color: #FFC107; }

/* ---- App mockup visuals (CSS-only) ---- */
.mockup-phone {
  background: #1a1a2e;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.08);
  display: inline-block;
}
.mockup-screen {
  background: var(--gradient);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.mockup-notch {
  width: 100px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Animations ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float 4s ease-in-out infinite 1s; }
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__visuals { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__actions .btn--outline { display: none; }
  .nav__hamburger { display: flex; }
  .hero__phone-stack { width: 260px; height: 440px; }
  .hero__phone--main { width: 190px; }
  .hero__phone--back { width: 170px; }
  .hero__stats { gap: 24px; }
  .hero__floating-badge--1 { display: none; }
  .hero__floating-badge--2 { right: -10px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .download-buttons { flex-direction: column; align-items: center; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 12px; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
