/* ============================================================
   America Smiles — Main Stylesheet
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --clr-primary:      #FF5200;
  --clr-primary-dark: #e04800;
  --clr-navy:         #1e2a4a;
  --clr-dark:         #111827;
  --clr-text:         #374151;
  --clr-muted:        #6b7280;
  --clr-border:       #e5e7eb;
  --clr-bg:           #ffffff;
  --clr-bg-soft:      #f9fafb;
  --clr-bg-warm:      #fff8f5;
  --banner-h:         40px;
  --nav-h:            70px;
  --header-h:         110px; /* banner + nav */
  --radius:           12px;
  --radius-lg:        24px;
  --shadow-sm:        0 2px 8px rgba(0,0,0,.06);
  --shadow-md:        0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:        0 20px 60px rgba(0,0,0,.13);
  --ease:             all .3s ease;
  --font-head:        'Raleway', sans-serif;
  --font-body:        'Open Sans', sans-serif;
}

/* ===== PAGE TRANSITION ===== */
/*
  html gets the navy background so when body fades to opacity:0
  the user sees brand color — not a white flash — between pages.
*/
@keyframes pageIn {
  0%   { opacity: 0; transform: scale(0.96) translateY(10px); }
  100% { opacity: 1; transform: scale(1)    translateY(0);    }
}
@keyframes pageOut {
  0%   { opacity: 1; transform: scale(1);    }
  100% { opacity: 0; transform: scale(1.04); }
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #1e2a4a; /* navy shows behind content while it fades — no white flash */
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-text);
  background: transparent; /* let html navy show through during transitions */
  -webkit-font-smoothing: antialiased;
}

/* Only the page content animates — navbar stays fixed and always visible */
#page-content {
  animation: pageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
#page-content.page-leaving {
  animation: pageOut 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  #page-content, #page-content.page-leaving { animation: none !important; }
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--clr-navy); line-height: 1.25; }
a { color: var(--clr-primary); text-decoration: none; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; }

/* ===== SELECTION ===== */
::selection { background: var(--clr-primary); color: #fff; }

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: #fff5f8;
  /* border-bottom: 1px solid #f9b8cc; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  transition: transform .35s ease, opacity .35s ease;
}
.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #7a2040;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}
.announce-icon { color: #e8325a; font-size: 14px; }
.announce-text { line-height: 1.4; }
.announce-link {
  color: #e8325a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.announce-link:hover { color: #c01f44; }
.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #c06080;
  font-size: 14px;
  padding: 6px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  line-height: 1;
}
.announce-close:hover { color: #7a2040; background: rgba(232,50,90,.1); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 2px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .3s ease;
}
.site-nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.12); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 60px; width: auto; object-fit: contain; border-radius: 8px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--clr-bg-soft); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--clr-text);
  transition: var(--ease);
  white-space: nowrap;
}
.nav-link .fa {
  font-size: 13px;
  opacity: .75;
  transition: opacity .2s;
  flex-shrink: 0;
}
.nav-link:hover .fa        { opacity: 1; }
.nav-link.active .fa       { opacity: 1; }
.nav-link:hover        { background: var(--clr-bg-soft); color: var(--clr-primary); }
.nav-link.active       { background: var(--clr-primary); color: #fff; }
.nav-link.active:hover { background: var(--clr-primary-dark); color: #fff; }

.nav-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
  box-shadow: 0 3px 12px rgba(255,82,0,.3);
  flex-shrink: 0;
}
.nav-donate-btn:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,82,0,.4);
}
.nav-donate-btn .fa { font-size: 12px; }

/* Home — App strip */
.home-app-strip {
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  padding: 48px 28px;
}
.home-app-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.home-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5200, #FF8040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255,82,0,.3);
}
.home-app-text { flex: 1; min-width: 200px; }
.home-app-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 6px;
}
.home-app-desc {
  font-size: .95rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ============================================================
   SECTIONS — multi-page (always visible)
   ============================================================ */
.page-section {
  display: block;
  padding-top: var(--nav-h);
  scroll-margin-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.page-section--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
}

/* Legacy SPA classes — kept for compatibility */
.site-section {
  display: none;
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--header-h);
}
.site-section.active-section        { display: block; }
.site-section--centered             { display: none; }
.site-section--centered.active-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HOME SECTION
   ============================================================ */
#home {
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slideshow */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30,42,74,.78) 0%,
    rgba(255,82,0,.42) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 100px 24px 36px;
  text-align: center;
}

.hero-logo-wrap { margin-bottom: 36px; }
.hero-logo {
  height: 110px;
  width: auto;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.32);
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
  margin-bottom: 14px;
  max-width: 820px;
  line-height: 1.3;
}
.hero-accent { color: #ff9060; }

.hero-subtitle {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,.88);
  font-weight: 400;
  letter-spacing: .5px;
  max-width: 900px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 11px 28px;
  border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.hero-btn--primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,82,0,.4);
}
.hero-btn--primary:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,82,0,.5);
}
.hero-btn--outline {
  background: rgba(255,255,255,.95);
  color: var(--clr-primary);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.hero-btn--outline:hover {
  background: #fff;
  color: var(--clr-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.hero-dots { display: flex; gap: 10px; justify-content: center; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  border: none;
  padding: 0;
  transition: var(--ease);
}
.dot.active       { background: #fff; transform: scale(1.35); }
.dot:hover        { background: rgba(255,255,255,.7); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: #fff5f8; position: relative; overflow: hidden; }

/* ---- Decorative floating symbols ---- */
.deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.deco-item {
  position: absolute;
  font-style: normal;
  line-height: 1;
  animation: decoFloat 5s ease-in-out infinite alternate;
}

/* Hearts */
.deco-heart-lg  { font-size: 52px; color: rgba(255,130,100,.22); animation-duration: 6s; }
.deco-heart-md  { font-size: 36px; color: rgba(255,82,0,.18);    animation-duration: 7s; animation-delay: .8s; }
.deco-heart-sm  { font-size: 24px; color: rgba(255,130,100,.25); animation-duration: 5s; animation-delay: 1.5s; }
.deco-heart-xs  { font-size: 16px; color: rgba(255,82,0,.2);     animation-duration: 8s; animation-delay: .4s; }

/* Stars */
.deco-star      { font-size: 28px; color: rgba(255,180,0,.3);    animation-duration: 6.5s; animation-delay: 1s; }
.deco-star-sm   { font-size: 18px; color: rgba(255,180,0,.22);   animation-duration: 7.5s; animation-delay: 2s; }

/* Paper plane */
.deco-plane     { font-size: 30px; color: rgba(100,160,255,.28); animation-duration: 8s;   animation-delay: .6s; }

/* Sparkle */
.deco-sparkle   { font-size: 20px; color: rgba(255,82,0,.2);     animation-duration: 4.5s; animation-delay: 1.2s; }

@keyframes decoFloat {
  0%   { transform: translateY(0)    rotate(0deg);   }
  50%  { transform: translateY(-10px) rotate(5deg);  }
  100% { transform: translateY(4px)  rotate(-4deg);  }
}

/* Keep section content above decorations */
.section-wrap { position: relative; z-index: 1; }

/* Home page deco — lifted above hero overlay, white/gold tones for dark background */
#home .deco { z-index: 2; }
#home .deco-heart-lg,
#home .deco-heart-md,
#home .deco-heart-sm,
#home .deco-heart-xs { color: rgba(255,255,255,.22); }
#home .deco-star      { color: rgba(255,210,80,.3); }
#home .deco-star-sm   { color: rgba(255,210,80,.22); }
#home .deco-plane     { color: rgba(200,220,255,.28); }
#home .deco-sparkle   { color: rgba(255,255,255,.25); }

/* App hero deco — soft blue tones on light blue background */
.app-hero-section .deco-heart-lg,
.app-hero-section .deco-heart-md,
.app-hero-section .deco-heart-sm,
.app-hero-section .deco-heart-xs { color: rgba(37,99,235,.12); }
.app-hero-section .deco-star      { color: rgba(59,130,246,.22); }
.app-hero-section .deco-star-sm   { color: rgba(59,130,246,.16); }
.app-hero-section .deco-plane     { color: rgba(147,197,253,.28); }
.app-hero-section .deco-sparkle   { color: rgba(37,99,235,.16); }

/* Demo hero deco — white/gold tones on dark navy background */
.demo-hero-section .deco-heart-lg,
.demo-hero-section .deco-heart-md,
.demo-hero-section .deco-heart-sm,
.demo-hero-section .deco-heart-xs { color: rgba(255,255,255,.1); }
.demo-hero-section .deco-star      { color: rgba(255,210,80,.22); }
.demo-hero-section .deco-star-sm   { color: rgba(255,210,80,.16); }
.demo-hero-section .deco-plane     { color: rgba(200,220,255,.2); }
.demo-hero-section .deco-sparkle   { color: rgba(255,255,255,.16); }

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 80px 28px 72px; */
  padding: 20px;
}

/* Tag badge */
.section-tag {
  display: inline-block;
  background: var(--clr-bg-warm);
  color: var(--clr-primary);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,82,0,.18);
  margin-bottom: 14px;
}

/* --- Two-column layout --- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 28px;
}

.about-slogan {
  font-family: var(--font-head);
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--clr-primary) !important;
  letter-spacing: 0.4px;
  margin-top: 8px !important;
  opacity: 0.9;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--clr-primary); font-weight: 600; }

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

/* Decorative ring */
.about-visual::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--clr-primary);
  border-radius: calc(var(--radius-lg) + 10px);
  opacity: .18;
  pointer-events: none;
}

/* --- In The News --- */
.news-section {
  padding-top: 64px;
  border-top: 1px solid var(--clr-border);
}

.news-header {
  text-align: center;
  margin-bottom: 52px;
}
.news-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.news-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.news-card {
  display: flex;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  color: inherit;
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
  color: inherit;
}

.news-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.news-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--clr-primary);
  margin-bottom: 18px;
  transition: var(--ease);
  flex-shrink: 0;
}
.news-card:hover .news-icon { background: var(--clr-primary); color: #fff; }

.news-pub {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.news-headline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-navy);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}

.news-cta {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .4px;
  transition: gap .25s ease;
}
.news-card:hover .news-cta { gap: 10px; }

/* ============================================================
   WHAT WE ARE SECTION (Home page)
   ============================================================ */
.what-section {
  background: linear-gradient(155deg, #fff6ef 0%, #f5f0ff 55%, #eef6ff 100%);
  padding: 60px 28px 52px;
  position: relative;
  overflow: hidden;
}

.what-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.what-header {
  margin-bottom: 32px;
}
.what-header .section-tag { margin-bottom: 14px; }

.what-heading {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.25;
  margin-bottom: 28px;
}
.br-desktop { display: block; }

.what-rule {
  width: 56px;
  height: 4px;
  background: var(--clr-primary);
  border-radius: 4px;
  margin: 0 auto;
}

.what-body {
  max-width: 660px;
  margin-bottom: 36px;
}
.what-body p {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.what-body p:last-child { margin-bottom: 0; }
.what-body strong { color: var(--clr-primary); font-weight: 600; }

.what-lead {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--clr-navy) !important;
}

.what-mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff8f5 0%, #fff0e8 100%);
  border: 1px solid rgba(255,82,0,.15);
  border-radius: var(--radius);
  padding: 24px 40px;
  width: auto;
  max-width: 520px;
  position: relative;
  overflow: hidden;
}
.what-mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), #ff9060);
  border-radius: 3px 3px 0 0;
}

.what-mission-icon {
  font-size: 26px;
  color: var(--clr-primary);
  opacity: .85;
}

.what-mission-text {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--clr-navy);
  font-style: normal;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 600px) {
  .what-section { padding: 72px 20px; }
  .br-desktop { display: none; }
  .what-mission { padding: 18px 24px; max-width: 100%; }
  .what-mission-text { font-size: 1rem; }
}

/* ============================================================
   HOW IT WORKS SECTION (Home page)
   ============================================================ */
.how-section {
  background: #f9fafb;
  border-top: 1px solid var(--clr-border);
  padding: 80px 40px 88px;
  position: relative;
  overflow: hidden;
}

.how-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 16px;
}

.how-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.85;
}

/* Three-column step cards */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 28px;
}

.how-step {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.how-step--scan    { border-top: 4px solid var(--clr-primary); }
.how-step--discover { border-top: 4px solid #7c3aed; }
.how-step--connect  { border-top: 4px solid #0d9488; }

.how-step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.how-step-badge--scan     { background: var(--clr-primary); box-shadow: 0 4px 14px rgba(255,82,0,.35); }
.how-step-badge--discover { background: #7c3aed; box-shadow: 0 4px 14px rgba(124,58,237,.35); }
.how-step-badge--connect  { background: #0d9488; box-shadow: 0 4px 14px rgba(13,148,136,.35); }

.how-step-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.how-step-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: .93rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 0;
}
.how-step-desc strong { color: var(--clr-primary); }

.how-examples-strip {
  margin-top: 40px;
  text-align: center;
}

.how-eg-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-muted);
  margin-bottom: 16px;
}

.how-eg-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.how-eg-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: .88rem;
  color: var(--clr-text);
  line-height: 1.4;
}
.how-eg-chip--scan    { border-left: 3px solid var(--clr-primary); }
.how-eg-chip--discover { border-left: 3px solid #7c3aed; }
.how-eg-chip--connect  { border-left: 3px solid #0d9488; }

@media (max-width: 860px) {
  .how-section { padding: 60px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .how-step { align-items: flex-start; text-align: left; }
  .how-step-badge { margin-bottom: 12px; }
  .how-eg-chips { flex-direction: column; align-items: stretch; }
  .how-eg-chip { border-radius: 12px; }
}

/* ---- Impact Stat ---- */
.impact-stat-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.impact-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
  border: 2px solid rgba(255,82,0,.22);
  border-radius: 60px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-navy);
  box-shadow: 0 4px 16px rgba(255,82,0,.1);
}
.impact-stat-emoji { font-size: 1.6rem; line-height: 1; }

/* ---- Quotes Grid ---- */
.quotes-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 24px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,82,0,.3);
}
.quote-card--media {
  border-top: 3px solid var(--clr-primary);
}
.quote-card--community {
  border-top: 3px solid #0d9488;
}

.quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: .8;
  color: var(--clr-primary);
  opacity: .18;
  display: block;
  margin-bottom: 4px;
  user-select: none;
}
.quote-card--community .quote-mark { color: #0d9488; }

.quote-text {
  flex: 1;
  font-size: .97rem;
  color: var(--clr-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.quote-source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.4;
}
.quote-source-bar {
  flex-shrink: 0;
  width: 20px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}
.quote-card--community .quote-source-bar { background: #0d9488; }

@media (max-width: 640px) {
  .quotes-grid { grid-template-columns: 1fr; }
  .impact-stat { font-size: 1rem; padding: 12px 24px; }
}

/* ============================================================
   APP & DONATION CTA SECTIONS
   ============================================================ */
#app      { background: var(--clr-bg-soft); min-height: calc(100vh - var(--nav-h)); }
#donation { background: linear-gradient(160deg, var(--clr-bg-warm) 0%, var(--clr-bg-soft) 100%); min-height: calc(100vh - var(--nav-h)); }

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 28px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.cta-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
  margin-bottom: 32px;
  box-shadow: 0 8px 28px rgba(255,82,0,.35);
}
.cta-icon-wrap--app    { background: linear-gradient(135deg, #FF5200, #FF8040); }
.cta-icon-wrap--donate { background: linear-gradient(135deg, #e04800, #FF5200); }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--clr-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 16px 44px;
  border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 4px 18px rgba(255,82,0,.32);
}
.cta-btn:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,82,0,.42);
}
.cta-btn:active { transform: translateY(0); }

.cta-btn--donate { background: linear-gradient(135deg, #FF5200, #e04800); }
.cta-btn--donate:hover { background: linear-gradient(135deg, #e04800, #c03c00); }

/* ============================================================
   DEMO PAGE
   ============================================================ */
.demo-video-wrap {
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  margin-bottom: 8px;
}

.demo-video {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: contain;
  background: #000;
}

.demo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 28px;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.demo-placeholder {
  width: 100%;
  max-width: 560px;
  background: var(--clr-bg);
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 60px 28px;
  margin-bottom: 8px;
}

.demo-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--clr-muted);
}
.demo-coming-soon .fa {
  font-size: 48px;
  color: var(--clr-border);
}
.demo-coming-soon p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin: 0;
}
.demo-coming-soon span {
  font-size: .95rem;
  color: var(--clr-muted);
  max-width: 320px;
  line-height: 1.6;
}

/* ============================================================
   COLLABORATION TAGS (Contact page)
   ============================================================ */
.collab-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.collab-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,82,0,.22);
  background: #fff;
  color: var(--clr-primary);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
  .collab-section { padding: 72px 20px; }
  .collab-heading { font-size: 1.6rem; }
  .collab-tags { gap: 8px; }
}

/* ============================================================
   NEWSROOM — Press List
   ============================================================ */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.press-entry {
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.press-entry:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}

.press-entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.press-pub-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--clr-primary);
}

.press-type-label {
  font-size: 11px;
  color: var(--clr-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.press-entry-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 6px;
}

.press-entry-desc {
  font-size: .92rem;
  color: var(--clr-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.press-entry-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.press-entry-link:hover { gap: 10px; }

/* ---- Newsroom Announcement Banner ---- */
.newsroom-announcement {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 48px;
}

.newsroom-announcement-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.newsroom-announcement-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.newsroom-announcement-label {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 10px;
  margin-bottom: 4px;
  width: fit-content;
}

.newsroom-announcement-text {
  font-size: .98rem;
  color: #78350f;
  line-height: 1.7;
  margin: 0;
}

.newsroom-announcement-text strong {
  color: #92400e;
  font-weight: 700;
}

/* ---- Proud Moment Hero ---- */
.proud-moment-hero {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #fff8e8 100%);
  border: 1px solid #fcd34d;
  border-left: 5px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proud-moment-hero::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: rgba(245,158,11,.07);
  border-radius: 50%;
  pointer-events: none;
}
.proud-moment-hero-icon { font-size: 3rem; line-height: 1; margin-bottom: 14px; }
.proud-moment-label {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
.proud-moment-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 12px;
}
.proud-moment-desc {
  font-size: 1rem;
  color: #78350f;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Achievement Cards ---- */
.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.achievement-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.achievement-card--gold   { border-top: 4px solid #f59e0b; }
.achievement-card--silver { border-top: 4px solid #7c3aed; }
.achievement-card-icon { font-size: 2.4rem; line-height: 1; margin-bottom: 14px; }
.achievement-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.achievement-badge--gold   { background: #fef3c7; color: #92400e; }
.achievement-badge--silver { background: #f5f3ff; color: #4c1d95; }
.achievement-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.achievement-card-desc {
  font-size: .95rem;
  color: var(--clr-text);
  line-height: 1.78;
  margin: 0;
}
.achievement-card-desc strong { color: var(--clr-primary); }

/* ---- Newsroom Learn More links ---- */
.newsroom-links-block {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.newsroom-links-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 6px;
}
.newsroom-links-desc {
  font-size: .93rem;
  color: var(--clr-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}
.newsroom-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.newsroom-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg-soft);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-navy);
  transition: var(--ease);
  text-decoration: none;
}
.newsroom-link-pill .fa { font-size: 11px; opacity: .75; }
.newsroom-link-pill:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-bg-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 680px) {
  .achievement-grid { grid-template-columns: 1fr; }
  .proud-moment-hero { padding: 28px 24px; }
  .newsroom-links-block { padding: 22px 20px; }
  .newsroom-link-pills { flex-direction: column; }
  .newsroom-link-pill { border-radius: 10px; }
}

/* ---- Presskit note ---- */
.presskit-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--clr-bg-warm);
  border: 1px solid rgba(255,82,0,.18);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.presskit-note-icon {
  font-size: 22px;
  color: var(--clr-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.presskit-note-text {
  font-size: .95rem;
  color: var(--clr-text);
  line-height: 1.6;
  margin: 0;
}
.presskit-note-text strong { color: var(--clr-primary); font-weight: 700; }

.press-bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 32px;
}
.press-bullet-list li {
  font-size: 1rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================================
   DONATION — Support Pillars
   ============================================================ */
.support-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-pillar {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.support-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

.support-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--clr-primary);
  margin: 0 auto 16px;
  transition: background .3s ease, color .3s ease;
}
.support-pillar:hover .support-pillar-icon {
  background: var(--clr-primary);
  color: #fff;
}

.support-pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 10px;
}

.support-pillar-desc {
  font-size: .92rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

@media (max-width: 680px) {
  .support-pillars { grid-template-columns: 1fr; }
}

/* ---- Juju challenge list (App page) ---- */
.juju-challenges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0;
}

.juju-challenge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff8f5;
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-primary);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  color: var(--clr-text);
  font-weight: 500;
}

.juju-spark {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ---- AI Transparency Note ---- */
.ai-transparency-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0f6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 8px;
}

.ai-transparency-icon {
  color: #2563eb;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ai-transparency-text {
  font-size: .9rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 14px 10px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-card-body { flex: 1; }

.contact-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 6px;
}

.contact-card-link {
  font-size: .92rem;
  color: var(--clr-primary);
  word-break: break-word;
}
.contact-card-link:hover { color: var(--clr-primary-dark); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #151e36 0%, #0d1221 100%);
  border-top: 3px solid var(--clr-primary);
  padding: 0 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Top row: logo | links | social */
.footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand-slogan {
  color: rgba(255,255,255,.72);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .4px;
  line-height: 1.65;
  margin: 0;
}
.footer-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  opacity: .88;
  transition: opacity .2s, transform .2s;
}
.footer-logo:hover { opacity: 1; transform: scale(1.04); }

.footer-link {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: color .2s;
  white-space: nowrap;
}
.footer-link:last-of-type { border-right: none; }
.footer-link .fa { font-size: 11px; opacity: .7; }
.footer-link:hover { color: var(--clr-primary); }
.footer-divider { display: none; }
/* ============================================================
   LEGAL SECTION
   ============================================================ */
#legal { background: var(--clr-bg-soft); }

.legal-wrap { max-width: 1100px; }

.legal-header {
  text-align: center;
  margin-bottom: 52px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .25s ease;
}
.legal-card:hover { box-shadow: var(--shadow-md); }

.legal-card--highlight {
  background: var(--clr-bg-warm);
  border-color: rgba(255,82,0,.2);
}

/* Legal card color-accent top borders */
.legal-card--blue   { border-top: 4px solid #2563eb; }
.legal-card--green  { border-top: 4px solid #059669; }
.legal-card--amber  { border-top: 4px solid #d97706; }
.legal-card--purple { border-top: 4px solid #7c3aed; }
.legal-card--red    { border-top: 4px solid #dc2626; }
.legal-card--orange { border-top: 4px solid var(--clr-primary); }

.legal-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.legal-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 12px;
}

.legal-card p {
  font-size: .95rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card strong { color: var(--clr-primary); font-weight: 600; }

.legal-links-block {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-top: 8px;
}

.legal-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin: 10px 0 8px;
}

.legal-links-desc {
  font-size: .95rem;
  color: var(--clr-muted);
  margin-bottom: 18px;
}

.legal-policy-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.legal-policy-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-text);
}
.legal-policy-item .fa-circle {
  font-size: 7px;
  color: var(--clr-primary);
}

/* Learn More action buttons */
.learn-more-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  border: 2px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-navy);
  transition: var(--ease);
  text-decoration: none;
}
.learn-more-btn .fa { font-size: 13px; }
.learn-more-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-bg-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* About founders highlight strip */
.founders-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.founders-stat {
  flex: 1;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.founders-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.founders-stat-label {
  font-size: .82rem;
  color: var(--clr-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* About slogan callout */
.about-slogan-callout {
  background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
  border-left: 4px solid var(--clr-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 24px;
  margin-top: 28px;
}
.about-slogan-callout .about-slogan {
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  margin: 0 !important;
}

/* Legal header subtext */
.legal-header-desc {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.75;
}

/* ============================================================
   FOOTER SOCIAL
   ============================================================ */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: transform .22s ease, opacity .22s ease, box-shadow .22s ease;
  opacity: .75;
}
.social-icon:hover {
  transform: translateY(-3px);
  opacity: 1;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.social-icon--linkedin  { background: #0077b5; }
.social-icon--facebook  { background: #1877f2; }
.social-icon--instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Bottom divider + copyright */
.footer-slogan {
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,.72);
  letter-spacing: 0.6px;
  padding: 10px 0 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 18px;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  color: rgba(255,255,255,.28);
  font-size: 12px;
  margin: 0;
  letter-spacing: .3px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-link { padding: 8px 9px; font-size: 11.5px; letter-spacing: .3px; }
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-visual { order: -1; }
  .about-img-wrap img { height: 300px; }
  .section-wrap { padding: 64px 20px 56px; }
  .contact-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   DEMO HERO — Content Left, Video Right
   ============================================================ */
.demo-hero-section {
  background: linear-gradient(160deg, #0f172a 0%, #1e2a4a 100%);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.demo-hero {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}

.demo-hero-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.demo-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.demo-hero-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 14px;
}

.demo-hero-desc {
  font-size: .97rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.demo-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.demo-btn--primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,82,0,.4);
}
.demo-btn--primary:hover {
  background: var(--clr-primary-dark);
  box-shadow: 0 6px 28px rgba(255,82,0,.5);
  transform: translateY(-2px);
  color: #fff;
}

.demo-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.demo-btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
  color: #fff;
}

.demo-hero-visual {
  flex: 0 0 520px;
  max-width: 520px;
}

.demo-hero-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  background: #000;
  width: 100%;
}

.demo-hero-video {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: contain;
  background: #000;
}

/* ============================================================
   DEMO SHOWCASE — Video Left, Content Right (Section 2)
   ============================================================ */
.demo-showcase-section {
  background: linear-gradient(135deg, #fff5f8 0%, #f0f4ff 100%);
  border-top: 1px solid var(--clr-border);
}

.demo-showcase-wrap {
  max-width: 1160px;
}

.demo-showcase-grid {
  display: flex;
  /* align-items: center; */
  gap: 60px;
}

.demo-showcase-video-col {
  flex: 0 0 54%;
  max-width: 46%;
}

.demo-showcase-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  background: #000;
}

.demo-showcase-video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(255,82,0,.25);
  pointer-events: none;
}

.demo-showcase-video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.demo-showcase-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-showcase-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.demo-showcase-lead {
  font-size: 1.02rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.demo-showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dsf-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-primary), #ff8a50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(255,82,0,.25);
}

.demo-showcase-features li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 3px;
}

.demo-showcase-features li strong {
  font-family: var(--font-head);
  font-size: .97rem;
  font-weight: 700;
  color: var(--clr-dark);
}

.demo-showcase-features li span {
  font-size: .9rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

.demo-btn--showcase {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--clr-primary), #ff8a50);
  color: #fff;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,82,0,.35);
  transition: transform .2s, box-shadow .2s;
  width: fit-content;
}

.demo-btn--showcase:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,82,0,.45);
  color: #fff;
}

.demo-btn--showcase-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.demo-btn--showcase-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   DEMO FEATURE CARDS — full-width grid below video+content
   ============================================================ */
.demo-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.demo-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px 30px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}

.demo-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), #ff8a50);
  border-radius: 20px 20px 0 0;
}

.demo-feature-card--blue::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.demo-feature-card--green::before {
  background: linear-gradient(90deg, #059669, #34d399);
}

.demo-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.11);
}

.demo-feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clr-primary), #ff8a50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(255,82,0,.28);
}

.demo-feature-card--blue .demo-feature-card-icon {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 6px 16px rgba(37,99,235,.28);
}

.demo-feature-card--green .demo-feature-card-icon {
  background: linear-gradient(135deg, #059669, #34d399);
  box-shadow: 0 6px 16px rgba(5,150,105,.28);
}

.demo-feature-card-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin: 0;
  line-height: 1.3;
}

.demo-feature-card-desc {
  font-size: .9rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   APP HERO — Image Left, Content Right
   ============================================================ */
.app-hero-section {
  background: linear-gradient(160deg, #f0f6ff 0%, #f9fafb 100%);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.app-hero {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}

.app-hero-visual {
  flex: 0 0 440px;
  max-width: 440px;
  display: flex;
}

.app-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #dbeafe;
  width: 100%;
  flex: 1;
}

.app-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.app-hero-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.app-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.15;
  margin-bottom: 18px;
}

.app-hero-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2563eb;
  line-height: 1.6;
  margin-bottom: 16px;
}

.app-hero-desc {
  font-size: 1rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.app-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.app-btn--primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.app-btn--primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 26px rgba(37,99,235,.45);
  transform: translateY(-2px);
  color: #fff;
}

.app-btn--outline {
  background: transparent;
  color: var(--clr-navy);
  border: 2px solid var(--clr-navy);
}
.app-btn--outline:hover {
  background: var(--clr-navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   DONATION HERO — Two-Column Layout
   ============================================================ */
.donation-hero-section {
  background: linear-gradient(160deg, #fff8f5 0%, #f9fafb 100%);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.donation-hero {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}

.donation-hero-text {
  flex: 1 1 0;
  min-width: 0;
}

.donation-hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(255,82,0,.08);
  border: 1px solid rgba(255,82,0,.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.donation-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.15;
  margin-bottom: 18px;
}

.donation-hero-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d9488;
  line-height: 1.6;
  margin-bottom: 16px;
}

.donation-hero-desc {
  font-size: 1rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.donation-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.donation-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.donation-btn--primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,82,0,.35);
}
.donation-btn--primary:hover {
  background: var(--clr-primary-dark);
  box-shadow: 0 6px 26px rgba(255,82,0,.45);
  transform: translateY(-2px);
  color: #fff;
}

.donation-btn--outline {
  background: transparent;
  color: var(--clr-navy);
  border: 2px solid var(--clr-navy);
}
.donation-btn--outline:hover {
  background: var(--clr-navy);
  color: #fff;
  transform: translateY(-2px);
}

.donation-hero-visual {
  flex: 0 0 420px;
  max-width: 420px;
  align-self: stretch;
  display: flex;
}

.donation-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--clr-bg-warm);
  width: 100%;
  flex: 1;
}

.donation-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { width: 100%; text-align: center; padding: 12px 16px; }

  .nav-donate-btn { padding: 8px 14px; font-size: 12px; }
  .news-grid { grid-template-columns: 1fr; }
  .about-hero { margin-bottom: 56px; }
  .news-section { padding-top: 48px; }
}

@media (max-width: 480px) {
  .hero-logo { height: 82px; }
  .hero-title { font-size: 1.6rem; }
  .hero-content { padding: 80px 20px 48px; }
  .hero-btn { padding: 13px 26px; font-size: .9rem; }
  .hero-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-card { padding: 48px 20px; }
  .cta-btn { padding: 14px 32px; font-size: .95rem; }
  .footer-divider { display: none; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; padding: 24px 0 18px; }
  .footer-links { flex-direction: column; gap: 4px; }
  .footer-link { border-right: none; padding: 4px 12px; justify-content: center; }
  .footer-bottom { padding: 12px 0; }
  .demo-card { padding: 40px 16px; }
  .demo-placeholder { padding: 44px 20px; }
  .contact-card { flex-direction: column; text-align: center; }
  .donation-hero { flex-direction: column; padding: 48px 20px; gap: 40px; }
  .donation-hero-text { max-width: 100%; }
  .donation-hero-visual { max-width: 340px; margin: 0 auto; }
  .donation-hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .app-hero { flex-direction: column; padding: 48px 20px; gap: 40px; }
  .app-hero-visual { max-width: 340px; width: 100%; margin: 0 auto; }
  .app-hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .demo-hero { flex-direction: column; padding: 48px 20px; gap: 36px; }
  .demo-hero-visual { max-width: 100%; width: 100%; }
  .demo-hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .demo-showcase-grid { flex-direction: column; gap: 36px; }
  .demo-showcase-video-col { flex: none; max-width: 100%; width: 100%; }
  .demo-showcase-wrap { padding: 52px 20px 60px; }
  .demo-showcase-actions { flex-direction: column; align-items: flex-start; }
  .demo-feature-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
}
