/* ═══════════════════════════════════════════════════════════════
   YELLI — Design System v2
   Style   : Bold Premium Landing
   Primary : #E91E63 (rosa) · Premium: #2A1538 (deep)
   Reward  : #F4A81D (gold) · BG: #FFF5F8 (soft rose)
   Type    : DM Sans 900 · oversized · -0.04em tracking
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,900;1,9..40,400&display=swap');

:root {
  --primary:        #E91E63;
  --primary-light:  #F06292;
  --primary-dark:   #C2185B;

  --premium-deep:   #2A1538;
  --premium-plum:   #4A1F5C;
  --premium-wine:   #6B1E4E;

  --reward:         #F4A81D;
  --reward-light:   #FFD166;
  --reward-dark:    #D4890A;

  --bg:             #FFFFFF;
  --bg-soft:        #FFF5F8;
  --surface:        #FFFFFF;
  --surface-light:  #FFEAF2;

  --text-primary:   #1A1A1A;
  --text-secondary: #757575;
  --text-light:     #BDBDBD;
  --text-on-primary:#FFFFFF;
  --text-on-dark:   var(--text-on-primary);
  --text-on-premium:var(--text-on-primary);

  --border:         #F0D7E1;
  --divider:        #F5F5F5;

  --success:  #22C55E;
  --error:    #EF4444;
  --info:     #3B82F6;

  --stamp-completed:var(--reward);
  --stamp-empty:    #E5E5E5;
  --reward-bg:      #FFF5F0;

  --gradient-primary: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 48%, var(--primary-dark) 100%);
  --gradient-premium: linear-gradient(135deg, var(--premium-deep) 0%, var(--premium-plum) 60%, var(--premium-wine) 100%);

  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-2xl:48px;

  --shadow-xs:  0 2px 8px rgba(42,21,56,0.06);
  --shadow-sm:  0 4px 20px rgba(42,21,56,0.08);
  --shadow-md:  0 12px 40px rgba(42,21,56,0.10);
  --shadow-lg:  0 24px 64px rgba(42,21,56,0.14);
  --shadow-primary: 0 8px 32px rgba(233,30,99,0.30);
  --shadow-reward:  0 8px 32px rgba(244,168,29,0.28);

  --ease: cubic-bezier(0.4,0,0.2,1);
  --t:    200ms cubic-bezier(0.4,0,0.2,1);
  --t-slow: 400ms cubic-bezier(0.4,0,0.2,1);

  --section: 7rem;
  --nav-h: 132px;
}

/* ─── Reset ─── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1.5rem); }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
  html { scroll-behavior: auto; }
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a, button, [role="button"] { cursor: pointer; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════ */
.display-hero {
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--premium-deep);
}
.display-section {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--premium-deep);
}
.display-section-light { color: #fff; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-light { color: var(--reward-light); }
.eyebrow-light::before { background: var(--reward-light); }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.75;
}
.lead-light { color: rgba(255,255,255,0.7); }

.hl        { color: var(--reward); }
.hl-primary { color: var(--primary); }

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), filter var(--t);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform var(--t); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { box-shadow: 0 14px 44px rgba(233,30,99,0.42); }

.btn-reward {
  background: linear-gradient(135deg, var(--reward-light), var(--reward), var(--reward-dark));
  color: var(--premium-deep);
  box-shadow: var(--shadow-reward);
}
.btn-reward:hover { box-shadow: 0 14px 44px rgba(244,168,29,0.42); }

.btn-dark {
  background: var(--gradient-premium);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { filter: brightness(1.1); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--premium-deep);
  border: 2px solid var(--border);
}
.btn-outline::after { display: none; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--surface-light); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-outline-light::after { display: none; }
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }

.btn-sm  { padding: 0.6rem 1.35rem; font-size: 0.85rem; }
.btn-lg  { padding: 1.1rem 2.4rem;  font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   STORE BUTTONS
   ════════════════════════════════════════ */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--gradient-premium);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  min-width: 168px;
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.store-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.store-btn:hover::after { opacity: 1; }
.store-btn-icon { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; }
.store-btn-icon--play { width: 26px; height: 26px; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn small { font-size: 0.6rem; opacity: 0.6; font-weight: 400; }
.store-btn strong { font-size: 0.95rem; font-weight: 700; }

.store-btn-light {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="fade"]  { }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }
[data-delay="700"] { transition-delay: 0.70s; }

/* ════════════════════════════════════════
   HEADER — pill flotante
   ════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 94%);
  z-index: 200;
  background: rgba(42, 21, 56, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 40px rgba(42,21,56,0.28), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: background var(--t), box-shadow var(--t), top var(--t);
  overflow: visible;
}
.site-header.scrolled {
  background: rgba(42, 21, 56, 0.96);
  box-shadow: 0 12px 48px rgba(42,21,56,0.38);
  top: 0.6rem;
}

/* Gradient accent line at bottom of pill */
.site-header::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 40%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--reward), var(--primary-light), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.75rem 0.4rem 0.85rem;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--t);
  flex-shrink: 0;
  margin-block: -1.85rem;
  position: relative;
  z-index: 1;
}
.brand:hover { opacity: 0.85; }
.brand-logo-img { height: 104px; width: auto; display: block; }
.brand-logo-img--sm { height: 32px; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color var(--t), background var(--t);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.nav a:not(.btn):hover,
.nav a.nav-active:not(.btn) {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(233,30,99,0.35);
  padding: 0.42rem 1.2rem !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  transition: transform var(--t), box-shadow var(--t), filter var(--t) !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(233,30,99,0.45) !important;
  background: rgba(0,0,0,0) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.6rem;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ════════════════════════════════════════
   HERO — nueva composición
   ════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Background geometric shapes */
.hero-bg-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-bg-shape--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(233,30,99,0.07) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-bg-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,168,29,0.06) 0%, transparent 70%);
  bottom: 50px; left: -80px;
}

.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Left copy ── */
.hero-copy {
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--surface-light);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem 0.45rem 0.55rem;
  margin-bottom: 2rem;
  animation: badge-in 0.6s var(--ease) both;
  animation-delay: 0.05s;
  position: relative;
  overflow: hidden;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-heading {
  animation: slide-up 0.7s var(--ease) both;
  animation-delay: 0.18s;
}

.hero-sub {
  animation: slide-up 0.7s var(--ease) both;
  animation-delay: 0.32s;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  animation: slide-up 0.7s var(--ease) both;
  animation-delay: 0.44s;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  animation: fade-in 0.7s var(--ease) both;
  animation-delay: 0.56s;
}
.hero-trust-stars { color: var(--reward); font-size: 0.95rem; letter-spacing: 3px; }
.hero-trust-score { font-size: 1.3rem; font-weight: 900; color: var(--premium-deep); letter-spacing: -0.03em; }
.hero-trust-label { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.45; }
.hero-trust-sep   { width: 1px; height: 2rem; background: var(--border); }

/* ── Right visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 720px;
  padding: 1.5rem 0 0;
  overflow: visible;
  animation: fade-in 0.9s var(--ease) both;
  animation-delay: 0.1s;
}

/* Large soft circle behind the woman */
.hero-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -200px);
  width: 88%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 65%, var(--surface-light) 0%, var(--bg-soft) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-photo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  line-height: 0;
  transform: translateY(-200px) scale(1.4);
  transform-origin: center bottom;
  will-change: transform;
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: lighten;
}

/* Floating notification pills */
.float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem 0.7rem 0.65rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 4px 8px rgba(42,21,56,0.06), 0 20px 48px rgba(42,21,56,0.14), 0 0 0 1px rgba(255,255,255,0.8) inset;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--premium-deep);
  white-space: nowrap;
  z-index: 4;
  border: 1px solid rgba(240,215,225,0.8);
}
.float-pill.animating { animation: pill-float 3.8s ease-in-out infinite; }
.float-pill-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fp-gold { background: linear-gradient(135deg, rgba(255,209,102,0.4), rgba(244,168,29,0.25)); color: var(--reward-dark); }
.fp-rose { background: linear-gradient(135deg, rgba(240,98,146,0.25), rgba(233,30,99,0.15)); color: var(--primary); }
.fp-green { background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.1)); color: #16a34a; }

.pill-1 { bottom: 16%; left: 0.25rem; animation-delay: 0s; }
.pill-2 { top: 22%;  right: 0.25rem; animation-delay: 1.6s; }
.pill-3 { bottom: 40%; right: 0; animation-delay: 0.9s; }

@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Stats strip ── */
.hero-stats {
  background: var(--premium-deep);
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.75rem 1.5rem;
  position: relative;
  cursor: default;
  transition: background var(--t);
}
.hero-stat:hover { background: rgba(255,255,255,0.04); }
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.hero-stat strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--reward-light);
  line-height: 1;
  display: block;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Keyframes */
@keyframes badge-in  { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:none; } }
@keyframes slide-up  { from { opacity:0; transform:translateY(32px);  } to { opacity:1; transform:none; } }
@keyframes fade-in   { from { opacity:0; }                               to { opacity:1; } }

/* ════════════════════════════════════════
   MARQUEE STRIP
   ════════════════════════════════════════ */
.marquee-strip {
  background: var(--primary);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 22s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 2.5rem;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ════════════════════════════════════════
   HOW IT WORKS — dark, gran tipografía
   ════════════════════════════════════════ */
.how-section {
  background: var(--gradient-premium);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

/* Big decorative BG text */
.how-section-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.how-header .eyebrow { display: flex; justify-content: center; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Connector line */
.how-grid::before {
  content: '';
  position: absolute;
  top: 2.8rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(244,168,29,0.2) 10%,
    rgba(244,168,29,0.4) 50%,
    rgba(244,168,29,0.2) 90%,
    transparent 100%
  );
  pointer-events: none;
}

.how-step {
  text-align: center;
  padding: 0 1.25rem;
  transition: transform var(--t);
}
.how-step:hover { transform: translateY(-6px); }

.how-num-wrap {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.75rem;
}
.how-num-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(244,168,29,0.08);
  border: 1px solid rgba(244,168,29,0.2);
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.how-step:hover .how-num-bg {
  background: rgba(244,168,29,0.16);
  border-color: rgba(244,168,29,0.5);
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(244,168,29,0.08);
}
.how-num-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--reward-light);
}
.how-num-index {
  position: absolute;
  top: -0.5rem;
  right: -0.35rem;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--reward);
  background: var(--premium-deep);
  border: 1px solid rgba(244,168,29,0.3);
  border-radius: 999px;
  width: 1.5rem; height: 1.5rem;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}

.how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.how-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 180px;
  margin-inline: auto;
}

/* ════════════════════════════════════════
   BENEFITS — bento grid
   ════════════════════════════════════════ */
.benefits-section {
  padding: var(--section) 0;
  background: var(--bg);
}

.benefits-header {
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
.benefits-header-copy {}
.benefits-header-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 0.25rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

/* Card base */
.bcard {
  border-radius: var(--radius-lg);
  padding: 2rem 1.875rem;
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: default;
}
.bcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

/* Featured dark card */
.bcard--dark {
  background: var(--gradient-premium);
  border-color: transparent;
  color: #fff;
}
.bcard--dark:hover {
  border-color: rgba(244,168,29,0.3);
  box-shadow: 0 20px 60px rgba(42,21,56,0.25);
}

/* Span variations */
.bcard--col2 { grid-column: span 2; }
.bcard--row2 { grid-row: span 2; }

.bcard-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: transform var(--t);
}
.bcard:hover .bcard-icon { transform: scale(1.1) rotate(-4deg); }

.bi-gold   { background: rgba(244,168,29,0.12); color: var(--reward-dark); }
.bi-rose   { background: var(--surface-light);  color: var(--primary); }
.bi-deep   { background: rgba(42,21,56,0.08);   color: var(--premium-deep); }
.bi-white  { background: rgba(255,255,255,0.12); color: var(--reward-light); }

.bcard h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--premium-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.bcard--dark h3 { color: #fff; }
.bcard p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.bcard--dark p { color: rgba(255,255,255,0.6); }

/* Large number accent inside dark card */
.bcard-number {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--reward-light);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}
.bcard-number-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ════════════════════════════════════════
   FOR BUSINESS — split oscuro
   ════════════════════════════════════════ */
.biz-section {
  background: var(--gradient-premium);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.biz-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,99,0.08), transparent 65%);
  pointer-events: none;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.biz-copy {}
.biz-copy .eyebrow { margin-bottom: 1.25rem; }
.biz-copy h2 { margin-bottom: 1.25rem; }
.biz-copy p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.biz-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.biz-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--t);
  cursor: default;
}
.biz-feature-item:first-child { padding-top: 0; }
.biz-feature-item:last-child  { border-bottom: none; }
.biz-feature-item:hover       { transform: translateX(4px); }

.biz-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(244,168,29,0.1);
  border: 1px solid rgba(244,168,29,0.18);
  color: var(--reward-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--t);
}
.biz-feature-item:hover .biz-feature-icon {
  background: rgba(244,168,29,0.2);
}

.biz-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.biz-feature-text p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

/* ════════════════════════════════════════
   PLANS — limpio y espacioso
   ════════════════════════════════════════ */
.plans-section {
  padding: var(--section) 0;
  background: var(--bg-soft);
}
.plans-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}
.plans-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
}

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

.plan-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.plan-card--featured {
  border: 2px solid var(--primary);
  background: linear-gradient(170deg, #fff 55%, var(--surface-light) 100%);
  transform: translateY(-12px);
  box-shadow: var(--shadow-primary);
  z-index: 1;
}
.plan-card--featured:hover { transform: translateY(-17px); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}

.plan-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: block;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.35rem;
}
.plan-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--premium-deep);
  align-self: flex-start;
  margin-top: 0.6rem;
}
.plan-amount {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--premium-deep);
  line-height: 1;
}
.plan-amount-custom {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--premium-deep);
}
.plan-period { font-size: 0.875rem; color: var(--text-secondary); }

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 1rem 0 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--divider);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.45;
}
.plan-features li.off { color: var(--text-light); }

.plan-check {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(233,30,99,0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  font-weight: 900;
}
.plan-x {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--divider);
  color: var(--text-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
}

.plans-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-top: 2.5rem;
  line-height: 1.6;
}
.plans-note strong { color: var(--primary); }

/* ════════════════════════════════════════
   TESTIMONIALS — featured + grid
   ════════════════════════════════════════ */
.testi-section {
  padding: var(--section) 0;
  background: var(--bg);
  position: relative;
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.testi-score-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-score-num {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--premium-deep);
  line-height: 1;
}
.testi-score-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.testi-stars { color: var(--reward); font-size: 1rem; letter-spacing: 3px; }
.testi-count { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.45; }

/* Featured large testimonial */
.testi-featured {
  background: var(--gradient-premium);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.testi-featured::before {
  content: '\201C';
  position: absolute;
  top: -1rem; left: 2.5rem;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-featured blockquote {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.testi-featured .testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.testi-avatar-large {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.testi-name  { font-size: 0.95rem; font-weight: 700; color: #fff; display: block; }
.testi-place { font-size: 0.78rem; color: rgba(255,255,255,0.55); display: block; margin-top: 0.15rem; }

/* Mini testimonial cards */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.testi-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -0.75rem; right: 1.25rem;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.05;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}
.testi-card-stars { color: var(--reward); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.testi-card .testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--divider);
  padding-top: 1rem;
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   DOWNLOAD CTA — bold centered
   ════════════════════════════════════════ */
.cta-section {
  background: var(--bg);
  padding: 0 0 var(--section);
}
.cta-inner {
  background: var(--gradient-premium);
  border-radius: var(--radius-2xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.cta-blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,168,29,0.12), transparent 70%);
  top: -200px; right: -100px;
  animation: blob-drift 10s ease-in-out infinite;
}
.cta-blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(233,30,99,0.10), transparent 70%);
  bottom: -120px; left: 5%;
  animation: blob-drift 12s ease-in-out infinite reverse;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-20px) scale(1.06); }
  66%       { transform: translate(-15px,15px) scale(0.96); }
}

.cta-inner .eyebrow {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--primary-light), var(--reward), var(--primary-light), transparent 95%);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.footer-copy {
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color var(--t), background var(--t);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.footer-links a:hover { color: var(--primary); background: var(--surface-light); }

/* ════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════ */
.legal-body { background: var(--bg-soft); }
.legal-header {
  background: var(--gradient-premium);
  box-shadow: 0 4px 28px rgba(42,21,56,0.22);
}
.legal-header .header-inner { padding: 0.75rem 0; }
.legal-nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.legal-nav a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color var(--t); }
.legal-nav a:hover, .legal-nav a[aria-current="page"] { color: #fff; }
.legal-nav a[aria-current="page"] { font-weight: 700; }
.legal-main { padding: 2rem 0 4rem; }
.legal-page { max-width: 760px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.75rem 3rem; box-shadow: var(--shadow-xs); }
.legal-page-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.legal-page-header h1 { margin: 0 0 0.5rem; font-size: clamp(1.75rem,4vw,2.25rem); font-weight: 900; color: var(--premium-deep); letter-spacing: -0.03em; }
.legal-meta { margin: 0; font-size: 0.875rem; color: var(--text-secondary); }
.legal-prose { color: var(--text-primary); font-size: 0.975rem; line-height: 1.8; }
.legal-prose h2 { margin: 2rem 0 0.75rem; font-size: 1.2rem; font-weight: 700; color: var(--premium-deep); }
.legal-prose h3 { margin: 1.25rem 0 0.5rem; font-size: 1rem; font-weight: 600; color: var(--primary); }
.legal-prose p  { margin: 0 0 1rem; color: var(--text-secondary); }
.legal-prose p strong { color: var(--text-primary); }
.legal-prose ul { margin: 0 0 1rem; padding-left: 1.35rem; color: var(--text-secondary); }
.legal-prose li { margin-bottom: 0.4rem; }
.legal-prose a  { color: var(--primary); font-weight: 500; }
.legal-prose a:hover { color: var(--primary-dark); }
.legal-prose code { font-size: 0.85em; background: var(--surface-light); padding: 0.1rem 0.35rem; border-radius: 4px; color: var(--premium-deep); }
.legal-footer .footer-inner { justify-content: center; flex-direction: column; text-align: center; }

.account-delete-page { max-width: 560px; }
.account-delete-intro { margin-bottom: 1.75rem; }
.account-delete-form { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.5rem; }
.account-delete-field { display: flex; flex-direction: column; gap: 0.45rem; }
.account-delete-field span { font-size: 0.875rem; font-weight: 600; color: var(--premium-deep); }
.account-delete-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t);
}
.account-delete-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}
.account-delete-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.account-delete-check input { margin-top: 0.2rem; accent-color: var(--primary); }
.account-delete-submit {
  margin-top: 0.25rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--t), transform var(--t);
}
.account-delete-submit:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.account-delete-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.account-delete-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}
.account-delete-alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.account-delete-alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.account-delete-help { font-size: 0.875rem; margin: 0; }

/* ════════════════════════════════════════
   ADMIN
   ════════════════════════════════════════ */
.admin-shell { min-height: 100vh; display: grid; place-items: center; background: var(--bg-soft); color: var(--premium-deep); }
.admin-placeholder { text-align: center; padding: 3rem 0; }
.admin-placeholder a { color: var(--primary); }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section: 5rem; }

  /* Header */
  .site-header { width: 96%; top: 0.75rem; }
  .brand-logo-img { height: 80px; }
  .brand { margin-block: -1.35rem; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy { padding-bottom: 0; order: 2; }
  .hero-visual { order: 1; min-height: 480px; padding-top: 0.5rem; }
  .hero-photo-wrap { max-width: 360px; transform: translateY(-120px) scale(1.3); }
  .hero-circle { width: 92%; max-width: 340px; transform: translate(-50%, -120px); }
  .pill-3 { display: none; }

  /* How */
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .how-grid::before { display: none; }

  /* Benefits */
  .benefits-header { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bcard--col2 { grid-column: span 2; }
  .bcard--row2 { grid-row: span 1; }

  /* Biz */
  .biz-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-5px); }

  /* Testimonials */
  .testi-featured { padding: 2.25rem 2rem; }
  .testi-featured blockquote { font-size: 1.2rem; }

  /* CTA */
  .cta-inner { padding: 3.5rem 2rem; }
}

@media (max-width: 768px) {
  :root { --section: 4rem; --nav-h: 96px; }

  /* Nav */
  .brand-logo-img { height: 64px; }
  .brand { margin-block: -1rem; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: calc(var(--nav-h) + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(42, 21, 56, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    box-shadow: var(--shadow-lg);
    border-radius: 0;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.85rem 0.75rem; border-radius: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
  .nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 0.5rem; text-align: center !important; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Hero */
  .hero { padding-top: 5.5rem; }
  .hero-visual { min-height: 360px; }
  .hero-photo-wrap { max-width: 280px; transform: translateY(-80px) scale(1.2); }
  .hero-circle { max-width: 260px; transform: translate(-50%, -80px); }
  .float-pill { font-size: 0.75rem; padding: 0.55rem 0.9rem 0.55rem 0.55rem; }
  .float-pill-icon { width: 26px; height: 26px; }
  .pill-1 { bottom: 10%; left: 0; }
  .pill-2 { top: 10%;  right: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .store-btn,
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats-inner { flex-direction: column; gap: 0; }
  .hero-stat + .hero-stat::before { left: 10%; right: 10%; top: 0; bottom: auto; width: auto; height: 1px; }

  /* How */
  .how-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-section-bg-text { display: none; }

  /* Benefits */
  .bento { grid-template-columns: 1fr; }
  .bcard--col2 { grid-column: span 1; }

  /* Testi */
  .testi-header { flex-direction: column; align-items: flex-start; }
  .testi-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-inner { padding: 3rem 1.5rem; border-radius: var(--radius-xl); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .store-btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .legal-page { padding: 1.75rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero .display-hero { font-size: 2.8rem; }
  .hero-badge { font-size: 0.65rem; }
  .site-header { top: 0.5rem; }
}
