:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #181824;
  --bg-surface: #0f0f17;
  --fg: #eeeef2;
  --fg-muted: #8a8a9e;
  --accent: #ff4d4d;
  --accent-glow: rgba(255, 77, 77, 0.15);
  --accent-secondary: #ff8533;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  /* Layout */
  --max-w: 1100px;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.85em 2em;
  transition: opacity 0.15s, transform 0.1s;
}

.hero-cta-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.hero-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.85em 2em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.15s, color 0.15s;
}

.hero-cta-secondary:hover { border-color: rgba(255,255,255,0.2); color: var(--fg); }

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.platform-tag {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 56px;
}

.visual-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vid-long {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg);
}

.vid-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.arrow-down {
  font-size: 1.6rem;
  color: var(--accent);
  animation: pulse-down 2s infinite;
}

@keyframes pulse-down {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

.vid-shorts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.vid-short {
  width: 60px;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,61,90,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* ═══════ HOW IT WORKS ═══════ */
.how {
  padding: 100px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 56px;
  text-align: center;
}

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

.step {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ═══════ FEATURES ═══════ */
.features {
  padding: 100px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.features-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(255,61,90,0.25);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ═══════ NUMBERS ═══════ */
.numbers {
  padding: 80px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

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

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

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem !important;
  color: var(--accent) !important;
  margin-top: 24px !important;
}

/* ═══════ FOOTER ═══════ */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

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

/* ═══════ MOBILE ═══════ */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .vid-shorts {
    gap: 6px;
  }

  .vid-short {
    width: 48px;
    height: 80px;
  }
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5em 1.2em;
  border-radius: 8px;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.88; }

.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;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.page-hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: var(--space-xl) var(--space-md);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
  margin-bottom: var(--space-lg);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px var(--accent-glow);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.plan-price {
  margin-bottom: var(--space-sm);
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--fg);
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.plan-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}

.plan-features li {
  font-size: 0.92rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.75em 1.5em;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: var(--bg-surface);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.15s, background 0.15s;
  margin-top: auto;
}

.plan-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

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

.plan-btn--featured:hover {
  opacity: 0.88;
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-footnote {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.pricing-footnote strong { color: var(--fg); }

/* FAQ */
.pricing-faq {
  background: var(--bg-surface);
  padding: var(--space-xl) var(--space-md);
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: var(--space-md);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

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

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: var(--space-xl) var(--space-md);
}

.portfolio-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.portfolio-item {}

.portfolio-label {
  margin-bottom: var(--space-md);
}

.portfolio-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(255, 61, 90, 0.25);
  padding: 0.3em 0.9em;
  border-radius: 100px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: center;
}

.before-block,
.after-block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: var(--space-md);
}

.after-block {
  border-color: rgba(255, 210, 63, 0.15);
  background: rgba(255, 210, 63, 0.03);
}

.ba-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25em 0.8em;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.ba-tag--before {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-muted);
}

.ba-tag--after {
  background: rgba(255, 210, 63, 0.15);
  color: var(--accent-secondary);
}

.ba-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.ba-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.ba-content p {
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.ba-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ba-stats li {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.ba-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.6;
  align-self: center;
}

/* Portfolio CTA */
.portfolio-cta {
  background: var(--bg-surface);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

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

.portfolio-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.portfolio-cta p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 2em;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }

/* ===== SUBMIT / INTAKE FORM ===== */
.submit-section {
  padding: var(--space-xl) var(--space-md);
}

.submit-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-lg);
  align-items: start;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.form-group .optional {
  font-weight: 400;
  color: var(--fg-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75em 1em;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8693' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

.form-group small {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.form-group small a {
  color: var(--accent);
  text-decoration: none;
}

.form-group small a:hover { text-decoration: underline; }

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

.btn-submit {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9em 2em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.15s;
  align-self: flex-start;
}

.btn-submit:hover { opacity: 0.88; }

.form-errors {
  background: rgba(255, 61, 90, 0.08);
  border: 1px solid rgba(255, 61, 90, 0.25);
  border-radius: 10px;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-sm);
}

.form-errors p {
  color: var(--accent);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

/* Aside */
.submit-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.aside-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: var(--space-md);
}

.aside-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.aside-card p {
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.next-steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.next-steps li {
  counter-increment: steps;
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.next-steps li::before {
  content: counter(steps);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.6;
  min-width: 18px;
}

.next-steps li strong { color: var(--fg); }

.aside-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.aside-link:hover { text-decoration: underline; }

/* Success state */
.submit-success-section {
  padding: var(--space-xl) var(--space-md);
}

.success-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 61, 90, 0.12);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto var(--space-md);
}

.success-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: var(--space-xs);
}

.success-card p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.success-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: var(--bg-surface);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7em 1.4em;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.15s;
}

.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.25); }

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7em 1.4em;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ===== RESPONSIVE (NEW PAGES) ===== */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .before-after {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .ba-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .submit-inner {
    grid-template-columns: 1fr;
  }

  .submit-aside {
    order: -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    align-items: flex-start;
  }

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

  .site-nav { position: relative; }

  .nav-toggle { display: flex; }

  .submit-aside { grid-template-columns: 1fr; }
}