:root {
  --primary: #25D366;
  --primary-hover: #1EBE5D;
  --bg-color: #FDF4ED;
  --text-dark: #000000;
  --text-muted: #555555;
  --card-bg: #FFFFFF;
  --blue: #2E6BFF;
  --purple: #B250FF;
  --gold: #f59e0b;
  --teal: #0ea5e9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body { background-color: var(--bg-color); color: var(--text-dark); overflow-x: hidden; position: relative; }

/* ─── Ambient Background ─── */
.ambient-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.25; animation: float-glow 9s ease-in-out infinite alternate; }
.glow-1 { width: 700px; height: 700px; background: var(--primary); top: -250px; left: -250px; }
.glow-2 { width: 500px; height: 500px; background: rgba(178, 80, 255, 0.5); top: 30%; right: -150px; animation-delay: -4s; }
.glow-3 { width: 400px; height: 400px; background: rgba(46, 107, 255, 0.4); bottom: 10%; left: 20%; animation-delay: -7s; }

@keyframes float-glow { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(60px) scale(1.12); } }

/* ─── Navbar ─── */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px; max-width: 1400px; margin: 0 auto; position: sticky; top: 0; z-index: 1000;
  background: rgba(253, 244, 237, 0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: padding 0.3s ease;
}

.nav-brand { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; color: var(--text-dark); letter-spacing: -0.5px; }
.logo-img, .logo-img-small { width: 32px; height: 32px; border-radius: 8px; }
.logo-img-small { width: 40px; height: 40px; border-radius: 10px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { text-decoration: none; font-weight: 600; color: var(--text-dark); font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 16px; align-items: center; }
button { cursor: pointer; border: none; font-family: inherit; }
.mobile-menu-btn { display: none; background: none; font-size: 28px; color: var(--text-dark); }
.nav-cta { padding: 10px 22px !important; font-size: 14px !important; }
.btn-text { background: none; font-weight: 700; color: var(--text-dark); font-size: 15px; }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid #D1C5BD; padding: 14px 32px; border-radius: 40px; font-weight: 700; font-size: 16px; }
.btn-solid-muted { background: #E8E8E8; color: var(--text-muted); padding: 14px 32px; border-radius: 40px; font-weight: 700; font-size: 16px; cursor: default; }
.btn-primary { background: var(--text-dark); color: white; padding: 12px 24px; border-radius: 30px; font-weight: 700; font-size: 15px; transition: transform 0.2s; }
.btn-primary:hover { transform: scale(1.05); }
.btn-magic {
  background: var(--primary); color: white; padding: 18px 36px; border-radius: 40px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-magic:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45); text-decoration: none; }
.full-width { width: 100%; }

@media (max-width: 1150px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13.5px; }
  .nav-brand { font-size: 19px; gap: 8px; }
  .navbar { padding: 14px 20px; }
}

@media (max-width: 900px) {
  .navbar { padding: 16px 20px; }
  .desktop-only { display: none !important; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .nav-links { 
    position: absolute; top: 100%; left: 0; width: 100%; 
    background: white; flex-direction: column; gap: 0; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
    max-height: 0; overflow: hidden; 
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
  }
  .nav-links.mobile-open { max-height: 450px; padding: 10px 0; }
  .nav-links a { padding: 18px 24px; display: block; border-bottom: 1px solid #f8f8f8; width: 100%; text-align: left; font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
}


/* ─── Hero ─── */
.hero { text-align: center; margin-top: 60px; padding: 0 20px 60px 20px; position: relative; }
.hero-badge { display: inline-block; background: rgba(37, 211, 102, 0.12); color: var(--primary); border: 1px solid rgba(37,211,102,0.3); padding: 6px 18px; border-radius: 40px; font-size: 14px; font-weight: 700; margin-bottom: 28px; animation: heroIn 0.6s ease both; }
.hero-content { position: relative; z-index: 10; animation: heroIn 1s cubic-bezier(0.1, 1, 0.1, 1) 0.1s both; }

@keyframes heroIn { 0% { opacity: 0; transform: translateY(30px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }

h1 { font-family: 'Outfit', sans-serif; font-size: 76px; font-weight: 900; line-height: 1.05; color: var(--text-dark); margin-bottom: 28px; letter-spacing: -2px; }
.highlight { color: var(--primary); }
.highlight-purple { color: var(--purple); }
.highlight-blue { color: var(--blue); }
.highlight-green { color: var(--primary); }
.highlight-gold { color: var(--gold); }
.highlight-teal { color: var(--teal); }

.subtitle { font-size: 20px; color: var(--text-muted); max-width: 620px; margin: 0 auto 40px auto; line-height: 1.65; font-weight: 500; }
.hero-actions { display: flex; justify-content: center; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 8px; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 900; color: var(--text-dark); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.stat-divider { width: 1px; height: 44px; background: rgba(0,0,0,0.1); }

@media (max-width: 1100px) {
  h1 { font-size: 60px; }
}

@media (max-width: 850px) {
  h1 { font-size: 48px; letter-spacing: -1.5px; }
  .hero { margin-top: 40px; padding-bottom: 40px; }
  .subtitle { font-size: 18px; margin-bottom: 32px; }
  .stat { padding: 0 25px; }
  .stat-number { font-size: 32px; }
}

@media (max-width: 600px) {
  h1 { font-size: 38px; letter-spacing: -1px; }
  .hero { margin-top: 30px; }
  .subtitle { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; padding: 0 10px; }
  .btn-magic { width: 100%; padding: 16px 24px; font-size: 16px; }
  .hero-stats { gap: 20px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stat { padding: 0 10px; flex: 1 1 100px; }
  .stat-number { font-size: 28px; }
  .stat-divider { display: none; }
}


/* ─── Wall of Love ─── */
.wall-of-love { margin: 20px auto 80px auto; width: 100%; overflow: hidden; background: linear-gradient(90deg, var(--bg-color) 0%, transparent 6%, transparent 94%, var(--bg-color) 100%); position: relative; z-index: 10; padding: 24px 0; }
.marquee-wrapper { display: flex; overflow: hidden; width: 100%; }
.marquee-track { display: flex; gap: 24px; animation: scrollMarquee 50s linear infinite; width: max-content; padding-left: 24px; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.wall-card { background: rgba(255,255,255,0.95); padding: 24px; border-radius: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); width: 300px; flex-shrink: 0; white-space: normal; }
.card-user { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.card-user img { width: 40px; height: 40px; border-radius: 50%; }
.card-user div { font-size: 13px; color: var(--text-muted); line-height: 1.3; }
.card-user strong { color: var(--text-dark); font-size: 15px; font-weight: 700; }
.wall-card p { font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--text-dark); margin: 0; }

@media (max-width: 600px) {
  .wall-card { width: 260px; padding: 20px; }
  .wall-card p { font-size: 14px; }
  .card-user img { width: 32px; height: 32px; }
}


/* ─── Demo Video ─── */
.demo-section { max-width: 1000px; margin: 100px auto 120px auto; padding: 0 20px; text-align: center; }
.demo-glass-frame {
  margin-top: 40px; background: rgba(255,255,255,0.8);
  padding: 12px; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 30px 100px rgba(0,0,0,0.1);
  backdrop-filter: blur(20px);
  position: relative;
}
.window-controls { display: flex; gap: 8px; padding: 8px 12px 16px 12px; }
.window-controls span { width: 11px; height: 11px; border-radius: 50%; }
.window-controls span:nth-child(1) { background: #ff5f56; }
.window-controls span:nth-child(2) { background: #ffbd2e; }
.window-controls span:nth-child(3) { background: #27c93f; }

/* ─── Section Shared ─── */
.section-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); text-align: center; margin-bottom: 14px; }
.section-heading { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 900; letter-spacing: -1.5px; text-align: center; margin-bottom: 16px; line-height: 1.1; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 18px; font-weight: 500; margin-bottom: 60px; }

@media (max-width: 768px) { .section-heading { font-size: 34px; } .section-sub { font-size: 16px; margin-bottom: 40px; } }


/* ─── How It Works ─── */
.how-section { max-width: 1100px; margin: 120px auto 80px auto; padding: 0 20px; }
.steps-row { display: flex; align-items: flex-start; gap: 16px; margin-top: 60px; }
@media (max-width: 850px) {
  .how-section { margin-top: 60px; }
}

.step-card { flex: 1; background: white; border-radius: 24px; padding: 36px 28px; box-shadow: 0 8px 30px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); position: relative; transition: transform 0.3s; }
.how-section { perspective: 2000px; padding-bottom: 150px; overflow: visible; }
.how-3d-stage { width: 100%; height: 500px; display: flex; justify-content: center; align-items: center; position: relative; margin-top: 80px; transform-style: preserve-3d; }
.how-3d-carousel { position: relative; width: 320px; height: 420px; transform-style: preserve-3d; transform: rotateY(var(--rotate, 0deg)); transition: transform 0.1s ease-out; }

.how-card-3d {
  position: absolute; width: 100%; height: 100%; top: 0; left: 0;
  background: white; border-radius: 28px; padding: 40px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  backface-visibility: hidden;
  transform: rotateY(calc(var(--i) * 90deg)) translateZ(var(--depth, 400px));
  transition: filter 0.2s, opacity 0.3s, transform 0.1s;
  filter: blur(var(--blur, 0px));
  opacity: var(--opacity, 1);
}

.how-card-3d .step-num { font-size: 14px; font-weight: 900; color: var(--primary); margin-bottom: 20px; opacity: 0.6; }
.how-card-3d .step-icon { font-size: 48px; color: var(--primary); margin-bottom: 20px; }
.how-card-3d h3 { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.how-card-3d p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
  .how-section { padding-bottom: 80px; }
  .how-3d-stage { height: 400px; margin-top: 20px; }
  .how-3d-carousel { width: 280px; height: 380px; }
  .how-card-3d { padding: 32px; border-radius: 24px; }
  .how-card-3d h3 { font-size: 22px; }
  .how-card-3d p { font-size: 14px; }
}

@media (max-width: 480px) {
  .how-3d-carousel { width: 240px; height: 340px; }
  .how-card-3d { padding: 24px; }
  .how-card-3d h3 { font-size: 18px; }
}


/* ─── Features Masonry ─── */
.features-masonry { max-width: 1200px; margin: 60px auto 100px auto; padding: 0 20px; }
.masonry-row { display: flex; gap: 40px; margin-bottom: 40px; }
.huge-card { background: var(--card-bg); border-radius: 32px; padding: 44px; flex: 1; display: flex; flex-direction: column; box-shadow: 0 12px 40px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); overflow: hidden; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.huge-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.huge-card:hover .anim-bounce { animation-play-state: running; }
.huge-card:hover .anim-float-slow { animation-play-state: running; }
.huge-card:hover .anim-slide-in { animation-play-state: running; }
.huge-card:hover .anim-pulse { animation-play-state: running; }
.huge-card:hover .anim-pop { animation-play-state: running; }
.huge-card:hover .anim-spin-slow { animation-play-state: running; }
.huge-card:hover .anim-glow { animation-play-state: running; }
.huge-card.full-width { flex-direction: row; align-items: center; gap: 60px; padding: 60px; }
.card-tag { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: inline-block; }
.card-tag.green-tag { color: var(--primary); }
.card-tag.blue-tag { color: var(--blue); }
.card-tag.purple-tag { color: var(--purple); }
.card-tag.gold-tag { color: var(--gold); }
.card-tag.teal-tag { color: var(--teal); }
.huge-card h2 { font-family: 'Outfit', sans-serif; font-size: 32px; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.8px; color: var(--text-dark); font-weight: 800; }
.huge-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 32px; }
.fc-content { flex: 1; }
.fc-illustration { flex: 1; background: var(--bg-color); border-radius: 24px; min-height: 280px; display: flex; justify-content: center; align-items: center; padding: 24px; }
@media (max-width: 1100px) { 
  .masonry-row { flex-direction: column; gap: 28px; } 
  .huge-card.full-width { flex-direction: column; padding: 40px; } 
  .fc-illustration { min-height: 320px; }
}
@media (max-width: 768px) { 
  .huge-card { padding: 32px; border-radius: 24px; }
  .huge-card h2 { font-size: 26px; } 
  .fc-illustration { min-height: 240px; padding: 16px; }
}
@media (max-width: 480px) {
  .huge-card { padding: 24px; }
  .huge-card h2 { font-size: 24px; }
  .huge-card p { font-size: 14px; }
}


/* Improve Hero Card */
.improve-hero { background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%); border: 1px solid rgba(37,211,102,0.15); }
.improve-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: -8px; }
.chip { background: white; border: 1px solid rgba(0,0,0,0.08); padding: 5px 14px; border-radius: 40px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.improve-demo { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.improve-before, .improve-after { display: flex; flex-direction: column; gap: 8px; }
.demo-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); }
.improve-arrow { text-align: center; font-size: 14px; font-weight: 800; color: var(--primary); background: white; padding: 8px 20px; border-radius: 40px; border: 1px solid rgba(37,211,102,0.3); display: inline-flex; align-items: center; gap: 6px; align-self: center; box-shadow: 0 4px 12px rgba(37,211,102,0.15); }

/* Settings Preview Card */
.settings-card { background: linear-gradient(135deg, #f0f9ff 0%, #fdf4ed 100%); border: 1px solid rgba(14,165,233,0.12); }
.settings-preview { background: white; border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 14px; border: 1px solid rgba(0,0,0,0.06); }
.sp-row { display: flex; align-items: center; gap: 12px; }
.sp-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; width: 60px; flex-shrink: 0; }
.sp-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.sp-chip { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; background: #f1f5f9; color: #64748b; border: 1.5px solid #e2e8f0; }
.sp-chip.active { background: var(--teal); color: white; border-color: var(--teal); }
.sp-toggle-row { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; border-top: 1px solid #f0f0f0; }
.sp-toggle { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; }
.sp-toggle.on { background: var(--primary); color: white; }

/* Card Illustrations */
.card-illustration { background: var(--bg-color); border-radius: 20px; height: 220px; position: relative; display: flex; justify-content: center; align-items: center; overflow: hidden; margin-top: auto; }
.center-stack { flex-direction: column; gap: 12px; }
.stack-box { background: white; padding: 12px 18px; border-radius: 16px; font-size: 13px; font-weight: 600; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.stack-box.other { background: #f9f9f9; border-bottom-left-radius: 4px; border: 1px solid #f0f0f0; }
.stack-box.ai { border-left: 3px solid var(--blue); display: flex; align-items: center; gap: 8px; }
.stack-box.ai i { color: var(--blue); font-size: 16px; }
.stack-box.rough { background: #f0f0f0; text-decoration: line-through; color: #888; border: 1px dashed #ddd; }
.stack-box.polished { border-left: 3px solid var(--primary); display: flex; gap: 8px; align-items: center; }
.stack-box.polished i { color: var(--primary); font-size: 16px; }
.stack-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; justify-content: center; padding: 20px; }
.stack-arrow i { padding: 10px; background: white; border-radius: 50%; font-size: 16px; }
.illus-badge { position: absolute; top: 24px; left: 24px; background: white; padding: 8px 16px; border-radius: 20px; font-weight: 700; color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.illus-blob { width: 90px; height: 90px; border-radius: 28px; }
.illus-chat { position: absolute; bottom: 24px; right: 24px; background: white; padding: 10px 18px; border-radius: 16px; font-size: 12px; font-weight: 600; box-shadow: 0 8px 20px rgba(0,0,0,0.06); display: flex; gap: 6px; align-items: center; max-width: 70%; }
.illus-chat i { color: var(--primary); font-size: 16px; }
.fade-arrow { font-size: 22px; }

/* Animations */
.anim-bounce { animation: float-bubble 4s ease-in-out infinite; }
@keyframes float-bubble { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
.anim-float-slow { animation: float-spin 10s ease-in-out infinite; }
@keyframes float-spin { 0% { transform: rotate(-10deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-15px); } 100% { transform: rotate(-10deg) translateY(0); } }
.anim-slide-in { animation: pulse-slide 6s ease-in-out infinite; }
@keyframes pulse-slide { 0% { transform: translateX(0); opacity: 0.9; } 50% { transform: translateX(-5px); opacity: 1; } 100% { transform: translateX(0); opacity: 0.9; } }
.anim-pulse { animation: throb 2s infinite; }
@keyframes throb { 0% { transform: scale(1); } 50% { transform: scale(1.15); color: var(--blue); } 100% { transform: scale(1); } }
.anim-pop { animation: gentle-pop 5s infinite; transform-origin: left center; }
@keyframes gentle-pop { 0% { transform: scale(1) translateY(0); } 10% { transform: scale(1.02) translateY(-2px); } 20% { transform: scale(1) translateY(0); } 100% { transform: scale(1); } }
.anim-spin-slow { animation: slide-rotate 3s infinite; }
@keyframes slide-rotate { 0% { transform: translateX(0) scale(1); color: var(--primary); } 50% { transform: translateX(6px) scale(1.05); } 100% { transform: translateX(0) scale(1); color: var(--primary); } }
.anim-glow { animation: success-glow 4s infinite; }
@keyframes success-glow { 0% { box-shadow: 0 8px 20px rgba(0,0,0,0.05); } 50% { box-shadow: 0 14px 32px rgba(37,211,102,0.18); transform: scale(1.02); } 100% { box-shadow: 0 8px 20px rgba(0,0,0,0.05); } }

/* ─── Pricing ─── */
.pricing-section { max-width: 820px; margin: 100px auto; padding: 0 20px; }
.pricing-table { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.pricing-card { background: white; border-radius: 28px; padding: 44px; box-shadow: 0 8px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); position: relative; }
.pricing-card.pro { border: 2px solid var(--text-dark); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--text-dark); color: white; padding: 6px 18px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.trial-badge { background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 12px; font-weight: 700; font-size: 12px; }
.pricing-card h3 { font-family: 'Outfit', sans-serif; font-size: 24px; color: var(--text-dark); margin-bottom: 16px; font-weight: 800; }
.pricing-card .price { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; font-weight: 600; }
.pricing-card .price span { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 900; color: var(--text-dark); letter-spacing: -2px; }
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card ul li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--text-dark); font-weight: 600; line-height: 1.4; }
.pricing-card ul li i { color: var(--primary); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 850px) { 
  .pricing-table { grid-template-columns: 1fr; gap: 40px; } 
  .pricing-card { padding: 32px; } 
  .pricing-card.pro { transform: scale(1); }
}
@media (max-width: 480px) {
  .pricing-card { padding: 24px; border-radius: 20px; }
  .pricing-card .price span { font-size: 42px; }
}


/* ─── CTA Banner ─── */
.cta-banner { background: linear-gradient(135deg, #0d1f14 0%, #0a2e1a 100%); margin: 0; padding: 100px 20px; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 900; color: white; margin-bottom: 16px; letter-spacing: -1.5px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 40px; font-weight: 500; }
.cta-btn { font-size: 16px !important; padding: 16px 36px !important; }
@media (max-width: 768px) { .cta-banner h2 { font-size: 34px; } .cta-banner p { font-size: 15px; } }

/* ─── Footer ─── */
.modern-footer { background: white; padding: 60px 20px 40px 20px; border-top: 1px solid #eee; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-family: 'Outfit', sans-serif; font-size: 20px; margin: 16px 0 8px 0; font-weight: 800; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 250px; font-weight: 500; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.link-group h4 { font-size: 15px; margin-bottom: 20px; font-weight: 700; }
.link-group a { display: block; text-decoration: none; color: var(--text-muted); margin-bottom: 12px; font-size: 14px; font-weight: 500; }
.link-group a:hover { color: var(--text-dark); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #eee; color: var(--text-muted); font-size: 13px; font-weight: 600; }

@media (max-width: 768px) {
  .footer-content { flex-direction: column; gap: 48px; text-align: left; align-items: flex-start; }
  .footer-brand p { max-width: 100%; }
  .footer-links { justify-content: space-between; gap: 20px; width: 100%; display: flex; }
  .link-group { text-align: left; min-width: 120px; }
}

@media (max-width: 480px) {
  .footer-links { gap: 20px; flex-wrap: wrap; display: flex; flex-direction: row; justify-content: space-between; }
  .link-group { flex: 0 1 auto; min-width: 120px; }
}


/* ─── Auth Modal ─── */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); display: flex; justify-content: center; align-items: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background: white; padding: 40px; border-radius: 20px; width: 100%; max-width: 360px; position: relative; transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 20px; background: none; font-size: 24px; color: var(--text-muted); }
.modal-content h2 { font-family: 'Outfit', sans-serif; font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.modal-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }
.modal-content input { width: 100%; padding: 14px 16px; border: 2px solid #EEE; border-radius: 12px; margin-bottom: 16px; font-size: 14px; outline: none; font-weight: 500; font-family: inherit; }
.modal-content input:focus { border-color: var(--text-dark); }
.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.auth-footer a { color: var(--text-dark); font-weight: 700; text-decoration: none; }

/* ─── Legal ─── */
.legal-content { max-width: 850px; margin: 120px auto 100px auto; padding: 0 20px; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.8; color: var(--text-dark); }
.legal-content h1 { font-family: 'Outfit', sans-serif; font-size: 48px; letter-spacing: -1.5px; font-weight: 800; margin-bottom: 20px; text-align: center; }
.legal-content .last-updated { text-align: center; color: var(--text-muted); font-size: 15px; margin-bottom: 60px; font-weight: 500; }
.legal-content h2 { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; margin: 40px 0 16px 0; letter-spacing: -0.5px; }
.legal-content p, .legal-content ul { margin-bottom: 20px; font-size: 16px; color: var(--text-muted); font-weight: 500; }
.legal-content ul { padding-left: 24px; }
.legal-content li { margin-bottom: 10px; }
