/* ============================================================
   Afrishore Quant. Shared Stylesheet
   Brand: Montserrat, Teal #00A99D, Charcoal #333333
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Calibri, Arial, sans-serif;
  color: #333333;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Colour tokens ─────────────────────────────────────────── */
:root {
  --teal:       #00A99D;
  --teal-dark:  #007A70;
  --mint:       #E6F6F5;
  --off-white:  #F8F9FA;
  --charcoal:   #333333;
  --slate:      #555555;
  --muted:      #999999;
  --white:      #ffffff;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --radius:     8px;
  --radius-lg:  14px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.18; letter-spacing: -0.018em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.005em; }
p  { color: #555555; line-height: 1.7; }

/* ── Icon system ─────────────────────────────────────────────── */
.ico {
  display: inline-block;
  width: 24px; height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.ico--sm { width: 18px; height: 18px; }
.ico--lg { width: 32px; height: 32px; stroke-width: 1.4; }

/* ── Utility ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-teal  { color: var(--teal); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.section { padding: 96px 0; }
.section--mint { background: var(--mint); }
.section--off-white { background: var(--off-white); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 24px; height: 1.5px; background: var(--teal); display: inline-block;
}
.section--teal .section-label,
.section--dark .section-label { color: rgba(255,255,255,0.85); }
.section--teal .section-label::before,
.section--dark .section-label::before { background: rgba(255,255,255,0.85); }
.section-header { margin-bottom: 56px; }
.section-header p { max-width: 640px; margin-top: 16px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 16px auto 0; }
.divider {
  width: 48px; height: 3px; background: var(--teal);
  margin: 16px 0 0;
  border-radius: 2px;
}
.centered .divider { margin: 16px auto 0; }
.section--teal .divider,
.section--dark .divider { background: rgba(255,255,255,0.4); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: inherit; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.02em; cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,169,157,0.3); }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-teal {
  background: transparent; color: var(--teal); border-color: var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-arrow .ico { width: 16px; height: 16px; }
.btn .ico { stroke-width: 2; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,169,157,0.12);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo img { height: 38px; width: auto; }
.nav__brand {
  display: flex; flex-direction: column; line-height: 1;
}
.nav__brand-name {
  font-size: 1.05rem; font-weight: 800; color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav__brand-tag {
  font-size: 0.65rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.nav__links {
  display: flex; align-items: center; gap: 8px;
}
.nav__link {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600; color: var(--slate);
  transition: all 0.15s;
}
.nav__link:hover { color: var(--teal); background: var(--mint); }
.nav__link.active { color: var(--teal); }
.nav__cta { margin-left: 8px; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px; transition: all 0.2s;
}
.nav__mobile { display: none; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 168px 0 112px;
  background:
    radial-gradient(ellipse at top right, rgba(0,196,181,0.4), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(0,122,112,0.6), transparent 50%),
    linear-gradient(135deg, #006A62 0%, var(--teal-dark) 50%, var(--teal) 100%);
  color: var(--white);
  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='%23ffffff' fill-opacity='0.04'%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 { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 580px; margin-bottom: 36px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero__stat-value {
  font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0, 169, 157, 0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: rgba(0,169,157,0.18);
}
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--mint);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--teal);
  position: relative;
}
.card__icon::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,169,157,0.15);
}
.card__icon .ico { width: 22px; height: 22px; }
.card h3 { margin-bottom: 12px; color: var(--charcoal); }
.card p  { font-size: 0.93rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap-24px; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Step list ───────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; position: relative;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step__num {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--teal);
  border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.01em;
  position: relative; z-index: 1;
}
.step__num .ico { width: 18px; height: 18px; }
.step__line {
  position: absolute; left: 22px; top: 48px; bottom: 0;
  width: 1.5px; background: var(--mint); transform: translateX(-50%);
}
.step:last-child .step__line { display: none; }
.step__body { padding-top: 10px; }
.step__body h4 { font-size: 1rem; margin-bottom: 6px; color: var(--charcoal); }
.step__body p  { font-size: 0.9rem; }

/* ── Stat callouts ───────────────────────────────────────────── */
.stat-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--teal-dark);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-band__item {
  background: var(--teal); padding: 40px 32px; text-align: center;
}
.stat-band__value {
  font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat-band__label {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.8); line-height: 1.5;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.stat-band__sublabel {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── Two-column split ─────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ── Pathway cards (home) ─────────────────────────────────────── */
.pathway {
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pathway:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.pathway__header {
  padding: 40px 36px 32px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
}
.pathway__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.pathway__header h2 { font-size: 1.6rem; color: var(--white); margin-bottom: 12px; }
.pathway__header p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.pathway__body {
  background: var(--white); padding: 32px 36px 36px;
  flex: 1; display: flex; flex-direction: column;
}
.pathway__list { margin-bottom: 28px; flex: 1; }
.pathway__list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.9rem; color: var(--slate);
  border-bottom: 1px solid #f0f0f0;
}
.pathway__list li:last-child { border-bottom: none; }
.pathway__list li .ico {
  width: 16px; height: 16px;
  color: var(--teal);
  margin-top: 4px;
}
.pathway__list li .check-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0; margin-top: 2px;
}
.pathway__list li .check-dot .ico { width: 11px; height: 11px; stroke-width: 2.4; margin-top: 0; }

/* ── Testimonial / pull quote ─────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--teal);
  padding: 24px 28px; background: var(--mint);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p { font-size: 1.1rem; font-style: italic; color: var(--charcoal); }
.quote-block cite { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--teal); font-weight: 600; font-style: normal; }

/* ── Contact form ─────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #d8d8d8; border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; color: var(--charcoal);
  background: var(--white); transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,169,157,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Contact info card ────────────────────────────────────────── */
.contact-card {
  background: #1a1a1a; border-radius: var(--radius-lg);
  padding: 44px 40px; color: var(--white);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,169,157,0.15), transparent 70%);
  transform: translate(60px, -60px);
}
.contact-card h3 { color: var(--white); margin-bottom: 8px; position: relative; z-index: 1; }
.contact-card > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; z-index: 1; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.contact-detail__icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(0,169,157,0.12);
  color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon .ico { width: 18px; height: 18px; }
.contact-detail__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 3px;
}
.contact-detail__value {
  color: var(--white); font-size: 0.95rem; font-weight: 500;
}
.contact-detail a { color: var(--white); transition: color 0.15s; }
.contact-detail a:hover { color: var(--teal); }

/* ── Accordion / solution list ────────────────────────────────── */
.solution-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.solution-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.solution-item__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 6px;
}
.solution-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.solution-item p  { font-size: 0.82rem; color: var(--muted); }

/* ── Process tabs (augmentation / outsourcing) ────────────────── */
.tab-group { display: flex; gap: 0; border-bottom: 2px solid #ebebeb; margin-bottom: 40px; }
.tab-btn {
  padding: 14px 28px; font-family: inherit; font-size: 0.9rem;
  font-weight: 700; color: var(--muted); background: none;
  border: none; cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all 0.15s;
}
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Two-way comparison ───────────────────────────────────────── */
.model-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}
.model-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.model-card h3 { margin-bottom: 14px; }
.model-card p  { margin-bottom: 20px; font-size: 0.92rem; }
.feature-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; font-size: 0.88rem; color: var(--slate);
}
.feature-list li .ico {
  width: 14px; height: 14px; color: var(--teal); margin-top: 5px; flex-shrink: 0;
}

/* ── CTA banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg); padding: 64px 56px;
  color: var(--white); text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Cloudflare Turnstile widget ─────────────────────────────── */
.turnstile-wrap { display: flex; justify-content: center; margin: 4px 0 8px; }

/* ── Legal / privacy notice body ─────────────────────────────── */
.legal-body h2 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--charcoal); margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--slate); font-size: 0.96rem; margin-bottom: 14px; }
.legal-body a { color: var(--teal); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-list {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-list li {
  position: relative; padding-left: 22px;
  color: var(--slate); font-size: 0.94rem; line-height: 1.65;
}
.legal-list li::before {
  content: ''; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
.legal-contact {
  background: var(--off-white);
  border: 1px solid #eaeaea;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 8px 0 20px;
}
.legal-contact p { margin: 0; font-size: 0.92rem; line-height: 1.7; }

/* ── Form help text ──────────────────────────────────────────── */
.form-help {
  font-size: 0.78rem; color: var(--muted);
  margin-top: 6px; line-height: 1.5;
}

/* ── File upload ─────────────────────────────────────────────── */
.file-drop {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1.5px dashed #d0d0d0;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  color: var(--slate);
  transition: border-color 0.15s, background 0.15s;
}
.file-drop:hover { border-color: var(--teal); background: #fafffe; }
.file-drop .ico { width: 20px; height: 20px; color: var(--teal); }
.file-drop__label {
  font-weight: 600; color: var(--teal-dark);
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e0e0e0;
}
.file-drop__name {
  font-size: 0.85rem; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.file-drop__name.has-file { color: var(--charcoal); font-weight: 500; }

/* ── Consent (POPIA) checkbox ────────────────────────────────── */
.consent-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--slate);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
}
.consent-item:hover { border-color: var(--teal); }
.consent-item input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid #c7c7c7;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.consent-item input[type="checkbox"]:checked {
  background-color: var(--teal);
  border-color: var(--teal);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.consent-item a { color: var(--teal); font-weight: 600; }
.consent-item:has(input:checked) {
  border-color: var(--teal);
  background: #fafffe;
  box-shadow: 0 0 0 3px rgba(0,169,157,0.08);
}
.consent-item span { flex: 1; }

/* ── Checkbox list ───────────────────────────────────────────── */
.form-hint {
  font-size: 0.74rem; font-weight: 500;
  color: var(--muted); margin-left: 10px;
  text-transform: none; letter-spacing: 0;
}
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  min-height: 52px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  font-size: 0.94rem;
  line-height: 1.4;
  color: var(--charcoal);
  user-select: none;
}
.check-item:hover {
  border-color: var(--teal);
  background: #fafffe;
}
.check-item input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid #c7c7c7;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.check-item input[type="checkbox"]:checked {
  background-color: var(--teal);
  border-color: var(--teal);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.check-item:has(input:checked) {
  border-color: var(--teal);
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(0,169,157,0.08);
}
.check-item span { flex: 1; }

/* ── Form toggle (contact page) ──────────────────────────────── */
.form-toggle {
  display: flex; gap: 0;
  background: var(--off-white);
  border: 1px solid #eaeaea;
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 32px;
}
.form-toggle__btn {
  flex: 1; padding: 11px 20px;
  font-family: inherit; font-size: 0.86rem; font-weight: 600;
  cursor: pointer; border: none; background: transparent;
  color: var(--slate); border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}
.form-toggle__btn.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,169,157,0.25);
}

/* ── Mini stat tiles ─────────────────────────────────────────── */
.mini-stat {
  background: var(--white);
  border: 1px solid rgba(0,169,157,0.15);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mini-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.mini-stat__value {
  font-size: 2rem; font-weight: 700; color: var(--teal);
  line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em;
}
.mini-stat__label {
  font-size: 0.74rem; font-weight: 600; color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Numbered cards ──────────────────────────────────────────── */
.numbered-card__num {
  font-size: 2.4rem; font-weight: 800; color: var(--teal);
  opacity: 0.18; margin-bottom: 12px; line-height: 1;
  letter-spacing: -0.02em;
}

/* ── Accent card variant ─────────────────────────────────────── */
.card--accent {
  background: linear-gradient(135deg, var(--mint), #f0fbfa);
  border: 1px solid rgba(0,169,157,0.18);
  display: flex; flex-direction: column; justify-content: center;
}
.card--accent h3 { color: var(--teal-dark); }
.card--accent p  { color: var(--slate); }

/* ── Promise tiles (home page teal section) ──────────────────── */
.promise-tile { text-align: center; color: #fff; }
.promise-tile__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.promise-tile h4 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.promise-tile p  { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.6; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: #1a1a1a; color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo img { height: 32px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand-name { font-size: 1rem; font-weight: 800; color: var(--white); }
.footer__brand-tag  { font-size: 0.62rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; }
.footer__tagline { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer__col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__col ul li a:hover { color: var(--teal); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.8rem; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer__bottom-links a:hover { color: var(--teal); }

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  padding: 152px 0 88px;
  background:
    radial-gradient(ellipse at top right, rgba(0,196,181,0.35), transparent 60%),
    linear-gradient(135deg, #006A62 0%, var(--teal-dark) 60%, var(--teal) 100%);
  color: var(--white);
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p   { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; }
.page-hero .section-label { color: rgba(255,255,255,0.7); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split  { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse { direction: ltr; }
  .stat-band { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .solution-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile {
    display: block;
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 16px 24px 24px;
  }
  .nav__mobile a {
    display: block; padding: 12px 0;
    font-size: 0.95rem; font-weight: 600; color: var(--slate);
    border-bottom: 1px solid #f0f0f0;
  }
  .nav__mobile a:hover { color: var(--teal); }
  .nav__mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }
  .hero { padding: 120px 0 72px; }
  .hero__stats { gap: 28px; }
  .cta-banner { padding: 44px 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 120px 0 56px; }
}
