/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 72px var(--pad-x) 64px;
  border-bottom: 1px solid rgba(200,169,111,0.12);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(245,241,234,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub-fear {
  font-size: 16px;
  color: rgba(245,241,234,0.6);
  line-height: 1.6;
  margin-bottom: 8px;
  max-width: 520px;
}
.hero-cta-block { margin-bottom: 20px; }
.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-hero:hover { background: #b8956a; }
.hero-cqc {
  font-size: 12px;
  color: rgba(245,241,234,0.35);
  margin-top: 12px;
}
.hero-cqc a { color: rgba(245,241,234,0.5); text-decoration: underline; text-underline-offset: 2px; }

/* NICE banner */
.nice-banner {
  background: rgba(200,169,111,0.08);
  border: 1px solid rgba(200,169,111,0.25);
  border-radius: 6px;
  padding: 16px 20px;
  margin-top: 28px;
}
.nice-banner p {
  font-size: 13px;
  color: rgba(245,241,234,0.7);
  line-height: 1.6;
  margin: 0;
}
.nice-banner strong { color: var(--gold); }

/* Hero pricing card */
.hero-card {
  background: var(--navy2);
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  padding: 36px 32px;
  position: sticky;
  top: 84px;
}
.hero-card-label {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hero-card-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-card-duration {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  display: block;
}
.hero-card-items {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-card-items li {
  font-size: 13px;
  color: rgba(245,241,234,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.hero-card-items li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.btn-card {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 3px;
  text-align: center;
  transition: all 0.2s;
}
.btn-card:hover { background: #b8956a; }
.hero-card-note {
  font-size: 11px;
  color: rgba(245,241,234,0.3);
  text-align: center;
  margin-top: 10px;
}
.hero-card-remote {
  font-size: 11px;
  color: rgba(200,169,111,0.6);
  text-align: center;
  margin-top: 8px;
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 80px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ── IS THIS YOU ── */
.qualify-section { background: var(--cream); }
.qualify-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.qualify-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.qualify-left p { font-size: 15px; color: var(--dgrey); line-height: 1.8; margin-bottom: 14px; }
.qualify-left strong { color: var(--navy); font-weight: 600; }
.qualify-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.qualify-list li {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

/* ── THE PROBLEM ── */
.problem-section { background: var(--navy); }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.problem-left h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 20px; }
.problem-left p { font-size: 15px; color: rgba(245,241,234,0.7); line-height: 1.8; margin-bottom: 16px; }
.problem-left strong { color: var(--cream); font-weight: 600; }
.problem-stat {
  background: var(--navy2);
  border-radius: 8px;
  padding: 32px;
  border-left: 6px solid var(--gold);
}
.problem-stat-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-stat-label {
  font-size: 16px;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}
.problem-stat-source { font-size: 12px; color: var(--grey); font-style: italic; }
.problem-quote {
  margin-top: 24px;
  background: rgba(200,169,111,0.08);
  border: 1px solid rgba(200,169,111,0.2);
  border-radius: 6px;
  padding: 20px 24px;
}
.problem-quote p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin: 0 0 10px;
}
.problem-quote cite {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── DELIVERABLES ── */
.deliverable-section { background: var(--cream); }
.deliverable-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.deliverable-header h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.deliverable-header p { font-size: 16px; color: var(--dgrey); }
.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.deliverable-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.deliverable-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); border-radius: 8px 8px 0 0; }
.deliverable-card h3 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.deliverable-card p { font-size: 13px; color: var(--dgrey); line-height: 1.65; }
.deliverable-cta {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.deliverable-cta p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin: 0;
}
.deliverable-cta em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ── EXIT PLAN PRODUCT ── */
.exit-plan-section { background: var(--navy2); }
.exit-plan-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.exit-plan-content h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 16px; }
.exit-plan-content h2 em { font-style: italic; color: var(--gold); }
.exit-plan-content p { font-size: 15px; color: rgba(245,241,234,0.7); line-height: 1.8; margin-bottom: 16px; }
.exit-plan-content strong { color: var(--cream); font-weight: 600; }
.exit-plan-includes {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exit-plan-includes li {
  font-size: 14px;
  color: rgba(245,241,234,0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.exit-plan-includes li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.exit-plan-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px 36px;
  border: 1px solid rgba(200,169,111,0.3);
  position: relative;
  overflow: hidden;
}
.exit-plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.exit-plan-badge {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
}
.exit-plan-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}
.exit-plan-price {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.exit-plan-duration {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  display: block;
}
.exit-plan-card-desc {
  font-size: 14px;
  color: rgba(245,241,234,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.exit-plan-card .btn-card { margin-bottom: 12px; }
.exit-plan-saving {
  font-size: 12px;
  color: var(--gold);
  text-align: center;
  font-style: italic;
}

/* ── WHY DAN ── */
.why-section { background: var(--cream); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-content h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.why-content p { font-size: 15px; color: var(--dgrey); line-height: 1.8; margin-bottom: 14px; }
.why-content strong { color: var(--navy); font-weight: 600; }
.why-creds { display: flex; flex-direction: column; gap: 12px; }
.why-cred {
  background: var(--white);
  border-radius: 6px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
}
.why-cred strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.why-cred span { font-size: 12px; color: var(--grey); }

/* ── FEES ── */
.fees-section { background: var(--navy); }
.fees-header { margin-bottom: 40px; }
.fees-header h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.fees-header p { font-size: 15px; color: rgba(245,241,234,0.6); max-width: 520px; line-height: 1.7; }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fee-card {
  background: var(--navy2);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 3px solid rgba(200,169,111,0.2);
}
.fee-name { font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.fee-price { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.fee-duration { font-family: var(--font-cond); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 14px; display: block; }
.fee-desc { font-size: 13px; color: rgba(245,241,234,0.55); line-height: 1.65; }
.fees-note { margin-top: 20px; font-size: 12px; color: rgba(245,241,234,0.3); font-style: italic; }
.fees-remote { margin-top: 12px; font-size: 12px; color: rgba(200,169,111,0.5); }

/* ── NOT ── */
.not-section { background: var(--navy2); padding: 48px 0; }
.not-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.not-card { padding: 20px; }
.not-x { font-family: var(--font-serif); font-size: 28px; color: rgba(200,169,111,0.2); margin-bottom: 10px; }
.not-card p { font-size: 13px; color: rgba(245,241,234,0.55); line-height: 1.6; }
.not-card strong { color: rgba(245,241,234,0.75); }

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-header h2 { font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: var(--navy); margin-bottom: 32px; }
.faq-item { border-top: 1px solid rgba(11,25,40,0.1); padding: 18px 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(11,25,40,0.1); }
.faq-q { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; font-size: 14px; color: var(--dgrey); line-height: 1.75; padding-top: 12px; }
.faq-item.open .faq-a { display: block; }

/* ── FINAL CTA ── */
.final-section { background: var(--navy); text-align: center; }
.final-inner { max-width: 580px; margin: 0 auto; }
.final-inner h2 { font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: var(--cream); margin-bottom: 14px; line-height: 1.15; }
.final-inner h2 em { font-style: italic; color: var(--gold); }
.final-inner p { font-size: 16px; color: rgba(245,241,234,0.6); margin-bottom: 32px; line-height: 1.6; }
.final-cqc { font-size: 12px; color: rgba(245,241,234,0.3); margin-top: 12px; }
.final-cqc a { color: rgba(245,241,234,0.45); text-decoration: underline; text-underline-offset: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { position: static; }
  .qualify-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-inner { grid-template-columns: 1fr; }
  .exit-plan-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr 1fr; }
  .not-inner { grid-template-columns: 1fr 1fr; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 48px var(--pad-x); }
  .fees-grid { grid-template-columns: 1fr; }
  .not-inner { grid-template-columns: 1fr; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable-cta { flex-direction: column; text-align: center; }
}

.service-notice {
  font-size: 12px;
  color: rgba(245,241,234,0.55);
  line-height: 1.6;
  margin-top: 10px;
  font-style: italic;
  max-width: 480px;
}
