
:root {
  --navy: #0B2A4A;
  --navy2: #123D68;
  --gold: #D9A441;
  --gold-light: #FFF7E6;
  --teal: #63B3B0;
  --teal-dark: #4F7F88;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --ink: #142033;
  --body: #34445A;
  --muted: #607086;
  --line: rgba(11,42,74,.12);
  --shadow: 0 18px 45px rgba(11,42,74,.12);
  --soft-shadow: 0 8px 22px rgba(11,42,74,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(11,42,74,.10);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo img { display: block; width: 245px; max-width: 35vw; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.site-nav a:hover, .active-nav { color: var(--teal-dark); }
.mobile-note {
  display: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
  text-align: center;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 12px 30px rgba(11,42,74,.18); }
.button-primary:hover { background: var(--navy2); }
.button-secondary { background: var(--white); color: var(--navy); border: 2px solid rgba(11,42,74,.18); }
.button-secondary:hover { border-color: var(--gold); color: #8A650F; }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: #F0C25E; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .34;
  pointer-events: none;
}
.hero::before { right: -120px; top: 70px; background: var(--teal); }
.hero::after { left: -120px; bottom: 20px; background: var(--gold); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px 15px;
  border: 1px solid rgba(217,164,65,.32);
  border-radius: 999px;
  background: var(--gold-light);
  color: #8A650F;
  font-size: 14px;
  font-weight: 900;
}
.label::before { content: "✦"; color: var(--gold); }
h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--navy);
  font-weight: 950;
}
.hero-text {
  margin-top: 26px;
  max-width: 700px;
  color: var(--body);
  font-size: 21px;
  line-height: 1.65;
}
.hero-subtext {
  margin-top: 16px;
  max-width: 700px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; color: var(--body); font-size: 14px; font-weight: 800; }
.tag { background: var(--white); border-radius: 999px; padding: 10px 16px; box-shadow: var(--soft-shadow); }

.pathway-card { background: var(--white); border-radius: 34px; padding: 24px; box-shadow: var(--shadow); }
.pathway-inner { border-radius: 26px; background: var(--navy); color: var(--white); padding: 30px; }
.pathway-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.pill { background: rgba(255,255,255,.10); border-radius: 999px; padding: 10px 16px; font-size: 14px; font-weight: 900; }
.check-badge {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px;
  background: var(--gold); color: var(--navy); font-size: 22px; font-weight: 950; flex: 0 0 auto;
}
.steps { display: grid; gap: 16px; }
.step {
  display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.09);
  border-radius: 20px; padding: 16px; font-size: 18px; font-weight: 800;
}
.step-num {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px;
  background: var(--gold); color: var(--navy); font-weight: 950; flex: 0 0 auto;
}
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.mini-card { border-radius: 20px; background: var(--cream); padding: 20px; }
.mini-card.gold { background: var(--gold-light); }
.mini-label { font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-dark); }
.mini-card.gold .mini-label { color: #8A650F; }
.mini-card p { margin-top: 8px; color: var(--navy); font-weight: 900; }

.content-section { padding: 88px 0; }
.white-section { background: var(--white); }
.section-title { max-width: 790px; }
.section-title h2, .contact-section h2, .about-card-dark h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-weight: 950;
}
.section-title p { margin-top: 20px; color: #44546A; font-size: 18px; line-height: 1.7; }
.page-hero { padding: 72px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero p { margin-top: 18px; max-width: 800px; color: var(--body); font-size: 20px; line-height: 1.7; }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card, .process-card, .service-card, .note-card {
  padding: 26px;
  border: 1px solid rgba(11,42,74,.10);
  border-radius: 28px;
  background: #FBFAF7;
  box-shadow: 0 4px 18px rgba(11,42,74,.04);
}
.white-card { background: var(--white); }
.card h3, .process-card h3, .service-card h3, .note-card h3 {
  color: var(--navy); font-size: 21px; line-height: 1.15; font-weight: 950;
}
.card p, .process-card p, .service-card p, .note-card p {
  margin-top: 12px; color: #44546A; font-size: 15.5px; line-height: 1.65;
}
.process-number {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px;
  background: var(--navy); color: var(--white); font-size: 22px; font-weight: 950; margin-bottom: 18px;
}
.deliverable-box { margin-top: 30px; border-radius: 28px; background: var(--gold-light); padding: 26px; }
.deliverable-box h3 { color: var(--navy); font-size: 22px; font-weight: 950; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; color: #26384E; font-size: 16px; font-weight: 800; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 950; flex: 0 0 auto; }

.service-icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px;
  background: var(--navy); color: var(--white); font-size: 27px; margin-bottom: 20px;
}
.service-card ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.service-card li { display: flex; gap: 8px; color: #26384E; font-size: 14px; font-weight: 800; }
.service-card li::before { content: "✓"; color: var(--gold); font-weight: 950; }
.service-card, .note-card { transition: .2s ease; }
.service-card:hover, .note-card:hover { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(11,42,74,.10); }

.notes-intro { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.category {
  display: inline-flex; margin-bottom: 18px; border-radius: 999px; background: var(--gold-light);
  color: #8A650F; padding: 8px 12px; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em;
}
.read-link { display: inline-flex; margin-top: 22px; font-weight: 950; color: var(--teal-dark); }
.notes-cta {
  margin-top: 38px; border-radius: 30px; background: var(--navy); color: var(--white); padding: 30px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.notes-cta h3 { font-size: 26px; font-weight: 950; }
.notes-cta p { margin-top: 8px; color: rgba(255,255,255,.82); max-width: 720px; }

.about-card-dark { border-radius: 34px; background: var(--navy); color: var(--white); padding: 34px; box-shadow: var(--shadow); }
.about-card-dark h2 { color: var(--white); margin-top: 8px; }
.about-card-dark p { margin-top: 20px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.7; }
.about-card-light { border-radius: 34px; background: #FBFAF7; border: 1px solid rgba(11,42,74,.10); padding: 34px; box-shadow: var(--soft-shadow); }
.about-card-light p { color: var(--body); font-size: 18px; line-height: 1.75; }
.about-card-light p + p { margin-top: 20px; }
.proof-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof { border-radius: 20px; background: var(--white); padding: 20px; }
.proof strong { display: block; color: var(--gold); font-size: 26px; line-height: 1; margin-bottom: 10px; }
.proof span { color: var(--navy); font-weight: 900; }

.contact-section { background: var(--navy); color: var(--white); padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-section h2 { color: var(--white); }
.contact-section p { margin-top: 20px; max-width: 680px; color: rgba(255,255,255,.80); font-size: 18px; line-height: 1.7; }
.offer-box { margin-top: 32px; border-radius: 28px; background: rgba(255,255,255,.08); padding: 26px; }
.offer-box h3 { color: var(--gold-light); font-size: 21px; font-weight: 950; }

.form-card { border-radius: 34px; background: var(--white); padding: 28px; color: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.20); }
label { display: block; margin-top: 18px; color: var(--navy); font-size: 14px; font-weight: 950; }
label:first-child { margin-top: 0; }
input, textarea, select {
  width: 100%; margin-top: 8px; border: 1px solid rgba(11,42,74,.15); border-radius: 18px;
  background: var(--cream); padding: 14px 16px; font: inherit; color: var(--ink); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin-top: 14px; color: var(--muted); text-align: center; font-size: 12px; font-weight: 800; }
.hidden { display: none; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: 46px; align-items: start; }
.article-card {
  background: var(--white);
  border-radius: 34px;
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.article-card h2 { margin-top: 34px; color: var(--navy); font-size: 30px; line-height: 1.18; }
.article-card p, .article-card li { color: var(--body); font-size: 18px; line-height: 1.75; }
.article-card p { margin-top: 18px; }
.article-card ul, .article-card ol { margin-top: 18px; padding-left: 24px; }
.article-sidebar { position: sticky; top: 110px; display: grid; gap: 18px; }
.sidebar-box {
  border-radius: 26px;
  background: var(--gold-light);
  border: 1px solid rgba(217,164,65,.32);
  padding: 24px;
}
.sidebar-box h3 { color: var(--navy); font-size: 20px; font-weight: 950; }
.sidebar-box p { margin-top: 12px; color: var(--body); }
.disclaimer {
  margin-top: 34px;
  border-left: 5px solid var(--gold);
  background: var(--gold-light);
  padding: 18px;
  color: var(--body);
  font-weight: 700;
}

.site-footer { background: var(--white); padding: 34px 0; color: #526277; font-size: 14px; font-weight: 800; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1120px) {
  .site-nav { gap: 12px; font-size: 12px; }
  .site-logo img { width: 220px; }
}
@media (max-width: 980px) {
  .site-nav, .header-button { display: none; }
  .mobile-note { display: block; }
  .hero-grid, .two-col, .contact-grid, .notes-intro, .notes-cta, .article-layout { grid-template-columns: 1fr; }
  .card-grid-3, .notes-grid { grid-template-columns: repeat(2, 1fr); }
  .site-logo img { width: 235px; max-width: 65vw; }
  .article-sidebar { position: static; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 64px 0 72px; }
  .hero-text { font-size: 18px; }
  .card-grid-3, .card-grid-2, .notes-grid, .proof-grid, .mini-cards, .form-row { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .pathway-inner, .about-card-dark, .about-card-light, .form-card, .notes-cta, .article-card { padding: 24px; }
}
