/* ═══════════════════════════════════════════════════════════════
   DEMOLITION GROUP OF AMERICA — Patriotic White Theme
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & ROOT ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core Palette */
  --red:          #CC2027;
  --red-dark:     #a81a20;
  --red-light:    #e8353c;
  --red-tint:     rgba(204,32,39,0.08);
  --red-tint2:    rgba(204,32,39,0.15);

  --blue:         #003087;
  --blue-dark:    #002068;
  --blue-light:   #1a4aad;
  --blue-tint:    rgba(0,48,135,0.08);
  --blue-tint2:   rgba(0,48,135,0.15);

  --white:        #ffffff;
  --off-white:    #f7f8fa;
  --light-gray:   #eef0f4;
  --mid-gray:     #d1d5de;
  --text-dark:    #0d1117;
  --text-body:    #3a3f4a;
  --text-muted:   #6b7280;

  /* UI */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --shadow-red:   0 8px 32px rgba(204,32,39,0.25);
  --shadow-blue:  0 8px 32px rgba(0,48,135,0.25);

  --radius:       6px;
  --radius-lg:    14px;
  --radius-xl:    20px;

  --ff-display:   'Bebas Neue', sans-serif;
  --ff-condensed: 'Barlow Condensed', sans-serif;
  --ff-body:      'Inter', sans-serif;

  --nav-h:        78px;
  --section-pad:  clamp(80px, 10vw, 120px);
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text-body);
  font-family: var(--ff-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.text-red  { color: var(--red); }
.text-blue { color: var(--blue); }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section   { padding: var(--section-pad) 0; position: relative; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(204,32,39,0.35);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,48,135,0.35);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ───────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--ff-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::before { display: none; }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
.delay-1 { transition-delay: 0.10s !important; }
.delay-2 { transition-delay: 0.22s !important; }
.delay-3 { transition-delay: 0.34s !important; }
.delay-4 { transition-delay: 0.46s !important; }

/* ══════════════════════════════════════════════════════════════════
   TOP BANNER
══════════════════════════════════════════════════════════════════ */
.top-banner {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-family: var(--ff-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}
.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.top-banner-inner .fa-star { color: var(--red); font-size: 0.6rem; }

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, #fff 33%, #fff 66%, var(--blue) 66%, var(--blue) 100%) 1;
  transition: box-shadow 0.3s ease, top 0.3s ease;
}
.navbar.scrolled {
  top: 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--ff-condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.logo-sub {
  font-family: var(--ff-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--ff-condensed);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 24px 120px;
  background: var(--text-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 50%, rgba(204,32,39,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 85% 50%, rgba(0,48,135,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(0,48,135,0.1) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  15%  { opacity: 0.7; }
  85%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: 30px;
}
.badge-star { color: var(--red); font-size: 0.55rem; }

.hero-logo-wrap {
  margin: 0 auto 28px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  box-shadow:
    0 0 0 4px rgba(204,32,39,0.4),
    0 0 0 8px rgba(0,48,135,0.25),
    0 0 60px rgba(204,32,39,0.45),
    0 0 120px rgba(0,48,135,0.3);
}
.hero-logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
}
.title-red {
  color: var(--red);
  text-shadow: 0 0 60px rgba(204,32,39,0.5);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  margin-top: 72px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat-item {
  text-align: center;
  padding: 28px 48px;
  flex: 1;
  position: relative;
}
.stat-item:nth-child(1) { background: var(--red); }
.stat-item:nth-child(3) { background: var(--blue); }
.stat-item:nth-child(1) .stat-num,
.stat-item:nth-child(1) .stat-label,
.stat-item:nth-child(1) .stat-suffix,
.stat-item:nth-child(3) .stat-num,
.stat-item:nth-child(3) .stat-label,
.stat-item:nth-child(3) .stat-suffix { color: var(--white); }

.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider { width: 1px; background: var(--light-gray); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 48px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
  transition: border-color 0.3s;
}
.scroll-indicator:hover { border-color: var(--red); }
.scroll-dot {
  width: 4px; height: 10px;
  background: var(--red);
  border-radius: 4px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: 0.3; }
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 18px;
  font-size: 1rem;
}
.lead-text {
  font-size: 1.12rem !important;
  font-weight: 500;
  color: var(--text-dark) !important;
  line-height: 1.8;
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin-bottom: 28px !important;
}

.about-callout {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 28px;
}
.about-callout .fa-quote-left {
  font-size: 1.3rem;
  color: var(--blue);
  opacity: 0.6;
  margin-bottom: 10px;
  display: block;
}
.about-callout blockquote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.visual-card {
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.card-red {
  background: var(--off-white);
  border-color: var(--light-gray);
}
.card-red:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateX(6px);
}
.card-blue {
  background: var(--blue);
  border-color: var(--blue);
}
.card-blue .card-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.card-blue h3, .card-blue p { color: var(--white) !important; }
.card-blue p { opacity: 0.85; }
.card-blue:hover { transform: translateX(6px); box-shadow: var(--shadow-blue); }

.card-icon {
  width: 44px; height: 44px;
  background: var(--red-tint2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 14px;
  transition: var(--transition);
}
.card-red:hover .card-icon { background: var(--red); color: var(--white); }

.visual-card h3 {
  font-family: var(--ff-condensed);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.visual-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════════
   PILLARS
══════════════════════════════════════════════════════════════════ */
.pillars { background: var(--off-white); }
.pillars-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(204,32,39,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(0,48,135,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pillar-red:hover  { border-color: var(--red);  box-shadow: 0 20px 60px rgba(204,32,39,0.15); }
.pillar-blue:hover { border-color: var(--blue); box-shadow: 0 20px 60px rgba(0,48,135,0.15); }

.pillar-featured {
  background: var(--blue);
  border-color: var(--blue);
}
.pillar-featured .pillar-number { color: rgba(255,255,255,0.06); }
.pillar-featured .pillar-content h3 { color: var(--white); }
.pillar-featured .pillar-content p  { color: rgba(255,255,255,0.75); }
.pillar-featured .pillar-features li { color: rgba(255,255,255,0.85); }
.pillar-featured .pillar-features li .fa-check-circle { color: #7aadff; }
.pillar-featured .pillar-accent-bar { background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent); }

.pillar-number {
  font-family: var(--ff-display);
  font-size: 5.5rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 12px; right: 18px;
  letter-spacing: 0.02em;
  user-select: none;
  transition: color 0.4s;
}
.pillar-red:hover   .pillar-number { color: rgba(204,32,39,0.07); }
.pillar-blue:not(.pillar-featured):hover .pillar-number { color: rgba(0,48,135,0.07); }

.pillar-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.pillar-red  .pillar-icon-wrap { background: var(--red-tint2);  color: var(--red);  border: 1px solid var(--red-tint2); }
.pillar-blue:not(.pillar-featured) .pillar-icon-wrap { background: var(--blue-tint2); color: var(--blue); border: 1px solid var(--blue-tint2); }
.pillar-featured .pillar-icon-wrap { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

.pillar-red:hover  .pillar-icon-wrap { background: var(--red);  color: var(--white); border-color: var(--red); }
.pillar-blue:not(.pillar-featured):hover .pillar-icon-wrap { background: var(--blue); color: var(--white); border-color: var(--blue); }

.pillar-content { flex: 1; margin-bottom: 24px; }
.pillar-content h3 {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.pillar-content p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

.pillar-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.pillar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-condensed);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-body);
}
.pillar-red  .pillar-features li .fa-check-circle { color: var(--red); }
.pillar-blue:not(.pillar-featured) .pillar-features li .fa-check-circle { color: var(--blue); }

.pillar-accent-bar {
  height: 3px;
  width: 50px;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.pillar-red  .pillar-accent-bar { background: linear-gradient(90deg, var(--red),  transparent); }
.pillar-blue:not(.pillar-featured) .pillar-accent-bar { background: linear-gradient(90deg, var(--blue), transparent); }
.pillar-card:hover .pillar-accent-bar { width: 100%; }

/* ══════════════════════════════════════════════════════════════════
   MISSION
══════════════════════════════════════════════════════════════════ */
.mission { background: var(--white); }

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.mission-left p { color: var(--text-body); margin-bottom: 16px; }
.mission-left strong { color: var(--text-dark); }

.mission-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.value-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.vi-red  { background: var(--red-tint2);  color: var(--red); }
.vi-blue { background: var(--blue-tint2); color: var(--blue); }
.value-item:hover .vi-red  { background: var(--red);  color: var(--white); }
.value-item:hover .vi-blue { background: var(--blue); color: var(--white); }

.value-text h4 {
  font-family: var(--ff-condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.value-text p { color: var(--text-muted); font-size: 0.87rem; margin: 0; }

/* Mission Statement Card */
.mission-statement-card {
  background: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.mission-statement-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(204,32,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mission-statement-card::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,48,135,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ms-flag-bar {
  display: flex;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 28px;
}
.flag-red   { flex: 1; background: var(--red); }
.flag-white { flex: 1; background: var(--white); }
.flag-blue  { flex: 1; background: var(--blue); }

.ms-logo-row {
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.ms-logo {
  width: 140px; height: 140px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 4px 24px rgba(204,32,39,0.35);
}

.ms-tag {
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
  position: relative; z-index: 1;
}

.ms-quote {
  font-family: var(--ff-condensed);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  font-style: italic;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}

.ms-line { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 28px; }

.ms-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative; z-index: 1;
}
.ms-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.ms-metric i { font-size: 0.95rem; }
.ms-red  i { color: var(--red); }
.ms-blue i { color: #7aadff; }

/* ══════════════════════════════════════════════════════════════════
   NETWORK
══════════════════════════════════════════════════════════════════ */
.network { background: var(--off-white); }
.network-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(204,32,39,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.network-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
  position: relative; z-index: 1;
}

.network-node {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.node-red:hover  { border-color: var(--red);  box-shadow: var(--shadow-red);  transform: translateY(-6px); }
.node-blue:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-6px); }

.node-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.node-red  .node-icon { background: var(--red-tint2);  color: var(--red);  border: 2px solid rgba(204,32,39,0.15); }
.node-blue .node-icon { background: var(--blue-tint2); color: var(--blue); border: 2px solid rgba(0,48,135,0.15); }
.node-red:hover  .node-icon { background: var(--red);  color: var(--white); border-color: var(--red); }
.node-blue:hover .node-icon { background: var(--blue); color: var(--white); border-color: var(--blue); }

.network-node h4 {
  font-family: var(--ff-condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.network-node p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; }

.network-connector {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.connector-line { flex: 1; height: 2px; }
.connector-red  { background: linear-gradient(90deg, transparent, var(--red)); }
.connector-blue { background: linear-gradient(90deg, var(--blue), transparent); }
.connector-center {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--white);
  padding: 4px;
  box-shadow: 0 0 0 4px var(--red), 0 0 0 8px var(--blue), var(--shadow-lg);
  isolation: isolate;
}
.connector-center img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.ecosystem-banner {
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative; z-index: 1;
  display: flex;
  align-items: stretch;
}
.eb-stripe { width: 6px; flex-shrink: 0; }
.eb-red    { background: var(--red); }
.eb-blue   { background: var(--blue); }
.ecosystem-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
}
.ecosystem-text .fa-infinity { font-size: 2rem; color: var(--red); flex-shrink: 0; }
.ecosystem-text p { font-size: 1.02rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }
.ecosystem-text strong { color: var(--white); }

/* ══════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════ */
.contact { background: var(--white); }
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(204,32,39,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 100% 0%,  rgba(0,48,135,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  position: relative; z-index: 1;
}

.contact-left p { color: var(--text-body); margin-bottom: 16px; }

.contact-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}
.perk .fa-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.perk-red  .fa-check { background: var(--red-tint2);  color: var(--red);  border: 1px solid rgba(204,32,39,0.25); }
.perk-blue .fa-check { background: var(--blue-tint2); color: var(--blue); border: 1px solid rgba(0,48,135,0.2); }

.contact-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
}
.contact-badge-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
  box-shadow: var(--shadow-sm);
}
.contact-badge strong {
  display: block;
  font-family: var(--ff-condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.contact-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--ff-condensed);
  letter-spacing: 0.05em;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.form-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--light-gray);
  background: var(--off-white);
}
.form-header-bar {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
.fh-red   { flex: 1; background: var(--red); }
.fh-white { flex: 1; background: var(--mid-gray); }
.fh-blue  { flex: 1; background: var(--blue); }

.form-header h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form-header p { color: var(--text-muted); font-size: 0.9rem; }

.contact-form .form-body { padding: 28px 36px 36px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--ff-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mid-gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,32,39,0.1);
  background: var(--white);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background: rgba(0,48,135,0.05);
  border: 1px solid rgba(0,48,135,0.2);
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-success.visible { display: flex; }
.form-success .fa-circle-check { font-size: 2.2rem; color: var(--blue); }
.form-success p {
  color: var(--text-dark);
  font-family: var(--ff-condensed);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding-bottom: 32px;
}

.footer-flag-bar {
  display: flex;
  height: 6px;
}
.ff-red   { flex: 1; background: var(--red); }
.ff-white { flex: 1; background: rgba(255,255,255,0.3); }
.ff-blue  { flex: 1; background: var(--blue); }

.footer .container { padding-top: 56px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 90px; height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  box-shadow: 0 0 0 3px rgba(204,32,39,0.5), 0 0 0 6px rgba(0,48,135,0.35);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.footer-logo-name {
  display: block;
  font-family: var(--ff-condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo-sub {
  display: block;
  font-family: var(--ff-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-motto {
  margin-top: 14px !important;
  font-family: var(--ff-condensed);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  opacity: 0.85;
  font-size: 0.85rem !important;
}
.footer-motto .fa-star { color: var(--red); font-size: 0.55rem; vertical-align: middle; margin: 0 6px; }

.footer-links h4,
.footer-pillars h4 {
  font-family: var(--ff-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-links ul li a:hover { color: var(--white); }

.footer-pillars ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.fp-red  { color: var(--red)  !important; font-size: 0.5rem !important; }
.fp-blue { color: #7aadff    !important; font-size: 0.5rem !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-tagline  { font-style: italic; color: var(--red) !important; opacity: 0.8; }

/* form body padding */
.contact-form .form-body { padding: 28px 36px 36px; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid  { grid-template-columns: 1fr; gap: 18px; }
  .network-nodes { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about-grid,
  .mission-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual  { position: static; }
  .mission-statement-card { padding: 36px 28px; }
  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 768px) {
  .top-banner { font-size: 0.68rem; padding: 7px 12px; }
  .navbar { top: 32px; }
  .navbar.scrolled { top: 0; }

  .nav-links {
    position: fixed;
    top: calc(32px + var(--nav-h));
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0 28px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .navbar.scrolled + * .nav-links,
  .nav-links { top: calc(32px + var(--nav-h)); }
  .navbar.scrolled .nav-links { top: var(--nav-h); }
  .nav-links li { width: 100%; text-align: center; padding: 11px 24px; }
  .nav-link { display: block; font-size: 1rem; }
  .nav-link.nav-cta { display: inline-flex; margin-top: 8px; }
  .hamburger { display: flex; }

  .hero-stats { flex-direction: column; border-radius: var(--radius-lg); }
  .stat-item  { padding: 22px; }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { padding: 22px; }

  .network-nodes { grid-template-columns: 1fr 1fr; }
  .ms-metrics { grid-template-columns: 1fr; }
  .ecosystem-text { flex-direction: column; text-align: center; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-logo-wrap { width: 180px; height: 180px; }
  .network-nodes { grid-template-columns: 1fr; }
  .contact-form .form-body { padding: 20px; }
  .form-header { padding: 24px 20px 18px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
