/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --orange-dark: #E05500;
  --orange-glow: rgba(255, 107, 0, 0.18);
  --bg: #0A0A0B;
  --bg-2: #111114;
  --bg-3: #18181C;
  --bg-card: #1C1C21;
  --border: rgba(255,255,255,0.08);
  --text: #F5F5F7;
  --text-muted: #8E8E9A;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: inherit; text-decoration: none; }

.hidden { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
}
.btn--primary:hover {
  background: var(--orange-light);
  box-shadow: 0 0 32px rgba(255,107,0,0.5);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}

.btn--nav {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(255,107,0,0.25);
}
.btn--nav:hover { background: var(--orange-light); }

.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, top 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  color: var(--orange);
}
.logo-icon svg { width: 20px; height: 20px; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.urgency-icon-wrap { display: flex; align-items: center; gap: 6px; }
.urgency-zap { width: 13px; height: 13px; color: var(--orange-light); }
.mt-icon { display: flex; align-items: center; }
.mt-icon svg { width: 16px; height: 16px; color: var(--orange); }
.toggle-icon { width: 16px; height: 16px; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 8px;
  flex: 1;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(10,10,11,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav__mobile .btn { margin-top: 8px; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #1a0a00, #2a1000, #1a0a00);
  border-bottom: 1px solid rgba(255,107,0,0.3);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.urgency-dot {
  width: 7px;
  height: 7px;
  background: #ff4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff4444;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.urgency-bar strong { color: var(--orange-light); }
.urgency-sep { opacity: 0.3; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 190px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Social proof row above headline */
.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }
.proof-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 13px;
}
.proof-stars { color: #FFB800; font-size: 12px; letter-spacing: 1px; }
.proof-text strong { color: var(--white); }
.proof-text span:last-child { color: var(--text-muted); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--text); }

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item span { color: var(--orange); }

/* Micro trust below CTA */
.hero__micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.micro-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 16px;
}
.mt-icon { font-size: 15px; }
.micro-trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* Pulse button */
.btn--pulse {
  animation: btnPulse 2.5s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,0,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,107,0,0.6), 0 0 80px rgba(255,107,0,0.2); }
}

/* sub-emphasis */
.sub-emphasis {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* ===== PROOF BAR (ticker) ===== */
.proof-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.proof-ticker-wrap { overflow: hidden; }
.proof-ticker {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.proof-tick {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}
.proof-tick strong { color: var(--text); }
.tick-icon { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 60px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover {
  border-color: rgba(255,107,0,0.25);
  transform: translateY(-3px);
}
.testi-card--featured {
  border-color: rgba(255,107,0,0.35);
  background: linear-gradient(160deg, rgba(255,107,0,0.06) 0%, var(--bg-card) 100%);
}
.testi-stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  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-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testi-handle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== STATS ===== */
.stats {
  padding: 0 0 80px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-card {
  background: var(--bg-card);
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-card:hover { background: var(--bg-3); }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-star {
  color: #FFB800;
  font-size: 30px;
  vertical-align: middle;
  line-height: 1;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header--light h2,
.section-header--light p { color: var(--white); }
.section-header--light p { opacity: 0.7; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag--dark {
  background: rgba(255,107,0,0.2);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-3px);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}
.step-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,0,0.1);
  border-radius: 14px;
  color: var(--orange);
}
.step-icon svg { width: 26px; height: 26px; }
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.step-arrow {
  color: var(--orange);
  margin-top: 80px;
  flex-shrink: 0;
  opacity: 0.4;
}
.step-arrow svg { width: 24px; height: 24px; }

.how__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,107,0,0.07);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.note-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.how__note strong { color: var(--text); }

/* ===== PACKAGES ===== */
.packages {
  padding: 80px 0;
}

.platform-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 16px rgba(255,107,0,0.3);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.package-card:hover {
  border-color: rgba(255,107,0,0.35);
  transform: translateY(-4px);
}

.package-card--popular {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,107,0,0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(255,107,0,0.12);
}
.package-card--popular:hover { transform: translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.package-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.package-followers {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.package-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

.package-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 24px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.package-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.package-features li svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.packages__note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.packages__note a {
  color: var(--orange);
  font-weight: 600;
}
.packages__note a:hover { text-decoration: underline; }

/* ===== WHY US ===== */
.why {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,0,0.1);
  border-radius: 12px;
  color: var(--orange);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,107,0,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--white); }
.faq-q:hover .faq-icon { color: var(--orange); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg { width: 18px; height: 18px; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ===== ORDER ===== */
.order {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.order__inner {
  max-width: 640px;
}

.order-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option { background: var(--bg-3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.order-success {
  background: var(--bg-card);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,0,0.12);
  border-radius: 50%;
  color: var(--orange);
}
.success-icon svg { width: 36px; height: 36px; }
.order-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.order-success p { font-size: 15px; color: var(--text-muted); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(10,10,11,0.98) 70%, transparent);
}
.mobile-cta .btn {
  width: 100%;
  padding: 17px 24px;
  font-size: 17px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(255,107,0,0.45);
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 90px; }
}

/* ===== ORDER CTA ===== */
.order-cta {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.order-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.order-cta__text .section-tag { margin-bottom: 12px; }
.order-cta__text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.order-cta__text p { font-size: 16px; color: var(--text-muted); max-width: 420px; }

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.modal-close svg { width: 16px; height: 16px; }

.modal-header { margin-bottom: 28px; }

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.modal-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.modal-form { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }

.username-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.username-input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.username-at {
  padding: 0 4px 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  user-select: none;
}
.username-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 16px 14px 4px;
  font-size: 16px;
  color: var(--white);
  font-family: inherit;
  font-weight: 500;
  outline: none;
}
.username-input-wrap input::placeholder { color: var(--text-muted); font-weight: 400; }

.modal-input {
  width: 100%;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.modal-input::placeholder { color: var(--text-muted); }
.modal-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.btn--stripe {
  font-size: 16px;
  padding: 16px 24px;
  gap: 10px;
  background: #635bff;
  box-shadow: 0 0 20px rgba(99,91,255,0.3);
}
.btn--stripe:hover {
  background: #7b74ff;
  box-shadow: 0 0 32px rgba(99,91,255,0.5);
  transform: translateY(-1px);
}
.stripe-logo { width: 40px; height: auto; opacity: 0.9; }

.modal-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.modal-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.modal-trust svg { width: 13px; height: 13px; color: var(--orange); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  max-width: 300px;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .urgency-bar { font-size: 12px; gap: 8px; padding: 8px 16px; }
  .urgency-sep { display: none; }
  .urgency-bar span:last-child { display: none; }

  .nav { top: 34px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 160px 0 48px; }
  .hero__title { font-size: clamp(28px, 8vw, 44px); }
  .hero__sub { font-size: 15px; }
  .hero__sub br { display: none; }
  .hero__social-proof { gap: 10px; }
  .micro-trust-sep { display: none; }
  .hero__micro-trust { gap: 12px 0; padding: 14px 16px; }
  .micro-trust-item { font-size: 12px; }

  .testimonials { padding: 40px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }
  .step { max-width: 100%; width: 100%; }

  /* Packages: 1 column on mobile for easy tapping */
  .package-grid { grid-template-columns: 1fr; gap: 14px; }
  .package-card { padding: 24px 20px; }
  .package-followers { font-size: 40px; }
  /* Make order button bigger on mobile */
  .package-card .btn { padding: 15px; font-size: 15px; }

  .why__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .faq-q { padding: 16px 18px; font-size: 14px; }

  .order-cta__inner { flex-direction: column; text-align: center; gap: 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { flex-wrap: wrap; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .urgency-bar { display: none; }
  .nav { top: 0; }
  .hero { padding: 120px 0 56px; }
  .package-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: center; }
  .order-cta__inner { flex-direction: column; text-align: center; }
  .order-cta__text p { margin: 0 auto; }
  .modal { padding: 28px 20px; }
  .modal-trust { gap: 12px; }
}
