/* ============================================================
   SANDWICH DELIVERY SYSTEMS — Global Stylesheet
   Theme: Abstract System UI | Dark + Neon Blue + White
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary:    #050a14;
  --bg-secondary:  #0a1628;
  --bg-card:       #0d1f3c;
  --neon-blue:     #00c8ff;
  --neon-blue-dim: #0088bb;
  --neon-glow:     0 0 8px #00c8ff, 0 0 20px #00c8ff55;
  --neon-glow-lg:  0 0 12px #00c8ff, 0 0 40px #00c8ff44, 0 0 80px #00c8ff22;
  --white:         #ffffff;
  --white-80:      rgba(255,255,255,0.80);
  --white-50:      rgba(255,255,255,0.50);
  --white-20:      rgba(255,255,255,0.10);
  --accent-line:   rgba(0,200,255,0.25);
  --font-main:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'Courier New', Courier, monospace;
  --transition:    0.3s ease;
  --radius:        8px;
  --radius-lg:     16px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--neon-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: #ffffff; text-shadow: var(--neon-glow); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-blue-dim); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,10,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--accent-line);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--neon-blue); }
.nav-logo-icon {
  width: 32px; height: 32px;
  border: 2px solid var(--neon-blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--neon-glow);
}
.nav-logo-icon svg { width: 18px; height: 18px; fill: var(--neon-blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--white-80);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-blue);
  background: rgba(0,200,255,0.08);
  text-shadow: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--neon-blue);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(5,10,20,0.98);
  border-bottom: 1px solid var(--accent-line);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white-80);
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--neon-blue);
  background: rgba(0,200,255,0.08);
  text-shadow: none;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-content { flex: 1; }

/* ============================================================
   ABSTRACT BACKGROUND DECORATIONS
   ============================================================ */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.bg-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.bg-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,100,200,0.10) 0%, transparent 70%);
  top: 100px; right: -50px;
}
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid var(--accent-line);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: rgba(0,200,255,0.06);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: var(--neon-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--neon-blue);
  text-shadow: var(--neon-glow);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--neon-blue);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0,200,255,0.4);
}
.btn-primary:hover {
  background: #33d4ff;
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(0,200,255,0.7);
  text-shadow: none;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--neon-blue);
  border: 1px solid var(--accent-line);
}
.btn-outline:hover {
  border-color: var(--neon-blue);
  background: rgba(0,200,255,0.08);
  text-shadow: none;
  color: var(--neon-blue);
  box-shadow: var(--neon-glow);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-sm { padding: 60px 24px; }
.section-full {
  padding: 90px 24px;
  width: 100%;
}
.section-dark {
  background: var(--bg-secondary);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--neon-blue);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 56px;
}
.section-header-center {
  text-align: center;
}
.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: rgba(0,200,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,200,255,0.12);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--neon-blue); fill: none; }
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}
.card p {
  color: var(--white-80);
  font-size: 0.95rem;
  line-height: 1.75;
}
.card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neon-blue);
  opacity: 0.15;
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-mono);
  line-height: 1;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 70px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--accent-line);
  text-align: center;
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--neon-blue);
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   STEP / PROCESS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--accent-line);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-blue);
  font-family: var(--font-mono);
  box-shadow: var(--neon-glow);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
}
.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}
.step-content p {
  color: var(--white-80);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  padding: 40px 24px;
}
.stat-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.2rem;
  color: var(--neon-blue);
  font-weight: 800;
  font-family: var(--font-mono);
  text-shadow: var(--neon-glow);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   DIAGRAM / FLOW
   ============================================================ */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 48px 0;
}
.flow-node {
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  min-width: 130px;
  transition: all var(--transition);
}
.flow-node:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--neon-glow);
}
.flow-node-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.flow-node span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-80);
  letter-spacing: 0.04em;
}
.flow-arrow {
  color: var(--neon-blue);
  font-size: 1.4rem;
  padding: 0 4px;
  opacity: 0.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(0,200,255,0.35); }
.faq-q {
  padding: 22px 28px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--neon-blue);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  color: var(--white-80);
  font-size: 0.97rem;
  line-height: 1.8;
  border-top: 1px solid var(--accent-line);
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   DISCLAIMER BANNER
   ============================================================ */
.disclaimer-bar {
  background: rgba(0,200,255,0.05);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--white-50);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 40px 0 0;
}
.disclaimer-bar::before {
  content: 'ℹ';
  color: var(--neon-blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--accent-line);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--white-50);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--white-50);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); text-shadow: none; }
.footer-bottom {
  border-top: 1px solid var(--accent-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--white-50);
}
.footer-bottom a { color: var(--white-50); }
.footer-bottom a:hover { color: var(--neon-blue); text-shadow: none; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-top: 24px;
  border-top: 1px solid var(--accent-line);
  padding-top: 24px;
}

/* ============================================================
   TABLE
   ============================================================ */
.data-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.data-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--bg-card);
  border-bottom: 2px solid var(--neon-blue);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-blue);
}
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--accent-line);
  color: var(--white-80);
  font-size: 0.95rem;
}
.data-table tr:hover td { background: rgba(0,200,255,0.03); }

/* ============================================================
   TAG / BADGE
   ============================================================ */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  color: var(--neon-blue);
}

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: rgba(0,200,255,0.05);
  border-left: 3px solid var(--neon-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p {
  color: var(--white-80);
  font-size: 0.97rem;
  line-height: 1.8;
}
.info-box strong { color: var(--neon-blue); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: rgba(0,200,255,0.35);
  transform: translateY(-2px);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--neon-blue); fill: none; }
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 6px;
}
.contact-value {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-50);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--white-50); }
.breadcrumb a:hover { color: var(--neon-blue); text-shadow: none; }
.breadcrumb span { color: var(--white-80); }
.breadcrumb-sep { color: var(--white-20); }

/* ============================================================
   HERO SVG DIAGRAM
   ============================================================ */
.hero-diagram {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-diagram svg { width: 100%; max-width: 480px; height: auto; }

/* ============================================================
   HIGHLIGHT LIST
   ============================================================ */
.highlight-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--white-80);
  line-height: 1.7;
}
.highlight-item::before {
  content: '▸';
  color: var(--neon-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   TWO-COLUMN CONTENT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}
.content-text h2 { font-size: 1.5rem; margin-bottom: 16px; }
.content-text h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--neon-blue); }
.content-text p { color: var(--white-80); font-size: 0.97rem; line-height: 1.85; margin-bottom: 16px; }
.content-text p:last-child { margin-bottom: 0; }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.policy-content { max-width: 800px; }
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--neon-blue);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--accent-line);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  color: var(--white-80);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.policy-content ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}
.policy-content ul li {
  color: var(--white-80);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-mission {
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}
.about-mission h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.about-mission p {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-diagram { display: none; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 16px; }
  .page-hero { padding: 80px 16px 50px; }
  .hero-inner { padding: 60px 16px; }
  .step { grid-template-columns: 64px 1fr; }
}
@media (max-width: 480px) {
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .flow-diagram { gap: 4px; }
  .flow-node { min-width: 100px; padding: 14px 12px; }
}