:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --accent: #00ff87;
  --accent-dim: rgba(0, 255, 135, 0.12);
  --accent-glow: rgba(0, 255, 135, 0.3);
  --border: #222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.accent { color: var(--accent); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 8rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 255, 135, 0.2);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-gradient {
  position: absolute;
  top: -20%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s;
}
.problem-card:hover { border-color: var(--accent); }
.problem-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:first-child { border-top: 1px solid var(--border); }
.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.15rem;
}
.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-dim);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-card li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.2rem;
  position: relative;
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-row { flex-direction: column; gap: 0.5rem; }
  .feature-number { min-width: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .problem, .features, .pricing, .closing { padding: 4rem 1.5rem; }
  .hero-gradient { width: 300px; height: 300px; right: -20%; top: -10%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .closing h2 { font-size: 1.5rem; }
}

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ---- HERO BUTTONS ---- */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover { opacity: 0.88; box-shadow: 0 0 30px var(--accent-glow); }
.btn-ghost {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---- PRICING CTA BUTTONS ---- */
.btn-plan {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan-featured {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.btn-plan-featured:hover { opacity: 0.88; color: var(--bg); }

/* ---- BEFORE/AFTER ---- */
.before-after {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.ba-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s;
}
.ba-card:hover { border-color: var(--accent); }
.ba-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ba-phone {
  width: 70px;
  background: #0f0f0f;
  border: 1.5px solid #333;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.before-phone { border-color: #333; }
.after-phone { border-color: var(--accent); box-shadow: 0 0 12px var(--accent-dim); }
.phone-notch {
  width: 24px;
  height: 5px;
  background: #222;
  border-radius: 3px;
  margin: 5px auto 4px;
}
.phone-screen {
  padding: 6px;
  min-height: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.screen-label-tag {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.after-tag { color: var(--accent); }
.raw-footage {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.5;
}
.rf-line {
  height: 4px;
  background: #444;
  border-radius: 2px;
}
.rf-bar {
  height: 20px;
  background: #2a2a2a;
  border-radius: 3px;
  margin: 2px 0;
}
.raw-badge, .after-badge {
  font-family: var(--font-display);
  font-size: 0.48rem;
  font-weight: 600;
  text-align: center;
  padding: 3px 4px;
  border-radius: 4px;
  margin-top: auto;
}
.raw-badge { background: #222; color: var(--fg-muted); }
.after-badge { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,255,135,0.2); }
.edited-footage {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.ef-hook {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--fg);
  background: rgba(0,255,135,0.08);
  padding: 3px 4px;
  border-radius: 3px;
}
.ef-hook span { color: var(--accent); }
.ef-caption, .ef-music, .ef-edit {
  font-size: 0.48rem;
  color: var(--fg-muted);
  padding: 2px 4px;
}
.ba-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.ba-meta { text-align: center; }
.ba-niche {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}
.ba-result {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

/* ---- CONTACT FORM ---- */
.contact {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.contact-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; }
.btn-submit {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
  align-self: flex-start;
}
.btn-submit:hover:not(:disabled) { opacity: 0.88; box-shadow: 0 0 30px var(--accent-glow); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 4rem 2rem;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--accent-glow);
}
.contact-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-success p {
  color: var(--fg-muted);
  max-width: 400px;
  line-height: 1.7;
}

/* ---- RESPONSIVE (additions) ---- */
@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 2rem 1.5rem; }
  .before-after { padding: 4rem 1.5rem; }
  .contact { padding: 4rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
@media (max-width: 480px) {
  .ba-phone { width: 58px; }
}