@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #000000;
  --blue: #004AAD;
  --navy: #0E1B3D;
  --amber: #FFB020;
  --mist: #F4F5F7;
  --white: #FFFFFF;
  --ink-soft: rgba(0, 0, 0, 0.62);
  --white-soft: rgba(255, 255, 255, 0.72);
  --max: 1080px;
  --pad: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open { max-height: 280px; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px var(--pad);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--ink);
}

.btn-primary:hover { opacity: 0.92; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-light:hover { border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.btn-outline-dark:hover { border-color: var(--ink); }

/* ---------- EQ divider (signature element) ---------- */

.eq-divider {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
  margin: 0 auto;
  padding: 48px 0;
}

.eq-divider span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--blue);
}

.eq-divider.on-dark span { background: var(--amber); }

/* heights forming the repeating EQ pattern */
.eq-divider span:nth-child(1) { height: 8px; }
.eq-divider span:nth-child(2) { height: 18px; }
.eq-divider span:nth-child(3) { height: 28px; }
.eq-divider span:nth-child(4) { height: 14px; }
.eq-divider span:nth-child(5) { height: 22px; }
.eq-divider span:nth-child(6) { height: 10px; }
.eq-divider span:nth-child(7) { height: 24px; }
.eq-divider span:nth-child(8) { height: 16px; }
.eq-divider span:nth-child(9) { height: 28px; }
.eq-divider span:nth-child(10) { height: 12px; }
.eq-divider span:nth-child(11) { height: 20px; }
.eq-divider span:nth-child(12) { height: 8px; }
.eq-divider span:nth-child(13) { height: 16px; }

/* ---------- Hero ---------- */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px var(--pad) 64px;
  text-align: center;
}

.hero-logo { margin: 0 auto 28px; height: 64px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 760px;
  margin-inline: auto;
}

.hero p.lead {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--white-soft);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Generic sections ---------- */

.section {
  padding: 16px var(--pad) 56px;
}

.section.mist { background: var(--mist); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 14px;
}

.section p.body-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

.price-tag {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.text-link {
  font-weight: 700;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

.text-link:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Cards / lists ---------- */

.check-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0 8px;
}

@media (max-width: 720px) {
  .stage-grid { grid-template-columns: 1fr; }
}

.stage-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.stage-card .stage-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}

.stage-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.stage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Page title band (sub-pages) ---------- */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px var(--pad) 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 14px;
}

.page-hero p {
  color: var(--white-soft);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- Practical info block ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 8px 0 36px;
}

@media (max-width: 720px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-item {
  background: var(--mist);
  border-radius: 16px;
  padding: 20px 22px;
}

.info-item .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}

.info-item .value {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ---------- Contact band ---------- */

.contact-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px var(--pad);
  text-align: center;
}

.contact-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 14px;
}

.contact-band p {
  color: var(--white-soft);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
}

.social-row a:hover { color: var(--amber); }

/* ---------- Contact page ---------- */

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 420px;
}

.contact-list li {
  background: var(--mist);
  border-radius: 16px;
  padding: 18px 20px;
}

.contact-list .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.contact-list .value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 28px var(--pad) 36px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}
