/* ============================================================
   page-home.css — Styles for index.html
   Extracted from inline <style> block.
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}
.hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.7s;
}
.hero__intro {
  max-width: 580px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.1s;
}
.hero__note {
  margin-top: 22px;
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.3s;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--dark2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.proof-bar__item { text-align: center; }
.proof-bar__item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.proof-bar__item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.proof-bar__divider {
  width: 1px;
  height: 44px;
  background: var(--gold-border);
}

/* ── PAIN ── */
.pain { background: var(--dark2); }
.pain__inner { max-width: 860px; margin: 0 auto; }
.pain__list  { margin: 44px 0; }
.pain__item  {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pain__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.pain__item h3,
.pain__item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}
.pain__item p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.78; }
.agitate {
  background: rgba(192,57,43,0.06);
  border-left: 3px solid rgba(192,57,43,0.5);
  padding: 26px 30px;
  margin: 36px 0;
}
.agitate p { font-size: 1rem; line-height: 1.8; color: var(--text-soft); }

/* ── BRIDGE ── */
.bridge {
  text-align: center;
  background: linear-gradient(to bottom, var(--dark2), var(--dark));
}
.bridge h2 {
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.25;
}
.bridge p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.step {
  background: var(--dark2);
  padding: 40px 34px;
  border-top: 2px solid transparent;
  transition: border-top-color 0.3s;
}
.step:hover { border-top-color: var(--gold); }
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(201,168,76,0.14);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.step p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.8; }

/* ── PROMISE ── */
.promise {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark3);
}
.promise::before {
  content: '\2726';
  position: absolute;
  font-size: 50vw;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(201,168,76,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.promise blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  max-width: 840px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.promise > p {
  max-width: 500px;
  margin: 0 auto 44px;
  font-size: 1.02rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ── COMPARE ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 52px;
}
.compare-col { padding: 42px 38px; }
.compare-col--them { background: rgba(255,255,255,0.025); }
.compare-col--us   { background: rgba(201,168,76,0.055); border-top: 2px solid var(--gold); }
.compare-col h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold-border);
}
.compare-col--them h3 { color: var(--text-muted); }
.compare-col--us   h3 { color: var(--gold); }
.compare-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.compare-row__icon { flex-shrink: 0; margin-top: 2px; }

/* ── FOR WHOM ── */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 44px 0 2px;
}
.for-card {
  background: var(--dark2);
  padding: 36px 30px;
  border-left: 3px solid transparent;
  transition: border-left-color 0.3s;
}
.for-card:hover { border-left-color: var(--gold); }
.for-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.for-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.78; }
.not-for {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  padding: 36px 42px;
}
.not-for h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.not-for p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.82; }

/* ── RISK REVERSAL ── */
.risk-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border: 1px solid rgba(201,168,76,0.28);
  padding: 56px 52px;
}
.risk-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 18px;
}
.risk-box p { font-size: 0.98rem; color: var(--text-soft); line-height: 1.85; }
.risk-box p + p { margin-top: 14px; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.price-card {
  background: var(--dark2);
  padding: 42px 34px;
  position: relative;
}
.price-card--featured {
  background: rgba(201,168,76,0.055);
  border-top: 2px solid var(--gold);
}
.price-badge {
  position: absolute;
  top: -1px; right: 26px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.price-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 22px;
}
.price-amount { margin-bottom: 28px; }
.price-amount strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text);
}
.price-amount span { font-size: 0.78rem; color: var(--text-muted); }
.price-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 0; }
.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 0.86rem;
  color: var(--text-soft);
}
.price-features li::before {
  content: '\2726';
  color: var(--gold);
  font-size: 0.56rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gold-border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-btn__icon {
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.is-open .faq-btn__icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 600px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.82; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  background: var(--dark2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.final-cta h2 { margin-bottom: 22px; }
.final-cta p  { max-width: 500px; margin: 0 auto 44px; font-size: 1.02rem; line-height: 1.85; }
.final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 16px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-bar__icon { color: var(--gold); font-size: 0.9rem; }
.trust-bar__divider { width: 1px; height: 18px; background: var(--gold-border); }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--dark2);
  padding: 38px 32px;
  border-top: 2px solid transparent;
  transition: border-top-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card:hover { border-top-color: var(--gold); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-soft);
  flex: 1;
}
.testimonial-card__quote::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.testimonial-card__quote::after  { content: '\201D'; color: var(--gold); margin-left: 2px; }
.testimonial-card__author { border-top: 1px solid var(--gold-border); padding-top: 18px; }
.testimonial-card__author strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
}
.testimonial-card__author span { font-size: 0.76rem; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid        { grid-template-columns: 1fr; }
  .compare-grid      { grid-template-columns: 1fr; }
  .for-grid          { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .testimonial-grid  { grid-template-columns: 1fr; }
  .proof-bar         { gap: 32px; padding: 24px; }
  .proof-bar__divider { display: none; }
  .risk-box          { padding: 36px 24px; }
  .compare-col       { padding: 28px 22px; }
}
@media (max-width: 600px) {
  .trust-bar { gap: 20px; }
  .trust-bar__divider { display: none; }
}
