/* ============================================
   Apex MCC — Main Stylesheet
   ============================================ */

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

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Nunito Sans', sans-serif;
  background: #000;
  color: #fff;
}

:root {
  --background: rgb(0,0,0);
  --foreground: hsl(127 29% 95%);
  --primary: hsl(128 57% 51%);
  --primary-foreground: hsl(129 54% 3%);
  --muted: rgb(255,255,255);
  --muted-foreground: rgb(255,255,255);
  --card: hsl(144 29% 7%);
  --border: hsl(144 29% 15%);
  --nav-height: 64px;
  --controls-height: 80px;
}

* {
  box-sizing: border-box;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 760px;
  overflow: hidden;
  background: var(--background);
}

/* ============================================
   Navbar
   ============================================ */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
}

.nav-container {
  width: min(calc(100% - 48px), 1280px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  display: block;
  width: auto;
  max-width: 150px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--foreground);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.donate-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--primary-foreground) !important;
  background: var(--primary);
  font-weight: 700 !important;
}

.donate-button:hover {
  background: hsl(128 57% 51% / 0.9);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-button {
  display: none;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============================================
   Slideshow / Hero
   ============================================ */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 28%, rgba(0,0,0,0.55) 100%);
}

.hero-glow {
  position: absolute;
  z-index: 2;
  top: 28%;
  right: 25%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: hsl(128 57% 51% / 0.08);
  filter: blur(80px);
  pointer-events: none;
}

/* CONTENT */
.slide-content {
  position: absolute;
  top: var(--nav-height);
  right: 0;
  bottom: var(--controls-height);
  left: 0;
  z-index: 3;
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

/* SLIDE 1 */
.slide-1-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
}

.slide-1-title {
  margin: 0 0 26px;
  color: var(--foreground);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.slide-1-title .highlight {
  color: var(--primary);
}

.slide-1-layout .funding-card {
  transform: translateY(35px);
}

/* NORMAL SLIDES */
.slide-text {
  max-width: 680px;
}

.slide-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slide-heading {
  margin: 0 0 26px;
  color: var(--foreground);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.slide-heading em {
  color: var(--primary);
  font-style: normal;
}

.slide-body {
  max-width: 560px;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.6;
}

/* SLIDE 2 */
.slide[data-index="1"] .slide-content {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.slide[data-index="1"] .slide-text { max-width: 650px; }
.slide[data-index="1"] .slide-heading {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.84;
  margin-bottom: 22px;
}
.slide[data-index="1"] .slide-body { max-width: 520px; }

/* SLIDE 3 & 4 */
.slide[data-index="2"] .slide-content { align-items: center; }
.slide[data-index="3"] .slide-content { align-items: center; }

/* FUNDING */
.funding-card {
  padding: 24px;
  background: rgba(10, 15, 11, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.funding-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.funding-label {
  color: var(--muted-foreground);
  font-size: 14px;
}
.funding-percent {
  color: var(--primary);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.progress-track {
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: var(--muted);
}
.progress-fill {
  width: 4.2%;
  height: 100%;
  background: var(--primary);
}

.funding-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 12px;
}

/* BUTTONS */
.slide-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.slide-btn {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.slide-btn:hover { transform: translateY(-2px); }

.slide-btn.primary {
  color: var(--primary-foreground);
  background: var(--primary);
  border: 1px solid var(--primary);
}
.slide-btn.primary:hover { background: hsl(128 57% 51% / 0.9); }

.slide-btn.outline {
  color: var(--foreground);
  background: transparent;
  border: 1px solid var(--border);
}
.slide-btn.outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.funding-card .slide-btn {
  flex: 1;
}

/* ============================================
   Slideshow Controls
   ============================================ */
.slideshow-controls {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--controls-height);
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.slide-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-dot {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.slide-dot.active {
  width: 55px;
  background: var(--primary);
}

.slide-counter {
  color: var(--muted-foreground);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.slide-counter .current { color: var(--foreground); }

.slide-arrows {
  display: flex;
  gap: 8px;
}

.slide-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--foreground);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.slide-arrow:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ============================================
   Hero Mobile / Responsive
   ============================================ */
@media (max-width: 768px) {
  :root { --controls-height: 72px; }

  .nav-container { width: min(calc(100% - 64px), 1280px); }

  .mobile-menu-button { display: flex; }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 24px 32px 28px;
    background: rgba(10, 15, 11, 0.92);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }
  .nav-links a { font-size: 18px; font-weight: 700; letter-spacing: 0.1em; }
  .donate-button { margin-top: 4px; padding: 12px 20px; font-size: 14px !important; }

  .mobile-menu-toggle:checked ~ .nav-links { display: flex; }
  .mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

  .hero { height: 780px; }

  .slide-content {
    top: var(--nav-height);
    bottom: var(--controls-height);
    width: min(calc(100% - 64px), 1280px);
    padding: 25px 0;
  }

  .slide-1-layout { grid-template-columns: 1fr; gap: 24px; }
  .slide-1-layout .funding-card { transform: none; }
  .slide-1-title { font-size: clamp(3rem, 11vw, 4.6rem); }
  .slide-heading { font-size: clamp(3rem, 11vw, 4.6rem); }
  .slide-body { font-size: 15px; }

  .slide[data-index="1"] .slide-content,
  .slide[data-index="2"] .slide-content,
  .slide[data-index="3"] .slide-content {
    align-items: center;
    padding: 20px 0;
  }
  .slide[data-index="1"] .slide-heading { font-size: clamp(2.8rem, 10vw, 4.2rem); line-height: 0.86; }

  .funding-card { padding: 18px; }
  .slide-btns { flex-direction: column; }
  .funding-card .slide-btns { flex-direction: column; }

  .slideshow-controls { width: min(calc(100% - 64px), 1280px); }
}

@media (max-width: 600px) {
  .hero { height: 760px; }
  .slide-content { width: calc(100% - 48px); padding: 15px 0; }
  .slide-1-title,
  .slide-heading { font-size: clamp(2.7rem, 14vw, 3.9rem); }
  .slide-label { font-size: 14px; }
  .slide-body { font-size: 15px; }
  .slideshow-controls { width: calc(100% - 48px); }
  .slide-counter { display: none; }
  .slide-dot { width: 10px; height: 10px; border-radius: 50%; }
  .slide-dot.active { width: 10px; height: 10px; }
  .slide-arrow { width: 40px; height: 40px; }
}

/* ============================================
   About Section (bdcs.org Bishop Dunne style,
   apex dark colors)
   ============================================ */
.about-section {
  padding: 110px 80px;
}

.about-header {
  margin-bottom: 28px;
}

.about-eyebrow {
  margin-bottom: 10px;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--foreground);
}

.about-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin-bottom: 20px;
}

.about-footer {
  position: relative;
  margin-top: 36px;
}

.about-footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 394px;
  height: 1px;
  background: rgb(205, 205, 205);
  transform: translateY(-50%);
}

.about-footer a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: var(--primary);
  background: var(--background);
  border: 1px solid var(--primary);
  border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.about-footer a:hover {
  background: hsl(128 57% 51% / 0.15);
}

/* ============================================
   Pillars Section (BDC-style hover cards)
   ============================================ */
.pillars-section {
  padding: 100px 80px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pillars-header {
  text-align: center;
  margin-bottom: 60px;
}

.pillars-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3bc94e;
  margin-bottom: 20px;
}

.pillars-header h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.pillars-header p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
}

.pillars-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.pillar-card {
  position: relative;
  width: 320px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.pillar-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.pillar-card:hover .pillar-card-bg {
  transform: scale(1.05);
}

/* Gradient overlay at bottom */
.pillar-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 90%);
  z-index: 1;
}

/* Color overlay on hover */
.pillar-card-color {
  position: absolute;
  inset: 0;
  background: var(--pillar-color, #3bc94e);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-card-color {
  opacity: 0.92;
}

/* Title (visible by default, slides out on hover) */
.pillar-card-title {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.pillar-card:hover .pillar-card-title {
  transform: translateX(-200%);
  opacity: 0;
}

.pillar-card-title h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Description (hidden by default, slides in on hover) */
.pillar-card-desc {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 28px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.pillar-card:hover .pillar-card-desc {
  transform: translateX(0);
  opacity: 1;
}

.pillar-card-desc .pillar-num {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pillar-card-desc h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.pillar-card-desc p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Arrow icon */
.pillar-card-arrow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.pillar-card:hover .pillar-card-arrow {
  opacity: 1;
  transform: translateX(-50%) translateY(-20px);
}

.pillar-card-arrow svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--pillar-color, #3bc94e);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 1000px) {
  .pillars-section { padding: 60px 40px; }
  .pillars-grid { flex-direction: column; align-items: center; }
  .pillar-card { width: 100%; max-width: 400px; height: 400px; }
}

@media (max-width: 600px) {
  .pillar-card { height: 360px; }
  .pillar-card-title h3 { font-size: 1.6rem; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-family: 'Nunito Sans', sans-serif;
}
.site-footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.site-footer a:hover { color: #fff; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2.2fr;
  gap: 64px;
  align-items: start;
}

/* brand block */
.footer-logo { display: inline-block; }
.footer-logo img { height: 26px; width: auto; }
.footer-tagline {
  margin-top: 14px;
  max-width: 300px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
.footer-form {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 360px;
  padding: 5px 5px 5px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.15s;
}
.footer-form:focus-within { border-color: rgba(255,255,255,0.4); }
.footer-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.32); }
.footer-form button {
  flex-shrink: 0;
  height: 36px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.footer-form button:hover { background: rgba(255,255,255,0.85); }
.footer-note {
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
}

/* link columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
}
.footer-col-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-soon { font-size: 0.875rem; line-height: 1.4; }
.footer-soon { color: rgba(255,255,255,0.3); }

/* bottom bar */
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-top {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0 8px;
  color: rgba(255,255,255,0.4);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: color 0.15s;
}
.footer-top:hover { color: #fff; }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { padding: 56px 32px 32px; }
  .footer-bottom { margin-top: 48px; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-form { max-width: 100%; }
}

/* ============================================
   Logo Marquee
   ============================================ */
.marquee-section {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.marquee-label {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 48px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.marquee-item:hover {
  opacity: 0.8;
}
.marquee-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
}
.marquee-item img[src*="lavadev"] {
  height: 64px;
}
  transition: filter 0.3s;
.marquee-item:hover img {
  filter: grayscale(0) brightness(1);
}
.marquee-item span {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Scrollbar Hide
   ============================================ */
.scrollable-element {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollable-element::-webkit-scrollbar {
  display: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1000px) {
  .about-section { padding: 60px 40px; }
  .mission-inner { padding: 0 40px; }
  .mission-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Phone
   ============================================ */
@media (max-width: 600px) {
  .about-section,
  .pillars-section,
  .facts-section {
    padding-left: 20px;
    padding-right: 20px;
  }

}