/* ============================================================
   Bopaki Group — Public Website
   Brand: Emerald #00E676 | Dark #101418 | Light #F5F7FA
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #00E676;
  --emerald-dark: #00C853;
  --emerald-dim: rgba(0, 230, 118, 0.10);
  --dark: #101418;
  --dark-card: #181E25;
  --dark-border: rgba(255, 255, 255, 0.08);
  --light: #F5F7FA;
  --charcoal: #2D2D2D;
  --mid: #555;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --transition: 0.2s ease;
  --max-w: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: #1A2332;
  background: #FFFFFF;
}

img { max-width: 100%; display: block; }
a { color: var(--emerald-dark); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary { background: var(--emerald); color: var(--dark); }
.btn-primary:hover { background: var(--emerald-dark); opacity: 1; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #1A2332; border: 2px solid #D1D5DB; }
.btn-outline:hover { border-color: #00A651; color: #00A651; opacity: 1; }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 2px solid #D1D5DB; }
.btn-outline-dark:hover { border-color: var(--emerald-dark); color: var(--emerald-dark); opacity: 1; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(16, 20, 24, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); opacity: 1; }
.nav-cta { margin-left: 20px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none;
  background: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { padding: 12px 0; border-bottom: 1px solid var(--dark-border); }
.mobile-menu li:last-child { border: none; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500; }
.mobile-menu .btn { margin-top: 16px; width: 100%; text-align: center; display: block; }

/* ---- HERO (home) ---- */
.hero {
  padding: 160px 0 96px;
  background: linear-gradient(160deg, #EDF8F2 0%, #F5FAF7 40%, #FFFFFF 80%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,166,81,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,166,81,0.09);
  border: 1px solid rgba(0,166,81,0.25);
  color: #00A651;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 7px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: #1A2332;
}
.hero h1 span { color: #00A651; }
.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,230,118,0.04), transparent 60%);
}
.visual-placeholder { text-align: center; color: rgba(255,255,255,0.18); }
.visual-placeholder .vp-icon { font-size: 52px; margin-bottom: 10px; }
.visual-placeholder p { font-size: 13px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: #EDF8F2;
  border-top: 1px solid #C8E6D4;
  border-bottom: 1px solid #C8E6D4;
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-val { font-size: 40px; font-weight: 800; color: #00A651; line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 12px; color: #6B7280; text-transform: uppercase; letter-spacing: 1.5px; }

/* ---- SECTION COMMON ---- */
section { padding: 88px 0; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00A651;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: #6B7280;
  max-width: 580px;
  line-height: 1.75;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ---- LIGHT SECTION ---- */
.section-light { background: var(--light); color: var(--charcoal); }
.section-light .section-title { color: var(--charcoal); }
.section-light .section-sub { color: var(--mid); }
.section-light .section-label { color: #00A651; }

/* ---- PRODUCT TEASER (home) ---- */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-features { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.product-feature { display: flex; gap: 16px; align-items: flex-start; }
.pf-icon {
  width: 44px; height: 44px;
  background: var(--emerald-dim);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pf-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.pf-text p { font-size: 14px; color: #6B7280; line-height: 1.55; }

.product-visual {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-placeholder { text-align: center; color: rgba(255,255,255,0.15); }
.ss-placeholder .ss-icon { font-size: 44px; margin-bottom: 8px; }
.ss-placeholder p { font-size: 13px; }

/* ---- CARD GRID (services, features, etc.) ---- */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: #00A651; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-icon { font-size: 28px; margin-bottom: 14px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #1A2332; }
.card p { font-size: 14px; color: #6B7280; line-height: 1.65; }

.card-source {
  font-size: 10px;
  color: #9CA3AF;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #F0F0F0;
}

.card-light { background: #fff; border: 1px solid #E5E7EB; }
.card-light:hover { border-color: #00A651; }
.card-light h3 { color: var(--charcoal); }
.card-light p { color: var(--mid); }

/* ---- FEATURE CARD (larger icon) ---- */
.feat-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feat-card:hover { border-color: #00A651; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.feat-icon {
  width: 52px; height: 52px;
  background: var(--emerald-dim);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #1A2332; }
.feat-card p { font-size: 14px; color: #6B7280; line-height: 1.65; }

/* ---- SERVICE FULL CARD ---- */
.svc-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover { border-color: #00A651; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.svc-icon {
  width: 54px; height: 54px;
  background: var(--emerald-dim);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.svc-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #1A2332; }
.svc-body p { font-size: 14px; color: #6B7280; line-height: 1.65; }

/* ---- HOW IT WORKS steps ---- */
.steps-row {
  display: flex;
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 27px; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(to right, var(--emerald), rgba(0,230,118,0.08));
  z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num {
  width: 54px; height: 54px;
  background: var(--emerald);
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: #1A2332; }
.step p { font-size: 13px; color: #6B7280; line-height: 1.5; }

/* ---- ABOUT SECTION ---- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 17px; color: #4A5568; line-height: 1.8; margin-bottom: 20px; }
.about-text-light p { font-size: 17px; color: #444; line-height: 1.8; margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.val-item {
  background: #FFFFFF;
  border: 1px solid #E8EAF0;
  border-radius: var(--radius);
  padding: 20px;
}
.val-item .vi { font-size: 24px; margin-bottom: 8px; }
.val-item h4 { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.val-item p { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(160deg, #EDF8F2 0%, #F5FAF7 40%, #FFFFFF 80%);
  border-bottom: 1px solid #D4EDE0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,166,81,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00A651;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #1A2332;
}
.page-hero p {
  font-size: 18px;
  color: #6B7280;
  max-width: 560px;
  line-height: 1.75;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(160deg, #EDF8F2 0%, #F5FAF7 50%, #FFFFFF 100%);
  border-top: 1px solid #C8E6D4;
  text-align: center;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 380px;
  background: radial-gradient(ellipse, rgba(0,166,81,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  position: relative;
  color: #1A2332;
}
.cta-banner h2 span { color: #00A651; }
.cta-banner p {
  font-size: 17px;
  color: #6B7280;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- CONTACT ---- */
.contact-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; color: #1A2332; }
.contact-info > p { font-size: 15px; color: #6B7280; line-height: 1.75; margin-bottom: 32px; }
.c-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.c-detail-icon {
  width: 42px; height: 42px;
  background: var(--emerald-dim);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-detail-text h5 { font-size: 11px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.c-detail-text p { font-size: 15px; color: #1A2332; }
.c-detail-text a { color: #1A2332; }
.c-detail-text a:hover { color: #00A651; opacity: 1; }

.form-wrap {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; color: #1A2332; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 12px 14px;
  color: #1A2332;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #00A651; box-shadow: 0 0 0 3px rgba(0,166,81,0.12); }
.form-group select option { background: #FFFFFF; color: #1A2332; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 16px; margin-top: 8px; }

/* ---- FOOTER ---- */
.footer {
  background: #0A0A0A;
  border-top: 1px solid var(--dark-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.38); max-width: 260px; line-height: 1.75; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.52); font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- ALT SECTION (light grey tint for visual rhythm) ---- */
.section-card {
  background: #F0F4F8;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

/* ---- SPAZA JOURNEY SECTION ---- */
.spaza-section {
  background: #0D1520;
  padding: 96px 0;
}
.spaza-label { color: #00E676; }
.spaza-sub {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.spaza-crisis-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 14px;
  overflow: hidden;
  margin: 48px 0;
}
.crisis-stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  min-height: 160px;
}
.crisis-val {
  font-size: 40px;
  font-weight: 800;
  color: #00E676;
  line-height: 1;
  margin-bottom: 8px;
}
.crisis-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.crisis-source {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}

.thabo-intro {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 4px solid #00E676;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.thabo-icon { font-size: 52px; flex-shrink: 0; line-height: 1; padding-top: 4px; }
.thabo-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00E676;
  margin-bottom: 8px;
}
.thabo-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.thabo-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 680px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}
.jstep {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.jstep:hover { border-color: rgba(0,230,118,0.3); }
.jstep-final {
  background: rgba(0,230,118,0.07);
  border-color: rgba(0,230,118,0.3);
}
.jstep-num {
  width: 28px;
  height: 28px;
  background: rgba(0,230,118,0.15);
  color: #00E676;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.jstep-num-final {
  background: #00E676;
  color: #0D1520;
  font-size: 14px;
}
.jstep-icon { font-size: 26px; margin-bottom: 8px; }
.jstep-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}
.jstep-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}

.periodic-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.periodic-icon { font-size: 36px; flex-shrink: 0; line-height: 1; padding-top: 2px; }
.periodic-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #00E676;
  margin-bottom: 8px;
}
.periodic-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.periodic-body strong { color: #fff; font-weight: 600; }

.spaza-outcomes {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.outcome-compare {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
}
.outcome-before, .outcome-after { flex: 1; text-align: center; }
.outcome-badge-old {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.outcome-badge-new {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00E676;
  background: rgba(0,230,118,0.12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.outcome-big {
  font-size: 40px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-big.green { color: #00E676; }
.outcome-note {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}
.outcome-arrow {
  font-size: 32px;
  color: #00E676;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.sedfa-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(0,230,118,0.05);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 12px;
  padding: 28px;
}
.sedfa-logo { font-size: 40px; flex-shrink: 0; line-height: 1; }
.sedfa-note h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sedfa-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.spaza-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-spaza-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-spaza-outline:hover {
  border-color: #00E676;
  color: #00E676;
  opacity: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-visual { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .spaza-outcomes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 28px; }
  .steps-row::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .svc-card { flex-direction: column; }
  .spaza-crisis-strip { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .thabo-intro { flex-direction: column; gap: 16px; }
  .outcome-compare { flex-direction: column; gap: 16px; text-align: center; }
  .outcome-arrow { transform: rotate(90deg); display: block; text-align: center; }
  .sedfa-note { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .spaza-crisis-strip { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .spaza-cta { flex-direction: column; align-items: center; }
  .spaza-cta .btn { width: 100%; text-align: center; }
  .btn-spaza-outline { width: 100%; text-align: center; }
}

/* ─── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}

/* ---- BOOKING MODAL ---- */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.booking-modal-overlay.active { display: flex; }
.booking-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0,0,0,0.5);
  position: relative;
}
.booking-modal-loading {
  position: absolute;
  left: 0; right: 0;
  top: 60px; bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 5;
  gap: 14px;
}
.booking-modal-loading.hidden { display: none; }
.booking-modal-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid #E5E7EB;
  border-top-color: var(--emerald, #059669);
  border-radius: 50%;
  animation: bopaki-spin 0.75s linear infinite;
}
.booking-modal-loading-text {
  font-size: 13px;
  color: #9CA3AF;
}
@keyframes bopaki-spin { to { transform: rotate(360deg); } }
.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--dark);
  flex-shrink: 0;
}
.booking-modal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.3px;
}
.booking-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 8px;
  transition: color 0.15s;
}
.booking-modal-close:hover { color: #fff; }
.booking-modal-iframe {
  flex: 1;
  border: none;
  min-height: 580px;
  width: 100%;
}
.booking-modal-fallback {
  padding: 10px 24px;
  font-size: 13px;
  color: #9CA3AF;
  text-align: center;
  border-top: 1px solid #F3F4F6;
  flex-shrink: 0;
}
.booking-modal-fallback a { color: var(--emerald-dark); font-weight: 500; }
@media (max-width: 600px) {
  .booking-modal { max-height: 96vh; border-radius: 12px 12px 0 0; align-self: flex-end; }
  .booking-modal-iframe { min-height: 480px; }
  .booking-modal-overlay { padding: 0; align-items: flex-end; }
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #1A2332;
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1A2332;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-tooltip { display: none; }
}

/* ─── POPIA Cookie Consent Banner ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A2332;
  border-top: 2px solid rgba(0,230,118,0.2);
  z-index: 998;
  display: none;
  padding: 20px 32px;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.55;
}
.cookie-text a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #FFFFFF; }
.cookie-btn-accept {
  background: #00A651;
  border: none;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #008F45; }
@media (max-width: 640px) {
  .cookie-banner { padding: 20px; }
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-decline, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* ---- BLOG / INSIGHTS ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-3px); opacity: 1; }
.blog-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00A651;
  background: rgba(0,166,81,0.08);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-card-title { font-size: 17px; font-weight: 700; color: #1A2332; line-height: 1.4; margin-bottom: 12px; }
.blog-card-excerpt { font-size: 14px; color: #6B7280; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #9CA3AF;
  padding-top: 16px;
  border-top: 1px solid #F3F4F6;
  flex-wrap: wrap;
}
.blog-read-more { font-size: 13px; font-weight: 600; color: #00A651; margin-top: 12px; }

/* Article pages */
.article-header {
  padding: 72px 0 48px;
  background: linear-gradient(135deg, #F8FBF9 0%, #FFFFFF 100%);
  border-bottom: 1px solid #E5E7EB;
}
.article-breadcrumb { font-size: 13px; color: #9CA3AF; margin-bottom: 20px; }
.article-breadcrumb a { color: #00A651; }
.article-header h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #1A2332;
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 800px;
  margin: 12px 0 20px;
}
.article-byline { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #6B7280; flex-wrap: wrap; }
.article-byline strong { color: #1A2332; }
.article-wrap { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.article-wrap h2 { font-size: 22px; font-weight: 700; color: #1A2332; margin: 48px 0 16px; line-height: 1.3; }
.article-wrap h3 { font-size: 17px; font-weight: 700; color: #1A2332; margin: 28px 0 10px; }
.article-wrap p { font-size: 16px; color: #374151; line-height: 1.85; margin-bottom: 20px; }
.article-wrap ul { margin: 0 0 20px 22px; }
.article-wrap ul li { font-size: 16px; color: #374151; line-height: 1.85; margin-bottom: 8px; }
.article-wrap strong { color: #1A2332; }
.article-pullquote {
  border-left: 4px solid #00A651;
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(0,166,81,0.05);
  border-radius: 0 8px 8px 0;
}
.article-pullquote p { font-size: 18px; font-weight: 600; color: #1A2332; line-height: 1.5; margin: 0; font-style: italic; }
.article-stat-box {
  background: #101418;
  border-radius: 16px;
  padding: 32px 36px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.article-stat-val { font-size: 52px; font-weight: 800; color: #00E676; line-height: 1; flex-shrink: 0; }
.article-stat-desc { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.article-cta {
  background: linear-gradient(135deg, #101418 0%, #1A2332 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin-top: 64px;
}
.article-cta h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 15px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #00A651; margin-bottom: 40px; }
.article-back:hover { opacity: 0.8; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-header { padding: 48px 0 32px; }
  .article-wrap { padding: 40px 0; }
  .article-cta { padding: 32px 24px; }
  .article-stat-box { flex-direction: column; text-align: center; gap: 12px; }
  .article-stat-val { font-size: 40px; }
}
