/* =============================================================
   EduData Trust — Global Stylesheet
   Premium Government Advisory  |  v1.0
   ============================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --deep-teal:   #0B3C49;
  --mid-teal:    #147D88;
  --gold:        #D4AF37;
  --gold-hover:  #BA9A26;
  --white:       #FFFFFF;
  --gray-light:  #F5F7F8;
  --gray-mid:    #E0E8ED;
  --text-dark:   #1A2B33;
  --text-mid:    #3D4D56;
  --text-muted:  #6B7D86;
  --shadow-sm:   0 2px 8px rgba(11,60,73,.07);
  --shadow-md:   0 8px 32px rgba(11,60,73,.11);
  --shadow-lg:   0 20px 60px rgba(11,60,73,.16);
  --radius:      6px;
  --radius-lg:   12px;
  --ease:        0.22s ease;
  --container:   1180px;
  --nav-h:       72px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}
section { padding: 100px 0; }
section.tight { padding: 72px 0; }

/* ── SECTION LABELS & HEADINGS ──────────────────────────────── */
.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin-top: 18px;
}
.section-heading.centered::after { margin: 18px auto 0; }
.section-heading.on-dark { color: var(--white); }
.section-heading.on-dark::after { background: var(--gold); }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--deep-teal);
  transition: box-shadow var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 28px rgba(11,60,73,.30);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.855rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: 0.025em;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--deep-teal);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-login:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,.28);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--deep-teal);
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,.32);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline-teal {
  background: transparent;
  color: var(--mid-teal);
  border: 1.5px solid var(--mid-teal);
}
.btn-outline-teal:hover {
  background: var(--mid-teal);
  color: var(--white);
}

/* ── HERO — HOME ────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  background: var(--deep-teal);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse at center,
    rgba(20,125,136,.16) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212,175,55,.4), transparent);
}
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 780px; }
.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── HERO — PAGE (shorter, for secondary pages) ─────────────── */
.hero-page {
  min-height: 56vh;
  background: var(--deep-teal);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse at center,
    rgba(20,125,136,.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-page::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212,175,55,.35), transparent);
}
.hero-page .hero-inner { position: relative; z-index: 1; }
.hero-page .hero-content { max-width: 700px; }
.hero-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 24px;
}
.hero-page .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 0;
}

/* ── PROBLEM / STAT SECTION ─────────────────────────────────── */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--mid-teal));
  opacity: 0;
  transition: opacity var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.card:hover::before { opacity: 1; }
.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gray-mid);
  line-height: 1;
  margin-bottom: 18px;
  transition: color var(--ease);
}
.card:hover .card-num { color: rgba(20,125,136,.18); }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1.3;
  margin-bottom: 12px;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── WHO WE SERVE ────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.who-text .section-label { margin-bottom: 14px; }
.who-text p {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 18px;
}
.who-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  font-style: italic;
  color: var(--mid-teal);
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin-top: 36px;
  line-height: 1.75;
}
.who-panel {
  background: var(--deep-teal);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.who-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.who-panel ul { display: flex; flex-direction: column; gap: 14px; }
.who-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.who-panel li::before {
  content: '';
  width: 5px; height: 5px; min-width: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  padding: 24px 0;
  background: var(--deep-teal);
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,.52);
  text-align: center;
  line-height: 1.7;
  font-style: italic;
}

/* ── FIVE PILLARS ────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pillar-card {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pillar-card:nth-child(4) { grid-column: 2 / 4; }
.pillar-card:nth-child(5) { grid-column: 4 / 6; }
.pillar-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--mid-teal));
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1.3;
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ── READINESS BANDS ─────────────────────────────────────────── */
.bands {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}
.band {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.band:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.band-left { display: flex; flex-direction: column; gap: 8px; }
.band-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-teal);
}
.band-score {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}
.band-foundational .band-score { background: #FDE8DC; color: #AD3B00; }
.band-developing   .band-score { background: #FEF3CC; color: #7A5E00; }
.band-established  .band-score { background: #DDF4EE; color: #0F5E48; }
.band-aiready      .band-score { background: #D8EFF2; color: var(--deep-teal); }
.band-desc {
  font-size: 0.935rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── ENGAGEMENT DELIVERABLES (on dark bg) ────────────────────── */
.deliverables-section {
  background: var(--deep-teal);
  position: relative;
  overflow: hidden;
}
.deliverables-section::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse,
    rgba(20,125,136,.15) 0%, transparent 65%);
  pointer-events: none;
}
.deliverables-inner { position: relative; z-index: 1; }
.deliverables {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 52px;
}
.deliverable-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.deliverable-num {
  width: 34px; height: 34px; min-width: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--deep-teal);
  flex-shrink: 0;
}
.deliverable-text {
  font-size: 0.98rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  padding-top: 5px;
}
.engagement-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,.50);
  font-style: italic;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  line-height: 1.7;
}

/* ── HOW WE WORK (Advisory) ──────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.how-text p {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 20px;
}
.principles { display: flex; flex-direction: column; gap: 16px; }
.principle {
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.principle h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--deep-teal);
  margin-bottom: 6px;
}
.principle p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ── ENGAGEMENT TYPES ────────────────────────────────────────── */
.eng-types {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 52px;
}
.eng-type {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.eng-type:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.eng-type-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1.3;
  margin-bottom: 4px;
}
.eng-type-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eng-type-desc {
  font-size: 0.905rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-top: 2px;
}

/* ── DATA COMMITMENT CALLOUT ─────────────────────────────────── */
.commitment-box {
  background: var(--deep-teal);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.commitment-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--mid-teal), var(--gold));
}
.commitment-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.commitment-items { display: flex; flex-direction: column; gap: 14px; }
.commitment-item { display: flex; align-items: flex-start; gap: 14px; }
.commitment-dot {
  width: 6px; height: 6px; min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}
.commitment-item p {
  font-size: 0.945rem;
  color: rgba(255,255,255,.80);
  line-height: 1.68;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */
.form-wrap {
  max-width: 740px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236B7D86' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mid-teal);
  box-shadow: 0 0 0 3px rgba(20,125,136,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.65;
  text-align: center;
}
.form-note a { color: var(--mid-teal); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--deep-teal);
  padding: 72px 0 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 36px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.60);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.38);
}

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.bg-white    { background: var(--white); }
.bg-gray     { background: var(--gray-light); }
.bg-teal     { background: var(--deep-teal); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid      { grid-template-columns: 1fr 1fr; }
  .pillars-grid   { grid-template-columns: repeat(4, 1fr); }
  .pillar-card    { grid-column: span 2 !important; }
  .who-grid       { grid-template-columns: 1fr; gap: 48px; }
  .how-grid       { grid-template-columns: 1fr; gap: 48px; }
  .eng-type       { grid-template-columns: 160px 1fr; gap: 24px; }
  .band           { grid-template-columns: 220px 1fr; gap: 24px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container    { padding: 0 20px; }
  section       { padding: 68px 0; }

  /* Nav */
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }

  /* Nav open state */
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--deep-teal);
    padding: 24px 20px 32px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 16px 32px rgba(0,0,0,.2);
    z-index: 999;
  }
  .nav.open .nav-links a { font-size: 1rem; }

  /* Hero */
  .hero, .hero-page { padding-top: calc(var(--nav-h) + 16px); }
  .hero   { min-height: 85vh; }
  .hero-page { min-height: 50vh; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Cards & grids */
  .card-grid      { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .pillar-card    { grid-column: span 1 !important; }
  .band           { grid-template-columns: 1fr; gap: 14px; }
  .eng-type       { grid-template-columns: 1fr; gap: 8px; }

  /* Form */
  .form-grid      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid    { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  /* Commitment box */
  .commitment-box { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-page h1 { font-size: 1.8rem; }
  .stat-num { font-size: 3rem; }
}

/* ── PILLAR GRID ALIASES (edar-index.html) ───────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 60px;
}
/* .pillar-card rules already defined above */
.pillar-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

/* ── READINESS BANDS (edar-index.html) ───────────────────────── */
.bands-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
}
/* .band base styles already defined; additions below */
.band-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}
.band-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}
/* Band layout override for new structure */
.bands-list .band {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 36px;
}
.bands-list .band-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  display: block;
  width: 100%;
}

/* ── DELIVERABLES SECTION (edar-index.html) ──────────────────── */
.deliverable-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.deliverable-card .card-num { color: rgba(212,175,55,.35); }
.deliverable-card h3 { color: var(--white); }
.deliverable-card p  { color: rgba(255,255,255,.72); }
.privacy-note {
  margin-top: 48px;
  padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}
.privacy-note strong { color: rgba(255,255,255,.85); }

/* ── HOW WE WORK (advisory.html) ─────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.how-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}
.how-icon {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 42px;
  opacity: 0.55;
}
.how-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}
.how-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ── ENGAGEMENT LIST (advisory.html) ─────────────────────────── */
.eng-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 52px;
}
.eng-list .eng-type {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.eng-list .eng-type:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.eng-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-teal);
  background: rgba(20,125,136,.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.eng-meta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1.3;
  margin-bottom: 6px;
}
.eng-duration {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.eng-desc p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── COMMITMENT BOX (advisory.html) ──────────────────────────── */
.commitment-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.commitment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.945rem;
  color: rgba(255,255,255,.80);
  line-height: 1.68;
}
.commitment-list li::before {
  content: '';
  width: 6px; height: 6px; min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

/* ── CONTACT FORM ADDITIONS (advisory.html) ──────────────────── */
.form-wrap { max-width: 760px; margin: 60px auto 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .form-group { margin-bottom: 20px; }
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.btn-submit {
  min-width: 240px;
  justify-content: center;
}
.req { color: var(--gold); margin-left: 2px; }
.field-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1) !important;
}

/* ── RESPONSIVE ADDITIONS ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillar-grid   { grid-template-columns: repeat(4, 1fr); }
  .pillar-grid .pillar-card { grid-column: span 2 !important; }
  .how-grid      { grid-template-columns: 1fr; }
  .eng-list .eng-type { grid-template-columns: 180px 1fr; }
  .bands-list .band { grid-template-columns: 180px 1fr; }
}
@media (max-width: 768px) {
  .pillar-grid   { grid-template-columns: 1fr; }
  .pillar-grid .pillar-card { grid-column: 1 !important; }
  .how-grid      { grid-template-columns: 1fr; }
  .eng-list .eng-type { grid-template-columns: 1fr; gap: 12px; }
  .bands-list .band { grid-template-columns: 1fr; gap: 12px; }
  .form-row      { grid-template-columns: 1fr; }
  .form-footer   { align-items: stretch; }
  .btn-submit    { width: 100%; }
}
