/*
Theme Name: Zero to Creator Enhanced
Theme URI: https://zerotocreator.com
Author: Zero to Creator
Description: Enhanced bold mobile-first theme for creator educators.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: zero-to-creator
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg:       #070710;
  --bg2:      #0d0d1a;
  --bg3:      #13132b;
  --bg4:      #1a1a36;
  --surface:  #111128;
  --surface2: #181834;
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.12);

  --text:  #f0f0ff;
  --text2: rgba(230,230,255,0.65);
  --text3: rgba(200,200,255,0.38);

  /* Brand gradient — orange → pink → violet */
  --g1: #FF6B00;
  --g2: #F0388A;
  --g3: #7C3AED;
  --grad: linear-gradient(135deg, #FF6B00 0%, #F0388A 50%, #7C3AED 100%);
  --grad-h: linear-gradient(135deg, #FF8C40 0%, #F56AAF 50%, #9D6BFF 100%);
  --grad-text: linear-gradient(90deg, #FF8C00, #F0388A, #7C3AED);

  --shadow:    0 24px 72px rgba(0,0,0,0.7);
  --glow-pink: 0 0 40px rgba(240,56,138,0.25);
  --glow-vio:  0 0 40px rgba(124,58,237,0.25);

  --radius:    20px;
  --radius-sm: 10px;
  --nav-h:     68px;

  /* Typography */
  --font-display: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

[data-theme="light"] {
  --bg:      #f5f4ff;
  --bg2:     #eeecff;
  --bg3:     #e6e3fe;
  --bg4:     #dddafa;
  --surface: #ffffff;
  --surface2:#f8f7ff;
  --border:  rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.13);
  --text:    #0a0a18;
  --text2:   rgba(10,10,30,0.62);
  --text3:   rgba(10,10,30,0.38);
  --shadow:  0 24px 72px rgba(100,80,200,0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--g2); border-radius: 3px; }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.display { font-family: var(--font-display); font-weight: 700; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 5%, 60px);
  background: rgba(7,7,16,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
[data-theme="light"] nav { background: rgba(245,244,255,0.88); }

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo svg { height: 36px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--border); }
.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 20px rgba(240,56,138,0.3) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(240,56,138,0.45) !important; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all 0.2s;
}
.theme-btn:hover { background: var(--bg3); color: var(--text); }

.hamburger {
  display: none; background: none;
  border: 1px solid var(--border2); color: var(--text);
  width: 38px; height: 38px; border-radius: 8px;
  cursor: pointer; font-size: 18px;
  align-items: center; justify-content: center;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(16px, 5%, 60px) 24px;
  z-index: 199;
  flex-direction: column; gap: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text2); text-decoration: none;
  font-size: 16px; padding: 12px 16px;
  border-radius: 10px; font-weight: 500;
  transition: all 0.15s;
}
.mobile-menu a:hover { color: var(--text); background: var(--border); }
.mobile-menu .nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  margin-top: 8px; text-align: center;
  border-radius: 50px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  display: block;
  box-shadow: 0 4px 20px rgba(240,56,138,0.3) !important;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 1000;
  background: var(--grad);
  width: 0%; transition: width 0.1s;
}

/* ============================================
   HERO  — mobile-first
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 48px) clamp(16px,5%,80px) 64px;
  text-align: center;
  position: relative; overflow: hidden;
}

/* Orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.orb1 { width: clamp(240px,60vw,520px); height: clamp(240px,60vw,520px); background: rgba(255,107,0,0.18); top: -80px; left: -80px; }
.orb2 { width: clamp(200px,50vw,420px); height: clamp(200px,50vw,420px); background: rgba(124,58,237,0.18); bottom: -60px; right: -60px; }
.orb3 { width: clamp(160px,40vw,300px); height: clamp(160px,40vw,300px); background: rgba(240,56,138,0.12); top: 40%; left: 50%; transform: translate(-50%,-50%); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: clamp(11px, 3vw, 13px);
  font-weight: 500; color: var(--text2);
  margin-bottom: clamp(20px, 5vw, 32px);
}
.badge-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

.hero-title-wrap {
  margin-bottom: clamp(16px, 4vw, 24px);
}
.hero-title-wrap svg {
  width: min(520px, 94vw);
  height: auto;
}

.hero-sub {
  font-size: clamp(15px, 4vw, 19px);
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto clamp(28px, 6vw, 44px);
  line-height: 1.75;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: clamp(10px, 3vw, 14px);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: clamp(13px, 3.5vw, 16px) clamp(22px, 6vw, 36px);
  border-radius: 50px;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 700;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(240,56,138,0.35);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(240,56,138,0.5); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  padding: clamp(13px, 3.5vw, 16px) clamp(22px, 6vw, 36px);
  border-radius: 50px;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border2); cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--bg3); border-color: var(--g2); }

.hero-stats {
  display: flex; gap: clamp(20px, 6vw, 48px);
  justify-content: center; flex-wrap: wrap;
  margin-top: clamp(40px, 8vw, 72px);
  padding-top: clamp(28px, 5vw, 48px);
  border-top: 1px solid var(--border);
  width: 100%;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: clamp(10px, 2.5vw, 12px);
  color: var(--text3); margin-top: 4px;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.marquee-track {
  display: flex; gap: 40px;
  animation: marquee 24s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--text3); white-space: nowrap;
}
.marquee-item span { font-size: 16px; }

/* ============================================
   SECTIONS — shared
   ============================================ */
section { padding: clamp(60px, 10vw, 100px) clamp(16px, 5%, 80px); }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(15px, 3vw, 18px);
  color: var(--text2);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { margin-bottom: clamp(32px, 6vw, 64px); }

/* ============================================
   JOURNEY STEPS
   ============================================ */
.journey { background: var(--bg2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step-item {
  background: var(--bg2);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
  transition: background 0.2s;
}
.step-item:hover { background: var(--surface); }
.step-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.28; margin-bottom: 16px;
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ============================================
   COURSES GRID
   ============================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 3vw, 24px);
}
.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.course-thumb {
  height: clamp(140px, 25vw, 180px);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a0a2e, #2d1b69);
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-body { padding: clamp(16px, 3vw, 24px); flex: 1; display: flex; flex-direction: column; }
.course-title { font-size: clamp(16px, 3.5vw, 19px); font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.course-desc { font-size: 14px; color: var(--text2); margin-bottom: auto; padding-bottom: 16px; line-height: 1.6; }
.course-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.course-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.course-price-orig { font-size: 13px; color: var(--text3); text-decoration: line-through; margin-left: 6px; }
.enroll-btn {
  display: block; width: 100%;
  background: var(--grad);
  color: #fff; text-align: center;
  padding: 12px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  margin-top: 14px;
  transition: opacity 0.2s, transform 0.2s;
}
.enroll-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ============================================
   BLOG GRID
   ============================================ */
.blog { background: var(--bg2); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 3vw, 24px);
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb {
  height: clamp(140px, 22vw, 200px);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0a1a, #4a1c4a);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: clamp(16px, 3vw, 24px); }
.blog-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px; display: block;
}
.blog-title { font-size: clamp(15px, 3.5vw, 18px); font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-title a { text-decoration: none; color: inherit; }
.blog-excerpt { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text3); }
.read-more {
  font-size: 13px; font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px, 3vw, 24px);
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
}
.testi-stars { color: #FFB800; font-size: 13px; margin-bottom: 12px; }
.testi-text { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  background: var(--grad); flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; }
.testi-role { font-size: 13px; color: var(--text3); }

/* ============================================
   INSIGHTS GRID
   ============================================ */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 3vw, 24px);
}
.insight-card-big, .insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.insight-card-big { grid-row: span 2; }
.insight-card-big:hover, .insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-glow {
  position: absolute; width: 180px; height: 180px;
  border-radius: 50%; filter: blur(60px);
  pointer-events: none; opacity: 0.12;
}
.glow-orange { background: #FF6B00; top: -60px; right: -60px; }
.glow-purple { background: #7C3AED; bottom: -60px; left: -60px; }
.glow-pink   { background: #F0388A; top: -40px; left: -40px; }
.insight-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 14px;
}
.tag-orange { background: rgba(255,107,0,0.15); color: #FF8C40; }
.tag-purple { background: rgba(124,58,237,0.15); color: #A97BFF; }
.tag-pink   { background: rgba(240,56,138,0.15); color: #F472B6; }
.tag-teal   { background: rgba(0,200,150,0.15); color: #00C896; }
.insight-title { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.insight-desc  { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.chart-bar-wrap { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.chart-row { display: flex; align-items: center; gap: 10px; }
.chart-label { font-size: 12px; color: var(--text3); width: 72px; flex-shrink: 0; }
.chart-bar-bg { flex: 1; height: 7px; background: var(--bg3); border-radius: 4px; overflow: hidden; }
.chart-bar-fill { height: 100%; border-radius: 4px; background: var(--grad); }
.chart-val { font-size: 12px; font-weight: 600; color: var(--text2); width: 32px; text-align: right; }

/* ============================================
   BIG NUMBERS
   ============================================ */
.big-numbers { background: var(--bg2); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(14px, 3vw, 24px);
}
.number-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px) clamp(16px, 3vw, 28px);
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.number-card:hover { transform: translateY(-4px); }
.number-card-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 52px); font-weight: 700;
  line-height: 1; margin-bottom: 8px;
}
.number-card-label { font-size: 13px; color: var(--text3); font-weight: 500; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: var(--bg2); text-align: center; }
.cta-box {
  max-width: 720px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(36px, 8vw, 72px) clamp(20px, 6vw, 56px);
  position: relative; overflow: hidden;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 52px); font-weight: 700;
  line-height: 1.1; margin-bottom: 16px;
}
.cta-sub { font-size: clamp(15px, 3vw, 18px); color: var(--text2); margin-bottom: 36px; }
.email-form {
  display: flex; gap: 10px;
  max-width: 460px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.email-input {
  flex: 1; min-width: 180px;
  padding: 13px 18px;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 50px; color: var(--text);
  font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--g2); }
.email-input::placeholder { color: var(--text3); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 8vw, 64px) clamp(16px, 5%, 80px) clamp(24px, 4vw, 40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(40px, 6vw, 60px);
}
.footer-brand p { font-size: 14px; color: var(--text2); margin-top: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--text2); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text3);
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: 14px; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.social-btn:hover { background: var(--bg3); color: var(--text); }

/* ============================================
   MISC UTILITIES
   ============================================ */
.thumb-bg1 { background: linear-gradient(135deg, #1a0a2e, #2d1b69); }
.thumb-bg2 { background: linear-gradient(135deg, #1a0a1a, #4a1c4a); }
.thumb-bg3 { background: linear-gradient(135deg, #0a1a2e, #1b3d6e); }
.thumb-bg4 { background: linear-gradient(135deg, #1a1a0a, #4a3a00); }
.thumb-bg5 { background: linear-gradient(135deg, #0a2010, #1b5c30); }

.feature-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.feature-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 14px;
  font-size: 13px; font-weight: 500; color: var(--text2);
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float { animation: float 4s ease-in-out infinite; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card-big { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: none; }
  .cta-box { border-radius: 16px; }
  .hero-stats { gap: 18px; }
  .stat-item { min-width: calc(50% - 9px); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary {
    width: 100%; justify-content: center;
    padding: 15px 20px;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-input { min-width: unset; }
}

@media (max-width: 400px) {
  .hero-badge { font-size: 11px; }
  .stat-item { min-width: calc(50% - 9px); }
}
