/* ============================================================
   CreatorIn — Home Premium Styles v3.0
   Aurora hero · Scroll reveals · Premium cards · Micro-interactions
   ============================================================ */

/* ── Reset bleed from old booking.css hero-blob on light pages ── */
.hero-blob { display: none !important; }

/* ══════════════════════════════════════════════════════════
   NAV — full layout + scroll effect
   ══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }
.logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color .18s, background .18s;
  display: block;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--primary); background: var(--primary-light); }

.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav.scrolled {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08) !important;
}
.dark .nav.scrolled {
  background: rgba(15,23,42,.92) !important;
}

/* Nav link hover underline animation */
.nav-links a {
  position: relative;
  overflow: hidden;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: width .25s ease, left .25s ease;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; left: 0; }

/* Primary button shine sweep */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn-primary:hover::after { left: 150%; }

/* ══════════════════════════════════════════════════════════
   HERO — Aurora background
   ══════════════════════════════════════════════════════════ */
.hero {
  padding: calc(var(--nav-height) + 100px) 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}
.dark .hero { background: #0F172A; }

/* ── Hero split layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { display: flex; flex-direction: column; }

/* ── Hero image ── */
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(124,58,237,.2), 0 4px 16px rgba(0,0,0,.06);
  animation: heroTitleIn .8s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .4s;
  aspect-ratio: 4/3;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.02); }

/* Floating badges over image */
.hero-img-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-img-badge-top    { top: 20px; right: 20px; }
.hero-img-badge-bottom { bottom: 20px; left: 20px; animation-direction: reverse; animation-delay: -2s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hv-notif-icon {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text .hero-actions { justify-content: center !important; }
  .hero-text .hero-trust   { justify-content: center !important; }
  .hero-img-wrap { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) { .hero-img-wrap { display: none; } }

/* Aurora orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: auroraFloat 12s ease-in-out infinite;
}
.hero::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, rgba(99,102,241,.06) 50%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.hero::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236,72,153,.09) 0%, rgba(59,130,246,.06) 50%, transparent 70%);
  bottom: -150px; right: -80px;
  animation-delay: -6s;
}
@keyframes auroraFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.05); }
  66%      { transform: translate(-30px, 20px) scale(0.97); }
}

/* Grid dots overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(124,58,237,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.dark .hero-grid {
  background-image: radial-gradient(circle, rgba(139,92,246,.15) 1px, transparent 1px);
}

.hero-inner { position: relative; z-index: 1; }

/* Badge animation */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(99,102,241,.08));
  color: var(--primary);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: badgePop .6s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .1s;
}
@keyframes badgePop {
  from { opacity:0; transform:scale(.8) translateY(-8px); }
  to   { opacity:1; transform:scale(1)  translateY(0); }
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}

/* Hero headline */
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: heroTitleIn .7s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .2s;
}
@keyframes heroTitleIn {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: heroTitleIn .7s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .35s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroTitleIn .7s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .5s;
}

/* Trust bar */
.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--text-muted);
  animation: heroTitleIn .7s ease both;
  animation-delay: .7s;
}
.trust-avatars {
  display: flex;
  margin-right: 6px;
}
.trust-av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  font-size: .7rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.trust-av:first-child { margin-left: 0; }
.trust-stars { color: #F59E0B; letter-spacing: 1px; }

/* ══════════════════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════════════════ */
section { scroll-margin-top: 80px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title .gradient-text {
  background: linear-gradient(135deg, #7c3aed, #6366f1, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradFlow 6s ease infinite;
}
@keyframes gradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.how {
  padding: 100px 0;
  background: var(--bg);
}
.how .container { text-align: center; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
/* connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #6366f1, #ec4899);
  opacity: .25;
  border-radius: 99px;
}

.step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
  transition: transform .3s ease;
}
.step:hover { transform: translateY(-6px); }

.step-num {
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
  position: relative;
  z-index: 1;
  transition: box-shadow .3s, transform .3s;
}
.step:hover .step-num {
  box-shadow: 0 12px 32px rgba(124,58,237,.5);
  transform: scale(1.08);
}
.step h3 { font-size: 1.0625rem; margin-bottom: 8px; color: var(--text); }
.step p   { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--primary-mid);
  margin-top: 16px;
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { opacity:.4; transform:translateX(0); }
  50%      { opacity:1;  transform:translateX(4px); }
}

/* ══════════════════════════════════════════════════════════
   FOR BRANDS / FOR CREATORS
   ══════════════════════════════════════════════════════════ */
.for-section { padding: 100px 0; }
.for-brands  { background: var(--bg-white); }
.for-creators{ background: var(--bg); }

.for-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.for-inner.reverse { direction: rtl; }
.for-inner.reverse > * { direction: ltr; }

/* Feature list */
.feature-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .25s, background .25s;
}
.feature-list li:hover .feature-icon {
  transform: scale(1.12) rotate(-5deg);
  background: var(--primary);
}
.feature-list li strong { display: block; font-size: .9375rem; color: var(--text); margin-bottom: 3px; }
.feature-list li p      { font-size: .8375rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* Visual card */
.for-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  width: 100%; max-width: 340px;
  box-shadow: var(--card-shadow-lg);
  transform-style: preserve-3d;
  transition: transform .4s ease, box-shadow .4s ease;
}
.for-visual:hover .visual-card {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 24px 60px rgba(124,58,237,.15), 0 4px 16px rgba(0,0,0,.08);
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.vc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  transition: transform .2s;
}
.vc-dot.red    { background: #EF4444; }
.vc-dot.yellow { background: #F59E0B; }
.vc-dot.green  { background: #10B981; }
.visual-card:hover .vc-dot { transform: scale(1.2); }
.vc-title { font-size: .78rem; font-weight: 600; color: var(--text-muted); margin-left: 4px; }

.vc-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* Dashboard stat rows */
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-size: .8375rem;
  border: 1px solid var(--border-light);
  transition: background .2s;
}
.stat-row:hover { background: var(--primary-light); }
.stat-row span  { color: var(--text-secondary); }
.stat-row strong{ font-weight: 700; color: var(--text); }
.stat-row strong.positive { color: var(--success); }

/* Progress in card */
.progress-label { font-size: .75rem; color: var(--text-muted); margin-top: 6px; }
.progress-bar {
  height: 6px;
  background: var(--bg-secondary);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 6px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #6366f1);
  border-radius: 99px;
  animation: progressGrow 1.5s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .5s;
}
@keyframes progressGrow { from { width: 0 !important; } }
.progress-pct { font-size: .72rem; color: var(--text-muted); text-align: right; margin-top: 4px; }

/* Offer items */
.offer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: all .2s ease;
}
.offer-item:hover { background: var(--primary-light); border-color: var(--primary-mid); transform: translateX(3px); }
.offer-brand { font-size: .8rem; font-weight: 700; color: var(--text); flex: 1; }
.offer-type  { font-size: .72rem; color: var(--text-muted); }
.offer-amt   { font-size: .85rem; font-weight: 700; color: var(--success); }
.offer-badge {
  padding: 2px 8px;
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.offer-badge.new      { background: var(--primary-light); color: var(--primary); border-color: var(--primary-mid); }
.offer-badge.accepted { background: var(--success-bg); color: var(--success); border-color: rgba(16,185,129,.3); }

/* ══════════════════════════════════════════════════════════
   STATS BAR (animated counters)
   ══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 72px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-block {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(255,255,255,.06); }
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}
.pricing .container { text-align: center; }
.pricing-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 52px;
}

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto; }
.pricing-cards-centered { }

.pricing-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #6366f1);
  opacity: 0;
  transition: opacity .3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-lg);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--card-bg), rgba(124,58,237,.03));
}
.pricing-card.featured::before { opacity: 1; }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-icon { font-size: 1.75rem; margin-bottom: 12px; }
.plan-name  { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.plan-price {
  margin: 16px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-amt  { font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em; color: var(--text); }
.price-per  { font-size: .875rem; color: var(--text-muted); font-weight: 500; }
.plan-desc  { font-size: .8375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }

.plan-features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8375rem;
  color: var(--text-secondary);
}
.feat-check { color: var(--success); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-header { position: sticky; top: 100px; }
.faq-sub { font-size: .9rem; color: var(--text-secondary); margin: 16px 0 24px; line-height: 1.65; }
.faq-wa-btn { gap: 8px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-chevron { flex-shrink: 0; color: var(--text-muted); transition: transform .3s ease, color .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: .875rem; color: var(--text-secondary); line-height: 1.75; }
.faq-a a { color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.cta {
  padding: 80px 0;
  background: var(--bg);
}
.cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, #7c3aed 100%);
  background-size: 200% 200%;
  animation: ctaGrad 8s ease infinite;
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@keyframes ctaGrad {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; position: relative; }
.cta-inner p  { color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: all .25s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline-white {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
  transition: all .25s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .875rem;
  color: var(--text-secondary);
  transition: color .2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: .8rem; color: var(--text-muted); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-subtle, rgba(0,0,0,.04));
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.social-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL (enhanced)
   ══════════════════════════════════════════════════════════ */
.reveal       { opacity:0; transform:translateY(32px); transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-scale { opacity:0; transform:scale(.94);        transition:opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity:1; transform:none;
}
.stagger > *:nth-child(1) { transition-delay:.05s; }
.stagger > *:nth-child(2) { transition-delay:.15s; }
.stagger > *:nth-child(3) { transition-delay:.25s; }
.stagger > *:nth-child(4) { transition-delay:.35s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .for-inner        { grid-template-columns: 1fr; gap: 40px; }
  .for-inner.reverse { direction: ltr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .stat-block       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .faq-inner        { grid-template-columns: 1fr; gap: 40px; }
  .faq-header       { position: static; }
  .pricing-cards    { grid-template-columns: 1fr; max-width: 400px; }
  .cta-inner        { padding: 48px 24px; border-radius: 20px; }
}
@media (max-width: 640px) {
  .steps            { flex-direction: column; align-items: center; }
  .steps::before    { display: none; }
  .step-arrow       { transform: rotate(90deg); }
  .hero h1          { font-size: clamp(2rem, 8vw, 2.75rem); }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .footer-inner     { flex-direction: column; text-align: center; }
  .footer-links     { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAV — hamburger
   ══════════════════════════════════════════════════════════ */
/* Always hidden until mobile breakpoint */
.nav-mobile-menu { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.hamburger:hover { background: var(--bg-subtle, rgba(0,0,0,.05)); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav links */
  .hamburger       { display: flex; }
  .nav-links       { display: none; }

  /* Hero spacing */
  .hero { padding: calc(var(--nav-height) + 48px) 0 60px; }

  /* Mobile nav dropdown */
  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 16px 20px 20px;
    z-index: 199;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background .15s, color .15s;
    display: block;
  }
  .nav-mobile-menu a:not(.btn):hover { background: var(--bg-subtle, rgba(0,0,0,.04)); color: var(--primary); }
  .nav-mobile-menu .btn-primary { color: #fff; }
  .nav-mobile-menu .btn-ghost   { color: var(--text-secondary); }
  .nav-mobile-menu .mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
  }
  .nav-mobile-menu .mobile-auth {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }
  .nav-mobile-menu .mobile-auth a { flex: 1; text-align: center; }

  /* Hide desktop auth links on mobile — shown in dropdown instead */
  #nav-auth-links, #nav-goto-feed { display: none !important; }

  /* Hero tweaks */
  .hero-text { text-align: left; }
  .hero-actions { justify-content: flex-start !important; }
  .hero-trust   { justify-content: flex-start !important; }
  .container { padding: 0 16px; }
}
