@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8b8b9e;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --accent-secondary: #ff8c42;
  --gradient-start: #ff4d00;
  --gradient-end: #ff8c42;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --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);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 100px;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 900px;
}

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

.hero-lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
  position: relative;
}

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

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

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 600px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(255, 77, 0, 0.25);
  transform: translateY(-2px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ===== PROCESS ===== */
.process {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.process-step {
  position: relative;
  padding: 0 8px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

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

.footer-inner {
  max-width: 1100px;
  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-note {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .service-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .closing h2 {
    font-size: 1.8rem;
  }
}
/* ===== NAV ===== */
.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(--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-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

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

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

.nav-cta {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff \!important;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.25);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 40px 24px 120px;
}

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

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

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

.pricing-card:hover {
  border-color: rgba(255, 77, 0, 0.2);
  transform: translateY(-3px);
}

.pricing-card-featured {
  border-color: rgba(255, 77, 0, 0.4);
  background: var(--bg-elevated);
}

.pricing-card-featured:hover {
  border-color: rgba(255, 77, 0, 0.6);
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.pricing-dollar {
  font-size: 1.5rem;
  margin-top: 8px;
  color: var(--fg-muted);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 8px;
  margin-bottom: 20px;
}

.pricing-pitch {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

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

.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.pricing-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.25);
}

.pricing-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.35);
}

.pricing-btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.pricing-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.pricing-note-link {
  color: var(--accent);
  text-decoration: none;
}

.pricing-note-link:hover {
  text-decoration: underline;
}

.selected-pkg-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 40px 24px 80px;
}

.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.case-study {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-header {
  padding: 48px 48px 32px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.case-niche {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.case-desc {
  color: var(--fg-muted);
  max-width: 700px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.comparison {
  display: flex;
  align-items: stretch;
  padding: 40px 48px;
  gap: 24px;
  background: var(--bg-card);
}

.comparison-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.before-label { color: var(--fg-muted); }
.after-label { color: var(--accent); }

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  padding: 0 8px;
  flex-shrink: 0;
}

.video-mock {
  display: flex;
  justify-content: center;
}

.video-mock-phone {
  width: 140px;
  height: 248px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}

.after-phone {
  border-color: rgba(255, 77, 0, 0.3);
}

.video-mock-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-mock-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-raw-footage {
  text-align: center;
  padding: 16px 12px;
}

.mock-timecode {
  font-family: monospace;
  font-size: 0.6rem;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-bottom: 8px;
}

.mock-raw-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.5;
}

.mock-raw-text {
  font-size: 0.55rem;
  color: var(--fg-muted);
  line-height: 1.5;
  opacity: 0.7;
}

.mock-edited-footage {
  text-align: center;
  padding: 16px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mock-caption-bar {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  font-size: 0.52rem;
  color: #fff;
  background: rgba(255, 77, 0, 0.85);
  padding: 4px 6px;
  font-weight: 700;
  line-height: 1.3;
}

.mock-hook-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.mock-edited-text {
  font-size: 0.55rem;
  color: var(--fg);
  line-height: 1.5;
  opacity: 0.85;
}

.mock-views-badge {
  position: absolute;
  bottom: 10px;
  left: 6px;
  right: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 4px;
  padding: 3px 6px;
  text-align: center;
}

.comparison-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-stats li {
  font-size: 0.85rem;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
}

.stat-num.low { color: var(--fg-muted); }
.stat-num.high { color: var(--accent); }

.stat-label {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

.case-result {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.case-result p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
  font-style: italic;
}

.case-result cite {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

.portfolio-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
}

.portfolio-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.portfolio-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.portfolio-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.portfolio-cta p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.portfolio-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BOOK A CALL ===== */
.book-section {
  padding: 40px 24px 120px;
}

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

.book-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

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

.book-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

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

.form-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: rgba(255, 77, 0, 0.4);
}

.form-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.5;
}

.form-select {
  cursor: pointer;
  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='%238b8b9e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.25);
}

.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.35);
}

.form-disclaimer {
  color: var(--fg-muted);
  font-size: 0.8rem;
  text-align: center;
}

.form-error-banner {
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--accent-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sidebar-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.sidebar-list strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.sidebar-list p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.sidebar-card-accent {
  border-color: rgba(255, 77, 0, 0.2);
  background: var(--bg-elevated);
}

.sidebar-quote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.sidebar-cite {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

.book-success {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 24px;
  font-weight: 700;
}

.success-icon-large {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
}

.book-success h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.book-success p {
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* ===== CLOSING ACTIONS ===== */
.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

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

  .comparison {
    flex-direction: column;
    padding: 24px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }

  .case-header, .case-result {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
  }

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

  .nav-hamburger {
    display: flex;
  }

  .book-form-wrap {
    padding: 28px 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
