/* ============================================================
   BOLD UNIT DIGITAL — style.css
   Prefix: bd-
   ============================================================ */


:root {
  
  --bd-yellow: #F5C518;
  --bd-yellow-dark: #D4A800;
  --bd-yellow-light: #FFF8D6;
  --bd-pink: #E8437A;
  --bd-pink-dark: #C42B60;
  --bd-pink-light: #FDE8EF;
  --bd-teal: #0ABFBC;
  --bd-teal-dark: #089A97;
  --bd-teal-light: #D6F5F4;
  --bd-orange: #FF6B35;
  --bd-orange-dark: #D94E1C;
  --bd-orange-light: #FFF0EA;
  --bd-navy: #1A1F3A;
  --bd-navy-mid: #2D3358;
  --bd-ink: #1E2235;
  --bd-slate: #4A5270;
  --bd-mist: #F7F8FC;
  --bd-white: #FEFEFE;
  --bd-border: #E2E6F0;

  
  --bd-font-head: 'Poppins', sans-serif;
  --bd-font-body: 'Inter', sans-serif;

  
  --bd-space-xs: 0.5rem;
  --bd-space-sm: 1rem;
  --bd-space-md: 1.5rem;
  --bd-space-lg: 2.5rem;
  --bd-space-xl: 4rem;
  --bd-space-2xl: 7rem;

  
  --bd-radius-sm: 6px;
  --bd-radius-md: 12px;
  --bd-radius-lg: 20px;
  --bd-radius-xl: 32px;
  --bd-radius-pill: 999px;

  
  --bd-shadow-sm: 0 1px 3px rgba(26,31,58,0.08), 0 1px 2px rgba(26,31,58,0.06);
  --bd-shadow-md: 0 4px 12px rgba(26,31,58,0.10), 0 2px 6px rgba(26,31,58,0.07);
  --bd-shadow-lg: 0 10px 30px rgba(26,31,58,0.12), 0 4px 12px rgba(26,31,58,0.08);
  --bd-shadow-xl: 0 20px 50px rgba(26,31,58,0.15), 0 8px 20px rgba(26,31,58,0.10);
  --bd-shadow-color-yellow: 0 8px 24px rgba(245,197,24,0.35);
  --bd-shadow-color-pink: 0 8px 24px rgba(232,67,122,0.35);
  --bd-shadow-color-teal: 0 8px 24px rgba(10,191,188,0.35);
  --bd-shadow-color-orange: 0 8px 24px rgba(255,107,53,0.35);

  
  --bd-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --bd-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--bd-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bd-ink);
  background-color: var(--bd-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--bd-transition); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


.bd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.bd-section-heading {
  font-family: var(--bd-font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bd-navy);
  margin-bottom: var(--bd-space-md);
}
.bd-section-heading--light { color: var(--bd-white); }

.bd-body-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bd-slate);
  margin-bottom: var(--bd-space-md);
}

.bd-label {
  display: inline-block;
  font-family: var(--bd-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--bd-radius-pill);
  margin-bottom: 1rem;
}
.bd-label--yellow { background: var(--bd-yellow); color: var(--bd-navy); }
.bd-label--pink { background: var(--bd-pink); color: var(--bd-white); }
.bd-label--teal { background: var(--bd-teal); color: var(--bd-white); }
.bd-label--orange { background: var(--bd-orange); color: var(--bd-white); }
.bd-label--dark { background: var(--bd-navy); color: var(--bd-white); }
.bd-label--white { background: rgba(255,255,255,0.2); color: var(--bd-white); border: 1px solid rgba(255,255,255,0.4); }


.bd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--bd-font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--bd-radius-pill);
  transition: all var(--bd-transition);
  white-space: nowrap;
  min-height: 44px;
}
.bd-btn--primary {
  background: var(--bd-pink);
  color: var(--bd-white);
  box-shadow: var(--bd-shadow-color-pink);
}
.bd-btn--primary:hover {
  background: var(--bd-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232,67,122,0.45);
}
.bd-btn--secondary {
  background: var(--bd-teal);
  color: var(--bd-white);
  box-shadow: var(--bd-shadow-color-teal);
}
.bd-btn--secondary:hover {
  background: var(--bd-teal-dark);
  transform: translateY(-2px);
}
.bd-btn--ghost {
  background: transparent;
  color: var(--bd-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.bd-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--bd-white);
}
.bd-btn--outline {
  background: transparent;
  color: var(--bd-navy);
  border: 2px solid var(--bd-navy);
}
.bd-btn--outline:hover {
  background: var(--bd-navy);
  color: var(--bd-white);
}
.bd-btn--white {
  background: var(--bd-white);
  color: var(--bd-navy);
  box-shadow: var(--bd-shadow-md);
}
.bd-btn--white:hover {
  background: var(--bd-mist);
  transform: translateY(-2px);
}
.bd-btn--nav {
  background: var(--bd-yellow);
  color: var(--bd-navy);
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  box-shadow: var(--bd-shadow-color-yellow);
}
.bd-btn--nav:hover {
  background: var(--bd-yellow-dark);
  transform: translateY(-1px);
}
.bd-btn--lg { font-size: 1.0625rem; padding: 0.9rem 2.2rem; }


.bd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bd-white);
  border-bottom: 1px solid var(--bd-border);
  box-shadow: var(--bd-shadow-sm);
  transition: transform var(--bd-transition-slow), opacity var(--bd-transition-slow);
}
.bd-header.bd-header--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.bd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}
.bd-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.bd-nav__logo-img { height: 40px; width: auto; }

.bd-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.bd-nav__link {
  font-family: var(--bd-font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bd-slate);
  padding: 0.5rem 0.75rem;
  border-radius: var(--bd-radius-sm);
  transition: all var(--bd-transition);
}
.bd-nav__link:hover,
.bd-nav__link--active {
  color: var(--bd-navy);
  background: var(--bd-mist);
}
.bd-nav__link--active { font-weight: 600; }

.bd-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--bd-radius-sm);
  transition: background var(--bd-transition);
}
.bd-nav__hamburger:hover { background: var(--bd-mist); }
.bd-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bd-navy);
  border-radius: 2px;
  transition: all var(--bd-transition);
}
.bd-nav__hamburger.bd-nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bd-nav__hamburger.bd-nav__hamburger--open span:nth-child(2) { opacity: 0; }
.bd-nav__hamburger.bd-nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bd-nav__mobile-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bd-white);
  border-top: 1px solid var(--bd-border);
}
.bd-nav__mobile-panel.bd-nav__mobile-panel--open {
  max-height: 500px;
}
.bd-nav__mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 0.5rem;
  gap: 0.25rem;
}
.bd-nav__mobile-link {
  display: block;
  font-family: var(--bd-font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--bd-slate);
  padding: 0.75rem 1rem;
  border-radius: var(--bd-radius-sm);
  transition: all var(--bd-transition);
  min-height: 44px;
}
.bd-nav__mobile-link:hover { color: var(--bd-navy); background: var(--bd-mist); }
.bd-nav__mobile-cta { margin: 1rem 1.5rem 1.5rem; }


.bd-mini-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bd-transition-slow);
}
.bd-mini-nav.bd-mini-nav--visible {
  opacity: 1;
  pointer-events: all;
}
.bd-mini-nav__pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bd-navy);
  color: var(--bd-white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--bd-radius-pill);
  font-family: var(--bd-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--bd-shadow-lg);
  transition: all var(--bd-transition);
  min-height: 44px;
}
.bd-mini-nav__pill:hover { background: var(--bd-navy-mid); transform: translateY(-1px); }
.bd-mini-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bd-white);
  border-radius: var(--bd-radius-lg);
  box-shadow: var(--bd-shadow-xl);
  padding: 1rem;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--bd-transition);
}
.bd-mini-nav.bd-mini-nav--open .bd-mini-nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.bd-mini-nav__item {
  display: block;
  font-family: var(--bd-font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bd-slate);
  padding: 0.6rem 0.9rem;
  border-radius: var(--bd-radius-sm);
  transition: all var(--bd-transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bd-mini-nav__item:hover { color: var(--bd-navy); background: var(--bd-mist); }
.bd-mini-nav__cta { margin-top: 0.5rem; justify-content: center; }


.bd-hero {
  min-height: 100vh;
  background: var(--bd-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.bd-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bd-hero__bg-shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.bd-hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,67,122,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}
.bd-hero__bg-shape--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10,191,188,0.12) 0%, transparent 70%);
  top: 40%;
  left: 30%;
}

.bd-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: var(--bd-space-xl);
  padding-bottom: var(--bd-space-xl);
}
.bd-hero__eyebrow {
  display: inline-block;
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bd-yellow);
  margin-bottom: 1rem;
}
.bd-hero__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--bd-white);
  margin-bottom: 1.5rem;
}
.bd-hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.bd-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.bd-hero__visual { position: relative; }
.bd-hero__img-wrap {
  border-radius: var(--bd-radius-xl);
  overflow: hidden;
  box-shadow: var(--bd-shadow-xl);
  aspect-ratio: 4/5;
}
.bd-hero__img { width: 100%; height: 100%; object-fit: cover; }
.bd-hero__badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bd-yellow);
  color: var(--bd-navy);
  border-radius: var(--bd-radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--bd-shadow-color-yellow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bd-hero__badge-num {
  font-family: var(--bd-font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.bd-hero__badge-text {
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}


.bd-strip {
  background: var(--bd-yellow);
  padding: 1.25rem 0;
}
.bd-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.bd-strip__item {
  font-family: var(--bd-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bd-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bd-strip__divider {
  width: 6px;
  height: 6px;
  background: var(--bd-navy);
  border-radius: 50%;
  opacity: 0.4;
}


.bd-about-intro {
  background: var(--bd-white);
  padding: var(--bd-space-2xl) 0;
}
.bd-about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bd-about-intro__img-col { position: relative; }
.bd-about-intro__img {
  border-radius: var(--bd-radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--bd-shadow-xl);
}
.bd-about-intro__accent {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--bd-teal-light);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  z-index: -1;
}


.bd-features {
  background: var(--bd-mist);
  padding: var(--bd-space-2xl) 0;
}
.bd-features__header {
  text-align: center;
  margin-bottom: var(--bd-space-xl);
}
.bd-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--bd-border);
  border-radius: var(--bd-radius-xl);
  overflow: hidden;
  background: var(--bd-white);
  box-shadow: var(--bd-shadow-md);
}
.bd-features__item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--bd-border);
  border-bottom: 1px solid var(--bd-border);
  transition: background var(--bd-transition);
}
.bd-features__item:nth-child(2n) { border-right: none; }
.bd-features__item:nth-last-child(-n+2) { border-bottom: none; }
.bd-features__item:hover { background: var(--bd-mist); }
.bd-features__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bd-teal-light);
  border-radius: var(--bd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bd-teal-dark);
  font-size: 1.2rem;
  transition: all var(--bd-transition);
}
.bd-features__item:hover .bd-features__icon {
  background: var(--bd-teal);
  color: var(--bd-white);
  transform: scale(1.05);
}
.bd-features__title {
  font-family: var(--bd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.4rem;
}
.bd-features__desc {
  font-size: 0.9rem;
  color: var(--bd-slate);
  line-height: 1.65;
}


.bd-tabs-section {
  background: var(--bd-navy);
  padding: var(--bd-space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.bd-tabs-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,191,188,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.bd-tabs-section__header {
  text-align: center;
  margin-bottom: var(--bd-space-xl);
}
.bd-tabs__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.bd-tabs__btn {
  font-family: var(--bd-font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--bd-radius-pill);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--bd-transition);
  min-height: 44px;
}
.bd-tabs__btn:hover {
  color: var(--bd-white);
  background: rgba(255,255,255,0.15);
}
.bd-tabs__btn--active {
  background: var(--bd-teal);
  color: var(--bd-white);
  border-color: var(--bd-teal);
  box-shadow: var(--bd-shadow-color-teal);
}
.bd-tabs__panels { position: relative; }
.bd-tabs__panel {
  display: none;
  animation: bdFadeIn 0.35s ease;
}
.bd-tabs__panel--active { display: block; }
@keyframes bdFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.bd-tabs__panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bd-radius-xl);
  padding: 3rem;
}
.bd-tabs__panel-heading {
  font-family: var(--bd-font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--bd-white);
  margin-bottom: 1.25rem;
}
.bd-tabs__panel-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  font-size: 0.9875rem;
  line-height: 1.75;
}
.bd-tabs__list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bd-tabs__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.bd-tabs__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--bd-teal);
  border-radius: 50%;
  margin-top: 0.55rem;
}
.bd-tabs__panel-img {
  border-radius: var(--bd-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bd-tabs__img { width: 100%; height: 100%; object-fit: cover; }
.bd-tabs-section__cta { text-align: center; margin-top: 3rem; }


.bd-compare-section {
  background: var(--bd-pink);
  padding: var(--bd-space-2xl) 0;
}
.bd-compare-section__header {
  text-align: center;
  margin-bottom: var(--bd-space-xl);
}
.bd-compare-section__header .bd-section-heading { color: var(--bd-white); }
.bd-compare-section__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-top: -0.5rem;
}

.bd-compare {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--bd-radius-xl);
  overflow: hidden;
  box-shadow: var(--bd-shadow-xl);
  user-select: none;
  cursor: col-resize;
}
.bd-compare__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: col-resize;
  z-index: 10;
  margin: 0;
  padding: 0;
}
.bd-compare__before {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.bd-compare__before .bd-compare__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bd-compare__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0s;
}
.bd-compare__after .bd-compare__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 900px;
}
.bd-compare__label {
  position: absolute;
  bottom: 1rem;
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--bd-radius-pill);
  letter-spacing: 0.05em;
}
.bd-compare__label--before { right: 1rem; background: rgba(26,31,58,0.75); color: var(--bd-white); }
.bd-compare__label--after { left: 1rem; background: var(--bd-teal); color: var(--bd-white); }
.bd-compare__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}
.bd-compare__handle i {
  background: var(--bd-white);
  color: var(--bd-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--bd-shadow-lg);
}
.bd-compare__handle::before,
.bd-compare__handle::after {
  content: '';
  width: 3px;
  background: var(--bd-white);
  flex: 1;
  opacity: 0.7;
}


.bd-areas {
  background: var(--bd-navy-mid);
  padding: var(--bd-space-2xl) 0;
}
.bd-areas__header {
  text-align: center;
  margin-bottom: var(--bd-space-xl);
}
.bd-areas__intro {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.bd-areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--bd-space-lg);
}
.bd-areas__region {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--bd-radius-lg);
  padding: 2rem;
  transition: all var(--bd-transition);
}
.bd-areas__region:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: var(--bd-shadow-lg);
}
.bd-areas__region-icon {
  font-size: 1.75rem;
  color: var(--bd-yellow);
  margin-bottom: 1rem;
}
.bd-areas__region-name {
  font-family: var(--bd-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bd-white);
  margin-bottom: 0.6rem;
}
.bd-areas__region-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}


.bd-gov-teaser {
  background: var(--bd-orange-light);
  padding: var(--bd-space-2xl) 0;
}
.bd-gov-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.bd-gov-teaser__img-col { position: relative; }
.bd-gov-teaser__img {
  border-radius: var(--bd-radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--bd-shadow-xl);
}
.bd-gov-teaser__accent {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--bd-orange);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.25;
}


.bd-how {
  background: var(--bd-white);
  padding: var(--bd-space-2xl) 0;
}
.bd-how__header {
  text-align: center;
  margin-bottom: var(--bd-space-xl);
}
.bd-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.bd-how__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--bd-yellow), var(--bd-pink), var(--bd-teal), var(--bd-orange));
  z-index: 0;
}
.bd-how__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.bd-how__step-num {
  font-family: var(--bd-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  width: 4rem;
  height: 4rem;
  background: var(--bd-white);
  border: 3px solid var(--bd-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bd-navy);
  transition: all var(--bd-transition);
}
.bd-how__step:nth-child(1) .bd-how__step-num { border-color: var(--bd-yellow); color: var(--bd-yellow-dark); }
.bd-how__step:nth-child(2) .bd-how__step-num { border-color: var(--bd-pink); color: var(--bd-pink-dark); }
.bd-how__step:nth-child(3) .bd-how__step-num { border-color: var(--bd-teal); color: var(--bd-teal-dark); }
.bd-how__step:nth-child(4) .bd-how__step-num { border-color: var(--bd-orange); color: var(--bd-orange-dark); }
.bd-how__step-title {
  font-family: var(--bd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.5rem;
}
.bd-how__step-desc { font-size: 0.9rem; color: var(--bd-slate); line-height: 1.65; }


.bd-cta-section {
  background: var(--bd-teal);
  padding: var(--bd-space-2xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bd-cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.bd-cta-section__inner { position: relative; z-index: 1; }
.bd-cta-section__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--bd-white);
  margin-bottom: 1rem;
}
.bd-cta-section__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}


.bd-page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.bd-page-hero--yellow { background: var(--bd-yellow); }
.bd-page-hero--teal { background: var(--bd-teal); }
.bd-page-hero--orange { background: var(--bd-orange); }
.bd-page-hero--pink { background: var(--bd-pink); }

.bd-page-hero__shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.bd-page-hero__inner { position: relative; z-index: 1; }
.bd-page-hero__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--bd-white);
  margin-bottom: 1rem;
}
.bd-page-hero--yellow .bd-page-hero__heading { color: var(--bd-navy); }
.bd-page-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}
.bd-page-hero--yellow .bd-page-hero__sub { color: rgba(26,31,58,0.75); }


.bd-story-section {
  background: var(--bd-white);
  padding: var(--bd-space-2xl) 0;
}
.bd-story-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.bd-story-section__img {
  border-radius: var(--bd-radius-xl);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--bd-shadow-xl);
}

.bd-story-values {
  background: var(--bd-mist);
  padding: var(--bd-space-2xl) 0;
}
.bd-story-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: var(--bd-space-lg);
}
.bd-story-values__card {
  background: var(--bd-white);
  border-radius: var(--bd-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--bd-shadow-sm);
  border: 1px solid var(--bd-border);
  transition: all var(--bd-transition);
}
.bd-story-values__card:hover { box-shadow: var(--bd-shadow-lg); transform: translateY(-4px); }
.bd-story-values__num {
  font-family: var(--bd-font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--bd-border);
  line-height: 1;
  margin-bottom: 1rem;
}
.bd-story-values__card:nth-child(1) .bd-story-values__num { color: rgba(245,197,24,0.3); }
.bd-story-values__card:nth-child(2) .bd-story-values__num { color: rgba(232,67,122,0.3); }
.bd-story-values__card:nth-child(3) .bd-story-values__num { color: rgba(10,191,188,0.3); }
.bd-story-values__card:nth-child(4) .bd-story-values__num { color: rgba(255,107,53,0.3); }
.bd-story-values__title {
  font-family: var(--bd-font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.75rem;
}
.bd-story-values__desc { font-size: 0.9375rem; color: var(--bd-slate); line-height: 1.7; }

.bd-story-team {
  background: var(--bd-teal-light);
  padding: var(--bd-space-2xl) 0;
}
.bd-story-team__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.bd-story-team__img {
  border-radius: var(--bd-radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--bd-shadow-xl);
}

.bd-story-cta {
  background: var(--bd-yellow);
  padding: var(--bd-space-2xl) 0;
}
.bd-story-cta__inner {
  text-align: center;
}
.bd-story-cta__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bd-navy);
  margin-bottom: 1rem;
}
.bd-story-cta__sub { color: rgba(26,31,58,0.7); font-size: 1.0625rem; margin-bottom: 2.5rem; }


.bd-programs-intro {
  background: var(--bd-white);
  padding: var(--bd-space-2xl) 0;
}
.bd-programs-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bd-programs-intro__path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bd-programs-intro__path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.bd-programs-intro__path-num {
  width: 56px;
  height: 56px;
  background: var(--bd-navy);
  color: var(--bd-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bd-font-head);
  font-size: 1.25rem;
  font-weight: 700;
}
.bd-programs-intro__path-step:nth-child(1) .bd-programs-intro__path-num { background: var(--bd-yellow); color: var(--bd-navy); }
.bd-programs-intro__path-step:nth-child(3) .bd-programs-intro__path-num { background: var(--bd-pink); }
.bd-programs-intro__path-step:nth-child(5) .bd-programs-intro__path-num { background: var(--bd-teal); }
.bd-programs-intro__path-step:nth-child(7) .bd-programs-intro__path-num { background: var(--bd-orange); }
.bd-programs-intro__path-label {
  font-family: var(--bd-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bd-slate);
}
.bd-programs-intro__path-arrow {
  color: var(--bd-border);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.bd-program-cards { padding: var(--bd-space-xl) 0 var(--bd-space-2xl); }
.bd-program-card {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--bd-border);
  position: relative;
}
.bd-program-card:last-child { border-bottom: none; }
.bd-program-card__num {
  font-family: var(--bd-font-head);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.15;
  color: var(--bd-navy);
  width: 80px;
  text-align: right;
  padding-top: 0.5rem;
}
.bd-program-card--yellow .bd-program-card__num { color: var(--bd-yellow-dark); opacity: 1; }
.bd-program-card--pink .bd-program-card__num { color: var(--bd-pink); opacity: 1; }
.bd-program-card--teal .bd-program-card__num { color: var(--bd-teal); opacity: 1; }
.bd-program-card--orange .bd-program-card__num { color: var(--bd-orange); opacity: 1; }
.bd-program-card__title {
  font-family: var(--bd-font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--bd-navy);
  margin-bottom: 1.25rem;
}
.bd-program-card__desc { font-size: 0.9875rem; color: var(--bd-slate); line-height: 1.75; margin-bottom: 1rem; }
.bd-program-card__topics-heading {
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bd-slate);
  margin-bottom: 0.75rem;
}
.bd-program-card__topics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.bd-program-card__topics-list li {
  font-size: 0.9rem;
  color: var(--bd-ink);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.bd-program-card__topics-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 0.6rem;
}
.bd-program-card--yellow .bd-program-card__topics-list li::before { background: var(--bd-yellow-dark); }
.bd-program-card--pink .bd-program-card__topics-list li::before { background: var(--bd-pink); }
.bd-program-card--teal .bd-program-card__topics-list li::before { background: var(--bd-teal); }
.bd-program-card--orange .bd-program-card__topics-list li::before { background: var(--bd-orange); }
.bd-program-card__tools { display: flex; flex-direction: column; gap: 0.5rem; }
.bd-program-card__tool {
  font-size: 0.85rem;
  color: var(--bd-slate);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bd-program-card__img-col {
  border-radius: var(--bd-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bd-program-card__img { width: 100%; height: 100%; object-fit: cover; }

.bd-programs-disclaimer {
  background: var(--bd-mist);
  padding: var(--bd-space-xl) 0;
}
.bd-programs-disclaimer__box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bd-white);
  border: 1px solid var(--bd-border);
  border-left: 4px solid var(--bd-teal);
  border-radius: var(--bd-radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--bd-shadow-sm);
}
.bd-programs-disclaimer__icon { font-size: 1.5rem; color: var(--bd-teal); flex-shrink: 0; padding-top: 0.2rem; }
.bd-programs-disclaimer__heading {
  font-family: var(--bd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.5rem;
}
.bd-programs-disclaimer__text p { font-size: 0.9375rem; color: var(--bd-slate); line-height: 1.7; }

.bd-programs-cta {
  background: var(--bd-pink);
  padding: var(--bd-space-2xl) 0;
  text-align: center;
}
.bd-programs-cta__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--bd-white);
  margin-bottom: 1rem;
}
.bd-programs-cta__sub { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: 1.0625rem; }


.bd-gov-intro {
  background: var(--bd-white);
  padding: var(--bd-space-2xl) 0;
}
.bd-gov-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.bd-gov-intro__img {
  border-radius: var(--bd-radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--bd-shadow-xl);
}

.bd-gov-topics {
  background: var(--bd-navy);
  padding: var(--bd-space-2xl) 0;
}
.bd-gov-topics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: var(--bd-space-lg);
}
.bd-gov-topics__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bd-radius-lg);
  padding: 2rem;
  transition: all var(--bd-transition);
}
.bd-gov-topics__card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.bd-gov-topics__icon {
  font-size: 1.5rem;
  color: var(--bd-yellow);
  margin-bottom: 1rem;
}
.bd-gov-topics__title {
  font-family: var(--bd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bd-white);
  margin-bottom: 0.6rem;
}
.bd-gov-topics__desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

.bd-gov-disclaimer {
  background: var(--bd-orange-light);
  padding: var(--bd-space-xl) 0;
}
.bd-gov-disclaimer__box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bd-white);
  border-left: 4px solid var(--bd-orange);
  border-radius: var(--bd-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--bd-shadow-md);
}
.bd-gov-disclaimer__icon-wrap {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--bd-orange);
  padding-top: 0.2rem;
}
.bd-gov-disclaimer__heading {
  font-family: var(--bd-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.75rem;
}
.bd-gov-disclaimer__content p {
  font-size: 0.9375rem;
  color: var(--bd-slate);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.bd-gov-disclaimer__content p:last-child { margin-bottom: 0; }

.bd-gov-cta {
  background: var(--bd-yellow);
  padding: var(--bd-space-2xl) 0;
}
.bd-gov-cta__inner { text-align: center; }
.bd-gov-cta__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bd-navy);
  margin-bottom: 1rem;
}
.bd-gov-cta__sub { color: rgba(26,31,58,0.7); font-size: 1.0625rem; margin-bottom: 2.5rem; }
.bd-gov-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


.bd-contact-section {
  background: var(--bd-white);
  padding: var(--bd-space-2xl) 0;
}
.bd-contact-section__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: start;
}
.bd-contact-form-wrap__heading {
  font-family: var(--bd-font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bd-navy);
  margin-bottom: 0.5rem;
}
.bd-contact-form-wrap__sub {
  color: var(--bd-slate);
  margin-bottom: 2rem;
}
.bd-form-steps { position: relative; }
.bd-form-step {
  display: none;
  animation: bdFadeIn 0.3s ease;
}
.bd-form-step--active { display: block; }
.bd-form-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.bd-form-progress__step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bd-border);
  color: var(--bd-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all var(--bd-transition);
}
.bd-form-progress__step--active { background: var(--bd-pink); color: var(--bd-white); }
.bd-form-progress__step--done { background: var(--bd-teal); color: var(--bd-white); }
.bd-form-progress__line {
  flex: 1;
  height: 2px;
  background: var(--bd-border);
  transition: background var(--bd-transition);
}
.bd-form-progress__line--done { background: var(--bd-teal); }
.bd-form-group { margin-bottom: 1.5rem; }
.bd-form-label {
  display: block;
  font-family: var(--bd-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.5rem;
}
.bd-form-input,
.bd-form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 2px solid var(--bd-border);
  border-radius: var(--bd-radius-md);
  font-size: 1rem;
  color: var(--bd-ink);
  background: var(--bd-white);
  transition: all var(--bd-transition);
  outline: none;
  min-height: 44px;
}
.bd-form-input:focus,
.bd-form-textarea:focus {
  border-color: var(--bd-pink);
  box-shadow: 0 0 0 3px rgba(232,67,122,0.12);
}
.bd-form-textarea { resize: vertical; min-height: 140px; }
.bd-form-group--checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.bd-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.bd-form-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--bd-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--bd-pink);
  cursor: pointer;
}
.bd-form-checkbox-text { font-size: 0.9rem; color: var(--bd-slate); line-height: 1.5; }
.bd-form-link { color: var(--bd-pink); text-decoration: underline; }
.bd-form-link:hover { color: var(--bd-pink-dark); }
.bd-form-btns { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }


.bd-contact-form:has(.bd-form-input:focus) { --form-active: 1; }
.bd-form-group:has(.bd-form-input:focus) .bd-form-label,
.bd-form-group:has(.bd-form-textarea:focus) .bd-form-label { color: var(--bd-pink); }

.bd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bd-contact-info__card {
  background: var(--bd-mist);
  border-radius: var(--bd-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--bd-border);
  transition: all var(--bd-transition);
}
.bd-contact-info__card:hover { box-shadow: var(--bd-shadow-md); transform: translateX(4px); }
.bd-contact-info__icon {
  font-size: 1.25rem;
  color: var(--bd-pink);
  margin-bottom: 0.75rem;
}
.bd-contact-info__label {
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bd-slate);
  margin-bottom: 0.35rem;
}
.bd-contact-info__value { font-size: 0.9375rem; color: var(--bd-navy); line-height: 1.6; }
.bd-contact-info__link { color: var(--bd-pink); transition: color var(--bd-transition); }
.bd-contact-info__link:hover { color: var(--bd-pink-dark); }

.bd-contact-methods {
  background: var(--bd-mist);
  padding: var(--bd-space-2xl) 0;
}
.bd-contact-methods__intro {
  color: var(--bd-slate);
  margin-bottom: var(--bd-space-lg);
  font-size: 1.0625rem;
}
.bd-contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.bd-contact-methods__card {
  background: var(--bd-white);
  border-radius: var(--bd-radius-lg);
  padding: 2rem;
  border: 1px solid var(--bd-border);
  transition: all var(--bd-transition);
}
.bd-contact-methods__card:hover { box-shadow: var(--bd-shadow-lg); transform: translateY(-4px); }
.bd-contact-methods__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--bd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all var(--bd-transition);
}
.bd-contact-methods__icon--form { background: var(--bd-pink-light); color: var(--bd-pink); }
.bd-contact-methods__icon--email { background: var(--bd-teal-light); color: var(--bd-teal-dark); }
.bd-contact-methods__icon--phone { background: var(--bd-yellow-light); color: var(--bd-yellow-dark); }
.bd-contact-methods__icon--visit { background: var(--bd-orange-light); color: var(--bd-orange-dark); }
.bd-contact-methods__card:hover .bd-contact-methods__icon--form { background: var(--bd-pink); color: var(--bd-white); }
.bd-contact-methods__card:hover .bd-contact-methods__icon--email { background: var(--bd-teal); color: var(--bd-white); }
.bd-contact-methods__card:hover .bd-contact-methods__icon--phone { background: var(--bd-yellow); color: var(--bd-navy); }
.bd-contact-methods__card:hover .bd-contact-methods__icon--visit { background: var(--bd-orange); color: var(--bd-white); }
.bd-contact-methods__title {
  font-family: var(--bd-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.75rem;
}
.bd-contact-methods__when { font-size: 0.9rem; color: var(--bd-slate); line-height: 1.65; margin-bottom: 0.75rem; }
.bd-contact-methods__note { font-size: 0.875rem; color: var(--bd-slate); }
.bd-contact-methods__link { color: var(--bd-teal-dark); transition: color var(--bd-transition); }
.bd-contact-methods__link:hover { color: var(--bd-teal); }

.bd-map-section { background: var(--bd-white); padding-top: var(--bd-space-xl); }
.bd-map-section .bd-container { margin-bottom: 2rem; }
.bd-map-wrap { overflow: hidden; }
.bd-map-iframe { display: block; }


.bd-thanks-page { display: flex; flex-direction: column; min-height: 100vh; }
.bd-thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem;
  text-align: center;
}
.bd-thanks-inner { max-width: 600px; }
.bd-thanks-icon {
  font-size: 4rem;
  color: var(--bd-teal);
  margin-bottom: 2rem;
}
.bd-thanks-heading {
  font-family: var(--bd-font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--bd-navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.bd-thanks-sub {
  font-size: 1.125rem;
  color: var(--bd-slate);
  margin-bottom: 3rem;
}


.bd-legal-hero {
  background: var(--bd-navy);
  padding: 8rem 0 4rem;
}
.bd-legal-hero--alt { background: var(--bd-navy-mid); }
.bd-legal-hero--teal { background: var(--bd-teal-dark); }
.bd-legal-hero__heading {
  font-family: var(--bd-font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bd-white);
  margin-bottom: 0.5rem;
}
.bd-legal-hero__meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.bd-legal-body { padding: var(--bd-space-2xl) 0; background: var(--bd-white); }
.bd-legal-container { max-width: 820px; }
.bd-legal-intro {
  background: var(--bd-mist);
  border-radius: var(--bd-radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--bd-teal);
}
.bd-legal-intro p { font-size: 0.9875rem; color: var(--bd-slate); line-height: 1.75; }
.bd-legal-section { margin-bottom: 2.5rem; }
.bd-legal-summary {
  background: var(--bd-mist);
  border-left: 3px solid var(--bd-yellow);
  padding: 0.875rem 1.25rem;
  border-radius: 0 var(--bd-radius-sm) var(--bd-radius-sm) 0;
  font-size: 0.9375rem;
  color: var(--bd-navy);
  margin-bottom: 1.25rem;
}
.bd-legal-detail p, .bd-legal-detail ul, .bd-legal-detail address {
  font-size: 0.9375rem;
  color: var(--bd-slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.bd-legal-detail ul { padding-left: 1.5rem; list-style: disc; }
.bd-legal-detail ul li { margin-bottom: 0.4rem; }
.bd-legal-section__heading {
  font-family: var(--bd-font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.75rem;
}


.bd-cookie-section-heading {
  font-family: var(--bd-font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bd-navy);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bd-border);
}
.bd-cookie-section-heading:first-child { border-top: none; margin-top: 0; }
.bd-cookie-subsection-heading {
  font-family: var(--bd-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin: 1.5rem 0 0.75rem;
}
.bd-cookie-category { margin-bottom: 2.5rem; }
.bd-cookie-category__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.bd-cookie-category__badge {
  font-family: var(--bd-font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--bd-radius-pill);
}
.bd-cookie-category__badge--necessary { background: var(--bd-teal-light); color: var(--bd-teal-dark); }
.bd-cookie-category__badge--analytics { background: var(--bd-yellow-light); color: var(--bd-yellow-dark); }
.bd-cookie-category__badge--functional { background: var(--bd-pink-light); color: var(--bd-pink-dark); }
.bd-cookie-category__title {
  font-family: var(--bd-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bd-navy);
}
.bd-cookie-category__desc { font-size: 0.9375rem; color: var(--bd-slate); line-height: 1.75; margin-bottom: 1.25rem; }
.bd-cookie-table-wrap { overflow-x: auto; }
.bd-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.bd-cookie-table th {
  background: var(--bd-mist);
  font-family: var(--bd-font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bd-slate);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--bd-border);
}
.bd-cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--bd-border);
  color: var(--bd-ink);
}
.bd-cookie-table tr:last-child td { border-bottom: none; }
.bd-cookie-manage p, .bd-cookie-rights p, .bd-cookie-updates p, .bd-cookie-contact p {
  font-size: 0.9375rem;
  color: var(--bd-slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.bd-cookie-manage ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.bd-cookie-manage ul li { font-size: 0.9375rem; color: var(--bd-slate); margin-bottom: 0.4rem; }
.bd-cookie-contact address p { font-size: 0.9375rem; color: var(--bd-slate); line-height: 1.8; }
.bd-cookie-what p { font-size: 0.9375rem; color: var(--bd-slate); line-height: 1.8; margin-bottom: 1rem; }


.bd-footer {
  background: var(--bd-navy);
  color: var(--bd-white);
  padding: var(--bd-space-2xl) 0 0;
}
.bd-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--bd-space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bd-footer__logo { height: 36px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.bd-footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.6; }
.bd-footer__disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.bd-footer__nav-heading {
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.bd-footer__nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.bd-footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--bd-transition);
}
.bd-footer__nav-link:hover { color: var(--bd-yellow); }
.bd-footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bd-footer__address p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.bd-footer__address i { color: var(--bd-yellow); flex-shrink: 0; margin-top: 0.15rem; }
.bd-footer__contact-link { color: rgba(255,255,255,0.65); transition: color var(--bd-transition); }
.bd-footer__contact-link:hover { color: var(--bd-yellow); }
.bd-footer__bottom {
  background: rgba(0,0,0,0.2);
  padding: 1.25rem 0;
}
.bd-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.bd-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.bd-footer__legal-links { display: flex; gap: 1.5rem; }
.bd-footer__bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--bd-transition); }
.bd-footer__bottom-link:hover { color: var(--bd-yellow); }


.bd-cookie-pill {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bd-navy);
  color: var(--bd-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--bd-radius-pill);
  box-shadow: var(--bd-shadow-xl);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: calc(100vw - 2rem);
}
.bd-cookie-pill__text { color: rgba(255,255,255,0.85); flex: 1; white-space: normal; font-size: 0.85rem; }
.bd-cookie-pill__btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.bd-cookie-pill__btn {
  font-family: var(--bd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--bd-radius-pill);
  transition: all var(--bd-transition);
  min-height: 36px;
  cursor: pointer;
  border: none;
}
.bd-cookie-pill__btn--accept { background: var(--bd-yellow); color: var(--bd-navy); }
.bd-cookie-pill__btn--accept:hover { background: var(--bd-yellow-dark); }
.bd-cookie-pill__btn--decline { background: rgba(255,255,255,0.12); color: var(--bd-white); }
.bd-cookie-pill__btn--decline:hover { background: rgba(255,255,255,0.2); }
.bd-cookie-pill__btn--customize {
  background: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  font-size: 0.75rem;
}
.bd-cookie-pill__btn--customize:hover { color: var(--bd-white); }
.bd-cookie-modal {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--bd-white);
  border-radius: var(--bd-radius-xl);
  box-shadow: var(--bd-shadow-xl);
  padding: 2rem;
  width: min(480px, calc(100vw - 2rem));
  animation: bdFadeIn 0.35s ease;
}
.bd-cookie-modal__heading {
  font-family: var(--bd-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bd-navy);
  margin-bottom: 0.75rem;
}
.bd-cookie-modal__desc { font-size: 0.875rem; color: var(--bd-slate); margin-bottom: 1.5rem; line-height: 1.65; }
.bd-cookie-modal__cats { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.bd-cookie-modal__cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  background: var(--bd-mist);
  border-radius: var(--bd-radius-md);
  border: 1px solid var(--bd
-border);
}
.bd-cookie-modal__cat-info { flex: 1; }
.bd-cookie-modal__cat-name {
  font-family: var(--bd-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bd-navy);
  margin-bottom: 0.2rem;
}
.bd-cookie-modal__cat-desc { font-size: 0.8rem; color: var(--bd-slate); }
.bd-cookie-modal__toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.bd-cookie-modal__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.bd-cookie-modal__toggle-track {
  position: absolute;
  inset: 0;
  background: var(--bd-border);
  border-radius: var(--bd-radius-pill);
  cursor: pointer;
  transition: background var(--bd-transition);
}
.bd-cookie-modal__toggle input:checked + .bd-cookie-modal__toggle-track { background: var(--bd-teal); }
.bd-cookie-modal__toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--bd-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--bd-transition);
  box-shadow: var(--bd-shadow-sm);
}
.bd-cookie-modal__toggle input:checked + .bd-cookie-modal__toggle-track::after { transform: translateX(20px); }
.bd-cookie-modal__toggle input:disabled + .bd-cookie-modal__toggle-track { opacity: 0.6; cursor: not-allowed; }
.bd-cookie-modal__btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.bd-cookie-modal__btn {
  font-family: var(--bd-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--bd-radius-pill);
  transition: all var(--bd-transition);
  min-height: 44px;
  cursor: pointer;
  border: none;
  flex: 1;
}
.bd-cookie-modal__btn--save { background: var(--bd-teal); color: var(--bd-white); }
.bd-cookie-modal__btn--save:hover { background: var(--bd-teal-dark); }
.bd-cookie-modal__btn--accept { background: var(--bd-yellow); color: var(--bd-navy); }
.bd-cookie-modal__btn--accept:hover { background: var(--bd-yellow-dark); }


.bd-features__grid:has(.bd-features__item:hover) .bd-features__item:not(:hover) {
  opacity: 0.75;
}
.bd-program-card:has(.bd-program-card__img-col) {
  grid-template-columns: auto 1fr 1fr;
}
.bd-areas__grid:has(.bd-areas__region:hover) .bd-areas__region:not(:hover) {
  opacity: 0.8;
}
.bd-contact-info:has(.bd-contact-info__card:hover) .bd-contact-info__card:not(:hover) {
  opacity: 0.85;
}
.bd-story-values__grid:has(.bd-story-values__card:hover) .bd-story-values__card:not(:hover) {
  opacity: 0.8;
}


@media (max-width: 1024px) {
  .bd-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-hero__visual { max-width: 480px; margin: 0 auto; }
  .bd-hero__badge { left: 0; }
  .bd-about-intro__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-about-intro__img-col { max-width: 480px; }
  .bd-features__grid { grid-template-columns: 1fr; }
  .bd-features__item { border-right: none; }
  .bd-features__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--bd-border); }
  .bd-features__item:last-child { border-bottom: none; }
  .bd-tabs__panel-content { grid-template-columns: 1fr; gap: 2rem; }
  .bd-areas__grid { grid-template-columns: 1fr; }
  .bd-gov-teaser__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-gov-teaser__img-col { max-width: 480px; }
  .bd-how__steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bd-how__steps::before { display: none; }
  .bd-story-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-story-section__img-col { max-width: 480px; }
  .bd-story-values__grid { grid-template-columns: 1fr; }
  .bd-story-team__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-story-team__img-col { max-width: 480px; }
  .bd-programs-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
  .bd-program-card { grid-template-columns: 1fr; }
  .bd-program-card__num { font-size: 3rem; width: auto; text-align: left; }
  .bd-gov-intro__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-gov-intro__img-col { max-width: 480px; }
  .bd-gov-topics__grid { grid-template-columns: 1fr; }
  .bd-contact-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .bd-contact-methods__grid { grid-template-columns: 1fr 1fr; }
  .bd-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --bd-space-2xl: 4.5rem;
    --bd-space-xl: 3rem;
  }
  .bd-nav__links { display: none; }
  .bd-nav__hamburger { display: flex; }
  .bd-btn--nav { display: none; }
  .bd-hero { padding-top: 70px; }
  .bd-hero__heading { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .bd-hero__badge { position: static; margin-top: 1.5rem; display: inline-flex; }
  .bd-how__steps { grid-template-columns: 1fr; }
  .bd-contact-methods__grid { grid-template-columns: 1fr; }
  .bd-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .bd-footer__bottom-inner { flex-direction: column; text-align: center; }
  .bd-strip__divider { display: none; }
  .bd-strip__inner { flex-direction: column; gap: 0.75rem; }
  .bd-tabs__nav { flex-direction: column; align-items: stretch; }
  .bd-tabs__panel-content { padding: 2rem 1.5rem; }
  .bd-compare-section__desc { font-size: 0.9rem; }
  .bd-programs-intro__path { gap: 0.25rem; }
  .bd-programs-intro__path-arrow { font-size: 0.9rem; }
  .bd-gov-cta__btns { flex-direction: column; align-items: center; }
  .bd-form-btns { flex-direction: column; }
}

@media (max-width: 480px) {
  .bd-container { padding: 0 1rem; }
  .bd-hero__actions { flex-direction: column; }
  .bd-btn--lg { width: 100%; justify-content: center; }
  .bd-programs-intro__path { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .bd-programs-intro__path-arrow { display: none; }
  .bd-cookie-pill { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .bd-cookie-pill__btns { flex-wrap: wrap; }
  .bd-cookie-modal__btns { flex-direction: column; }
  .bd-contact-methods__grid { grid-template-columns: 1fr; }
}


.bd-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}