/* ===========================
   PODCAST GUEST EMAIL — MAIN CSS
   Font: Syne (headings) + Mulish (body)
   Theme: Bold Orange + Deep Navy + White
   =========================== */

:root {
  --orange: #FF6B2B;
  --orange-light: #FF8C57;
  --orange-dark: #E04F10;
  --orange-glow: rgba(255,107,43,0.15);
  --navy: #0D1B2A;
  --navy-mid: #1A2F45;
  --navy-light: #243B55;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --gray-100: #F1EDE8;
  --gray-200: #DDD8D2;
  --gray-400: #9A9590;
  --gray-600: #5C5752;
  --text-body: #2C2420;
  --purple: #7B4FFF;
  --blue: #2563EB;
  --green: #059669;
  --teal: #0D9488;
  --red: #DC2626;

  --font-head: 'Syne', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.18);
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #FF3D71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 30px rgba(255,107,43,0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 40px rgba(255,107,43,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--orange);
  color: white;
  padding: 10px 22px;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(255,107,43,0.35);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,107,43,0.45);
}
.btn-pitch {
  background: var(--navy);
  color: white;
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
}
.btn-pitch:hover {
  background: var(--orange);
  transform: translateY(-1px);
}
.btn-white {
  background: white;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.full-width { width: 100%; justify-content: center; }

/* ========================
   NAVBAR
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header.scrolled .logo-text,
.site-header.scrolled .nav-link {
  color: var(--navy) !important;
}
.navbar { padding: 0; }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--orange); }
.footer-logo .logo-text { color: var(--navy); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #1E3A5F 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--purple);
  bottom: 100px; left: -50px;
  animation: floatShape 10s ease-in-out infinite 2s;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--blue);
  top: 40%; right: 25%;
  animation: floatShape 7s ease-in-out infinite 4s;
}
.shape-4 {
  width: 150px; height: 150px;
  background: #FF3D71;
  bottom: 20%; right: 15%;
  animation: floatShape 9s ease-in-out infinite 1s;
}
.floating-mic {
  position: absolute;
  font-size: 8rem;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.15);
  border: 1px solid rgba(255,107,43,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero-title {
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  width: fit-content;
}
.stat-item { text-align: center; padding: 0 28px; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* EMAIL MOCKUP */
.hero-visual { position: relative; }
.email-mockup {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255,107,43,0.15);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.email-header {
  background: #F3F3F3;
  padding: 14px 20px;
  border-bottom: 1px solid #E8E8E8;
}
.email-chrome {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.email-subject {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.email-tag {
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.email-body { padding: 24px; }
.email-from {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0F0F0;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF3D71);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-from strong {
  display: block;
  font-size: 0.9rem;
  color: #1A1A1A;
}
.email-from span {
  font-size: 0.78rem;
  color: #999;
}
.email-text p {
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.65;
}
.highlight-word {
  background: rgba(255,107,43,0.12);
  color: var(--orange-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.email-metrics {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.metric-tag {
  background: #F0FFF4;
  color: #059669;
  border: 1px solid #A7F3D0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.email-response {
  padding: 16px 24px;
  background: #F8FFF4;
  border-top: 1px solid #E8F5E9;
}
.response-bubble {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.resp-emoji { font-size: 1.4rem; }
.response-bubble strong {
  display: block;
  font-size: 0.85rem;
  color: #059669;
  margin-bottom: 2px;
}
.response-bubble span {
  font-size: 0.8rem;
  color: #666;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-weight: 600;
}
.logos-scroll { overflow: hidden; }
.logos-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.podcast-logo {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.podcast-logo:hover { color: rgba(255,255,255,0.8); }

/* ========================
   SECTION STYLES
   ======================== */
section { padding: 90px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,107,43,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ========================
   HOW IT WORKS
   ======================== */
.how-it-works { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
}
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gray-200);
  letter-spacing: 1px;
}
.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon { font-size: 1.8rem; }
.step-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.step-card p { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 20px; }
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step-tags span {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--orange);
  font-size: 1.4rem;
}
.step-connector::before { content: '→'; font-weight: 700; }

/* ========================
   PITCH TEMPLATES
   ======================== */
.pitches { background: white; }
.pitches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.pitch-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1.5px solid var(--gray-100);
  background: white;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.pitch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.pitch-orange::before { background: linear-gradient(90deg, var(--orange), #FF3D71); }
.pitch-purple::before { background: linear-gradient(90deg, var(--purple), #B46FFF); }
.pitch-blue::before { background: linear-gradient(90deg, var(--blue), #60A5FA); }
.pitch-green::before { background: linear-gradient(90deg, var(--green), #34D399); }
.pitch-red::before { background: linear-gradient(90deg, var(--red), #FB7185); }
.pitch-teal::before { background: linear-gradient(90deg, var(--teal), #2DD4BF); }

.pitch-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.pitch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pitch-icon { font-size: 1.8rem; }
.pitch-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--orange-glow);
  color: var(--orange);
}
.pitch-orange .pitch-badge { background: rgba(255,107,43,0.1); color: var(--orange); }
.pitch-purple .pitch-badge { background: rgba(123,79,255,0.1); color: var(--purple); }
.pitch-blue .pitch-badge { background: rgba(37,99,235,0.1); color: var(--blue); }
.pitch-green .pitch-badge { background: rgba(5,150,105,0.1); color: var(--green); }
.pitch-red .pitch-badge { background: rgba(220,38,38,0.1); color: var(--red); }
.pitch-teal .pitch-badge { background: rgba(13,148,136,0.1); color: var(--teal); }

.pitch-card h3 { font-size: 1.15rem; }
.pitch-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }
.pitch-use {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.use-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); font-weight: 700; }
.pitch-use span:last-child { font-size: 0.85rem; font-weight: 600; color: var(--text-body); }
.pitch-preview {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preview-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); font-weight: 700; }
.pitch-preview em { font-size: 0.82rem; color: var(--gray-600); font-style: normal; line-height: 1.5; }
.pitch-features { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tag {
  font-size: 0.75rem;
  color: var(--gray-600);
  padding: 3px 0;
  font-weight: 500;
}
.pitch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.open-rate { display: flex; flex-direction: column; }
.rate-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}
.open-rate span:last-child { font-size: 0.72rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========================
   AD SECTION
   ======================== */
.ad-section {
  padding: 24px 0;
  background: var(--gray-100);
}
.ad-wrapper {
  max-width: 728px;
  margin: 0 auto;
  text-align: center;
}
.ad-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ========================
   CHECKLIST SECTION
   ======================== */
.checklist-section { background: var(--navy); color: white; }
.checklist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.checklist-section .section-badge {
  background: rgba(255,107,43,0.2);
  color: var(--orange-light);
  border-color: rgba(255,107,43,0.3);
}
.checklist-section h2 { color: white; margin-bottom: 12px; }
.checklist-section > .checklist-content > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.checklist-items { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}
.check-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.check-emoji { font-size: 1.1rem; flex-shrink: 0; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.cta-box-inner {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-icon { font-size: 3rem; margin-bottom: 16px; }
.cta-box-inner h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-box-inner > p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.email-form { display: flex; flex-direction: column; gap: 12px; }
.email-form input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.email-form input:focus { border-color: var(--orange); }
.form-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 10px; }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}
.t-purple { background: linear-gradient(135deg, var(--purple), #B46FFF); }
.t-orange { background: linear-gradient(135deg, var(--orange), #FF3D71); }
.t-blue { background: linear-gradient(135deg, var(--blue), #60A5FA); }
.t-green { background: linear-gradient(135deg, var(--green), #34D399); }
.t-teal { background: linear-gradient(135deg, var(--teal), #2DD4BF); }
.t-red { background: linear-gradient(135deg, var(--red), #FB7185); }
.t-info strong { display: block; font-size: 0.88rem; }
.t-info span { font-size: 0.78rem; color: var(--gray-400); }
.t-result {
  margin-left: auto;
  background: var(--orange-glow);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(255,107,43,0.2);
}

/* ========================
   FAQ
   ======================== */
.faq { background: white; }
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.active { border-color: var(--orange); }
.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-icon { flex-shrink: 0; transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 200px; }

/* ========================
   FINAL CTA
   ======================== */
.final-cta {
  background: linear-gradient(145deg, var(--orange-dark) 0%, var(--orange) 50%, #FF3D71 100%);
  padding: 100px 0;
  overflow: hidden;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.s1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.s2 { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.cta-mic { font-size: 3.5rem; margin-bottom: 20px; animation: float 4s ease-in-out infinite; }
.cta-inner h2 { color: white; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.cta-highlight { color: rgba(255,255,255,0.9); }
.cta-inner > p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

/* ========================
   SITE FOOTER
   ======================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}
.footer-disclaimer { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .checklist-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 8px;
  }
  .nav-toggle { display: flex; }
  .hero-stats { width: 100%; }
  .pitches-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
