/* =============================================
   myslim.app — Base CSS
   Nike/Apple-grade: stark black+white, volt accent,
   colour-coded pillars, scroll-reveal motion.
   Fonts: Outfit (headings 700/800/900) + Inter (body)
   ============================================= */

:root {
  --ink:      #0a0a0a;
  --paper:    #ffffff;
  --accent:   #d4ff3f;
  --accent-ink: #0a0a0a;
  --mid:      #9ee600;
  --warm:     #f4ffd6;
  --sand:     #e8ffa8;
  --muted:    #6b7280;
  --dark:     #111111;
  --line:     #e9e9ec;
  --bg2:      #f7f7f8;
  --hero:     #000000;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-sm:0 2px 8px rgba(0,0,0,.06);

  --women:    #ff5d8f;
  --women-bg: #fff0f5;
  --men:      #3d9bff;
  --men-bg:   #eef6ff;
  --habit:    #ffb02e;
  --habit-bg: #fff7e8;
  --love:     #b26bff;
  --love-bg:  #f6efff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--dark); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }

.tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--accent);
  padding: 5px 12px; border-radius: 100px;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .06s; }
.reveal-2 { transition-delay: .12s; }
.reveal-3 { transition-delay: .18s; }
.reveal-4 { transition-delay: .24s; }
.reveal-5 { transition-delay: .3s; }
.reveal-6 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
  padding: 14px 32px; border-radius: 50px; cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .2s; border: none;
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 4px 24px rgba(212,255,63,.35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 32px rgba(212,255,63,.45); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.25);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-white {
  background: #fff; color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ── NAV ── */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
#nav.scrolled { border-color: var(--line); box-shadow: 0 2px 16px rgba(0,0,0,.05); }
.nav-wrap {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
.logo {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem;
  color: var(--ink); letter-spacing: -.04em;
}
.logo span { color: var(--mid); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--muted);
  padding: 6px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--dark); background: var(--bg2); }
.nav-cta { background: var(--ink) !important; color: #fff !important; border-radius: 50px !important; padding: 8px 20px !important; font-weight: 700 !important; }
.nav-cta:hover { background: #000 !important; opacity: 1 !important; transform: translateY(-1px); }
.lang-switch { display: flex; align-items: center; gap: 3px; padding: 6px 10px !important; font-size: .78rem; color: var(--muted); }
.lang-switch a { padding: 0 2px; color: var(--muted); font-weight: 600; }
.lang-switch a.active { color: var(--ink); font-weight: 800; }
.lang-switch a:hover { color: var(--dark); }
.lang-switch span { color: var(--line); }
.mob-lang { display: flex; gap: 16px; padding: 18px 0 0; }
.mob-lang a { font-size: .95rem; font-weight: 600; color: var(--muted); padding: 0; border-bottom: none; }
.mob-lang a.active { color: var(--ink); font-weight: 800; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }
.mob-menu { display: none; position: fixed; inset: 0; z-index: 200; background: var(--paper); flex-direction: column; padding: 28px; gap: 4px; }
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1.15rem; font-weight: 600; color: var(--dark); padding: 14px 0; border-bottom: 1px solid var(--line); }
.mob-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); align-self: flex-end; margin-bottom: 16px; }

/* ── HERO ── */
.hero { background: var(--hero); padding: 72px 0 0; overflow: hidden; position: relative; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(212,255,63,.18) 0%, rgba(212,255,63,0) 70%);
  pointer-events: none; animation: drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(178,107,255,.14) 0%, rgba(178,107,255,0) 70%);
  pointer-events: none; animation: drift 14s ease-in-out infinite alternate-reverse;
}
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(-40px,30px); } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1140px; margin: 0 auto; padding: 0 28px 80px; position: relative; z-index: 1; }
.hero-tag { margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-bottom: 36px; line-height: 1.75; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.5); }
.hero-trust-item svg { color: var(--accent); }
.hero-img { border-radius: 24px; overflow: hidden; height: 540px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.5); background: #000; }
.hero-img img, .hero-img video { height: 100%; width: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.01); }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%); pointer-events: none; }
.hero-float { position: absolute; background: rgba(10,10,10,.72); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 14px 18px; color: #fff; animation: float 5s ease-in-out infinite; }
.hero-float-1 { top: 24px; left: 24px; animation-delay: 0s; }
.hero-float-2 { bottom: 24px; right: 24px; animation-delay: 1.2s; }
.hero-float b { font-family: 'Outfit', sans-serif; font-size: 1.15rem; display: block; }
.hero-float span { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── TICKER ── */
.ticker { background: var(--accent); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: tick 32s linear infinite; }
.ticker-inner span { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.ticker-inner span::after { content: '✦'; margin-left: 32px; opacity: .5; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */
.stats { background: var(--ink); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--accent); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-light { background: var(--bg2); }
.section-warm { background: var(--warm); }
.section-dark { background: var(--hero); }

/* ── SECTION HEADER ── */
.sh { text-align: center; margin-bottom: 56px; }
.sh .tag { margin-bottom: 16px; }
.sh h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); margin-bottom: 14px; color: var(--ink); }
.sh p { font-size: 1rem; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { border-radius: 24px; overflow: hidden; height: 500px; box-shadow: var(--shadow); }
.about-tag { margin-bottom: 20px; display: inline-block; }
.about h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); margin-bottom: 18px; color: var(--ink); }
.about-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 28px; line-height: 1.8; }
.about-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--dark); }
.about-checks li::before { content: '✓'; font-weight: 700; color: var(--ink); background: var(--accent); width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .68rem; flex-shrink: 0; margin-top: 2px; }

/* ── PRODUCT MOCKUPS ── */
.mock-section { padding: 100px 0; background: var(--ink); position: relative; overflow: hidden; }
.mock-section::before { content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(212,255,63,.10) 0%, rgba(212,255,63,0) 70%); pointer-events: none; }
.mock-section .sh .tag { background: rgba(212,255,63,.15); color: #d4ff3f; }
.mock-section .sh h2 { color: #fff; }
.mock-section .sh p { color: rgba(255,255,255,.55); }
.mock-row { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.phone-mock { width: 260px; flex-shrink: 0; background: #050505; border-radius: 44px; padding: 10px; box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.phone-mock.tilt-left { transform: rotate(-4deg) translateY(18px); }
.phone-mock.tilt-right { transform: rotate(4deg) translateY(-6px); }
.phone-mock:hover { transform: rotate(0deg) translateY(-10px) scale(1.02); }
.phone-notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 84px; height: 22px; background: #050505; border-radius: 14px; z-index: 3; }
.phone-screen { position: relative; background: var(--paper); border-radius: 34px; overflow: hidden; aspect-ratio: 9/19.5; display: flex; flex-direction: column; font-family: 'Inter', sans-serif; }
.mock-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px 4px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .68rem; color: var(--ink); }
.mock-header { padding: 8px 20px 14px; }
.mock-greet { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.mock-streak { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; background: var(--warm); color: #b45309; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.mock-ring-wrap { display: flex; align-items: center; gap: 14px; padding: 4px 20px 16px; }
.mock-ring { width: 56px; height: 56px; border-radius: 50%; background: conic-gradient(var(--mid) 0% 68%, var(--line) 68% 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-ring span { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .72rem; color: var(--ink); }
.mock-ring-label b { display: block; font-family: 'Outfit', sans-serif; font-size: .85rem; color: var(--ink); }
.mock-ring-label span { font-size: .68rem; color: var(--muted); }
.mock-habits { padding: 0 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mock-habit-row { display: flex; align-items: center; gap: 10px; background: var(--bg2); border-radius: 12px; padding: 10px 12px; }
.mock-habit-row.done { background: var(--warm); }
.mock-check { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .6rem; }
.mock-habit-row.done .mock-check { background: var(--mid); border-color: var(--mid); color: #fff; }
.mock-habit-row span { font-size: .78rem; font-weight: 600; color: var(--ink); }
.mock-tabbar { display: flex; justify-content: space-around; padding: 14px 0 18px; border-top: 1px solid var(--line); margin-top: 10px; }
.mock-tabbar span { font-size: 1rem; opacity: .3; }
.mock-tabbar span.active { opacity: 1; }
.mock-chat { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; }
.mock-chat-title { display: flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .85rem; color: var(--ink); margin-bottom: 2px; }
.ai-badge { display: inline-flex; align-items: center; gap: 3px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .58rem; letter-spacing: .02em; color: var(--mid); background: var(--warm); padding: 3px 8px; border-radius: 100px; }
.bubble { max-width: 82%; padding: 9px 13px; border-radius: 16px; font-size: .74rem; line-height: 1.5; }
.bubble-ai { background: var(--bg2); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble-ai .ai-tag { display: block; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--mid); margin-bottom: 3px; }
.bubble-user { background: var(--ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble-sys { align-self: flex-start; font-size: .65rem; color: var(--mid); font-weight: 700; background: var(--warm); padding: 4px 10px; border-radius: 100px; }
.mock-input { margin: auto 16px 16px; background: var(--bg2); border-radius: 100px; padding: 10px 16px; font-size: .72rem; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.mock-input span:last-child { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: .7rem; }

/* ── PILLARS (included) ── */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar-card { background: var(--paper); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; border: 1px solid var(--line); }
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.pillar-img { height: 220px; overflow: hidden; position: relative; }
.pillar-img img { transition: transform .5s cubic-bezier(.16,1,.3,1); }
.pillar-card:hover .pillar-img img { transform: scale(1.06); }
.pillar-chip { position: absolute; top: 16px; left: 16px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.pillar-card.women .pillar-chip { background: var(--women); color: #fff; }
.pillar-card.men .pillar-chip { background: var(--men); color: #fff; }
.pillar-card.habit .pillar-chip { background: var(--habit); color: var(--ink); }
.pillar-card.love .pillar-chip { background: var(--love); color: #fff; }
.pillar-body { padding: 26px 24px; }
.pillar-num { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pillar-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; color: var(--ink); }
.pillar-body p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── BENEFITS GRID ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.benefit-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── GUARANTEE ── */
.guarantee { background: linear-gradient(135deg, var(--ink) 0%, #262626 100%); padding: 64px 0; position: relative; overflow: hidden; }
.guarantee-inner { display: flex; align-items: center; gap: 48px; position: relative; z-index: 1; }
.guarantee-badge { width: 120px; height: 120px; flex-shrink: 0; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.guarantee-text h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.guarantee-text p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.7; max-width: 560px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--paper); border-radius: 20px; padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { font-size: .85rem; color: #f59e0b; letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote { font-size: .95rem; color: var(--dark); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi-av { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--sand); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.testi-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem; color: var(--ink); }
.testi-meta { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { background: var(--paper); border: 2px solid var(--line); border-radius: 22px; padding: 32px 24px; text-align: center; position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--ink); background: var(--ink); }
.price-card.featured .price-plan { color: var(--accent); }
.price-card.featured .price-amount, .price-card.featured .price-period, .price-card.featured .price-note { color: #fff; }
.price-card.featured .price-note { color: rgba(255,255,255,.55); }
.price-plan { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.price-amount { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 3rem; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 1.3rem; vertical-align: super; }
.price-period { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.price-note { font-size: .78rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; min-height: 48px; }
.price-btn { display: block; width: 100%; padding: 13px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .88rem; cursor: pointer; border: 2px solid var(--line); background: transparent; color: var(--dark); transition: all .2s; }
.price-btn:hover { border-color: var(--ink); color: var(--ink); background: var(--bg2); }
.price-card.featured .price-btn { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.price-card.featured .price-btn:hover { background: var(--mid); transform: scale(1.02); }
.price-best { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--ink); font-family: 'Outfit', sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; text-align: left; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); }
.faq-q:hover { color: var(--mid); }
.faq-icon { font-size: 1.3rem; color: var(--ink); transition: transform .25s; flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 400; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; font-size: .92rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 20px; }

/* ── FINAL CTA ── */
.cta-final { background: var(--hero); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(212,255,63,.14) 0%, rgba(212,255,63,0) 70%); pointer-events: none; }
.cta-final .tag { margin-bottom: 20px; }
.cta-final h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); color: #fff; margin-bottom: 16px; position: relative; }
.cta-final p { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 440px; margin: 0 auto 36px; line-height: 1.75; position: relative; }
.cta-trust { display: flex; justify-content: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; position: relative; }
.cta-trust span { font-size: .8rem; color: rgba(255,255,255,.4); }
.cta-trust span::before { content: '✓ '; color: var(--accent); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 64px 0 0; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.f-logo { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem; color: #fff; display: block; margin-bottom: 12px; letter-spacing: -.03em; }
.f-logo span { color: var(--accent); }
.f-brand p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 240px; }
.f-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.f-col ul li { margin-bottom: 9px; }
.f-col ul li a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color .15s; }
.f-col ul li a:hover { color: rgba(255,255,255,.85); }
.f-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); }
.f-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.f-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.company-info { font-size: .72rem; color: rgba(255,255,255,.15); margin-top: 4px; }

/* ── LEGAL PAGES ── */
.page-hero { background: var(--hero); padding: 72px 0 56px; }
.page-hero .tag { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; }
.legal-wrap { max-width: 740px; margin: 0 auto; padding: 56px 28px 80px; }
.legal-updated { font-size: .78rem; color: var(--muted); margin-bottom: 24px; }
.company-box { background: var(--warm); border: 1px solid var(--sand); border-radius: 14px; padding: 20px 24px; margin-bottom: 36px; font-size: .85rem; color: var(--dark); line-height: 1.75; }
.company-box strong { color: var(--ink); }
.legal-wrap h2 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 36px 0 10px; color: var(--ink); border-top: 1px solid var(--line); padding-top: 28px; }
.legal-wrap p, .legal-wrap li { font-size: .88rem; color: var(--muted); line-height: 1.85; margin-bottom: 12px; }
.legal-wrap a { color: var(--ink); text-decoration: underline; }
.legal-wrap ul { padding-left: 20px; list-style: disc; }
.disclaimer-box { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 14px; padding: 18px 22px; margin: 20px 0; font-size: .85rem; color: #7c2d12; line-height: 1.75; }
.disclaimer-box strong { color: #9a3412; }

/* ── SUPPORT ── */
.support-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.support-cat { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; transition: transform .2s, box-shadow .2s; }
.support-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.support-cat-icon { font-size: 1.8rem; margin-bottom: 14px; }
.support-cat h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.support-cat p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── PAYWALL ── */
.paywall-page { min-height: 100vh; background: var(--hero); display: flex; align-items: center; justify-content: center; padding: 40px 24px; position: relative; overflow: hidden; }
.paywall-page::before { content:''; position:absolute; top:-20%; right:-10%; width:600px; height:600px; background: radial-gradient(circle, rgba(212,255,63,.12) 0%, rgba(212,255,63,0) 70%); }
.pw-card { background: #fff; border-radius: 26px; padding: 44px 40px; max-width: 480px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,.5); position: relative; z-index: 1; }
.pw-logo { display: block; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--ink); text-align: center; letter-spacing: -.03em; margin-bottom: 28px; }
.pw-logo span { color: var(--mid); }
.pw-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 6px; color: var(--ink); }
.pw-sub { font-size: .88rem; color: var(--muted); text-align: center; margin-bottom: 28px; }
.pw-plans { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pw-plan { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.pw-plan.selected { border-color: var(--ink); background: var(--warm); }
.pw-plan-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .92rem; color: var(--ink); margin-bottom: 2px; }
.pw-plan-note { font-size: .72rem; color: var(--muted); }
.pw-plan-price { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.pw-featured-tag { font-size: .62rem; font-weight: 700; color: var(--ink); background: var(--accent); border-radius: 100px; padding: 2px 8px; margin-left: 6px; font-family: 'Outfit', sans-serif; }
.pw-input { width: 100%; background: var(--bg2); border: 2px solid var(--line); border-radius: 14px; color: var(--dark); padding: 13px 16px; font-size: .92rem; font-family: 'Inter', sans-serif; outline: none; margin-bottom: 12px; transition: border-color .2s; }
.pw-input::placeholder { color: #aaa; }
.pw-input:focus { border-color: var(--ink); background: #fff; }
.pw-btn { width: 100%; background: var(--accent); color: var(--ink); border: none; padding: 15px; border-radius: 50px; font-size: .95rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: background .2s, transform .15s; margin-bottom: 16px; }
.pw-btn:hover { background: var(--mid); transform: translateY(-1px); }
.pw-error { font-size: .8rem; color: #ef4444; margin-bottom: 10px; display: none; }
.pw-trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.pw-trust span { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.pw-trust span::before { content: '✓'; color: var(--ink); font-weight: 700; }
.pw-fine { font-size: .68rem; color: #aaa; text-align: center; line-height: 1.7; }
.pw-fine a { color: var(--ink); }

/* ── QUIZ ── */
.quiz-page { min-height: 100vh; background: var(--paper); display: flex; flex-direction: column; }
.quiz-top { display: flex; align-items: center; gap: 16px; padding: 20px 24px; max-width: 640px; margin: 0 auto; width: 100%; }
.quiz-logo { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--ink); letter-spacing: -.03em; flex-shrink: 0; }
.quiz-logo span { color: var(--mid); }
.quiz-back { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.3rem; line-height: 1; padding: 4px 8px; flex-shrink: 0; visibility: hidden; }
.quiz-back.show { visibility: visible; }
.quiz-progress-track { flex: 1; height: 6px; background: var(--line); border-radius: 100px; overflow: hidden; }
.quiz-progress-fill { height: 100%; width: 0%; background: var(--ink); border-radius: 100px; transition: width .45s cubic-bezier(.16,1,.3,1); }
.quiz-step-label { font-size: .74rem; color: var(--muted); font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.quiz-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 24px 24px 60px; }
.quiz-card { max-width: 560px; width: 100%; opacity: 0; transform: translateY(16px); transition: opacity .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1); }
.quiz-card.in { opacity: 1; transform: translateY(0); }
.quiz-tag { display: block; text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.quiz-question { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.1rem); text-align: center; color: var(--ink); margin-bottom: 36px; letter-spacing: -.01em; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 2px solid var(--line); border-radius: 16px; cursor: pointer; background: #fff; transition: border-color .15s, background .15s, transform .1s; text-align: left; width: 100%; font-family: 'Inter', sans-serif; }
.quiz-option:hover { border-color: var(--ink); }
.quiz-option:active { transform: scale(.98); }
.quiz-option.selected { border-color: var(--ink); background: var(--warm); }
.quiz-option-emoji { font-size: 1.35rem; flex-shrink: 0; }
.quiz-option-label { font-weight: 700; font-size: .96rem; color: var(--ink); }
.quiz-loading { text-align: center; max-width: 460px; }
.quiz-loading-ring { width: 84px; height: 84px; margin: 0 auto 28px; border-radius: 50%; background: conic-gradient(var(--accent) var(--p, 0%), var(--line) 0); display: flex; align-items: center; justify-content: center; transition: background 1s linear; }
.quiz-loading-ring span { width: 66px; height: 66px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink); }
.quiz-loading h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.quiz-loading-status { font-size: .92rem; color: var(--muted); min-height: 24px; transition: opacity .25s; }
@media (max-width: 640px) {
  .quiz-question { font-size: 1.4rem; }
  .quiz-option { padding: 14px 16px; }
}

/* ── MANAGE PAGE ── */
.manage-wrap { max-width: 640px; margin: 0 auto; padding: 64px 28px; }
.manage-wrap h1 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.manage-wrap p { font-size: .92rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.manage-card { background: var(--warm); border: 1px solid var(--sand); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.manage-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 8px; color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .mock-row { gap: 24px; }
  .phone-mock { width: 220px; }
  .phone-mock.tilt-left, .phone-mock.tilt-right { transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .support-cats { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .pw-card { padding: 32px 24px; }
  .f-bottom { flex-direction: column; align-items: flex-start; }
}
