/* BBRAid - Compiled CSS */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  line-height: inherit;
  overflow-x: hidden;
  width: 100%;
}
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: inherit; }
img, svg { display: block; vertical-align: middle; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0; padding: 0; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
*:focus { outline: none; }

/* ── BASE ── */
body {
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] body { background: #191818; }

/* ══════════════════════════════════════════
   CONTAINER — single source of truth for horizontal rhythm
   All sections use this to constrain their inner content.
   Sections themselves stay full-width for background colours.
══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;      /* 16px mobile */
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } } /* 24px tablet */
@media (min-width: 1024px) { .container { padding-left: 2rem;   padding-right: 2rem;   } } /* 32px desktop */
@media (min-width: 1280px) { .container { padding-left: 48px;   padding-right: 48px;   } } /* 48px large */

/* ── PAGE WRAPPER — hero section only ── */
.page-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 53px 1rem 0;
  box-sizing: border-box;
}
@media(min-width:640px)  { .page-wrap { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media(min-width:1024px) { .page-wrap { padding-left: 2rem;   padding-right: 2rem;   } }
@media(min-width:1280px) { .page-wrap { padding-left: 48px;   padding-right: 48px;   } }

/* ── HERO CARD ── */
.hero-card {
  position: relative;
  background: #ffffff;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 40px 40px 0 0;
  padding: 1px 1px 0 1px;
  background: linear-gradient(180deg, #0287EB 0%, rgba(2,135,235,0.3) 20%, transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
[data-theme="dark"] .hero-card { background: #191818; }
[data-theme="dark"] .hero-card::before {
  background: linear-gradient(180deg, #0287EB 0%, rgba(2,135,235,0.3) 20%, #191818 40%);
}

/* ── NAVBAR ── */
.navbar { position:relative; z-index:10; display:flex; align-items:center; gap:24px; padding:18px 24px; border-bottom:1px solid rgba(1,134,235,0.12); flex-wrap: nowrap; overflow: hidden; }
@media (min-width: 768px) { .navbar { padding: 20px 40px; } }
[data-theme="dark"] .navbar { border-bottom-color: rgba(255,255,255,0.06); }

.nav-links { display:flex; align-items:center; gap:24px; flex:1; justify-content:center; }
.nav-link {
  color: #1a1a1a; font-size: 15px; font-weight: 400;
  white-space: nowrap; transition: color .2s, transform .2s;
  display: inline-block;
}
.nav-link:hover { color: #0186EB; transform: translateY(-1px); }
[data-theme="dark"] .nav-link { color: #e0e0e0; }
[data-theme="dark"] .nav-link:hover { color: #58a6ff; transform: translateY(-1px); }

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 80px;
  width: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(1,134,235,0.10);
  border-bottom: 1px solid rgba(1,134,235,0.12);
  animation: slideDown 0.55s cubic-bezier(.16,1,.3,1) both;
}
[data-theme="dark"] .navbar.is-sticky {
  background: #191818;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* Admin bar fix */
@media screen and (min-width: 782px) {
  .admin-bar .navbar.is-sticky { top: 32px; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-nav {
  display: inline-flex; align-items: center;
  background: linear-gradient(180deg, #0288ED 0%, #478FC7 100%);
  color: #fff; border-radius: 60px;
  padding: 10px 24px; font-size: 15px; font-weight: 600;
  font-family: 'Barlow', sans-serif; border: none;
  white-space: nowrap; transition: opacity .2s, transform .15s;
}
.btn-nav:hover { opacity: .88; transform: translateY(-1px); }
.btn-nav--full { justify-content: center; margin-top: 4px; }

.btn-filled {
  display: inline-flex; align-items: center; justify-content: center;
  background: #0186EB; color: #fff; border-radius: 60px;
  height: 60px; padding: 10px 32px;
  font-size: 16px; font-weight: 600; font-family: 'Barlow', sans-serif;
  border: none; white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.btn-filled:hover { opacity: .88; transform: translateY(-1px); }
[data-theme="dark"] .btn-filled { background: #ffffff; color: #191818; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: transparent; color: #0186EB;
  border: 1px solid #0186EB; border-radius: 60px;
  height: 60px; padding: 10px 32px;
  font-size: 16px; font-weight: 500; font-family: 'Barlow', sans-serif;
  white-space: nowrap; transition: background .2s, color .2s, transform .15s;
}
.btn-outline:hover { background: #0186EB; color: #fff; transform: translateY(-1px); }
[data-theme="dark"] .btn-outline { color: #fff; border-color: #fff; }
[data-theme="dark"] .btn-outline:hover { background: #fff; color: #191818; }

/* ── TOGGLE ── */
.toggle-wrap {
  width: 52px; height: 28px; border-radius: 999px;
  background: #0186EB; position: relative; cursor: pointer;
  display: flex; align-items: center; flex-shrink: 0;
}
.toggle-wrap:focus-visible { box-shadow: 0 0 0 3px rgba(1,134,235,0.4); }
.toggle-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #FCB040; position: absolute;
  top: 3px; left: 3px;
  transition: left 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  pointer-events: none; z-index: 2;
}
[data-theme="dark"] .toggle-thumb { left: 27px; }
.toggle-sun {
  position: absolute; right: 5px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  pointer-events: none; z-index: 1;
  transition: right 0.3s cubic-bezier(.4,0,.2,1), left 0.3s cubic-bezier(.4,0,.2,1);
}
[data-theme="dark"] .toggle-sun { right: auto; left: 5px; }
.toggle-sun svg { width: 16px; height: 16px; display: block; }

/* ── LOGO ── */
.logo-link  { flex-shrink: 0; }
.logo-img   { height: 40px; width: auto; display: block; }
.logo-inverted { filter: brightness(0) invert(1); }
.logo-light { display: block; }
.logo-dark  { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: block; }

/* ── NAV CONTROLS ── */
.nav-controls { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }

@media (min-width: 768px) and (max-width: 1024px) {
  .navbar { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 13px; }
  .btn-nav { padding: 8px 16px; font-size: 13px; }
}



/* ── HERO CONTENT ── */
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; padding: 48px 24px 56px; align-items: center;
}
@media (min-width: 768px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 56px 40px 64px; }
}
.hero-headlines { display: flex; flex-direction: column; gap: 4px; }
.hero-col2      { display: flex; flex-direction: column; gap: 2rem; }

.headline-thin {
  font-weight: 300; font-style: italic;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  color: #000000; margin: 0;
}
.headline-bold {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  color: #0186EB; margin: 0;
}
[data-theme="dark"] .headline-thin { color: #ffffff; }

.hero-body {
  font-weight: 300; font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px); line-height: 1.55;
  color: #1a1a1a; margin: 0;
}
[data-theme="dark"] .hero-body { color: #c9c9c9; }

.cta-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }

/* ── SLIDER ── */
.slider-outer { position: relative; z-index: 2; padding: 0 24px 40px; }
@media (min-width: 768px) { .slider-outer { padding: 0 40px 48px; } }

.slider-viewport {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

@media (max-width: 1280px) {
  .slider-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.slider-img {
  width: 100%;
  height: 425px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .slider-img { height: clamp(200px, 55vw, 425px); }
}

/* ── DOTS ── */
.dots-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 20px 0 0;
  background: transparent;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #c0c0c0; border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.2s;
}
[data-theme="dark"] .dot { background: #444444; }
.dot.active { background: #0186EB; transform: scale(1.3); }
[data-theme="dark"] .dot.active { background: #0186EB; transform: scale(1.3); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 20px 24px; background: #fff;
  border-bottom: 1px solid rgba(1,134,235,0.12);
  position: relative; z-index: 10;
}
.mobile-menu.open { display: flex; }
[data-theme="dark"] .mobile-menu { background: #191818; border-bottom-color: rgba(255,255,255,0.06); }

/* ── HAMBURGER ── */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #1a1a1a; border-radius: 2px; transition: background .2s;
}
[data-theme="dark"] .hamburger span { background: #e0e0e0; }

/* ── RESPONSIVE SHOW/HIDE ── */
.desktop-only { display: flex !important; }
.mobile-only  { display: none  !important; }
@media (max-width: 767px) {
  .desktop-only { display: none  !important; }
  .mobile-only  { display: flex  !important; }
}
@media (max-width: 767px) {
  .hero-content {
    padding: 32px 24px;
  }
  .hero-card {
    padding: 0 16px;
  }
}

/* ══════════════════════════════════════════
   SECTIONS — full-width, top/bottom padding only.
   Left/right padding is handled by .container inside each section.
══════════════════════════════════════════ */
.section-economy,
.section-connectivity,
.section-serve,
.section-builds,
.section-circle,
.section-impact,
.section-diff,
.section-partner,
.section-ready,
.site-footer {
  width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .section-economy,
  .section-connectivity,
  .section-serve,
  .section-builds,
  .section-circle,
  .section-impact,
  .section-diff,
  .section-partner,
  .section-sdg,
  .section-ready {
    padding-top: 48px;
    padding-bottom: 48px;
    overflow: hidden;
  }

  .circle-diagram {
    margin-bottom: -80px;
  }

  .ready-image-wrap {
    margin-bottom: -60px;
  }
}

/* ══════════════════════════════════════════
   SECTION 2 — WHERE DIGITAL ECONOMY MEETS
══════════════════════════════════════════ */
.section-economy {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-economy { background: #191818; }

/* Section header text */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  color: #000000;
  margin: 0 0 20px;
}
[data-theme="dark"] .section-title { color: #ffffff; }
.section-title span { color: #0186EB; }
.section-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
}
[data-theme="dark"] .section-desc { color: #c9c9c9; }

/* ── CARDS GRID ── */
.cards-outer { max-width: 1240px; margin: 0 auto; }

.section-tagline {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 16px;
}
.tagline-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0 0 12px;
}
[data-theme="dark"] .tagline-heading { color: #ffffff; }
.tagline-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
}
[data-theme="dark"] .tagline-body { color: #c9c9c9; }

.cards-grid {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.economy-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.economy-card:hover { transform: translateY(-8px); }
.economy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.economy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(0, 106, 186, 0.4);
  pointer-events: none;
  transition: background 0.3s;
}
.economy-card:hover::after { background: rgba(0, 106, 186, 0.65); }

.economy-card--tall  { width: 295px; height: 644px; }
.economy-card--short { width: 295px; height: 505px; }

.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 24px;
  z-index: 2;
  background: #0186EB;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.economy-card:hover .card-content { transform: translateY(0); }

.card-icon { width: 28px; height: 28px; margin-bottom: 8px; }
.card-icon svg { width: 28px; height: 28px; display: block; }

.card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FCB040;
  margin: 0 0 6px;
  line-height: 1.2;
}
.card-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

/* Tablet — centered 4 cards */
@media (max-width: 1300px) and (min-width: 866px) {
  .cards-grid { justify-content: center; }
  .economy-card--tall  { width: 200px; height: 480px; }
  .economy-card--short { width: 200px; height: 360px; }
}

/* Mobile/small tablet — horizontal slider */
@media (max-width: 865px) {
  .economy-card--tall,
  .economy-card--short {
    flex-shrink: 0;
    width: 280px;
    height: 320px; /* ← reduced from 380px */
    scroll-snap-align: start;
  }

  .economy-card img {
    object-position: center 20%; /* ← focus on upper body/face area */
  }
  
}

/* ══════════════════════════════════════════
   SECTION 3 — CONNECTIVITY HAS OUTPACED CAPABILITY
══════════════════════════════════════════ */
.section-connectivity {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-connectivity { background: #191818; }

.connectivity-header {
  max-width: 100%;
  margin: 0 0 48px;
}
.connectivity-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  color: #000000;
  margin: 0 0 24px;
}
[data-theme="dark"] .connectivity-title { color: #ffffff; }
.connectivity-title span { color: #0186EB; }
.connectivity-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
  max-width: 100%;
}
[data-theme="dark"] .connectivity-desc { color: #c9c9c9; }

.stats-card {
  width: 100%;
  max-width: 100%;
  min-height: 533px;
  background: rgba(20, 42, 59, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 48px 56px;
  display: flex;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  width: 100%;
}
.stat-item { padding: 32px 24px 32px 0; }
.stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.stat-number {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 102px);
  line-height: 1;
  color: rgba(1, 134, 235, 0.9);
  margin: 0 0 12px;
  letter-spacing: -1px;
}
.stat-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  max-width: 220px;
}

@media (max-width: 768px) {
  .stats-card { padding: 32px 24px; min-height: auto; }
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: auto;
    gap: 0;
  }
  .stat-item { padding: 24px 16px 24px 0; } /* ← add right padding */
  .stat-number { font-size: clamp(48px, 12vw, 80px); }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 12px 20px 0; }
  .stat-number { font-size: clamp(36px, 11vw, 60px); }
}

/* ══════════════════════════════════════════
   SECTION 4 — WHO WE SERVE
══════════════════════════════════════════ */
.section-serve {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-serve { background: #191818; }

.serve-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
@media(max-width:767px) { .serve-header { grid-template-columns: 1fr; gap: 20px; } }

.serve-title-blue {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: #0186EB;
  margin: 0;
}
.serve-title-black {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: #000000;
  margin: 0;
}
[data-theme="dark"] .serve-title-black { color: #ffffff; }
.serve-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
}
[data-theme="dark"] .serve-desc { color: #c9c9c9; }

.serve-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
[data-theme="dark"] .serve-tabs { border-bottom-color: rgba(255,255,255,0.1); }

.serve-tab {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0 0 12px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
}
.serve-tab:hover { color: #0186EB; }
.serve-tab.active { color: #0186EB; border-bottom-color: #0186EB; }
[data-theme="dark"] .serve-tab { color: #c9c9c9; }
[data-theme="dark"] .serve-tab.active { color: #0186EB; }

.serve-header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.serve-panel { display: none; }
.serve-panel.active { display: block; }

.serve-image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}
.serve-image {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media(max-width:767px) { .serve-image { height: 220px; } }

.serve-subtitle {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #0186EB;
  margin: 0 0 16px;
  line-height: 1.1;
}
.serve-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 32px;
}
[data-theme="dark"] .serve-body { color: #c9c9c9; }

.serve-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1240px;
}
@media(max-width:767px) { .serve-cards { grid-template-columns: 1fr; } }

.serve-card {
  background: #0186EB;
  border-radius: 10px;
  padding: 16px 16px 20px;
  min-height: 217px;
  display: flex;
  flex-direction: column;
}
.serve-card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.serve-card-icon { width: 32px; height: 32px; flex-shrink: 0; filter: brightness(0) invert(1); }
.serve-card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
  padding-top: 4px;
}
.serve-card-divider { height: 1px; background: rgba(255,255,255,0.35); margin-bottom: 14px; }
.serve-card-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
}

/* ══════════════════════════════════════════
   SECTION 5 — WHAT BBRAID BUILDS
══════════════════════════════════════════ */
.section-builds {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-builds { background: #191818; }

.builds-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  text-align: center;
  color: #000000;
  margin: 0 0 56px;
}
[data-theme="dark"] .builds-title { color: #ffffff; }
.builds-title span { color: #0186EB; }

.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
@media(max-width:900px) { .builds-grid { grid-template-columns: 1fr; max-width: 420px; } }

.builds-card {
  width: 100%;
  min-height: 528px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: 0px 4px 17.5px 6px #00000026;
}
[data-theme="dark"] .builds-card { background: #1e2a35; border-color: rgba(255,255,255,0.1); }
.builds-card:hover { background: #0186EB; border-color: #0186EB; box-shadow: 0 12px 40px rgba(1,134,235,0.25); }

.builds-card-inner { display: flex; flex-direction: column; height: 100%; padding: 20px; gap: 20px; }
.builds-card-text { display: flex; flex-direction: column; gap: 12px; }

.builds-card-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  transition: color 0.3s;
}
[data-theme="dark"] .builds-card-heading { color: #ffffff; }
.builds-card:hover .builds-card-heading { color: #ffffff; }

.builds-card-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  transition: color 0.3s;
}
[data-theme="dark"] .builds-card-body { color: #c9c9c9; }
.builds-card:hover .builds-card-body { color: rgba(255,255,255,0.9); }

.builds-card-image { width: 100%; border-radius: 20px; overflow: hidden; flex-shrink: 0; }
.builds-card-image img {
  width: 100%;
  height: 254px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .builds-grid { 
    grid-template-columns: 1fr 1fr; 
    max-width: 100%;
    gap: 24px;
  }
  .builds-card { min-height: auto; }
  .builds-card-image img { height: 200px; }
}

/* ══════════════════════════════════════════
   SECTION 6 — THE FULL CIRCLE MODEL
══════════════════════════════════════════ */
.section-circle {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-circle { background: #191818; }

.circle-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
@media(max-width:767px) { .circle-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; } }

.circle-title-black {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: #000000;
  margin: 0;
}
[data-theme="dark"] .circle-title-black { color: #ffffff; }
.circle-title-blue {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: #0186EB;
  margin: 0;
}
.circle-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
}
[data-theme="dark"] .circle-desc { color: #c9c9c9; }

.circle-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:900px) { .circle-body { grid-template-columns: 1fr; gap: 40px; } }

.step-number-wrap { 
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  flex-shrink: 0; 
  gap: 4px; /* ← very tight between number and line */
}

.circle-step { 
  display: flex; 
  align-items: flex-start; 
  gap: 16px; /* ← slightly more between line and content */
  padding: 24px 0; 
}
.step-number {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 71px;
  line-height: 1;
  color: #000000;
  display: block;
  min-width: 55px;
}
[data-theme="dark"] .step-number { color: #ffffff; }
.step-vline { width: 0; height: 70px; border-left: 4.46px solid #0186EB; }
.step-content { padding-top: 0; flex: 1; }
.step-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 1;
  color: #000000;
  margin: 0 0 10px;
}
[data-theme="dark"] .step-title { color: #ffffff; }
.step-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
}
[data-theme="dark"] .step-body { color: #c9c9c9; }
.step-hline { width: 100%; height: 0; border-top: 0.5px solid #000000; opacity: 0.2; }
[data-theme="dark"] .step-hline { border-color: #ffffff; }

.circle-diagram img { width: 100%; max-width: 560px; height: auto; }

.circle-img--light { display: block; }
.circle-img--dark  { display: none; }
[data-theme="dark"] .circle-img--light { display: none; }
[data-theme="dark"] .circle-img--dark  { display: block; }

@media(max-width:900px) {
  .circle-diagram { order: 1; }
  .step-number { font-size: 48px; }
  .step-vline { height: 40px; }
  .step-title { font-size: 22px; }
  .step-body  { font-size: 16px; }
}

/* ══════════════════════════════════════════
   SECTION 7 — BBRAID IMPACT GOALS
══════════════════════════════════════════ */
.section-impact {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
  overflow: hidden;
}
[data-theme="dark"] .section-impact { background: #191818; }

.impact-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  align-items: center;
  position: relative;
}
@media(max-width:900px) { .impact-grid { grid-template-columns: 1fr; } }

.impact-left { display: flex; flex-direction: column; gap: 20px; }
.impact-title-black {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: #000000;
  margin: 0;
}
[data-theme="dark"] .impact-title-black { color: #ffffff; }
.impact-title-blue {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: #0186EB;
  margin: 0;
}
.impact-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
  max-width: 340px;
}
[data-theme="dark"] .impact-desc { color: #c9c9c9; }

.impact-image-wrap { position: relative; width: 100%; margin-top: 16px; }
.impact-img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 95%);
  mask-image: linear-gradient(to right, black 60%, transparent 95%);
}
.impact-img--light { display: block; }
.impact-img--dark  { display: none;  }
[data-theme="dark"] .impact-img--light { display: none;  }
[data-theme="dark"] .impact-img--dark  { display: block; }

.impact-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-left: -60px;
  position: relative;
  z-index: 2;
}
.impact-col { display: flex; flex-direction: column; gap: 20px; }
.impact-col--b { margin-top: 80px; }

.impact-card {
  width: 100%;
  min-height: 294px;
  background: #0186EB;
  border-radius: 22.72px;
  box-shadow: 0px 1px 6px 1px rgba(5,151,255,0.08);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.impact-card:hover { transform: translateY(-6px); box-shadow: 0px 8px 32px 4px rgba(5,151,255,0.4); }
[data-theme="dark"] .impact-card { background: #142837; }

.impact-card-icon { width: 36px; height: 36px; filter: brightness(0) invert(1); flex-shrink: 0; }
.impact-card-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 1024px) {
  
  .impact-cards-wrap {
    padding-left: 0;
    margin-left: 0;
    margin-top: 32px; /* ← only applies on tablet */
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .impact-cards-wrap {
    padding-left: 0;
    margin-left: 0; /* ← this is the fix */
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .impact-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .impact-col--b { margin-top: 0; }
  .impact-card { min-height: auto; }
}

/* ══════════════════════════════════════════
   SECTION 8 — WHAT MAKES BIG BOLD RED DIFFERENT
══════════════════════════════════════════ */
.section-diff {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0186EB;
  overflow: hidden;
  transition: background 0.3s;
}
[data-theme="dark"] .section-diff { background: #142837; }

.diff-bg-svg {
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 45%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
}
.diff-bg-img { width: 100%; height: auto; opacity: 0.15; }
.diff-bg-img--light { display: block; }
.diff-bg-img--dark  { display: none;  }
[data-theme="dark"] .diff-bg-img--light { display: none;  }
[data-theme="dark"] .diff-bg-img--dark  { display: block; }

.diff-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
@media(max-width:767px) { .diff-header { grid-template-columns: 1fr; gap: 20px; } }

.diff-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}
.diff-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  max-width: 474px;

  margin-left: 100px;
}

.diff-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media(max-width:900px) {
  .diff-body { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .diff-center { display: none; }
}
@media(max-width:600px) { .diff-body { grid-template-columns: 1fr; } }

.diff-col { display: flex; flex-direction: column; gap: 24px; }
.diff-center { display: flex; align-items: center; justify-content: center; width: 160px; }
.diff-center-img { width: 100%; height: auto; filter: brightness(0) invert(1); }

.diff-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border-radius: 20px;
  min-height: 197px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: none;
  transition: transform 0.3s ease;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0px; left: 0px;
  width: 160px; height: 108px;
  border-top: 8px solid #FCB040;
  border-left: 8px solid #FCB040;
  border-radius: 20px 0 0 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}
[data-theme="dark"] .diff-card { background: #ffffff; }
.diff-card:hover { transform: translateY(-4px); }

.diff-card-number {
  flex-shrink: 0;
  width: 130px;
  min-height: 197px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 160px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 0.8px #000000;
  text-stroke: 0.8px #000000;
}
.diff-card-content { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.diff-card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #0186EB;
  margin: 0;
}
.diff-card-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 1024px) {
  .diff-body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  /* removed .diff-center { display: none; } */
  .diff-col { gap: 16px; }
  .diff-card { min-height: auto; }
  .diff-card-number { width: 80px; min-height: 140px; font-size: 80px; }
}

@media (max-width: 600px) {
  .diff-body { grid-template-columns: 1fr; }
  .diff-card-number { width: 70px; min-height: 120px; font-size: 64px; }
}

/* ══════════════════════════════════════════
   SECTION 9 — PARTNERSHIP IS CENTRAL
══════════════════════════════════════════ */
.section-partner {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-partner { background: #191818; }

.partner-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
@media(max-width:767px) { .partner-header { grid-template-columns: 1fr; gap: 20px; } }

.partner-title-black {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1; color: #000000; margin: 0;
}
[data-theme="dark"] .partner-title-black { color: #ffffff; }
.partner-title-blue {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1; color: #0186EB; margin: 0;
}
.partner-header-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55; color: #1a1a1a; margin: 0;
}
[data-theme="dark"] .partner-header-desc { color: #c9c9c9; }

.partner-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:900px) { .partner-body { grid-template-columns: 1fr; gap: 40px; } }

.partner-steps { display: flex; flex-direction: column; }
.partner-accordion-wrap { display: flex; flex-direction: column; gap: 0; padding-top: 80px; }

.partner-accordion-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  color: #000000; margin: 0 0 32px;
}
[data-theme="dark"] .partner-accordion-title { color: #ffffff; }
.partner-accordion-title span { color: #0186EB; }

.accordion-list { display: flex; flex-direction: column; gap: 23px; max-width: 635px; }

.accordion-item {
  border-radius: 22.72px;
  box-shadow: 0px 2px 8px 2px rgba(5,151,255,0.1);
  background: #ffffff !important;
  overflow: hidden;
  transition: background 0.3s;
}
.accordion-item.active { background: #0186EB !important; }
.accordion-trigger { color: #000000; }
.accordion-item.active .accordion-trigger { color: #ffffff; }
[data-theme="dark"] .accordion-item.active { background: #0186EB; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px 20px 49px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  text-align: left;
  transition: color 0.3s;
  gap: 16px;
}
.accordion-item.active .accordion-trigger { color: #ffffff; }
[data-theme="dark"] .accordion-item {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="dark"] .accordion-trigger {
  color: #000000;
}

[data-theme="dark"] .accordion-item.active {
  background: #0186EB;
  border-color: #0186EB;
}

[data-theme="dark"] .accordion-item.active .accordion-trigger {
  color: #ffffff;
}

[data-theme="dark"] .accordion-item.active .accordion-body p {
  color: #ffffff;
}

.accordion-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  color: #000000;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-item.active .accordion-icon { color: #ffffff; }

.accordion-body { display: none; padding: 0 49px 40px; }
.accordion-item.active .accordion-body { display: block; }

.accordion-body p {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
}


/* ══════════════════════════════════════════
   SECTION 10 — READY TO HELP BUILD
══════════════════════════════════════════ */
.section-ready {
  position: relative;
  overflow: visible;
  margin-top: -120px;
  background: transparent;
}

.ready-image-wrap {
  position: relative;
  width: calc(100% + 95px); /* extend by exact Figma left bleed */
  margin-left: -95px;       /* pull left by exact Figma value */
  line-height: 0;
  overflow: hidden;
}
.ready-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1692 / 1354; /* exact Figma dimensions */
}

@media (max-width: 1024px) {
  .ready-image-wrap { width: calc(100% + 60px); margin-left: -60px; }
}

@media (max-width: 767px) {
  .ready-image-wrap { width: calc(100% + 30px); margin-left: -30px; }
  .ready-content { padding-top: 40px; padding-bottom: 48px; }
  .ready-title { max-width: 100%; }
  .ready-desc  { max-width: 100%; }
}

/* Text uses same container alignment as all other sections */
.ready-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media(min-width:640px)  { .ready-content { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media(min-width:1024px) { .ready-content { padding-left: 2rem; padding-right: 2rem; } }
@media(min-width:1280px) { .ready-content { padding-left: 48px; padding-right: 48px; } }

.ready-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  color: #000000;
  margin: 0 0 20px;
  max-width: 500px;
}
[data-theme="dark"] .ready-title { color: #ffffff; }
.ready-title span { color: #0186EB; }

.ready-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 32px;
  max-width: 450px;
}
[data-theme="dark"] .ready-desc { color: #c9c9c9; }
[data-theme="dark"] .ready-content .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
  background: transparent;
}
[data-theme="dark"] .ready-content .btn-outline:hover {
  background: #ffffff;
  color: #191818;
}

@media(max-width:1024px) {
  .section-ready { margin-top: 0; display: flex; flex-direction: column; overflow: hidden; background: #ffffff; }
  [data-theme="dark"] .section-ready { background: #191818; }
  .ready-content { position: relative; bottom: auto; left: auto; transform: none; padding: 32px 1.5rem; max-width: 100%; text-align: left; align-items: flex-start; }
  .ready-title { text-align: left; max-width: 100%; }
  .ready-desc { text-align: left; max-width: 100%; }
  .cta-row { justify-content: flex-start; }
}
@media(min-width:1025px) and (max-width:1280px) {
  .section-ready { margin-top: -80px; }
  .ready-content { bottom: 5%; }
  .ready-title { font-size: clamp(28px, 3vw, 40px); }
  .ready-desc { font-size: clamp(14px, 1.2vw, 18px); }
}
@media(max-width:480px) {
  .ready-content { padding: 24px 1rem; text-align: center; align-items: center; }
  .ready-title { text-align: center; }
  .ready-desc { text-align: center; }
  .cta-row { justify-content: center; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #2C3F4F;
  padding-top: 64px;
  padding-bottom: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
@media(max-width:768px) { .footer-main { grid-template-columns: 1fr; gap: 40px; } }

.footer-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 60px;
  color: #0186EB;
  margin: 0 0 20px;
}
.footer-tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 20px;
  max-width: 300px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.footer-contact-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: #FCB040; }

.footer-socials { display: flex; gap: 12px; align-items: center; }
.social-icon {
  width: 44px; height: 44px;
  border: 1.5px solid #FCB040;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.social-icon:hover { background: rgba(252,176,64,0.15); }

.footer-logo { height: 40px; width: auto; display: block; margin-bottom: 20px; filter: brightness(0) invert(1);  filter: none !important;}
.footer-desc {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
}
.footer-cta { display: inline-flex; align-items: center; justify-content: center; }

.footer-col--right { display: flex; gap: 32px; margin-top: 24px; }
@media(max-width:640px) { .footer-col--right { flex-wrap: wrap; gap: 24px; } }

.footer-nav-group { display: flex; flex-direction: column; gap: 12px; min-width: 120px; }
.footer-nav-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.5);
}
.footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: #FCB040; }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(44,63,79,0.47) 0%, rgba(255,255,255,0.47) 50.36%, rgba(44,63,79,0.47) 100%);
  margin: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding: 0 0 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-transform: capitalize;
}
.footer-legal { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-legal-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: #FCB040; }
.footer-legal-sep { color: rgba(255,255,255,0.3); font-size: 14px; }

/* ── MOBILE RESPONSIVE ── */
@media(max-width:767px) {
  .hero-content { padding: 32px 0 32px; }
  .slider-outer { padding: 0 0 32px; }
  .stats-card { padding: 24px 16px; }
  .stat-number { font-size: 48px; }
  .builds-grid { grid-template-columns: 1fr; gap: 24px; }
  .builds-card { min-height: auto; }
  .circle-body { grid-template-columns: 1fr; }
  .step-number { font-size: 48px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-cards-wrap { margin-left: 0; grid-template-columns: 1fr 1fr; }
  .impact-col--b { margin-top: 0; }
  .diff-body { grid-template-columns: 1fr; }
  .diff-center { display: none; }
  .diff-card-number { font-size: 80px; width: 80px; }
  .partner-body { grid-template-columns: 1fr; }
  .accordion-list { max-width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-col--right { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-heading { font-size: 40px; line-height: 48px; }
}
@media(max-width:480px) {
  .impact-cards-wrap { grid-template-columns: 1fr; }
  .serve-cards { grid-template-columns: 1fr; }
  .cards-grid { flex-direction: column; }
  .economy-card--tall,
  .economy-card--short { width: 100%; height: 280px; }
  .diff-col { width: 100%; }
}

/* ── LEGACY ALIAS (kept for backwards compat) ── */
.bb-container { width: 100%; max-width: 1240px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; box-sizing: border-box; }
@media(min-width:640px)  { .bb-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media(min-width:1024px) { .bb-container { padding-left: 2rem;   padding-right: 2rem;   } }
@media(min-width:1280px) { .bb-container { padding-left: 48px;   padding-right: 48px;   } }

/* ══════════════════════════════════════════
   MODAL — GET INVOLVED
══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
[data-theme="dark"] .modal-box { background: #1e2a35; }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
}
.modal-close:hover { background: #f0f0f0; }
[data-theme="dark"] .modal-close { background: #1e2a35; color: #fff; border-color: rgba(255,255,255,0.2); }

.modal-tag {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #0186EB;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.modal-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: #000000;
  margin: 0 0 12px;
  line-height: 1.1;
}
[data-theme="dark"] .modal-title { color: #ffffff; }

.modal-subtitle {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 32px;
}
[data-theme="dark"] .modal-subtitle { color: #c9c9c9; }

.modal-form { display: flex; flex-direction: column; gap: 20px; }

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .modal-row { grid-template-columns: 1fr; } }

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-field--full { width: 100%; }

.modal-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
}
[data-theme="dark"] .modal-label { color: #e0e0e0; }

.modal-required { color: #0186EB; }
.modal-optional { color: #999; font-weight: 400; }

.modal-input {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #f5f7fa;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.modal-input:focus { outline: none; border-color: #0186EB; }
[data-theme="dark"] .modal-input { background: #142837; border-color: rgba(255,255,255,0.1); color: #ffffff; }

.modal-textarea {
  min-height: 120px;
  resize: vertical;
}

.modal-select { cursor: pointer; }

.modal-submit {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #0186EB 0%, #6C63FF 100%);
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 17px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 8px;
}
.modal-submit:hover { opacity: 0.9; transform: translateY(-1px); }

.footer-logo {
  filter: brightness(0) invert(1); /* ← this is turning everything white */
}
/* ══════════════════════════════════════════
   SDG ALIGNMENT SECTION
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   SDG ALIGNMENT SECTION
══════════════════════════════════════════ */
.section-sdg {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .section-sdg { background: #191818; }

.sdg-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.sdg-title-blue {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  color: #0186EB;
  margin: 0;
  line-height: 1;
}
.sdg-title-black {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  color: #000000;
  margin: 0;
  line-height: 1;
}
[data-theme="dark"] .sdg-title-black { color: #ffffff; }

.sdg-desc {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  align-self: center;
}
[data-theme="dark"] .sdg-desc { color: #c9c9c9; }

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sdg-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.sdg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.sdg-card-hover {
  position: absolute;
  inset: 0;
  background: #0186EB;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
}

.sdg-card:hover .sdg-card-hover {
  opacity: 1;
  transform: translateY(0);
}
.sdg-card:hover .sdg-card-img {
  opacity: 0;
}

.sdg-hover-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #ffffff;
  margin: 0;
}
.sdg-hover-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px)  {
  .sdg-header { grid-template-columns: 1fr; gap: 20px; }

  .sdg-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sdg-grid::-webkit-scrollbar { display: none; }

  .sdg-card {
    flex-shrink: 0;
    width: 180px;
    aspect-ratio: unset;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 3.96px 17.33px 5.94px #00000026;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    position: relative;
  }
  [data-theme="dark"] .sdg-card {
    border-color: rgba(255,255,255,0.1);
    background: #1e2a35;
  }

  .sdg-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
  }

  .sdg-card-hover {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    background: #ffffff !important;
    padding: 8px 8px 16px 8px !important;
    border-radius: 0 0 16px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  [data-theme="dark"] .sdg-card .sdg-card-hover {
    background: #1e2a35 !important;
  }

  .sdg-hover-title {
    color: #0186EB !important;
    font-size: 13px !important;
    margin: 0 !important;
  }
  .sdg-hover-body {
    color: #1a1a1a !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }
  [data-theme="dark"] .sdg-hover-body { color: #c9c9c9 !important; }
  /* Disable hover effect on mobile — content already visible below */
  .sdg-card:hover .sdg-card-img { opacity: 1 !important; }
  .sdg-card:hover .sdg-card-hover { opacity: 1 !important; transform: none !important; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sdg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .sdg-card-hover {
    opacity: 0;
    transform: translateY(8px);
  }

  .sdg-card:hover .sdg-card-hover {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .sdg-card:hover .sdg-card-img {
    opacity: 0 !important;
  }
}

/* ══════════════════════════════════════════
   PRIVACY / COOKIE POLICY PAGE
══════════════════════════════════════════ */
.privacy-page {
  background: #ffffff;
  transition: background 0.3s;
}
[data-theme="dark"] .privacy-page { background: #191818; }

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.privacy-hero { margin-bottom: 8px; } /* reduced from 48px */

.privacy-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0186EB;
  display: block;
  margin-bottom: 12px;
}

.privacy-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: #000000;
  margin: 0 0 8px;
}
[data-theme="dark"] .privacy-title { color: #ffffff; }

.privacy-content h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #000000;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0186EB;
  display: inline-block; /* ← ADD THIS */
}
[data-theme="dark"] .privacy-content h2 { color: #ffffff; }

.privacy-content p,
.privacy-content li {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0 0 16px;
}
[data-theme="dark"] .privacy-content p,
[data-theme="dark"] .privacy-content li { color: #c9c9c9; }

.privacy-content ul {
  padding-left: 24px;
  margin: 0 0 24px;
}

.privacy-content a {
  color: #0186EB;
  text-decoration: underline;
}

.privacy-section { margin-bottom: 40px; }

.privacy-back {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}
[data-theme="dark"] .privacy-back { border-top-color: rgba(255,255,255,0.1); }

.privacy-back-btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0186EB;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #0186EB;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.privacy-back-btn:hover {
  background: #0186EB;
  color: #ffffff;
}

@media (max-width: 767px) {
  .privacy-inner { padding: 48px 24px; }
  .privacy-content h2 { font-size: 18px; margin-top: 32px; }
}

body.page .page-wrap {
  padding-top: 53px;
}

body.page .hero-card {
  overflow: visible;
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: #1a1a1a;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
  max-width: 600px;
}
.cookie-content p a {
  color: #0186EB;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-manage {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.cookie-manage:hover { border-color: rgba(255,255,255,0.6); }
.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.6); }
.cookie-accept {
  background: #0186EB;
  color: #ffffff;
  border: 1px solid #0186EB;
}
.cookie-accept:hover { background: #0170c9; }

@media (max-width: 767px) {
  .cookie-banner {
    padding: 16px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-content p { max-width: 100%; }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
}

/* ══════════════════════════════════════════
   COOKIE PREFERENCES MODAL
══════════════════════════════════════════ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  margin: 0 24px;
  max-height: 90vh;
  overflow-y: auto;
}
[data-theme="dark"] .cookie-modal-box { background: #1a1a1a; }

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0186EB;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cookie-modal-close {
  background: rgba(0,0,0,0.08);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal-close:hover { background: rgba(0,0,0,0.15); }
[data-theme="dark"] .cookie-modal-close { background: rgba(255,255,255,0.1); color: #ffffff; }

.cookie-modal-box h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px;
}
[data-theme="dark"] .cookie-modal-box h3 { color: #ffffff; }

.cookie-modal-box > p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
}
[data-theme="dark"] .cookie-modal-box > p { color: rgba(255,255,255,0.65); }

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  gap: 16px;
}
[data-theme="dark"] .cookie-option { border-bottom-color: rgba(255,255,255,0.08); }

.cookie-option-text strong {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  display: block;
  margin-bottom: 8px;
}
[data-theme="dark"] .cookie-option-text strong { color: #ffffff; }

.cookie-option-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}
[data-theme="dark"] .cookie-option-text p { color: rgba(255,255,255,0.55); }

.cookie-toggle-always {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0186EB;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  inset: 0;
  background: #cccccc;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-slider { background: #0186EB; }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(20px); }

/* Modal actions */
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-save {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: #333333;
}
.cookie-save:hover { background: rgba(0,0,0,0.05); }
[data-theme="dark"] .cookie-save { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }

@media (max-width: 767px) {
  .cookie-modal-box { padding: 24px; }
  .cookie-modal-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .cookie-modal-actions .cookie-btn {
    width: 100%;
    text-align: center;
  }
}