/* ============================================================
   Hogan Career Roadmap — Marketing Landing Page
   Visual system mirrors SITE/style.css (same brand)
   ============================================================ */

:root {
  --navy:       #1e3a5f;
  --steel:      #2c6e8a;
  --teal:       #1a7a6e;
  --amber:      #c07a1a;
  --text:       #1c2b3a;
  --text-light: #4a5568;
  --surface:    #f7f9fc;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --risk-high:  #b91c1c;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--navy); background: var(--surface); }

.nav-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: #16294a; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

.page-content { padding-top: 64px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(192,122,26,0.35);
}
.btn-primary:hover { background: #a86615; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: #16294a; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================================
   VIDEO HERO (promo iframe at top of page)
   ============================================================ */
.video-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #15294a 100%);
  padding: 1.5rem 2rem 5rem;
  text-align: center;
}
.video-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.video-wrap {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #000;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 700px) {
  .video-section { padding: 1rem 1rem 3.5rem; }
  .video-wrap { border-radius: 8px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #15294a 100%);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(44,110,138,0.25), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(26,122,110,0.15), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p.lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.hero-trust {
  margin-top: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
section.alt { background: var(--surface); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(30,58,95,0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 760px;
}
section p.lead {
  color: var(--text-light);
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ============================================================
   PROBLEM GRID (3 cards)
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border-top: 4px solid var(--navy);
}
.problem-card:nth-child(2) { border-top-color: var(--steel); }
.problem-card:nth-child(3) { border-top-color: var(--amber); }
.problem-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   SOLUTION GRID (6 tiles)
   ============================================================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.solution-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.solution-tile:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(30,58,95,0.1);
  transform: translateY(-2px);
}
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(30,58,95,0.08);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.solution-tile:nth-child(2) .solution-icon { background: rgba(44,110,138,0.1); color: var(--steel); }
.solution-tile:nth-child(3) .solution-icon { background: rgba(185,28,28,0.1); color: var(--risk-high); }
.solution-tile:nth-child(4) .solution-icon { background: rgba(26,122,110,0.1); color: var(--teal); }
.solution-tile:nth-child(5) .solution-icon { background: rgba(192,122,26,0.1); color: var(--amber); }
.solution-tile:nth-child(6) .solution-icon { background: rgba(74,85,104,0.1); color: var(--text-light); }
.solution-tile h3 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.solution-tile p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS (4 steps)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 0.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step:nth-child(2) .step-num { background: var(--steel); }
.step:nth-child(3) .step-num { background: var(--teal); }
.step:nth-child(4) .step-num { background: var(--amber); }

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   PRICING (2 tiers)
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
  align-items: stretch;
}
.tier {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-premium {
  border-color: var(--amber);
  box-shadow: 0 12px 36px rgba(192,122,26,0.18);
}
.tier-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.tier-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.tier-tagline {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.tier-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.tier-price small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}
.tier-placeholder {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--surface);
  border: 1px dashed var(--border);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.tier-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex: 1;
}
.tier-features li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-features li.feat-premium::before { content: '★'; color: var(--amber); }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 2rem 0 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--text-light);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 660px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.25;
}
.final-cta p {
  font-size: 1rem;
  opacity: 0.82;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.7;
}
footer .footer-disclaimer { opacity: 0.7; max-width: 720px; margin: 0.4rem auto 0; font-size: 0.72rem; }

/* ============================================================
   MODAL (intake)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,58,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}
.modal-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.modal h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.modal p.modal-sub {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.form-row input[type="text"],
.form-row input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}
.form-row.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
}
.form-row.checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-row.checkbox label { font-size: 0.88rem; font-weight: 500; color: var(--text-light); margin: 0; line-height: 1.5; }

.modal-success {
  text-align: center;
  padding: 1rem 0;
}
.modal-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: rgba(26,122,110,0.12);
  color: var(--teal);
  font-size: 1.8rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.modal-success h3 { color: var(--teal); margin-bottom: 0.5rem; }
.modal-success p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; max-width: 360px; margin: 0 auto 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav-links a { font-size: 0.78rem; padding: 0.4rem 0.5rem; }
}

@media (max-width: 700px) {
  .nav { padding: 0 1rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.95rem; padding: 0.7rem 0.5rem; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 0.5rem; }

  .hero { padding: 4rem 1.25rem 3.5rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; text-align: center; }

  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }
  .final-cta { padding: 3.5rem 1.25rem; }

  .modal { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   EXPERT / FOUNDER SECTION
   ============================================================ */
.expert-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.expert-avatar-col { display: flex; flex-direction: column; align-items: center; }
.expert-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(30,58,95,0.25);
}
.expert-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--navy);
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  text-align: center;
  line-height: 1.2;
}
.expert-title {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  max-width: 220px;
}
.expert-content > .section-label { margin-bottom: 0.85rem; }
.expert-content > h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.expert-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 0 0 1.5rem;
  max-width: 620px;
}
.expert-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 640px;
}
.expert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.expert-stats .stat { text-align: left; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .expert-grid { grid-template-columns: 180px 1fr; gap: 2rem; }
  .expert-avatar { width: 150px; height: 150px; font-size: 3.2rem; }
}

@media (max-width: 700px) {
  .expert-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .expert-avatar-col { margin-bottom: 0.5rem; }
  .expert-avatar { width: 130px; height: 130px; font-size: 2.8rem; }
  .expert-name { font-size: 1.3rem; }
  .expert-quote { font-size: 1.1rem; padding-left: 1rem; }
  .expert-stats { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
}
