:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108, 92, 231, 0.15);
  --gradient: linear-gradient(135deg, #6c5ce7, #fd79a8, #fdcb6e);
  --card-bg: #16161f;
  --card-border: #1e1e2a;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.3);
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

.hero-gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Problem */
.problem {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  position: sticky;
  top: 100px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 16px;
  opacity: 0.6;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* How it works */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

.step-connector {
  width: 1px;
  height: 40px;
  background: var(--card-border);
  margin-left: 23px;
}

/* Packages / Who it's for */
.packages {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.packages-inner {
  max-width: 900px;
  margin: 0 auto;
}

.packages-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.niche-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
}

.niche-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.what-you-get h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.deliverable {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

.del-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-light);
}

.del-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.del-text span {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.5px;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.closing-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.closing-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.closing-btn-ghost {
  display: inline-block;
  padding: 16px 24px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.closing-btn-ghost:hover {
  color: var(--fg);
}

/* ============================
   Navigation
   ============================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: 0.2s ease;
}

/* ============================
   Page Hero (inner pages)
   ============================ */

.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

/* ============================
   Pricing Page
   ============================ */

.pricing-section {
  padding: 60px 24px 100px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(108, 92, 231, 0.4);
  background: linear-gradient(160deg, #1a1826 0%, var(--card-bg) 100%);
}

.pricing-popular {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.4);
  border-radius: 100px;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--fg);
}

.price-period {
  font-size: 16px;
  color: var(--fg-muted);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--card-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feat-check {
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

.feat-muted {
  color: var(--fg-muted);
  opacity: 0.4;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--card-border);
  color: var(--fg);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.pricing-btn:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-1px);
}

.pricing-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pricing-btn--accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

.pricing-footnote {
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

/* FAQ */
.pricing-faq {
  padding: 80px 24px;
  background: var(--bg-subtle);
}

.faq-inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============================
   Gallery Page
   ============================ */

.gallery-section {
  padding: 80px 24px;
}

.gallery-section--alt {
  background: var(--bg-subtle);
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-header {
  max-width: 600px;
  margin-bottom: 48px;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.gallery-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Mock Video Grid */
.mock-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mock-video-frame {
  aspect-ratio: 9/16;
  border-radius: 16px;
  background: linear-gradient(160deg, #1e1632, #0d0d1a);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: border-color 0.2s ease;
}

.mock-video-frame--alt {
  background: linear-gradient(160deg, #1a2020, #0d1515);
}

.mock-video-frame--dark {
  background: linear-gradient(160deg, #1a1520, #0a0a12);
}

.mock-video-frame:hover {
  border-color: rgba(108, 92, 231, 0.4);
}

.mock-video-content {
  position: relative;
  z-index: 2;
}

.mock-hook {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--fg);
}

.mock-caption {
  font-size: 12px;
  color: var(--accent-light);
  font-weight: 500;
}

.mock-video-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 2;
}

.mock-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}

.mock-duration {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
}

.mock-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mock-tag {
  padding: 4px 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-light);
  font-family: var(--font-display);
}

.mock-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Carousel Samples */
.carousel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.carousel-sample {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s ease;
}

.carousel-sample:hover {
  border-color: rgba(108, 92, 231, 0.3);
}

.carousel-slides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.carousel-slide {
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.carousel-slide--cover {
  background: linear-gradient(135deg, #1e1632, #2d1b5e);
}

.carousel-slide--cover-b {
  background: linear-gradient(135deg, #0f1f1f, #0d3030);
}

.carousel-slide--cta {
  background: var(--accent-glow);
  border-color: rgba(108, 92, 231, 0.3);
}

.slide-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.slide-content h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
}

.slide-content p {
  font-size: 10px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.slide-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
  opacity: 0.5;
}

.slide-cta {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-light);
  margin-top: 6px;
}

/* Newsletter */
.newsletter-sample {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: start;
}

.email-mock {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
}

.email-header {
  padding: 20px 28px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--card-border);
}

.email-from {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.email-subject {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg);
  margin-bottom: 4px;
}

.email-preheader {
  font-size: 13px;
  color: var(--fg-muted);
}

.email-body {
  padding: 28px;
  font-size: 15px;
  line-height: 1.8;
}

.email-body p {
  margin-bottom: 16px;
  color: var(--fg-muted);
}

.email-body strong {
  color: var(--fg);
}

.email-body em {
  color: var(--accent-light);
  font-style: normal;
  font-weight: 500;
}

.email-cta {
  margin: 24px 0;
}

.email-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 100px;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.email-cta-btn:hover {
  background: rgba(108, 92, 231, 0.25);
}

.email-footer-note {
  font-size: 14px !important;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
  margin-top: 16px;
}

.newsletter-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nl-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

.nl-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}

.nl-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gallery CTA */
.gallery-cta {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg-subtle);
}

.gallery-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.gallery-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.gallery-cta p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ============================
   Contact Page
   ============================ */

.contact-section {
  padding: 60px 24px 100px;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.3px;
}

.label-opt {
  color: var(--fg-muted);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238a8a9a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-submit {
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Contact Sidebar */
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.next-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  margin-top: 2px;
}

.next-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.next-steps p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 10px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-weight: 500;
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 80px 40px;
  background: var(--card-bg);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 24px;
  max-width: 520px;
  margin: 0 auto;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-light);
  margin: 0 auto 24px;
  font-weight: 700;
}

.contact-success h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-success p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============================
   Footer nav
   ============================ */

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 16px 0;
}

.footer-nav a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--fg);
}

/* Footer */
.site-footer {
  padding: 60px 24px;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.footer-email {
  font-size: 14px;
  color: var(--accent-light);
}

/* ============================
   Responsive — New Pages
   ============================ */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 48px;
  }

  .mock-video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mock-video-frame {
    max-height: 300px;
    aspect-ratio: auto;
  }

  .carousel-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-sample {
    grid-template-columns: 1fr;
  }

  .newsletter-meta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nl-stat {
    flex: 1;
    min-width: 100px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    padding: 14px 24px;
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    background: none;
    border: none;
    color: var(--fg);
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mock-video-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .closing-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Legacy Responsive */
@media (max-width: 768px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-left h2 {
    position: static;
  }

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

  .deliverables {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }
}

@media (max-width: 480px) {
  .niche-grid {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 16px;
  }
}