/* =============================================
   FUTURE VOICES — Landing Page Styles
   Color Palette: Gold, Cream, Soft Blue, Warm Brown
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --cream: #FDF6E9;
  --cream-dark: #F5E8CC;
  --blue: #4A7FA5;
  --blue-light: #6FA3C8;
  --blue-dark: #2D5F82;
  --brown: #6B4A2A;
  --brown-light: #9C6E45;
  --white: #FFFFFF;
  --text-dark: #2C1A0E;
  --text-mid: #5C3D22;
  --text-light: #8C6545;
  --shadow: rgba(44, 26, 14, 0.15);
  --shadow-deep: rgba(44, 26, 14, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(253, 246, 233, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--blue);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

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

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2E14 40%, #2D5F82 100%);
  padding-top: 80px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 26, 14, 0.88) 0%,
    rgba(74, 46, 20, 0.75) 50%,
    rgba(45, 95, 130, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 30px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: bold;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- SOCIAL PROOF STRIP ---- */
#social-proof {
  background: var(--gold);
  padding: 1.2rem 2rem;
  text-align: center;
  overflow: hidden;
}

.proof-ticker {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-item {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}

.proof-stars {
  color: #fff8dc;
  font-size: 0.85rem;
  margin-right: 0.3rem;
}

/* ---- SECTION SHARED ---- */
section {
  padding: 6rem 2rem;
}

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

.section-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 3rem;
}

/* ---- THE PROBLEM ---- */
#problem {
  background: var(--text-dark);
  text-align: center;
}

#problem .section-eyebrow {
  color: var(--gold-light);
}

#problem .section-title {
  color: var(--white);
  font-style: italic;
}

#problem .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin-left: auto;
  margin-right: auto;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.problem-card .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.problem-card h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.problem-question {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  text-align: left;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- THE SOLUTION ---- */
#solution {
  background: var(--cream);
  text-align: center;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-feature {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-deep);
}

.solution-feature .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.solution-feature h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.solution-feature p {
  font-size: 0.95rem;
}

/* ---- HOW IT WORKS ---- */
#how-it-works {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
  margin: 0 auto 1.25rem;
  font-family: 'Georgia', serif;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
}

.how-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ---- EMOTIONAL HOOK ---- */
#emotional-hook {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--brown) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#emotional-hook::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

#emotional-hook .section-eyebrow {
  color: var(--gold-light);
}

#emotional-hook .section-title {
  color: var(--white);
}

.imagine-text {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

.imagine-text strong {
  color: var(--gold-light);
  font-style: normal;
}

.imagine-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.imagine-bullets li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1.5rem;
  border-left: 3px solid var(--gold);
  text-align: left;
  max-width: 500px;
  width: 100%;
}

.imagine-closing {
  font-size: 1.6rem;
  color: var(--gold-light);
  font-style: italic;
  margin-top: 2rem;
}

/* ---- FEATURES ---- */
#features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 16px;
  transition: background 0.3s ease;
}

.feature-item:hover {
  background: var(--cream);
}

.feature-check {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  margin-top: 2px;
}

.feature-text h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
}

/* ---- USE CASES ---- */
#use-cases {
  background: var(--cream-dark);
  text-align: center;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.use-case {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.use-case:hover {
  transform: translateY(-4px);
}

.use-case .icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.use-case p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ---- TESTIMONIALS ---- */
#testimonials {
  background: var(--text-dark);
  text-align: center;
}

#testimonials .section-eyebrow {
  color: var(--gold-light);
}

#testimonials .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--gold-light) !important;
  font-style: normal !important;
  font-size: 0.9rem !important;
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 600;
}

/* ---- TRUST ---- */
#trust {
  background: var(--cream);
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid var(--gold-light);
}

/* ---- PRICING ---- */
#pricing {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-grid--single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

.founders-countdown {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
}

.pricing-original {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.pricing-guarantee {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  margin-bottom: 0;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-deep);
}

.pricing-card.featured {
  background: var(--text-dark);
  transform: scale(1.04);
  border: 2px solid var(--gold);
  box-shadow: 0 12px 50px rgba(201,168,76,0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 30px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-name {
  color: var(--white);
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--gold-dark);
  line-height: 1;
  margin: 1rem 0 0.25rem;
  font-family: 'Georgia', serif;
}

.pricing-card.featured .pricing-price {
  color: var(--gold-light);
}

.pricing-period {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.pricing-card.featured .pricing-period {
  color: rgba(255,255,255,0.5);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.pricing-card.featured .pricing-btn {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---- URGENCY ---- */
#urgency {
  background: var(--gold-dark);
  text-align: center;
  padding: 4rem 2rem;
}

#urgency .section-eyebrow {
  color: var(--gold-light);
}

#urgency .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

#urgency p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ---- FINAL CTA ---- */
#final-cta {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--blue-dark) 100%);
  text-align: center;
  padding: 7rem 2rem;
}

#final-cta .section-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

#final-cta .section-eyebrow {
  color: var(--gold-light);
}

.final-cta-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ---- FAQ ---- */
#faq {
  background: var(--cream);
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-mid);
  font-size: 0.98rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--text-dark);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
}

/* ---- EXIT POPUP ---- */
#exit-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#exit-popup.visible {
  opacity: 1;
  pointer-events: all;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.popup-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

#exit-popup.visible .popup-box {
  transform: translateY(0);
}

.popup-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.popup-box h2 {
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.popup-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.popup-dismiss {
  display: block;
  margin-top: 1rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
}

/* ---- FOUNDING MEMBER OFFER ---- */
#founding-offer {
  background: var(--text-dark);
  padding: 6rem 2rem;
}

.fo-eyebrow {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.fo-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-align: center;
}

.fo-headline em {
  color: var(--gold-light);
  font-style: italic;
}

.fo-intro {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Two-column grid */
.fo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* LEFT: benefit groups */
.fo-benefits {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.fo-benefit-group h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.fo-benefit-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fo-benefit-group ul li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.fo-benefit-group ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* RIGHT: offer card */
.fo-card {
  background: linear-gradient(160deg, #1e1206 0%, #2c1a0e 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 16px 60px rgba(201,168,76,0.25);
  position: relative;
}

.fo-card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text-dark);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.3rem;
  border-radius: 30px;
  white-space: nowrap;
}

.fo-card-price {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin: 1rem 0 0.2rem;
}

.fo-card-price-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}

.fo-card-original {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 1.5rem;
}

.fo-card-urgency {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.fo-card-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--text-dark);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-bottom: 0.75rem;
}

.fo-card-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.fo-card-phone {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}

.fo-card-guarantee {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.fo-closing {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  line-height: 1.7;
}

.fo-closing em {
  color: var(--gold-light);
}

/* Mobile */
@media (max-width: 860px) {
  .fo-grid {
    grid-template-columns: 1fr;
  }
  .fo-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ---- CONTACT MODAL ---- */
#contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#contact-modal.visible {
  display: flex;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 0, 0.75);
  backdrop-filter: blur(4px);
}

.contact-box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(44, 26, 14, 0.45);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  transition: color 0.2s;
}

.contact-close:hover {
  color: var(--text-dark);
}

.contact-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.6rem;
}

.contact-header h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.contact-header p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.contact-field {
  margin-bottom: 1.1rem;
}

.contact-field label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
}

.contact-field label span {
  color: var(--gold-dark);
}

.contact-field input,
.contact-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-field input:focus,
.contact-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

.contact-error {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: #c0392b;
  min-height: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--text-dark);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

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

.contact-privacy {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.contact-success {
  text-align: center;
  padding: 1rem 0;
}

.contact-success-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.contact-success h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }

  .hero-content {
    padding: 3rem 1.25rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .proof-ticker {
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  nav {
    padding: 0.8rem 1.25rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
