/* ============================================================
   SANDWICH DELIVERY CHAIN — GLOBAL STYLESHEET
   Colors: White bg | Teal accents | Dark grey text
   ============================================================ */

/* ---------- CSS Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #1A9E8F;
  --teal-dark:   #127A6E;
  --teal-light:  #E6F7F5;
  --teal-mid:    #A8DDD8;
  --grey-dark:   #2C2C2C;
  --grey-mid:    #555555;
  --grey-light:  #F5F5F5;
  --grey-border: #DEDEDE;
  --white:       #FFFFFF;
  --accent-warm: #F4A440;
  --accent-red:  #E05A3A;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.13);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-main:   'Segoe UI', Arial, sans-serif;
  --max-w:       1200px;
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--grey-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--grey-dark); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--grey-mid); margin-bottom: 1rem; }
a  { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul, ol { padding-left: 1.4rem; color: var(--grey-mid); }
li { margin-bottom: .4rem; }
strong { color: var(--grey-dark); }

/* ---------- Layout Utilities ---------- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt{ padding: 80px 0; background: var(--grey-light); }
.section-teal{ padding: 80px 0; background: var(--teal-light); }
.text-center{ text-align: center; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.gap-1      { gap: .5rem; }
.gap-2      { gap: 1rem; }
.gap-3      { gap: 1.5rem; }
.gap-4      { gap: 2rem; }
.mt-1{ margin-top: .5rem; }
.mt-2{ margin-top: 1rem; }
.mt-3{ margin-top: 1.5rem; }
.mt-4{ margin-top: 2rem; }
.mb-1{ margin-bottom: .5rem; }
.mb-2{ margin-bottom: 1rem; }
.mb-3{ margin-bottom: 1.5rem; }
.mb-4{ margin-bottom: 2rem; }

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label.light {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* ---------- Section Intro ---------- */
.section-intro { max-width: 680px; margin: 0 auto 3rem; }
.section-intro p { font-size: 1.1rem; }

/* ---------- HEADER / NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--grey-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.nav-logo span em { color: var(--teal); font-style: normal; }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: 0; margin: 0;
}
nav ul li a {
  display: block;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-mid);
  transition: all var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 100px !important;
  padding: 6px 18px !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--grey-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  padding: 12px 0 20px;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 10px 24px;
  font-weight: 600;
  color: var(--grey-mid);
  font-size: .95rem;
}
.mobile-nav ul li a:hover { color: var(--teal); background: var(--teal-light); }
.mobile-nav.open { display: block; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--grey-dark) 0%, #3a4a4a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A9E8F' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-text .section-label { background: var(--teal); }
.hero-text h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-text p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-btns    { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,158,143,.35); }
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.btn-teal-outline { border-color: var(--teal); color: var(--teal); }
.btn-teal-outline:hover { background: var(--teal); color: var(--white); }

/* ---------- HERO DIAGRAM ---------- */
.hero-diagram {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.chain-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chain-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: var(--transition);
}
.chain-step:hover { background: rgba(255,255,255,.14); }
.chain-step .step-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.chain-step .step-icon svg { width: 22px; height: 22px; fill: var(--white); }
.chain-step .step-body { flex: 1; }
.chain-step .step-title { font-size: .9rem; font-weight: 700; color: var(--white); margin: 0; }
.chain-step .step-desc  { font-size: .78rem; color: rgba(255,255,255,.6); margin: 0; }
.chain-arrow {
  display: flex; justify-content: center; align-items: center;
  height: 24px;
}
.chain-arrow svg { width: 16px; height: 16px; fill: var(--teal); }

/* ---------- STAT STRIP ---------- */
.stat-strip {
  background: var(--teal);
  padding: 36px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.2);
  margin: 0 auto;
}

/* ---------- PROCESS STEPS (numbered) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.process-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.process-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-card:hover::before { transform: scaleX(1); }
.process-num {
  width: 42px; height: 42px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.process-card h4 { margin-bottom: .5rem; }
.process-card p  { font-size: .9rem; margin: 0; }

/* ---------- ICON CARDS ---------- */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.icon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: all var(--transition);
}
.icon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.icon-card .ic-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.icon-card .ic-icon svg { width: 30px; height: 30px; fill: var(--teal); }
.icon-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.icon-card p  { font-size: .88rem; margin: 0; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute; left: 16px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-mid));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 20px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 20px; height: 20px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.timeline-item h4 { margin-bottom: .4rem; }
.timeline-item p  { font-size: .9rem; margin: 0; }
.timeline-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .72rem; font-weight: 700;
  padding: 2px 10px; border-radius: 100px;
  margin-bottom: .4rem;
  letter-spacing: .05em; text-transform: uppercase;
}

/* ---------- INFO BOXES ---------- */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.info-box p { color: var(--teal-dark); margin: 0; font-size: .92rem; }
.info-box strong { color: var(--teal-dark); }
.warning-box {
  background: #FFF8EC;
  border-left: 4px solid var(--accent-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.warning-box p { color: #7a5a1a; margin: 0; font-size: .92rem; }

/* ---------- SPLIT SECTIONS ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.split-visual svg { width: 100%; height: auto; }

/* ---------- INFOGRAPHIC DIAGRAM ---------- */
.infographic-wrap {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--teal-light); }
.faq-question.open   { background: var(--teal-light); color: var(--teal-dark); }
.faq-question .faq-arrow {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq-question.open .faq-arrow { transform: rotate(180deg); background: var(--teal); }
.faq-question .faq-arrow svg { width: 12px; height: 12px; fill: var(--teal); }
.faq-question.open .faq-arrow svg { fill: var(--white); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: .95rem; margin: 0; padding-top: 8px; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.8rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.contact-item h4 { margin-bottom: 4px; font-size: .9rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .05em; }
.contact-item p  { margin: 0; font-size: 1rem; color: var(--grey-dark); font-weight: 600; }
.contact-item a  { color: var(--teal); font-weight: 600; }

.contact-map {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--grey-border);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--grey-dark) 0%, #2e3d3d 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A9E8F' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; }
.page-hero .section-label { background: var(--teal); }
.page-hero h1 { color: var(--white); margin-bottom: .8rem; }
.page-hero .subtitle { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 620px; margin: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .4; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner .btn-white {
  background: var(--white);
  color: var(--teal-dark);
}
.cta-banner .btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo span { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h5 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem;
  margin-bottom: .8rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--teal); }
.disclaimer-bar {
  background: rgba(0,0,0,.25);
  padding: 14px 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ---------- BADGE TAGS ---------- */
.tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* ---------- TABLE ---------- */
.info-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.info-table th {
  background: var(--teal);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: .88rem;
  font-weight: 700;
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-border);
  font-size: .9rem;
  color: var(--grey-mid);
}
.info-table tr:nth-child(even) td { background: var(--grey-light); }
.info-table tr:hover td { background: var(--teal-light); }

/* ---------- PRIVACY / ABOUT PROSE ---------- */
.prose h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; color: var(--grey-dark); }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .6rem; color: var(--teal-dark); }
.prose p  { margin-bottom: 1rem; }
.prose ul { margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; }
.prose strong { color: var(--grey-dark); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; fill: var(--white); }

/* ---------- ABOUT TEAM CARDS ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.team-avatar svg { width: 34px; height: 34px; fill: var(--teal); }
.team-card h4 { font-size: .95rem; margin-bottom: .3rem; }
.team-card p  { font-size: .82rem; color: var(--teal); margin: 0; font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section, .section-alt, .section-teal { padding: 56px 0; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-diagram { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- UTILITIES ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.nowrap { white-space: nowrap; }