*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('assets/fonts/AvenirNextLTPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ===== BRAND COLORS ===== */
  --level-blue: #1e328f;
  --level-red-orange: #FF5349;
  --level-teal: #28929e;
  --level-gold: #faa918;
  --level-pink: #fc8c99;

  --pale-teal: #dbf2f2;
  --pale-gold: #ffedd1;
  --pale-pink: #ffe3e0;
  --agreeable-gray: #e2dcd5;

  --midnight-blue: #17224e;
  --charcoal: #3f4d5e;
  --black: #000000;
  --white: #FFFFFF;
  --offwhite: #f8f6f2;

  /* ===== TYPOGRAPHY ===== */
  --font-primary: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  --font-display: 'Avenir Next LT Pro', 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --legacy-banner-height: 44px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--charcoal);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.legacy-quote-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  min-height: var(--legacy-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  background: linear-gradient(90deg, #f7be3c 0%, #faa918 48%, #ffd56d 100%);
  color: var(--midnight-blue);
  box-shadow: 0 0 18px rgba(250,169,24,0.68), 0 8px 20px rgba(23,34,78,0.18);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}
.legacy-quote-banner a {
  color: var(--midnight-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legacy-quote-banner + nav {
  top: var(--legacy-banner-height);
}
.legacy-quote-banner + nav + main {
  padding-top: calc(7rem + var(--legacy-banner-height));
}

/* ===== BRAND GRAPHIC: ARCH SHAPES ===== */
.brand-arches {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
}
.arch-group {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.9rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(248, 246, 242, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
nav.scrolled {
  border-bottom-color: var(--agreeable-gray);
  box-shadow: 0 2px 30px rgba(0,0,0,0.04);
}
.nav-logo img {
  height: 38px; width: auto;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  text-decoration: none; color: var(--charcoal);
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.25s;
  position: relative; letter-spacing: -0.01em;
}

/* Strong, consistent keyboard focus visibility */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--level-gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(23,34,78,0.35);
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -0.9rem;
  right: -0.9rem;
  height: 0.9rem;
}
.nav-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-parent-link::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
  transition: transform 0.2s ease;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: -0.8rem;
  min-width: 210px;
  padding: 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--agreeable-gray);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 12px 30px rgba(23,34,78,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1001;
}
.nav-submenu a {
  display: block;
  font-size: 0.86rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover {
  background: var(--pale-teal);
  color: var(--midnight-blue);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown.is-open > .nav-parent-link::before {
  transform: rotate(225deg) translateY(1px);
}
.nav-links a:hover { color: var(--level-teal); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--level-teal);
  transition: width 0.3s ease; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--level-blue) !important; color: var(--white) !important;
  padding: 0.65rem 1.6rem !important; border-radius: 100px;
  font-weight: 700 !important; font-size: 0.88rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 14px rgba(30, 50, 143, 0.25);
  letter-spacing: 0.01em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--midnight-blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(30, 50, 143, 0.35) !important;
}
.nav-cta.nav-cta-alt {
  background: var(--level-teal) !important;
  box-shadow: 0 2px 14px rgba(40,146,158,0.25);
}
.nav-cta.nav-cta-alt:hover {
  background: #1f7d8a !important;
  box-shadow: 0 4px 22px rgba(40,146,158,0.35) !important;
}

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--midnight-blue); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--level-blue); color: var(--white);
  padding: 1rem 2.2rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 50, 143, 0.25);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--midnight-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 50, 143, 0.35);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--midnight-blue);
  padding: 1rem 2.2rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--agreeable-gray);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--level-blue);
  background: var(--white);
}

.btn-teal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--level-teal); color: var(--white);
  padding: 1rem 2.2rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(40, 146, 158, 0.25);
}
.btn-teal:hover {
  background: #1f7d8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(40, 146, 158, 0.35);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--level-gold); color: var(--midnight-blue);
  padding: 1rem 2.4rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(250, 169, 24, 0.3);
}
.btn-gold:hover {
  background: #e89b10;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(250, 169, 24, 0.4);
}

.arrow-icon {
  width: 18px; height: 18px; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--offwhite) 0%, var(--pale-teal) 55%, #c9e9e9 100%);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(248,246,242,0.88) 0%, rgba(248,246,242,0.74) 42%, rgba(219,242,242,0.58) 100%);
}
.hero-arch-bg {
  position: absolute; top: -100px; right: -180px;
  width: 700px; height: 700px; opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
.hero-arch-bg2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}
/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute; top: 10%; right: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(40, 146, 158, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: 5%; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(250, 169, 24, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 10s ease-in-out infinite reverse;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -35px) scale(1.04); }
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
  align-items: center; position: relative; z-index: 2;
}

/* Hero badge with brand five-bar motif */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); padding: 0.45rem 1.1rem 0.45rem 0.7rem;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  color: var(--midnight-blue); margin-bottom: 1.5rem;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  animation: fadeInUp 0.6s ease forwards; opacity: 0;
}
.five-bars {
  display: flex; align-items: flex-end; gap: 2px; height: 16px;
}
.five-bars span {
  width: 3px; border-radius: 2px;
  animation: barPulse 2s ease-in-out infinite;
}
.five-bars span:nth-child(1) { height: 8px; background: var(--level-blue); animation-delay: 0s; }
.five-bars span:nth-child(2) { height: 14px; background: var(--level-gold); animation-delay: 0.15s; }
.five-bars span:nth-child(3) { height: 10px; background: var(--level-red-orange); animation-delay: 0.3s; }
.five-bars span:nth-child(4) { height: 16px; background: var(--level-teal); animation-delay: 0.45s; }
.five-bars span:nth-child(5) { height: 6px; background: var(--level-pink); animation-delay: 0.6s; }
@keyframes barPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600; font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--midnight-blue);
  animation: fadeInUp 0.6s 0.15s ease forwards; opacity: 0;
}
.hero h1 .accent {
  font-family: var(--font-display); font-style: normal;
  font-weight: 600;
  color: var(--level-teal);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px; background: var(--pale-gold);
  border-radius: 4px; z-index: -1; opacity: 0.7;
}
.hero-text {
  font-size: 1.12rem; line-height: 1.75; color: var(--charcoal);
  margin: 1.5rem 0 2.5rem; max-width: 520px;
  animation: fadeInUp 0.6s 0.3s ease forwards; opacity: 0;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.45s ease forwards; opacity: 0;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero card */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s 0.4s ease forwards; opacity: 0;
}
.hero-card {
  background: var(--white);
  border-radius: 24px; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(23, 34, 78, 0.07), 0 0 0 1px rgba(0,0,0,0.03);
}
.hero-card-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--level-teal); font-weight: 700; margin-bottom: 1rem;
}
.hero-card h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  font-weight: 700; color: var(--midnight-blue);
  margin-bottom: 1.8rem; line-height: 1.25;
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.hero-stat {
  text-align: center; padding: 1.1rem 0.8rem;
  border-radius: 16px;
}
.hero-stat:nth-child(1) { background: var(--pale-teal); }
.hero-stat:nth-child(2) { background: var(--pale-gold); }
.hero-stat:nth-child(3) { background: var(--pale-pink); }
.hero-stat:nth-child(4) { background: rgba(30, 50, 143, 0.06); }
.hero-stat .number {
  font-family: var(--font-primary); font-size: 1.8rem;
  font-weight: 800; color: var(--midnight-blue);
}
.hero-stat .label {
  font-size: 0.78rem; color: var(--charcoal); margin-top: 0.2rem; font-weight: 500;
}

/* Floating badges */
.floating-badge {
  position: absolute; background: var(--white);
  border-radius: 16px; padding: 0.85rem 1.2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 0.65rem;
  animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge.fb-right { top: -16px; right: -16px; }
.floating-badge.fb-left { bottom: -12px; left: -22px; animation-delay: -2s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fb-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.fb-icon.ic-gold { background: var(--pale-gold); }
.fb-icon.ic-teal { background: var(--pale-teal); }
.fb-text { font-size: 0.8rem; }
.fb-text strong { display: block; color: var(--midnight-blue); font-weight: 700; font-size: 0.85rem; }
.fb-text span { color: var(--charcoal); opacity: 0.6; font-size: 0.72rem; }

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 7rem 2.5rem;
  background: var(--midnight-blue);
  position: relative; overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 600px; height: 600px;
  border: 80px solid rgba(255,255,255,0.02);
  border-radius: 50%;
}
.problem::after {
  content: '';
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  border: 60px solid rgba(255,255,255,0.015);
  border-radius: 50%;
}
.problem-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.section-tag {
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  display: block; margin-bottom: 0.8rem;
}
.problem .section-tag { color: var(--level-gold); }
.problem h2 {
  font-family: var(--font-primary); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.problem > .problem-inner > p.problem-subtitle {
  color: rgba(255,255,255,0.55); font-size: 1.08rem;
  max-width: 650px; margin: 0 auto 3.5rem; line-height: 1.7;
}
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 2rem; text-align: left;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}
.problem-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.12);
}
.problem-card .stat {
  font-family: var(--font-primary); font-size: 3rem;
  font-weight: 800; margin-bottom: 0.5rem;
}
.problem-card:nth-child(1) .stat { color: var(--level-red-orange); }
.problem-card:nth-child(2) .stat { color: var(--level-gold); }
.problem-card:nth-child(3) .stat { color: var(--level-pink); }
.problem-card h4 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.problem-card p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.6; }

/* ===== STAKEHOLDER TABS ===== */
.stakeholders {
  padding: 7rem 2.5rem;
  background: var(--offwhite);
}
.stakeholders-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-tag { color: var(--level-teal); }
.section-header h2 {
  font-family: var(--font-primary); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--midnight-blue); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-header p {
  color: var(--charcoal); font-size: 1.08rem; max-width: 580px;
  margin: 0 auto; line-height: 1.7;
}

.stakeholder-tabs {
  display: flex; justify-content: center; gap: 0.4rem;
  margin-bottom: 3rem;
  background: var(--agreeable-gray); padding: 0.3rem;
  border-radius: 100px; width: fit-content;
  margin-left: auto; margin-right: auto;
}
.tab-btn {
  padding: 0.7rem 2rem; border: none;
  background: transparent; border-radius: 100px;
  font-family: var(--font-primary); font-size: 0.92rem;
  font-weight: 700; color: var(--charcoal);
  cursor: pointer; transition: all 0.3s ease;
  letter-spacing: -0.01em;
}
.tab-btn.active {
  background: var(--white); color: var(--midnight-blue);
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.tab-btn:hover:not(.active) { color: var(--midnight-blue); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.stakeholder-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  align-items: center;
}
.stakeholder-visual {
  border-radius: 24px; padding: 2.8rem;
  position: relative; overflow: hidden;
  min-height: 400px;
  display: flex; flex-direction: column; justify-content: center;
}
.stakeholder-visual.vis-teal { background: var(--pale-teal); }
.stakeholder-visual.vis-gold { background: var(--pale-gold); }
.stakeholder-visual.vis-pink { background: var(--pale-pink); }

/* Arch decoration inside visual */
.vis-arch {
  position: absolute; top: -30px; right: -30px;
  width: 180px; height: 180px; opacity: 0.15;
}
.stakeholder-visual .big-number {
  font-family: var(--font-primary); font-size: 4.5rem;
  font-weight: 800; line-height: 1; margin-bottom: 0.4rem;
}
.vis-teal .big-number { color: var(--level-teal); }
.vis-gold .big-number { color: #b07c1e; }
.vis-pink .big-number { color: var(--level-red-orange); }

.stakeholder-visual .big-label {
  font-size: 1.1rem; font-weight: 600; margin-bottom: 2rem;
}
.vis-teal .big-label { color: #1f7d8a; }
.vis-gold .big-label { color: #9a6d18; }
.vis-pink .big-label { color: #c04830; }

.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.mini-stat {
  background: var(--white); border-radius: 14px;
  padding: 1.1rem; text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.mini-stat .val {
  font-family: var(--font-primary); font-size: 1.4rem;
  font-weight: 800; color: var(--midnight-blue);
}
.mini-stat .lbl { font-size: 0.75rem; color: var(--charcoal); margin-top: 0.15rem; font-weight: 500; }

.stakeholder-info h3 {
  font-family: var(--font-primary); font-size: 1.9rem;
  font-weight: 800; color: var(--midnight-blue);
  line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.stakeholder-info > p {
  color: var(--charcoal); font-size: 1.02rem;
  line-height: 1.7; margin-bottom: 1.8rem;
}
.benefit-list { list-style: none; margin-bottom: 2.2rem; }
.benefit-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.65rem 0; border-bottom: 1px solid var(--agreeable-gray);
  font-size: 0.93rem; color: var(--charcoal); font-weight: 500;
}
.benefit-list li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-icon.ck-teal { background: var(--pale-teal); color: var(--level-teal); }
.check-icon.ck-gold { background: var(--pale-gold); color: #b07c1e; }
.check-icon.ck-pink { background: var(--pale-pink); color: var(--level-red-orange); }
.check-icon.ck-blue { background: rgba(30, 50, 143, 0.08); color: var(--level-blue); }
.check-icon svg { width: 12px; height: 12px; }

.member-resource-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.member-resource-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1.5px solid var(--agreeable-gray);
  border-radius: 14px;
  padding: 0.9rem;
  transition: all 0.25s ease;
}
.member-resource-card:hover {
  border-color: var(--level-red-orange);
  box-shadow: 0 10px 24px rgba(23,34,78,0.08);
}
.member-resource-card strong {
  display: block;
  color: var(--midnight-blue);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.member-resource-card span {
  display: block;
  color: var(--charcoal);
  font-size: 0.79rem;
  line-height: 1.45;
}
.member-resource-card .resource-label {
  color: var(--level-red-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.67rem;
  margin-bottom: 0.3rem;
}

/* Provider tab styles */
.providers-layout {
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem !important;
}
.providers-layout .stakeholder-info {
  order: 1;
}
.providers-layout .benefit-list li {
  align-items: flex-start;
}
.providers-layout .benefit-list li strong {
  display: block; color: var(--midnight-blue); margin-bottom: 0.15rem;
}

.provider-map-section { order: 2; }
.provider-map-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(23, 34, 78, 0.06), 0 0 0 1px rgba(0,0,0,0.03);
  overflow: hidden;
}
.map-header {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--agreeable-gray);
}
.map-header-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(30, 50, 143, 0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.map-header h4 {
  font-weight: 800; color: var(--midnight-blue);
  font-size: 0.95rem; letter-spacing: -0.01em;
}
.map-header p {
  font-size: 0.78rem; color: var(--charcoal); opacity: 0.6;
  margin-top: 0.1rem;
}
.map-link-btn {
  margin-left: auto; font-size: 0.78rem; font-weight: 700;
  color: var(--level-blue); text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  border: 1.5px solid rgba(30, 50, 143, 0.15);
  transition: all 0.25s ease; white-space: nowrap;
}
.map-link-btn:hover {
  background: rgba(30, 50, 143, 0.06);
  border-color: var(--level-blue);
}
.map-container {
  padding: 0; position: relative;
  background: var(--offwhite);
  overflow: hidden;
}
.provider-map-img {
  width: 100%; height: auto; display: block;
  border-radius: 0;
}
.map-footer-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 1.2rem 1.5rem;
  background: rgba(30, 50, 143, 0.03);
}
.map-stat { text-align: center; }
.map-stat-val {
  font-family: var(--font-primary);
  font-weight: 800; font-size: 1.1rem;
  color: var(--level-blue);
}
.map-stat-lbl {
  font-size: 0.7rem; color: var(--charcoal);
  opacity: 0.6; margin-top: 0.1rem; font-weight: 500;
}
.map-stat-divider {
  width: 1px; height: 30px;
  background: var(--agreeable-gray);
}

/* ===== PROVIDER NETWORK FORM ===== */
.provider-network-section {
  padding: 6.5rem 2.5rem;
  background: linear-gradient(165deg, var(--offwhite) 0%, rgba(219,242,242,0.55) 55%, rgba(255,237,209,0.55) 100%);
  position: relative;
  overflow: hidden;
}
.provider-network-section.is-collapsed {
  display: none;
}
.provider-network-section::before {
  content: '';
  position: absolute;
  left: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border: 42px solid rgba(30,50,143,0.08);
  border-radius: 50%;
}
.provider-network-section::after {
  content: '';
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 44px solid rgba(255,83,73,0.08);
  border-radius: 50%;
}
.provider-network-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.provider-network-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.provider-network-header h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--midnight-blue);
  margin-bottom: 0.8rem;
}
.provider-network-header p {
  font-size: 1.03rem;
  line-height: 1.68;
  color: var(--charcoal);
}
.provider-form-shell {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--agreeable-gray);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 16px 42px rgba(23,34,78,0.08);
}
.provider-network-form {
  display: grid;
  gap: 1rem;
}
.provider-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.provider-field {
  display: grid;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--midnight-blue);
  letter-spacing: 0.01em;
}
.provider-field input,
.provider-field select,
.provider-field textarea {
  width: 100%;
  border: 1.5px solid var(--agreeable-gray);
  background: var(--white);
  border-radius: 12px;
  padding: 0.78rem 0.88rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.provider-field textarea {
  resize: vertical;
  min-height: 112px;
}
.provider-field input:focus,
.provider-field select:focus,
.provider-field textarea:focus {
  outline: none;
  border-color: var(--level-teal);
  box-shadow: 0 0 0 4px rgba(40,146,158,0.12);
}
.provider-field.has-error input,
.provider-field.has-error select,
.provider-field.has-error textarea {
  border-color: #b02f26;
  box-shadow: 0 0 0 3px rgba(176,47,38,0.14);
}
.provider-form-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.provider-network-form button.btn-primary {
  border: none;
  cursor: pointer;
}
.provider-network-form button.btn-primary:disabled {
  opacity: 0.66;
  cursor: wait;
}
.provider-network-form.is-submitted {
  opacity: 0.92;
}
.provider-form-status {
  min-height: 1.3rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-top: 0.2rem;
}
.form-field-error {
  display: block;
  min-height: 1rem;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  color: #a12a24;
}
.provider-form-status.is-success { color: #14635e; }
.provider-form-status.is-warning { color: #8a5a19; }
.provider-form-status.is-error { color: #a12a24; }

/* ===== APPROACH / FEATURES ===== */
.approach {
  padding: 7rem 2.5rem;
  background: var(--white);
  position: relative;
}
.approach-inner { max-width: 1200px; margin: 0 auto; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 0.5rem; }
.approach-card {
  padding: 2.2rem;
  border-radius: 20px;
  border: 1.5px solid var(--agreeable-gray);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(23, 34, 78, 0.07);
}
.approach-card:nth-child(1):hover { border-color: var(--level-teal); }
.approach-card:nth-child(2):hover { border-color: var(--level-gold); }
.approach-card:nth-child(3):hover { border-color: var(--level-red-orange); }
.approach-card:nth-child(4):hover { border-color: var(--level-blue); }
.approach-card:nth-child(5):hover { border-color: var(--level-pink); }
.approach-card:nth-child(6):hover { border-color: var(--level-teal); }

.approach-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem; font-size: 1.4rem;
}
.approach-icon.ai-teal { background: var(--pale-teal); }
.approach-icon.ai-gold { background: var(--pale-gold); }
.approach-icon.ai-pink { background: var(--pale-pink); }
.approach-icon.ai-blue { background: rgba(30, 50, 143, 0.08); }

.approach-card h4 {
  font-family: var(--font-primary); font-size: 1.15rem;
  font-weight: 800; color: var(--midnight-blue);
  margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.approach-card p { color: var(--charcoal); font-size: 0.92rem; line-height: 1.65; }

/* ===== SAVINGS ===== */
.savings {
  padding: 7rem 2.5rem;
  background: var(--pale-teal);
  position: relative; overflow: hidden;
}
.savings::before {
  content: '';
  position: absolute; top: -200px; left: -150px;
  width: 500px; height: 500px;
  border: 70px solid rgba(40, 146, 158, 0.06);
  border-radius: 50%;
}
.savings-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.savings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.5rem; }
.savings-card {
  background: var(--white);
  border-radius: 22px; padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(23, 34, 78, 0.05);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.savings-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(23, 34, 78, 0.1);
}
.savings-card .amount {
  font-family: var(--font-primary); font-size: 3.2rem;
  font-weight: 800; color: var(--midnight-blue);
  line-height: 1; margin-bottom: 0.3rem;
}
.savings-card .amount-label {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.savings-card:nth-child(1) .amount-label { color: var(--level-teal); }
.savings-card:nth-child(2) .amount-label { color: var(--level-gold); }
.savings-card:nth-child(3) .amount-label { color: var(--level-red-orange); }
.savings-divider {
  width: 40px; height: 3px; border-radius: 3px;
  margin: 0 auto 1.2rem;
}
.savings-card:nth-child(1) .savings-divider { background: var(--level-teal); }
.savings-card:nth-child(2) .savings-divider { background: var(--level-gold); }
.savings-card:nth-child(3) .savings-divider { background: var(--level-red-orange); }
.savings-card p { color: var(--charcoal); font-size: 0.92rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 2.5rem;
  background: var(--offwhite);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white); border-radius: 22px;
  padding: 2.3rem; border: 1.5px solid var(--agreeable-gray);
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
}
.testimonial-card:hover {
  border-color: var(--level-teal);
  box-shadow: 0 14px 44px rgba(0,0,0,0.06);
}
.stars { margin-bottom: 1rem; display: flex; gap: 2px; }
.star-icon { width: 18px; height: 18px; color: var(--level-gold); }
.testimonial-card blockquote {
  color: var(--charcoal); font-size: 0.93rem;
  line-height: 1.7; font-style: italic; flex: 1;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary); font-weight: 800;
  font-size: 0.85rem;
}
.author-avatar.av-teal { background: var(--pale-teal); color: var(--level-teal); }
.author-avatar.av-gold { background: var(--pale-gold); color: #b07c1e; }
.author-avatar.av-pink { background: var(--pale-pink); color: var(--level-red-orange); }
.author-info .name { font-weight: 700; font-size: 0.88rem; color: var(--midnight-blue); }
.author-info .company { font-size: 0.78rem; color: var(--charcoal); opacity: 0.6; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 7rem 2.5rem;
  background: var(--level-blue);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(40, 146, 158, 0.15) 0%, transparent 55%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 60px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-inner {
  max-width: 980px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}
.cta-inner h2 {
  font-family: var(--font-primary); font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.cta-inner p {
  color: rgba(255,255,255,0.86); font-size: 1.1rem;
  margin-bottom: 1.6rem; line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.employer-quote-form {
  margin-top: 1.1rem;
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  text-align: left;
}
.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.quote-field {
  display: grid;
  gap: 0.35rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 0.74rem 0.84rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quote-field textarea {
  resize: vertical;
  min-height: 96px;
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--level-gold);
  box-shadow: 0 0 0 4px rgba(250,169,24,0.2);
}
.quote-field.has-error input,
.quote-field.has-error select,
.quote-field.has-error textarea {
  border-color: #d25555;
  box-shadow: 0 0 0 3px rgba(210,85,85,0.22);
}
.quote-field-full {
  margin-top: 0.9rem;
}
.quote-form-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.employer-quote-form button.btn-gold {
  border: none;
  cursor: pointer;
}
.employer-quote-form button.btn-gold:disabled {
  opacity: 0.68;
  cursor: wait;
}
.employer-quote-form.is-submitted {
  opacity: 0.9;
}
.quote-form-status {
  min-height: 1.3rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.employer-quote-form .form-field-error {
  color: #ffd6d6;
}
.quote-form-status.is-success { color: #b9ffe3; }
.quote-form-status.is-warning { color: #ffe3a3; }
.quote-form-status.is-error { color: #ffd0d0; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  padding: 1rem 2.2rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* ===== FOOTER ===== */
footer {
  padding: 4rem 2.5rem 2rem;
  background: var(--midnight-blue);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 32px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.76); font-size: 0.88rem; line-height: 1.6; max-width: 260px; }
.footer-col h5 {
  color: var(--white); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 1.2rem; font-weight: 700;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 0.88rem;
  padding: 0.25rem 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem; text-align: center;
  color: rgba(255,255,255,0.25); font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding-bottom: 5rem; }
  .problem-grid, .approach-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .savings-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .stakeholder-content { grid-template-columns: 1fr; }
  .providers-layout { grid-template-columns: 1fr !important; }
  .providers-layout .stakeholder-info { order: 2; }
  .provider-map-section { order: 1; }
  .stakeholder-visual { min-height: auto; order: -1; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .member-resource-links { grid-template-columns: 1fr; }
  .provider-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root {
    --legacy-banner-height: 64px;
  }
  .legacy-quote-banner {
    font-size: 0.8rem;
    line-height: 1.35;
    gap: 0.28rem;
  }
  nav { padding: 0.7rem 1.2rem; }
  .nav-links { display: none; }
  .nav-dropdown::after { display: none; }
  .nav-links.show {
    display: flex;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    background: rgba(248,246,242,0.98);
    border: 1px solid var(--agreeable-gray);
    border-radius: 14px;
    padding: 0.6rem;
    box-shadow: 0 18px 36px rgba(23,34,78,0.08);
  }
  .nav-links.show > a,
  .nav-links.show > .nav-dropdown > .nav-parent-link {
    width: 100%;
    padding: 0.55rem 0.5rem;
  }
  .nav-links.show .nav-dropdown > .nav-parent-link::before { transform: rotate(45deg) translateY(-1px); }
  .nav-links.show .nav-dropdown.is-open > .nav-parent-link::before,
  .nav-links.show .nav-dropdown:focus-within > .nav-parent-link::before { transform: rotate(225deg) translateY(1px); }
  .nav-links.show .nav-submenu {
    position: static;
    opacity: 0;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 0;
    padding: 0 0 0 0.8rem;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
  }
  .nav-links.show .nav-dropdown.is-open .nav-submenu,
  .nav-links.show .nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    max-height: 520px;
    padding: 0.1rem 0 0.2rem 0.8rem;
  }
  .nav-links.show .nav-submenu a {
    font-size: 0.84rem;
    padding: 0.35rem 0.45rem;
  }
  .nav-links.show .nav-submenu a:hover { background: transparent; }
  .mobile-toggle { display: block; }
  .hero { padding: 6.5rem 1.2rem 3.5rem; }
  .problem, .stakeholders, .provider-network-section, .approach, .savings, .testimonials, .cta-section { padding: 4rem 1.2rem; }
  .stakeholder-tabs { flex-wrap: wrap; border-radius: 16px; }
  .tab-btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.4rem; }
  .provider-form-shell { padding: 1.1rem; border-radius: 18px; }
  .provider-form-actions { flex-direction: column; align-items: stretch; }
  .provider-form-actions .btn-primary,
  .provider-form-actions .btn-secondary { justify-content: center; width: 100%; }
  .quote-form-grid { grid-template-columns: 1fr; }
  .quote-form-actions { flex-direction: column; align-items: stretch; }
  .quote-form-actions .btn-gold,
  .quote-form-actions .btn-outline-white { justify-content: center; width: 100%; }
}
