
/* ─────────────────────────────────────
   TOKENS
───────────────────────────────────── */
:root {
  --cream:      #F7F5F1;
  --cream-mid:  #EDE9E2;
  --white:      #FFFFFF;
  --navy:       #000038;
  --navy-mid:   #07073A;
  --blue:       #1B4BB8;
  --magenta:    #9B1F54;
  --magenta-dk: #7D1844;
  --orange:     #E55318;
  --text:       #14120E;
  --muted:      #6B6560;
  --border:     rgba(0,0,0,.08);
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

/* ─────────────────────────────────────
   RESET
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--magenta); border-radius: 2px; }

.wrap { width: min(1300px, 100%); margin: 0 auto; padding: 0 5.5%; }

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.sr { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.sr.visible { opacity: 1; transform: none; }
.sr-left { opacity: 0; transform: translateX(-18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.sr-left.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; } .d6 { transition-delay: .42s; }

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  padding: 0 5.5%; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s var(--ease), box-shadow .3s;
}
.nav.solid {
  background: rgba(247,245,241,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nav-logo-mark {
  width: 30px; height: 30px; border-radius: 5px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--orange);
  flex-shrink: 0; transition: background .25s;
}
.nav.solid .nav-logo-mark { background: var(--magenta); }
.nav-logo-name {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85); transition: color .3s;
}
.nav.solid .nav-logo-name { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.6); transition: color .2s;
}
.nav.solid .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--magenta) !important; }
.nav-apply {
  padding: 8px 20px; border-radius: 3px;
  background: var(--magenta); color: #fff !important;
  font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  transition: background .2s, transform .2s !important;
}
.nav-apply:hover { background: var(--magenta-dk) !important; transform: translateY(-1px) !important; }

/* ─────────────────────────────────────
   HERO  —  Walsh leadership-style
───────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--navy);
}

/* ── Deep layered background ── */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%,  rgba(155,31,84,.18)  0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%,  rgba(27,75,184,.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 60% 100%, rgba(201,149,26,.07) 0%, transparent 55%),
    linear-gradient(160deg, #000038 0%, #04042C 45%, #0D0120 100%);
}

/* ── Architectural diagonal lines ── */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 140%; height: 200%;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 80px,
      rgba(201,149,26,.045) 80px,
      rgba(201,149,26,.045) 81px
    );
}
/* vertical accent line */
.hero-lines::after {
  content: '';
  position: absolute;
  top: 0; right: 36%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,149,26,.25) 30%, rgba(155,31,84,.3) 70%, transparent 100%);
}

/* ── Gold corner bracket ── */
.hero-bracket {
  position: absolute;
  top: 120px; right: 5.5%;
  width: 60px; height: 60px;
  border-top: 1.5px solid rgba(201,149,26,.4);
  border-right: 1.5px solid rgba(201,149,26,.4);
  pointer-events: none;
}
.hero-bracket-bl {
  position: absolute;
  bottom: 80px; left: 5.5%;
  width: 60px; height: 60px;
  border-bottom: 1.5px solid rgba(201,149,26,.25);
  border-left: 1.5px solid rgba(201,149,26,.25);
  pointer-events: none;
}

/* ── Dot grid (subtle) ── */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

/* ── Bottom fade to cream ── */
.hero-fade {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 140px;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

/* ── Content layout ── */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  padding: 110px 5.5% 90px;
}

/* Left */
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-size: .67rem;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--orange);
}

.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 600; line-height: 1.12; color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 22px; max-width: 620px;
}
.hero-h1 span{
   color: var(--orange);
  font-weight: 400;
}

.hero-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--orange));
  margin-bottom: 22px;
}

.hero-desc {
  font-size: .94rem; line-height: 1.85;
  color: rgba(255,255,255,.86);
  max-width: 500px; margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 24px; font-family: 'Montserrat', sans-serif;
  font-size: .83rem; font-weight: 600;
  border-radius: 3px; cursor: pointer; border: none;
  transition: all .25s var(--ease); letter-spacing: .02em;
}
.btn-magenta { background: var(--magenta); color: #fff; }
.btn-magenta:hover { background: var(--magenta-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(155,31,84,.32); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }
.btn-ghost-dark { background: transparent; color: var(--text); border: 1px solid rgba(0,0,0,.14); }
.btn-ghost-dark:hover { border-color: var(--magenta); color: var(--magenta); }

/* Tags */
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-tag {
  padding: 6px 13px; border: 1px solid rgba(255,255,255,.1);
  font-size: .73rem; color: rgba(255,255,255,.45); border-radius: 2px;
}

/* Right panel */
.hero-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  padding: 32px 28px;
}
.panel-top-label {
  font-family: 'Montserrat', sans-serif; font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}
.panel-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
.pstat {
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pstat:nth-child(even) { padding-left: 18px; border-right: none; }
.pstat:nth-child(odd)  { padding-right: 18px; }
.pstat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; margin-top: 16px; }
.pstat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
  margin-bottom: 5px;
}
.pstat-num em { color: var(--orange); font-style: normal; }
.pstat-label { font-size: .7rem; color: rgba(255, 255, 255, 0.67); line-height: 1.4; }
.prow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); gap: 12px;
}
.prow:last-child { border-bottom: none; padding-bottom: 0; }
.prow-key { font-size: .76rem; color: var(--orange); }
.prow-val { font-size: .79rem; font-weight: 600; color: rgba(255,255,255,.82); text-align: right; }
.badge-gold {
  display: inline-block; padding: 2px 8px;
  background: rgba(201,149,26,.18); color: var(--orange);
  font-size: .63rem; font-weight: 700; letter-spacing: .05em;
  border-radius: 2px;
}
.badge-mag {
  display: inline-block; padding: 2px 8px;
  background: rgba(155,31,84,.3); color: rgba(255,255,255,.8);
  font-size: .63rem; font-weight: 700; letter-spacing: .05em;
  border-radius: 2px;
}

/* ─────────────────────────────────────
   SECTION SHARED
───────────────────────────────────── */
.slabel {
  font-family: 'Montserrat', sans-serif; font-size: .67rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.slabel::before { content: ''; width: 16px; height: 1px; background: var(--magenta); flex-shrink: 0; }
.slabel-gold { color: var(--orange); }
.slabel-gold::before { background: var(--orange); }

.sh2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  font-weight: 700; line-height: 1.2; color: var(--text);
}
.sh2-white { color: #fff; }
.sp { font-size: .91rem; line-height: 1.85; color: var(--muted); margin-top: 10px; }
.sp-white { color: rgba(255,255,255,.52); }

/* ─────────────────────────────────────
   REQUIREMENTS
───────────────────────────────────── */
.requirements { padding: 96px 0; }
.req-intro { max-width: 800px; margin-bottom: 60px; }

.req-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 64px;
  align-items: start;
}

/* Sidebar */
.req-sidebar { position: sticky; top: 90px; }
.req-sidebar-heading {
  font-family: 'Montserrat', sans-serif; font-size: .6rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,.25); margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.req-sidebar a {
  display: flex; align-items: center; gap: 0;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .81rem; font-weight: 500; color: var(--muted);
  transition: color .2s, padding-left .2s, gap .2s;
}
.req-sidebar a::before {
  content: ''; width: 0; height: 1px; background: var(--magenta);
  transition: width .2s, margin-right .2s; flex-shrink: 0;
}
.req-sidebar a.act,
.req-sidebar a:hover { color: var(--magenta); padding-left: 8px; }
.req-sidebar a.act::before,
.req-sidebar a:hover::before { width: 12px; margin-right: 8px; }

/* Requirement sections */
.req-section { margin-bottom: 80px; scroll-margin-top: 88px; }
.req-section:last-child { margin-bottom: 0; }

.req-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.req-num {
  font-family: 'Montserrat', sans-serif; font-size: .68rem;
  font-weight: 500; color: var(--magenta); letter-spacing: .06em;
}
.req-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #000038;
}
.req-desc {
  font-size: .87rem; line-height: 1.85; color: #000;
  max-width: 680px; margin-bottom: 22px;
}

/* Tables */
.req-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--border); }
.req-table tr { border-bottom: 1px solid rgba(0,0,0,.05); transition: background .15s; }
.req-table tr:last-child { border-bottom: none; }
.req-table tr:hover { background: rgba(155,31,84,.02); }
.req-table td { padding: 18px 22px; font-size: .86rem; line-height: 1.75; vertical-align: top; }
.req-table td:first-child {
  width: 220px; font-weight: 600; color: var(--navy);
  background: rgba(0,0,0,.015); border-right: 1px solid rgba(0,0,0,.05);
  font-size: .82rem;
}
.req-table td:last-child { color: var(--text); }

/* Score pills */
.score-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 5px; }
.score-pill {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 7px 12px; background: var(--cream);
  border: 1px solid var(--border); border-radius: 3px; min-width: 68px;
}
.pill-name { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.pill-score { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--magenta); }


/* ─────────────────────────────────────
   CTA SECTION
───────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 0;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(155,31,84,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(201,149,26,.08) 0%, transparent 50%),
    linear-gradient(155deg, #000038 0%, #05041f 50%, #100017 100%);
}
.cta-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent, transparent 80px,
      rgba(201,149,26,.03) 80px, rgba(201,149,26,.03) 81px
    );
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
  padding: 80px 5.5%;
}
.cta-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.cta-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600; line-height: 1.15; color: #fff;
  margin-bottom: 12px;
}
.cta-h2 em {  color: var(--orange); }
.cta-sub {
  font-size: .88rem; color: rgba(255,255,255,.5);
  line-height: 1.8; max-width: 500px;
}
.cta-right { display: flex; flex-direction: column; gap: 10px; align-items: stretch; flex-shrink: 0; min-width: 220px; }
.btn-white { background: #fff; color: var(--magenta); font-weight: 700; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2); font-weight: 500;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); }

.cta-contacts {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 36px; flex-wrap: wrap;
}
.cta-contact-label {
  font-family: 'Montserrat', sans-serif; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 4px;
}
.cta-contact-val { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8); }
.cta-contact-val a { color: inherit; transition: color .2s; }
.cta-contact-val a:hover { color: var(--orange); }

/* ─────────────────────────────────────
   CHECKLIST CTA BAND
───────────────────────────────────── */
.checklist-band {
  background: var(--magenta);
  padding: 0;
  position: relative; overflow: hidden;
}
.checklist-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dk) 60%, #5C0E2E 100%);
}
.checklist-band::after {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.checklist-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding: 40px 5.5%;
}
.checklist-band-left {}
.checklist-band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem; font-weight: 700;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
}
.checklist-band-sub {
  font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6;
}
.checklist-band-docs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.checklist-doc-tag {
  padding: 5px 12px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .72rem; color: rgba(255,255,255,.75); border-radius: 2px;
  font-weight: 500;
}
.checklist-band-right { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-white-lg {
  padding: 14px 32px; background: #fff; color: var(--magenta);
  font-family: 'Montserrat', sans-serif; font-size: .86rem; font-weight: 700;
  border-radius: 3px; cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-white-lg:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.btn-outlined-white {
  padding: 12px 28px; background: transparent; color: rgba(255,255,255,.82);
  font-family: 'Montserrat', sans-serif; font-size: .83rem; font-weight: 500;
  border-radius: 3px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-outlined-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: #0A0907; padding: 28px 5.5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.foot-l { font-size: .74rem; color: rgba(255,255,255,.28); line-height: 1.6; }
.foot-l strong { color: rgba(255,255,255,.5); font-weight: 600; }
.foot-r { font-size: .7rem; color: rgba(255,255,255,.18); }

/* ─────────────────────────────────────
   WHATSAPP FAB
───────────────────────────────────── */
.wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.wa:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa svg { width: 22px; height: 22px; fill: #fff; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .req-layout { grid-template-columns: 1fr; }
  .req-sidebar {
    position: static; display: flex; flex-wrap: wrap;
    gap: 0; border: 1px solid var(--border); margin-bottom: 36px;
  }
  .req-sidebar-heading { display: none; }
  .req-sidebar a {
    border-right: 1px solid var(--border); border-bottom: none;
    padding: 10px 14px; font-size: .75rem;
  }
  .req-sidebar a:last-child { border-right: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-right { flex-direction: row; }
}
/* ─────────────────────────────────────
   RESPONSIVE — LARGE DESKTOP
───────────────────────────────────── */
@media (max-width: 1440px){

  .hero-inner{
    gap: 60px;
  }

  .hero-panel{
    max-width: 360px;
  }

  .wrap{
    padding: 0 4.5%;
  }

}

/* ─────────────────────────────────────
   RESPONSIVE — DESKTOP
───────────────────────────────────── */
@media (max-width: 1280px){

  .hero-inner{
    grid-template-columns: 1fr 340px;
    gap: 50px;
  }

  .hero-h1{
    max-width: 560px;
  }

  .hero-panel{
    padding: 28px 24px;
  }

  .req-layout{
    gap: 48px;
  }

  .cta-inner{
    gap: 40px;
  }

}

/* ─────────────────────────────────────
   RESPONSIVE — TABLET LANDSCAPE
───────────────────────────────────── */
@media (max-width: 1080px){

  .wrap{
    padding: 0 6%;
  }

  .hero{
    min-height: auto;
    padding-top: 80px;
  }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 6% 90px;
  }

  .hero-panel{
    display: none;
  }

  .hero-h1{
    max-width: 100%;
    font-size: clamp(2.6rem,5vw,3.5rem);
  }

  .hero-desc{
    max-width: 100%;
  }

  .hero-lines::after{
    right: 12%;
  }

  .hero-bracket{
    top: 90px;
    right: 6%;
  }

  .hero-bracket-bl{
    left: 6%;
  }

  .req-layout{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .req-sidebar{
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--border);
    background: #fff;
  }

  .req-sidebar-heading{
    display: none;
  }

  .req-sidebar a{
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 12px 16px;
    font-size: .74rem;
  }

  .req-sidebar a:last-child{
    border-right: none;
  }

  .cta-inner{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-right{
    flex-direction: row;
    flex-wrap: wrap;
  }

}

/* ─────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────── */
@media (max-width: 900px){

  .nav{
    height: 62px;
    padding: 0 6%;
  }

  .nav-links{
    gap: 18px;
  }

  .hero-inner{
    padding: 90px 6% 80px;
  }

  .hero-h1{
    font-size: 2.5rem;
    line-height: 1.08;
  }

  .hero-desc{
    font-size: .9rem;
  }

  .hero-btns{
    gap: 10px;
  }

  .btn{
    padding: 11px 20px;
    font-size: .78rem;
  }

  .hero-tags{
    gap: 6px;
  }

  .hero-tag{
    font-size: .68rem;
    padding: 6px 11px;
  }

  .requirements{
    padding: 80px 0;
  }

  .req-section{
    margin-bottom: 64px;
  }

  .req-head h2{
    font-size: 1.2rem;
  }

  .req-table td{
    padding: 16px 18px;
  }

  .cta-section{
    text-align: left;
  }

  .cta-h2{
    font-size: 2rem;
  }

  .checklist-band-inner{
    gap: 26px;
  }

}

/* ─────────────────────────────────────
   RESPONSIVE — MOBILE LARGE
───────────────────────────────────── */
@media (max-width: 700px){

  .wrap{
    padding: 0 22px;
  }

  .nav{
    padding: 0 22px;
    height: 60px;
  }

  .nav-links{
    display: none;
  }

  .nav-logo-name{
    font-size: .72rem;
  }

  .hero{
    min-height: auto;
  }

  .hero-inner{
    padding: 110px 22px 70px;
  }

  .hero-h1{
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .hero-eyebrow{
    font-size: .58rem;
    letter-spacing: .13em;
    margin-bottom: 18px;
  }

  .hero-rule{
    margin-bottom: 18px;
  }

  .hero-desc{
    font-size: .84rem;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .hero-btns{
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 30px;
  }

  .btn{
    justify-content: center;
    width: 100%;
  }

  .hero-tags{
    gap: 6px;
  }

  .hero-tag{
    font-size: .64rem;
    padding: 5px 10px;
  }

  .hero-lines::after{
    display: none;
  }

  .hero-bracket,
  .hero-bracket-bl{
    display: none;
  }

  .requirements{
    padding: 70px 0;
  }

  .req-intro{
    margin-bottom: 40px;
  }

  .req-sidebar{
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .req-sidebar::-webkit-scrollbar{
    display: none;
  }

  .req-sidebar a{
    white-space: nowrap;
    flex-shrink: 0;
  }

  .req-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .req-head h2{
    font-size: 1.12rem;
  }

  .req-desc{
    font-size: .82rem;
    margin-bottom: 18px;
  }

  .req-table{
    display: block;
    overflow-x: auto;
  }

  .req-table tbody,
  .req-table tr{
    width: 100%;
  }

  .req-table td{
    padding: 14px 15px;
    font-size: .8rem;
  }

  .req-table td:first-child{
    width: 140px;
    min-width: 140px;
    font-size: .75rem;
  }

  .score-pill{
    min-width: 58px;
    padding: 6px 10px;
  }

  .pill-score{
    font-size: 1rem;
  }

  .cta-inner{
    padding: 65px 22px;
  }

  .cta-h2{
    font-size: 1.65rem;
  }

  .cta-sub{
    font-size: .82rem;
  }

  .cta-right{
    width: 100%;
    flex-direction: column;
  }

  .cta-right .btn{
    width: 100%;
  }

  .cta-contacts{
    gap: 18px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .checklist-band-inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 22px;
  }

  .checklist-band-title{
    font-size: 1.18rem;
  }

  .checklist-band-sub{
    font-size: .8rem;
  }

  .checklist-band-right{
    width: 100%;
  }

  .btn-white-lg,
  .btn-outlined-white{
    width: 100%;
    justify-content: center;
  }

  footer{
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .wa{
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 18px;
  }

}

/* ─────────────────────────────────────
   RESPONSIVE — MOBILE SMALL
───────────────────────────────────── */
@media (max-width: 520px){

  .hero-inner{
    padding-top: 100px;
  }

  .hero-h1{
    font-size: 1.72rem;
  }

  .hero-desc{
    font-size: .8rem;
  }

  .btn{
    padding: 11px 16px;
    font-size: .75rem;
  }

  .hero-tag{
    font-size: .6rem;
  }

  .sh2{
    font-size: 1.45rem;
  }

  .sp{
    font-size: .82rem;
  }

  .req-table td{
    display: block;
    width: 100%;
  }

  .req-table td:first-child{
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }

  .score-pills{
    gap: 6px;
  }

  .score-pill{
    flex: 1 1 calc(50% - 6px);
  }

  .cta-h2{
    font-size: 1.45rem;
  }

  .checklist-band-title{
    font-size: 1.05rem;
  }

}

/* ─────────────────────────────────────
   RESPONSIVE — EXTRA SMALL
───────────────────────────────────── */
@media (max-width: 380px){

  .hero-h1{
    font-size: 1.5rem;
  }

  .hero-desc{
    font-size: .76rem;
  }

  .hero-eyebrow{
    font-size: .54rem;
  }

  .btn{
    font-size: .72rem;
    padding: 10px 14px;
  }

  .req-head h2{
    font-size: 1rem;
  }

  .req-desc{
    font-size: .78rem;
  }

  .cta-h2{
    font-size: 1.28rem;
  }

  .cta-sub{
    font-size: .76rem;
  }

  .checklist-doc-tag{
    font-size: .64rem;
  }

}   