/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg: oklch(97.5% 0.007 62);
  --surface: oklch(100% 0.003 62);
  --surface-alt: oklch(94.5% 0.01 62);
  --text: oklch(11% 0.006 280);
  --text-muted: oklch(50% 0.008 280);
  --text-faint: oklch(70% 0.005 280);
  --border: oklch(88% 0.006 280);
  --border-light: oklch(93% 0.004 280);

  --accent: oklch(46% 0.19 312);
  --accent-hover: oklch(40% 0.21 312);
  --accent-light: oklch(94% 0.035 312);

  --beauty-accent: oklch(52% 0.17 348);
  --beauty-hover: oklch(45% 0.19 348);
  --beauty-bg: oklch(97.5% 0.028 348);
  --beauty-mid: oklch(86% 0.09 348);
  --beauty-light: oklch(93% 0.05 348);

  --fitness-accent: oklch(63% 0.17 47);
  --fitness-hover: oklch(56% 0.18 47);
  --fitness-bg: oklch(12% 0.018 280);
  --fitness-text: oklch(96% 0.005 60);

  --resto-accent: oklch(40% 0.1 150);
  --resto-hover: oklch(33% 0.11 150);
  --resto-bg: oklch(97% 0.018 150);
  --resto-light: oklch(93% 0.03 150);

  --font-d: 'Secular One', sans-serif;
  --font-b: 'Assistant', sans-serif;

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem;
  --sp-4: 1rem;   --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;   --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;  --sp-20: 5rem;   --sp-24: 6rem;
  --sp-32: 8rem;

  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1.0625rem;
  --t-lg: 1.25rem;
  --t-xl: 1.5rem;
  --t-2xl: clamp(1.5rem, 2.8vw, 2.25rem);
  --t-3xl: clamp(2rem, 4.2vw, 3.25rem);
  --t-hero: clamp(2.75rem, 6.5vw, 5rem);
  --t-huge: clamp(4.5rem, 12vw, 9rem);

  --r-sm: 6px; --r: 12px; --r-lg: 20px; --r-xl: 32px; --r-pill: 999px;

  --sh-sm: 0 2px 8px oklch(0% 0 0 / .06);
  --sh-md: 0 8px 30px oklch(0% 0 0 / .1);
  --sh-lg: 0 20px 60px oklch(0% 0 0 / .15);
  --sh-xl: 0 36px 90px oklch(0% 0 0 / .2);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 380ms;
  --dur-fast: 200ms;
  --dur-slow: 600ms;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.12; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    to left,
    var(--accent),
    oklch(62% 0.22 290),
    oklch(55% 0.2 200)
  );
  transform-origin: right;
  transform: scaleX(0);
  z-index: 1000;
  transition: transform 60ms linear;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: var(--t-base); font-weight: 600;
  cursor: pointer; border: none; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: oklch(100% 0 0 / .35);
  pointer-events: none;
  transform: scale(0);
  animation: rippleAnim 600ms var(--ease) forwards;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

.btn-primary {
  background: var(--accent); color: oklch(96% 0.005 312);
  box-shadow: 0 4px 20px oklch(46% 0.19 312 / .35);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 8px 28px oklch(46% 0.19 312 / .48); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text); background: var(--surface-alt); }

.btn-nav {
  background: var(--text); color: var(--bg);
  font-size: var(--t-sm); padding: var(--sp-2) var(--sp-4);
}
.btn-nav:hover { background: oklch(25% 0.005 280); }

.btn-beauty {
  background: var(--beauty-accent); color: white;
  box-shadow: 0 4px 18px oklch(52% 0.17 348 / .36);
}
.btn-beauty:hover { background: var(--beauty-hover); box-shadow: 0 8px 26px oklch(52% 0.17 348 / .52); }

.btn-fitness {
  background: var(--fitness-accent); color: oklch(12% 0.02 280);
  box-shadow: 0 4px 18px oklch(63% 0.17 47 / .36);
}
.btn-fitness:hover { background: var(--fitness-hover); box-shadow: 0 8px 26px oklch(63% 0.17 47 / .5); }

.btn-restaurant {
  background: var(--resto-accent); color: white;
  box-shadow: 0 4px 18px oklch(40% 0.1 150 / .32);
}
.btn-restaurant:hover { background: var(--resto-hover); box-shadow: 0 8px 26px oklch(40% 0.1 150 / .48); }

.btn-wa-big {
  background: #25d366; color: white;
  font-size: var(--t-xl); padding: var(--sp-5) var(--sp-12);
  box-shadow: 0 8px 32px oklch(65% 0.22 148 / .4);
}
.btn-wa-big:hover { background: #1fbd5a; box-shadow: 0 14px 40px oklch(65% 0.22 148 / .55); }

.btn-beauty-p  { background: var(--beauty-accent);  color: white; width: 100%; justify-content: center; }
.btn-beauty-p:hover  { background: var(--beauty-hover); }
.btn-fitness-p { background: var(--fitness-accent); color: oklch(12% 0.02 280); width: 100%; justify-content: center; }
.btn-fitness-p:hover { background: var(--fitness-hover); }
.btn-restaurant-p { background: var(--resto-accent); color: white; width: 100%; justify-content: center; }
.btn-restaurant-p:hover { background: var(--resto-hover); }

/* ============================================
   NAV — glassmorphism on scroll
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(97.5% 0.007 62 / .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease);
}
.nav.scrolled {
  background: oklch(100% 0.003 62 / .72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: oklch(88% 0.006 280 / .5);
  box-shadow: 0 1px 0 oklch(88% 0.006 280 / .4), var(--sh-md);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: var(--sp-4) clamp(1rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-d); font-size: var(--t-lg); color: var(--text);
}
.logo-mark { color: var(--accent); font-size: 1.4em; line-height: 1; }
.nav-links { display: flex; gap: var(--sp-6); font-size: var(--t-sm); font-weight: 500; }
.nav-links a {
  color: var(--text-muted);
  transition: color var(--dur-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 88vh;
  padding: var(--sp-20) 0 0;
  overflow: hidden;
  position: relative;
}

/* Animated gradient mesh background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, oklch(90% 0.04 312 / .6), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, oklch(92% 0.03 200 / .5), transparent 60%),
    radial-gradient(ellipse 70% 80% at 60% 40%, oklch(94% 0.025 260 / .4), transparent 65%),
    linear-gradient(oklch(97.5% 0.007 62 / .82), oklch(97.5% 0.007 62 / .95)),
    url("https://images.unsplash.com/photo-1497215842964-222b430dc094?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  z-index: -1;
  animation: meshShift 14s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { background-position: 30% 20%, 80% 70%, 60% 40%, 0 0, center; }
  33%  { background-position: 35% 30%, 75% 65%, 65% 35%, 0 0, center; }
  66%  { background-position: 25% 25%, 85% 60%, 55% 45%, 0 0, center; }
  100% { background-position: 40% 15%, 70% 75%, 70% 30%, 0 0, center; }
}

/* Floating orbs behind hero visual */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.hero-orb-1 {
  width: 340px; height: 340px;
  background: oklch(82% 0.08 312 / .28);
  top: -60px; right: 5%;
  animation: orbFloat1 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 260px; height: 260px;
  background: oklch(78% 0.1 200 / .22);
  top: 30%; right: 28%;
  animation: orbFloat2 22s ease-in-out infinite 3s;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  background: oklch(86% 0.07 60 / .3);
  bottom: 10%; right: 15%;
  animation: orbFloat3 16s ease-in-out infinite 1.5s;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 20px) scale(1.05); }
  66%       { transform: translate(20px, -15px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(25px, -30px) scale(1.08); }
  70%       { transform: translate(-20px, 15px) scale(0.92); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-15px, -20px) scale(1.1); }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-bottom: var(--sp-16);
  position: relative; z-index: 1;
}

/* Hero text — entrance animations */
.hero-eyebrow {
  font-size: var(--t-sm); font-weight: 700;
  color: var(--accent); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: var(--sp-4);
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s var(--ease) 0.1s forwards;
}
.hero-title {
  font-size: var(--t-hero); line-height: 1.06;
  margin-bottom: var(--sp-6); color: var(--text);
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s var(--ease) 0.25s forwards;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-body {
  font-size: var(--t-lg); color: var(--text-muted);
  line-height: 1.65; max-width: 44ch; margin-bottom: var(--sp-8);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s var(--ease) 0.45s forwards;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.7s var(--ease) 0.6s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual - stacked browser mockups */
.hero-visual {
  position: relative; height: 380px;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.4s forwards;
}
.h-browser {
  position: absolute;
  width: 78%; background: white;
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.h-browser:nth-child(1) { top: 0;    right: 0;   z-index: 3; box-shadow: var(--sh-lg); }
.h-browser:nth-child(2) { top: 32px; right: 7%;  z-index: 2; box-shadow: var(--sh-md); }
.h-browser:nth-child(3) { top: 64px; right: 3.5%;z-index: 1; box-shadow: var(--sh-sm); }
.hero-visual .h-browser:nth-child(1) {
  animation: floatCard1 6s ease-in-out infinite;
}
.hero-visual .h-browser:nth-child(2) {
  animation: floatCard2 7.2s ease-in-out infinite 0.8s;
}
.hero-visual .h-browser:nth-child(3) {
  animation: floatCard3 8.1s ease-in-out infinite 1.6s;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0)    rotate(-1.2deg); }
  50%       { transform: translateY(-14px) rotate(-0.4deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0)   rotate(1.6deg); }
  50%       { transform: translateY(-10px) rotate(0.8deg); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(0)   rotate(-0.6deg); }
  50%       { transform: translateY(-8px)  rotate(0.2deg); }
}

.brow {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}
.brow-dark { background: oklch(18% 0.01 280); border-bottom-color: oklch(26% 0.01 280); }
.brow:not(.brow-dark) { background: oklch(94% 0.005 280); }
.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.brow-url {
  font-size: 10px; color: var(--text-muted);
  background: oklch(98% 0.003 280);
  padding: 2px 8px; border-radius: 4px; margin-right: var(--sp-1);
}
.brow-dark .brow-url { background: oklch(24% 0.01 280); color: oklch(60% 0.005 280); }
.mini-body { padding: var(--sp-3) var(--sp-4); height: 88px; }
.mini-b-beauty    { background: oklch(97.5% 0.022 348); }
.mini-b-fitness   { background: oklch(12% 0.018 280); }
.mini-b-restaurant{ background: oklch(97% 0.018 150); }
.m-logo { font-size: 8px; font-weight: 800; letter-spacing: 0.06em; opacity: .8; margin-bottom: 3px; }
.m-logo-beauty { color: var(--beauty-accent); }
.m-logo-fitness { color: var(--fitness-accent); font-family: var(--font-d); }
.m-logo-resto   { color: var(--resto-accent);   font-family: var(--font-d); }
.m-title { font-family: var(--font-d); font-size: 12px; margin-bottom: 6px; }
.m-title-beauty { color: oklch(22% 0.01 348); }
.m-title-fitness { color: var(--fitness-text); }
.m-title-resto  { color: oklch(18% 0.01 150); }
.m-cta {
  display: inline-block; font-size: 7px; font-weight: 800;
  padding: 3px 10px; border-radius: 100px; width: fit-content;
}
.m-cta-beauty    { background: var(--beauty-accent);  color: white; }
.m-cta-fitness   { background: var(--fitness-accent); color: oklch(12% 0.02 280); }
.m-cta-restaurant{ background: var(--resto-accent);   color: white; }

/* Stats bar */
.hero-stats {
  border-top: 1px solid var(--border);
  padding: var(--sp-12) clamp(1rem, 5vw, 3rem);
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8);
  position: relative; z-index: 1;
}
.hero-stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.hero-stat.stat-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-stat:nth-child(1) { transition-delay: 0ms; }
.hero-stat:nth-child(2) { transition-delay: 120ms; }
.hero-stat:nth-child(3) { transition-delay: 240ms; }
.hstat-num {
  font-family: var(--font-d);
  font-size: var(--t-huge);
  line-height: 1; color: var(--text);
}
.hstat-suf { font-family: var(--font-d); font-size: var(--t-huge); }
.hero-stat p { font-size: var(--t-sm); color: var(--text-muted); margin-top: var(--sp-2); max-width: 22ch; }

/* ============================================
   NICHE SECTIONS
   ============================================ */
.niches { overflow: hidden; }

.niche-section {
  overflow: hidden;
  position: relative;
}

/* Decorative background shapes per niche */
.beauty-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(88% 0.06 348 / .35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.beauty-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(82% 0.09 320 / .2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fitness-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(30% 0.06 47 / .4), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.restaurant-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(90% 0.04 150 / .4), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.niche-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: center;
  padding: var(--sp-24) clamp(1rem, 5vw, 3rem);
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.fitness-section { background: var(--fitness-bg); }
.fitness-section .niche-wrap { max-width: 100%; margin: 0; }
.fitness-section .niche-wrap { max-width: 1200px; margin: 0 auto; }

.flip { order: -1; }

.niche-tag {
  display: inline-block; font-size: var(--t-sm); font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.03em; margin-bottom: var(--sp-4);
}
.fitness-section .niche-tag { color: oklch(60% 0.01 280); }

.niche-h { font-size: var(--t-3xl); margin-bottom: var(--sp-5); }
.fitness-section .niche-h { color: var(--fitness-text); }

.niche-p {
  font-size: var(--t-lg); color: var(--text-muted);
  line-height: 1.65; max-width: 40ch; margin-bottom: var(--sp-8);
}
.fitness-section .niche-p { color: oklch(65% 0.008 280); }

/* Niche list items — stagger reveal via JS adding .list-visible class */
.niche-list {
  display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-8);
}
.niche-list li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-base); font-weight: 500;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.niche-list li.list-item-visible {
  opacity: 1;
  transform: translateX(0);
}
.niche-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.beauty-section  .niche-list li::before { background: var(--beauty-light);   color: var(--beauty-accent); }
.fitness-section .niche-list li          { color: oklch(85% 0.005 280); }
.fitness-section .niche-list li::before { background: oklch(22% 0.03 47);    color: var(--fitness-accent); }
.restaurant-section .niche-list li::before { background: var(--resto-light); color: var(--resto-accent); }

.niche-cta-row { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.niche-price { font-family: var(--font-d); font-size: var(--t-2xl); }
.fitness-section .niche-price { color: var(--fitness-text); }

/* Browser mockup in niche sections */
.niche-browser {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl); background: white;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  transform-style: preserve-3d;
  perspective: 1000px;
  /* continuous float animation */
  animation: nicheFloat 7s ease-in-out infinite;
}
.fitness-section .niche-browser {
  animation: nicheFloat 7.8s ease-in-out infinite 0.5s;
}
.restaurant-section .niche-browser {
  animation: nicheFloat 6.5s ease-in-out infinite 1s;
}
@keyframes nicheFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* 3D tilt on hover — JS handles exact tilt values via inline style,
   CSS sets the base transition and lifts the shadow */
.niche-browser:hover {
  box-shadow: 0 52px 110px oklch(0% 0 0 / .22);
  animation-play-state: paused;
}
.niche-browser a { display: block; }

.nbrow {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: 8px 14px; border-bottom: 1px solid var(--border);
}
.nbrow-beauty  { background: oklch(94% 0.015 348); border-bottom-color: oklch(88% 0.02 348); }
.nbrow-fitness { background: oklch(18% 0.01 280);  border-bottom-color: oklch(26% 0.01 280); }
.nbrow-resto   { background: oklch(93% 0.02 150);  border-bottom-color: oklch(86% 0.025 150); }
.nbrow-url {
  font-size: 11px; background: oklch(98% 0.003 280);
  padding: 2px 10px; border-radius: 5px; margin-right: var(--sp-2);
}
.nbrow-fitness .nbrow-url { background: oklch(24% 0.01 280); color: oklch(62% 0.005 280); }

/* Full demo preview cards inside browser */
.demo-card { height: 460px; overflow: hidden; position: relative; cursor: pointer; }

/* Beauty demo card */
.demo-beauty {
  background: oklch(97.5% 0.022 348);
  display: flex; flex-direction: column;
}
.db-top {
  background:
    linear-gradient(oklch(28% 0.06 348 / .7), oklch(32% 0.05 348 / .78)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.db-top::before {
  content: '';
  position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: oklch(45% 0.12 348);
  opacity: 0.4;
}
.db-top::after {
  content: '';
  position: absolute; bottom: -60px; right: -30px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: oklch(38% 0.1 348);
  opacity: 0.3;
}
.db-logo { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--beauty-mid); margin-bottom: 8px; position: relative; z-index: 1; }
.db-headline { font-family: var(--font-d); font-size: 22px; color: white; line-height: 1.2; margin-bottom: 12px; position: relative; z-index: 1; }
.db-sub { font-size: 10px; color: var(--beauty-mid); margin-bottom: 16px; position: relative; z-index: 1; }
.db-btn { display: inline-block; background: white; color: var(--beauty-accent); font-size: 10px; font-weight: 800; padding: 6px 18px; border-radius: 100px; position: relative; z-index: 1; width: fit-content; }
.db-bottom {
  padding: var(--sp-6) var(--sp-8);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-3);
}
.db-service { background: white; border-radius: var(--r); padding: var(--sp-3); box-shadow: var(--sh-sm); }
.db-service-icon { width: 28px; height: 28px; background: var(--beauty-light); border-radius: 8px; margin-bottom: 6px; }
.db-service-name { font-size: 9px; font-weight: 700; color: var(--beauty-accent); }
.db-service-price { font-size: 8px; color: var(--text-muted); }

/* Fitness demo card */
.demo-fitness {
  background: oklch(12% 0.018 280);
  display: flex; flex-direction: column;
}
.df-top {
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  flex: 1;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background:
    linear-gradient(oklch(12% 0.018 280 / .7), oklch(12% 0.018 280 / .92)),
    url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}
.df-accent-bar {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 4px; background: var(--fitness-accent);
}
.df-logo { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; color: var(--fitness-accent); margin-bottom: 10px; }
.df-headline { font-family: var(--font-d); font-size: 24px; color: white; line-height: 1.15; margin-bottom: 8px; }
.df-sub { font-size: 10px; color: oklch(55% 0.008 280); margin-bottom: 16px; }
.df-btn { display: inline-block; background: var(--fitness-accent); color: oklch(12% 0.02 280); font-size: 10px; font-weight: 800; padding: 7px 20px; border-radius: 100px; width: fit-content; }
.df-bottom {
  padding: var(--sp-5) var(--sp-8);
  display: flex; gap: var(--sp-3);
}
.df-stat {
  flex: 1; padding: var(--sp-3); background: oklch(18% 0.012 280);
  border-radius: var(--r); text-align: center;
}
.df-stat-n { font-family: var(--font-d); font-size: 20px; color: var(--fitness-accent); }
.df-stat-l { font-size: 8px; color: oklch(50% 0.005 280); }

/* Restaurant demo card */
.demo-resto {
  background: oklch(97% 0.018 150);
  display: flex; flex-direction: column;
}
.dr-top {
  background:
    linear-gradient(oklch(22% 0.04 150 / .76), oklch(22% 0.04 150 / .88)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.dr-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(oklch(30% 0.05 150) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
}
.dr-logo { font-family: var(--font-d); font-size: 18px; color: oklch(75% 0.08 150); margin-bottom: 6px; position: relative; z-index: 1; }
.dr-tagline { font-size: 10px; color: oklch(65% 0.05 150); margin-bottom: 16px; letter-spacing: 0.05em; position: relative; z-index: 1; }
.dr-btns { display: flex; gap: 8px; position: relative; z-index: 1; }
.dr-btn-main { display: inline-block; background: var(--resto-accent); color: white; font-size: 9px; font-weight: 800; padding: 6px 16px; border-radius: 100px; }
.dr-btn-sec  { display: inline-block; background: transparent; color: oklch(75% 0.05 150); font-size: 9px; font-weight: 600; padding: 6px 16px; border-radius: 100px; border: 1px solid oklch(40% 0.04 150); }
.dr-bottom {
  padding: var(--sp-5) var(--sp-8);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3);
}
.dr-item { background: white; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.dr-item-img { height: 40px; background: oklch(88% 0.04 150); }
.dr-item-img:nth-child(1) { background: oklch(75% 0.08 50); }
.dr-item-name { font-size: 8px; font-weight: 700; padding: 4px 6px 2px; color: var(--text); }
.dr-item-price { font-size: 7px; padding: 0 6px 4px; color: var(--text-muted); }

/* ============================================
   PROCESS
   ============================================ */
.process { padding: var(--sp-24) 0; background: var(--surface-alt); position: relative; overflow: hidden; }

/* Gradient section dividers */
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to left, var(--accent), oklch(62% 0.2 290), oklch(55% 0.18 200));
}

.section-header { text-align: center; margin-bottom: var(--sp-16); }
.section-title { font-size: var(--t-3xl); margin-bottom: var(--sp-3); }
.section-sub { font-size: var(--t-lg); color: var(--text-muted); }

/* Steps layout with connecting line */
.steps {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  position: relative;
}
/* Connecting line drawn by JS — spans between steps */
.steps-line {
  position: absolute;
  top: 56px;
  right: calc(33.33% + 30px);
  left: calc(33.33% + 30px);
  height: 2px;
  background: var(--border);
  overflow: hidden;
}
.steps-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.2s var(--ease);
}
.steps-line.line-drawn::after {
  transform: scaleX(1);
}

.step {
  flex: 1; display: flex; flex-direction: column; gap: var(--sp-3);
  padding: var(--sp-8); background: var(--surface);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

/* Step number — circular reveal animation */
.step-num {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-light);
  position: relative;
  display: inline-block;
  transition: color var(--dur-slow) var(--ease), -webkit-text-stroke-color var(--dur-slow) var(--ease);
}
.step.visible .step-num {
  color: var(--accent-light);
  -webkit-text-stroke-color: transparent;
  animation: stepNumReveal 0.7s var(--ease) forwards;
}
@keyframes stepNumReveal {
  0%   { transform: scale(0.6) rotate(-10deg); opacity: 0; }
  60%  { transform: scale(1.1) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.step h3 { font-size: var(--t-xl); margin-bottom: var(--sp-1); }
.step p  { color: var(--text-muted); }
.step-arr {
  font-size: var(--t-2xl); color: var(--border); align-self: center; flex-shrink: 0;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.steps.line-drawn .step-arr { color: var(--accent); }

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: var(--sp-24) 0; position: relative; overflow: hidden; }
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to left, oklch(55% 0.18 200), var(--accent), oklch(62% 0.2 290));
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-6);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}
.pricing-card:hover { box-shadow: var(--sh-md); }

/* Featured card glow border animation */
.pricing-featured {
  border-color: var(--fitness-accent);
  box-shadow: 0 0 0 2px oklch(63% 0.17 47 / .18), var(--sh-md);
  animation: featuredGlow 3s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 0 2px oklch(63% 0.17 47 / .18), 0 0 20px oklch(63% 0.17 47 / .15), var(--sh-md); }
  50%       { box-shadow: 0 0 0 3px oklch(63% 0.17 47 / .35), 0 0 40px oklch(63% 0.17 47 / .3), var(--sh-lg); }
}
.pricing-badge {
  position: absolute; top: -13px; right: 50%; transform: translateX(50%);
  background: var(--fitness-accent); color: oklch(12% 0.02 280);
  font-size: var(--t-xs); font-weight: 800;
  padding: 4px 16px; border-radius: var(--r-pill); white-space: nowrap;
}
.pricing-niche-tag {
  font-size: var(--t-sm); font-weight: 700;
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-sm); width: fit-content;
}
.ptag-beauty { background: var(--beauty-light); color: var(--beauty-accent); }
.ptag-fitness { background: oklch(22% 0.03 47); color: var(--fitness-accent); }
.ptag-resto   { background: var(--resto-light); color: var(--resto-accent); }
.pricing-price { font-family: var(--font-d); font-size: var(--t-3xl); }
.pricing-price span { font-size: var(--t-base); font-family: var(--font-b); color: var(--text-muted); }
.pricing-list { display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.pricing-list li {
  font-size: var(--t-sm); font-weight: 500;
  display: flex; align-items: center; gap: var(--sp-2);
}
.pricing-list li::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: 12px; }
.pricing-note { text-align: center; font-size: var(--t-sm); color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: var(--sp-24) 0; background: var(--surface-alt); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--dur) var(--ease);
}
.faq-item[open] {
  box-shadow: var(--sh-sm);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-weight: 600; font-size: var(--t-base); cursor: pointer;
  transition: background var(--dur-fast);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg); }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-d); font-size: var(--t-xl); color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  display: inline-block;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent-hover);
}

/* Grid trick for smooth height animation */
.faq-item .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease);
}
.faq-item[open] .faq-body {
  grid-template-rows: 1fr;
}
.faq-item .faq-body-inner {
  overflow: hidden;
}
.faq-item p {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--text-muted); line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--sp-32) 0; background: var(--text); text-align: center;
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, oklch(30% 0.08 312 / .3), transparent),
    radial-gradient(ellipse 50% 60% at 80% 40%, oklch(25% 0.06 200 / .25), transparent);
  pointer-events: none;
}
.contact-inner {
  max-width: 640px; margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-6);
  position: relative; z-index: 1;
}
.contact-title { font-size: var(--t-hero); color: var(--bg); }
.contact-sub { font-size: var(--t-lg); color: oklch(62% 0.006 280); line-height: 1.65; }
.contact-note { font-size: var(--t-sm); color: oklch(52% 0.005 280); }
.contact-note a { color: oklch(70% 0.005 280); font-weight: 600; }

/* ============================================
   FOOTER + FLOAT
   ============================================ */
.footer { padding: var(--sp-6) 0; background: oklch(8% 0.005 280); text-align: center; }
.footer p { font-size: var(--t-sm); color: oklch(38% 0.005 280); }

/* WhatsApp float — pulse ring animation */
.wa-float {
  position: fixed; bottom: var(--sp-6); left: var(--sp-6);
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 20px oklch(65% 0.22 148 / .48);
  z-index: 200;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.wa-float::before,
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float::after { animation-delay: 1.2s; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.2); opacity: 0; }
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px oklch(65% 0.22 148 / .6);
}
.wa-float:hover::before,
.wa-float:hover::after {
  animation-play-state: paused;
}
/* Keep the icon above the rings */
.wa-float svg { position: relative; z-index: 1; }

/* ============================================
   DEMO NOTICE + MOBILE BAR
   ============================================ */
.demo-notice {
  font-size: 0.75rem; color: var(--text-faint);
  width: 100%; margin-top: var(--sp-3);
  line-height: 1.5;
}

.mobile-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) clamp(1rem, 5vw, 3rem);
  display: flex; align-items: center; gap: var(--sp-5);
  justify-content: center; flex-wrap: wrap;
  text-align: center;
}
.mobile-bar-icon { font-size: 2rem; flex-shrink: 0; }
.mobile-bar-text strong { display: block; font-family: var(--font-d); font-size: var(--t-xl); color: var(--text); margin-bottom: var(--sp-1); }
.mobile-bar-text span { font-size: var(--t-sm); color: var(--text-muted); }

/* ============================================
   REVEAL ANIMATIONS — IntersectionObserver
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children in grids */
.pricing-grid .pricing-card:nth-child(1).reveal { transition-delay: 0ms; }
.pricing-grid .pricing-card:nth-child(2).reveal { transition-delay: 100ms; }
.pricing-grid .pricing-card:nth-child(3).reveal { transition-delay: 200ms; }

.steps .step:nth-child(1).reveal { transition-delay: 0ms; }
.steps .step:nth-child(3).reveal { transition-delay: 120ms; }
.steps .step:nth-child(5).reveal { transition-delay: 240ms; }

/* ============================================
   GRADIENT SECTION DIVIDERS (subtle)
   ============================================ */
.niches { position: relative; }
.niches::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to left, var(--beauty-accent), oklch(62% 0.18 290), var(--fitness-accent));
  z-index: 2;
}

/* ============================================
   3D CARD TILT UTILITIES (JS sets inline style)
   ============================================ */
.tilt-card {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================
   PREFERS-REDUCED-MOTION OVERRIDE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-eyebrow,
  .hero-title,
  .hero-body,
  .hero-ctas,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .niche-list li {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-orbs { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .niche-wrap { grid-template-columns: 1fr; gap: var(--sp-10); }
  .flip { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto var(--sp-8); }
  .steps { flex-direction: column; }
  .step-arr { transform: rotate(90deg); align-self: center; }
  .steps-line { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-wa-big { font-size: var(--t-lg); padding: var(--sp-4) var(--sp-8); }
}
