/* ═══════════════════════════════════════ */
/* GOVERNANCE PAGE STYLES                  */
/* ═══════════════════════════════════════ */

/* ─── HERO ─── */
.gov-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 300px 0 140px;
  overflow: hidden;
}

.gov-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gov-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
}

.gov-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: govBlobFloat 8s ease-in-out infinite;
}

.gov-hero__blob--1 {
  width: 400px; height: 400px;
  background: #1a7a6e;
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.gov-hero__blob--2 {
  width: 350px; height: 350px;
  background: var(--blue);
  bottom: -10%; right: -5%;
  animation-delay: -3s;
}

.gov-hero__blob--3 {
  width: 280px; height: 280px;
  background: #1a7a6e;
  top: 40%; left: 60%;
  opacity: 0.2;
  animation-delay: -5s;
}

@keyframes govBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.gov-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gov-hero__inner h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gov-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.gov-hero__meta {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.gov-hero__actions {
  margin-bottom: 0;
}

/* ─── DRIFT SECTION ─── */
.gov-drift {
  background: var(--white);
  padding: var(--section-py) 0;
}

.gov-drift__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.gov-drift__header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 20px;
}

.gov-drift__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.gov-drift__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.gov-drift__card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.gov-drift__card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.gov-drift__card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 2px;
}

.gov-drift__card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

.gov-drift__closing {
  text-align: center;
  margin-top: 48px;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PILLARS SECTION ─── */
.gov-pillars {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.gov-pillars__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.gov-pillars__header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 18px;
}

.gov-pillars__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* 2×2 grid of large pillar cards */
.gov-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.gov-pillar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}

.gov-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: rgba(37,99,235,0.2);
}

.gov-pillar__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--blue);
  background: rgba(37,99,235,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.gov-pillar__icon svg {
  width: 100%;
  height: 100%;
}

.gov-pillar__content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.gov-pillar__content p {
  font-size: 0.9625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ─── DELIVERABLES SECTION ─── */
.gov-deliverables {
  background: var(--white);
  padding: var(--section-py) 0;
}

.gov-deliverables__header {
  text-align: center;
  margin-bottom: 56px;
}

.gov-deliverables__header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 12px;
}

/* Vertical list layout */
.gov-deliverables__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gov-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.gov-deliverable:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.gov-deliverable__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--blue);
  background: rgba(37,99,235,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-top: 2px;
}

.gov-deliverable__icon svg {
  width: 100%;
  height: 100%;
}

.gov-deliverable__content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.gov-deliverable__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ─── OUTCOMES SECTION (dark) ─── */
.gov-outcomes {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--section-py) 0;
}

.gov-outcomes__header {
  text-align: center;
  margin-bottom: 56px;
}

.gov-outcomes__header .section-label {
  color: rgba(255,255,255,0.5);
}

.gov-outcomes__header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-top: 12px;
}

.gov-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gov-outcome__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gov-outcome__card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.gov-outcome__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: #4ade80;
}

.gov-outcome__card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.gov-outcome__card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ─── FIT SECTION ─── */
.gov-fit {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.gov-fit__header {
  text-align: center;
  margin-bottom: 56px;
}

.gov-fit__header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 12px;
}

.gov-fit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.gov-scenario {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gov-scenario:hover {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.gov-scenario h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.gov-scenario p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.gov-fit__closing {
  text-align: center;
  margin-top: 48px;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ─── FAQ SECTION ─── */
.gov-faq {
  background: var(--white);
  padding: var(--section-py) 0;
}

.gov-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.gov-faq__header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 12px;
}

.gov-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gov-faq__item {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gov-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.gov-faq__question:hover {
  background: rgba(0,0,0,0.02);
}

.gov-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.gov-faq__question[aria-expanded="true"] .gov-faq__icon {
  transform: rotate(180deg);
}

.gov-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.gov-faq__answer.is-open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.gov-faq__answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ─── CTA SECTION ─── */
.gov-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: var(--section-py) 0;
  text-align: center;
}

.gov-cta__inner {
  max-width: 620px;
  margin: 0 auto;
}

.gov-cta__inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gov-cta__inner > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.gov-cta__inner .btn--large {
  padding: 16px 36px;
  font-size: 1rem;
}

.gov-cta__secondary {
  display: block;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gov-cta__secondary:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .gov-pillars__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .gov-drift__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .gov-outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gov-fit__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .gov-pillar {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .gov-hero {
    padding: 130px 0 80px;
  }

  .gov-hero__meta {
    font-size: 0.9rem;
    padding: 8px 18px;
  }

  .gov-pillar {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .gov-pillar__icon {
    width: 48px;
    height: 48px;
  }

  .gov-deliverable {
    padding: 22px 24px;
  }

  .gov-drift__card {
    padding: 22px 24px;
  }

  .gov-outcomes__grid {
    grid-template-columns: 1fr;
  }

  .gov-outcome__card,
  .gov-scenario {
    padding: 28px 20px;
  }

  .gov-faq__question {
    padding: 16px 20px;
    font-size: 0.9375rem;
  }

  .gov-faq__answer.is-open {
    padding: 0 20px 16px;
  }

  .gov-faq__answer p {
    padding-top: 12px;
  }
}
