/* ============================================================
   iZinga Marketing Site — Rebuild Stylesheet
   Design Composition v2 (FINAL) — REQ-30
   Extends web-old/css/style.css token system
   ============================================================ */

/* --- BASE DESIGN TOKENS (from style.css — mirrored here so rebuild.css is self-contained) --- */
:root {
  --text-color:       #212121;
  --bkg-color:        #F8F7F7;
  --bkg-card-color:   #f3f2f2;
  --btn-bg-color:     #be833d;
  --btn-red-color:    #D66247;
  --btn-green-color:  #00A9A1;
  --btn-pill-color:   #1083A5;
}

/* --- NEW DESIGN TOKENS (v2 additions) --- */
:root {
  /* Spec tokens */
  --rule: #e0dfdf;
  /* Dark-section text token family */
  --dark-text-primary:   #ffffff;
  --dark-text-secondary: #cccccc;
  --dark-text-muted:     #aaaaaa;
  --dark-text-faint:     #666666;
  --dark-rule:           #333333;
  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  48px;
  --sp-xl:  80px;
  --sp-2xl: 120px;
}

/* ============================================================
   BOOTSTRAP v4 OVERRIDE BLOCK
   Neutralises Bootstrap reboot rules that conflict with iZinga
   brand requirements. All rules here target Bootstrap defaults.
   ============================================================ */

/* Bootstrap sets a:hover { text-decoration: underline } — override globally
   so nav links, footer links, and button anchors stay decoration-free.
   Specific underline intent (inline copy links, card-app-link etc.) is
   re-applied via targeted selectors below. */
a:hover { text-decoration: none; }

/* Bootstrap reboot adds border-radius to inputs/selects/textareas (via
   inherited Normalize). iZinga flat aesthetic requires border-radius: 0. */
input, select, textarea, button { border-radius: 0; }

/* Bootstrap sets box-sizing on *, margin/padding on *, body reset — all
   compatible with rebuild.css so no override needed for those. */

/* ============================================================
   GLOBAL RESETS FOR REBUILD SECTIONS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Catamaran, Calibri, sans-serif;
  background: var(--bkg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Catamaran, Calibri, sans-serif;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; line-height: 1.65; max-width: 65ch; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ============================================================
   FLAT BUTTON SYSTEM (spec: border-radius 0, Catamaran 700)
   CEO override 21 Jul: all buttons #212121
   ============================================================ */
.btn-iz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 0;
  border: 2px solid transparent;
  min-height: 44px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: filter 200ms ease;
  letter-spacing: 0.02em;
}
.btn-iz:hover { filter: brightness(1.4); }

/* CEO override 21 Jul: all filled buttons use #212121 regardless of role colour */
.btn-coral,
.btn-teal,
.btn-gold,
.btn-blue  { background: #212121; color: #fff; border-color: #212121; }
.btn-wa    { background: #212121; color: #fff; border-color: #212121; width: 100%; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 13px 26px;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  border-radius: 0;
}
.btn-full  { width: 100%; }

/* Buttons on dark (#212121) sections — invert to white fill so they remain legible */
.hero-section    .btn-iz:not(.btn-outline-white),
.drivers-section .btn-iz:not(.btn-outline-white) {
    background: var(--btn-green-color);
    color: #ffffff;
}
.hero-section    .btn-iz:not(.btn-outline-white):hover,
.drivers-section .btn-iz:not(.btn-outline-white):hover {
  filter: brightness(0.88);
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: block;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow-coral {
    color: var(--btn-red-color);
}
.eyebrow-teal  { color: var(--btn-green-color); }
.eyebrow-gold  { color: var(--btn-bg-color); }
.eyebrow-blue  { color: var(--btn-pill-color); }
.eyebrow-muted { color: var(--dark-text-muted); }

/* Type scale */
.h1-display { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
.h2-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
.h3-heading { font-size: clamp(1rem, 2vw, 1.375rem); font-weight: 700; }

/* Section containers */
.iz-section { padding: var(--sp-lg) var(--sp-md); }
.iz-section--xl { padding: var(--sp-xl) var(--sp-md); }
.iz-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-md); }

/* Dark section helpers */
.iz-dark { background: #212121; }
.iz-light { background: var(--bkg-color); }
.iz-card-tone { background: var(--bkg-card-color); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.iz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 200ms ease;
  padding: 0 var(--sp-md);
}
.iz-nav.scrolled { background: #212121; }

.iz-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
}

.iz-nav__logo img { height: 36px; width: auto; display: block; }

.iz-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
}
.iz-nav__links a {
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 1;
  transition: opacity 150ms;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.iz-nav__links a:hover { opacity: 0.75; }
.iz-nav__links a.active { border-bottom-color: var(--btn-bg-color); }
.iz-nav__links a.nav-biz { text-decoration-color: var(--btn-pill-color); }

/* More menu (960–1279) */
.iz-nav__more-btn {
  background: none; border: none; color: #fff;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; padding: 0;
}
.iz-nav__dropdown {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #212121;
  z-index: 1000;
  padding: 12px 32px;
  list-style: none; margin: 0;
}
.iz-nav__dropdown.open { display: block; }
.iz-nav__dropdown a {
  display: block;
  color: #fff; font-family: Catamaran,Calibri,sans-serif;
  font-weight: 700; font-size: 0.85rem;
  padding: 10px 0; text-transform: uppercase; letter-spacing: 0.04em;
  opacity: 0.85;
}
.iz-nav__dropdown a:hover { opacity: 1; }

/* Hamburger / Drawer */
.iz-nav__hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.iz-nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 1px;
}

.iz-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85vw; max-width: 320px;
  background: #212121;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 240ms ease-out;
  overflow-y: auto;
  padding: 72px 0 32px;
  position: fixed;
}
.iz-drawer.open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .iz-drawer { transition: none; }
}

.iz-drawer__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  padding: 4px 8px;
}

.iz-drawer__links { list-style: none; margin: 0; padding: 0; }
.iz-drawer__links li a {
  display: block;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 800; font-size: 1.25rem; color: #fff;
  padding: 20px 28px;
  border-bottom: 1px solid var(--dark-rule);
  text-decoration: none;
}
.iz-drawer__links li a.accent-teal  { border-left: 4px solid var(--btn-green-color); padding-left: 24px; }
.iz-drawer__links li a.accent-gold  { border-left: 4px solid var(--btn-bg-color);    padding-left: 24px; }
.iz-drawer__links li a.accent-blue  { border-left: 4px solid var(--btn-pill-color);  padding-left: 24px; }

.iz-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease-out;
}
.iz-overlay.open { opacity: 1; pointer-events: all; }
@media (prefers-reduced-motion: reduce) {
  .iz-overlay { transition: none; }
}

/* ============================================================
   S01 HERO
   ============================================================ */
.hero-section {
  background: #212121;
  position: relative;
  min-height: 100svh;
  min-height: max(100svh, 500px);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding-top: 64px; /* nav height */
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(
    90deg,
    var(--btn-red-color)   33.3%,
    var(--btn-green-color) 33.3% 66.6%,
    var(--btn-bg-color)    66.6%
  );
}

.hero-copy {
  /* Issue 6: reduced left inset from --sp-xl (80px) to --sp-lg (48px) for visual balance */
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) var(--sp-lg);
}
.hero-copy .eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; }
.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark-text-primary);
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-copy .hero-sub {
  color: var(--dark-text-secondary);
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-cta-stack {
  display: flex; flex-wrap: wrap; gap: 12px;
}

.hero-image-col {
  position: relative;
  background: #2a2a2a;
  height: 100%;
  min-height: 400px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hero-image-col img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

@media (max-height: 420px) {
  .hero-image-col { display: none; }
  .hero-section { grid-template-columns: 1fr; }
}

/* ============================================================
   S02 PLATFORM STATS (ships hidden — comment-wrapped in HTML)
   ============================================================ */
.stats-strip {
  background: #212121;
  border-top: 1px solid var(--dark-rule);
  display: none; /* CONFLICT 3 — DevOps uncomments after Data Intelligence approval */
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid var(--dark-rule);
}
.stat-item:last-child { border-right: none; }
.stat-num-value {
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--btn-bg-color);
  font-variant-numeric: tabular-nums;
  display: inline;
}
.stat-suffix {
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--btn-bg-color);
}
.stat-label {
  display: block;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--dark-text-muted);
  margin-top: 4px;
}
.stat-date {
  display: block;
  font-size: 0.6rem;
  color: var(--dark-text-faint);
  margin-top: 2px;
}

/* ============================================================
   S03 DELIVERY SERVICES
   ============================================================ */
.delivery-section {
  background: var(--bkg-color);
  padding: var(--sp-xl) 0;
}
.delivery-section .iz-container { text-align: center; }
.delivery-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-color);
  margin-bottom: 8px;
}
.delivery-section .section-sub {
  /* Issue 7: reduced from 40px to --sp-sm (16px) to match sibling section vertical rhythm */
  color: #555; font-size: 1rem; margin: 0 auto var(--sp-sm); max-width: 60ch;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.delivery-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column;
}
.delivery-card--furniture { border-left: 6px solid var(--btn-green-color); }
.delivery-card--parcel    { border-left: 4px solid var(--btn-green-color); }
.delivery-card--food      { border-left: 4px solid var(--btn-red-color); }

.card-top-accent {
  height: 3px; margin: -24px -24px 16px;
  background: var(--btn-green-color);
}

.chip {
  display: inline-block;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 0;
  position: absolute;
  top: 16px; right: 16px;
}
.chip-teal-solid    { background: var(--btn-green-color); color: #fff; }
.chip-teal-outlined { background: transparent; border: 1px solid var(--btn-green-color); color: var(--btn-green-color); }
.chip-coral-solid   { background: var(--btn-red-color);   color: #fff; }

.card-eyebrow {
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--btn-green-color);
  display: block;
  margin-bottom: 6px;
}

.delivery-card h3 {
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 10px;
  padding-right: 60px; /* chip space */
}
.delivery-card ul {
  list-style: none; margin: 0 0 16px; padding: 0;
  font-size: 0.9rem; line-height: 1.7; color: #444;
}
.delivery-card ul li::before {
  content: '✓ ';
  color: var(--btn-green-color);
  font-weight: 700;
}
.delivery-card--food ul li::before { color: var(--btn-red-color); }

.card-availability {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 14px;
}

.card-app-link {
  font-size: 0.72rem;
  color: var(--btn-green-color);
  text-decoration: underline;
  margin-top: 10px;
  display: block;
}
.card-quote-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 8px;
  display: block;
}
.card-b2b-escape {
  font-size: 0.75rem;
  color: var(--btn-pill-color);
  margin-top: 12px;
  display: block;
}

/* spacer to push CTAs to bottom */
.delivery-card .card-body { flex: 1; }

/* ============================================================
   S04 iZINGA PAY
   ============================================================ */
.pay-section {
  background: var(--bkg-card-color);
  border-top: 3px solid var(--btn-pill-color);
  padding: var(--sp-xl) 0;
}
.pay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pay-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-color);
}
.pay-copy p { color: #555; max-width: 44ch; }

.pay-tile {
  background: #fff;
  border-left: 3px solid var(--btn-pill-color);
  padding: 16px;
}
.pay-tile-icon { font-size: 1.25rem; margin-bottom: 6px; }
.pay-tile h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-color);
}
.pay-tile p {
  font-size: 0.8rem;
  color: #666;
  margin: 0; max-width: 100%;
  line-height: 1.4;
}

/* ============================================================
   S05 FOR DRIVERS
   ============================================================ */
.drivers-section {
  background: #212121;
  padding: var(--sp-xl) 0;
}
.drivers-inner {
  /* layout: Bootstrap row (col-12 col-md-5 / col-md-7) */
  align-items: start;
}
.drivers-copy { order: 2; }
.drivers-calculator-col { order: 1; }

.drivers-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark-text-primary);
  margin-bottom: 12px;
}
.drivers-copy p {
  color: var(--dark-text-secondary);
  max-width: 44ch;
  margin-bottom: 24px;
}
.drivers-features {
  list-style: none; margin: 0 0 28px; padding: 0;
}
.drivers-features li {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.drivers-features li::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--btn-green-color);
  flex-shrink: 0;
}
.drivers-cta-stack { display: flex; flex-wrap: wrap; gap: 12px; }

/* Calculator card */
.calc-card {
  background: #2a2a2a;
  padding: 24px;
}
.calc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text-primary);
  margin-bottom: 16px;
}

/* Coming Soon state */
.calc-coming-soon-badge {
  display: inline-block;
  background: var(--btn-green-color);
  color: #fff;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.calc-fields-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.calc-field-group { margin-bottom: 14px; }
.calc-label {
  display: block;
  font-size: 0.65rem;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-text-muted);
  margin-bottom: 4px;
}
.calc-input {
  width: 100%;
  border: 1px solid var(--rule);
  padding: 10px 12px;
  border-radius: 0;
  background: #222;
  color: #fff;
  font-family: Catamaran, Calibri, sans-serif;
  font-size: 0.9rem;
}
.calc-input:focus { outline: none; border-color: var(--btn-green-color); }
.calc-btn-disabled {
  width: 100%;
  background: var(--rule);
  color: #888;
  border: none;
  padding: 13px;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  cursor: not-allowed;
  min-height: 44px;
  border-radius: 0;
  font-size: 0.9rem;
  margin-top: 4px;
}
.calc-note {
  font-size: 0.65rem;
  color: var(--dark-text-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.calc-note a { color: var(--btn-green-color); text-decoration: underline; }

/* ============================================================
   S06 FOR MERCHANTS
   ============================================================ */
.merchants-section {
  background: var(--bkg-color);
  padding: var(--sp-xl) 0;
}
.merchants-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; margin-bottom: 8px;
  color: var(--text-color);
}
.merchants-tiles {
  /* layout: Bootstrap row (col-12 col-md-4) */
  margin: 32px 0;
}
.merchant-tile {
  background: #fff;
  border-left: 4px solid var(--btn-bg-color);
  padding: 20px;
}
.merchant-tile-icon { font-size: 1.4rem; margin-bottom: 8px; }
.merchant-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 6px;
}
.merchant-tile p {
  font-size: 0.85rem;
  color: #666;
  margin: 0; max-width: 100%; line-height: 1.55;
}

.merchants-cta-bar {
  background: var(--bkg-card-color);
  border-top: 1px solid var(--rule);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.merchants-cta-bar p {
  margin: 0; font-size: 1rem; font-weight: 700; max-width: 100%;
  color: var(--text-color);
}

/* ============================================================
   S07 REFERRAL PARTNER
   ============================================================ */
.rp-section {
  background: var(--bkg-card-color);
  padding: var(--sp-xl) 0;
}
.rp-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}
.rp-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--text-color);
  margin-bottom: 12px;
}
.rp-copy p { color: #555; max-width: 52ch; margin-bottom: 16px; }
.rp-benefits {
  list-style: none; margin: 0 0 20px; padding: 0;
}
.rp-benefits li {
  font-size: 0.9rem;
  color: #555;
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.55;
}
.rp-benefits li::before {
  content: '';
  position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--btn-pill-color);
}

/* Referral partner lifestyle photo */
.rp-photo {
  margin: 20px 0 16px;
  overflow: hidden;
  border-radius: 10px;
}
.rp-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 65% 30%;
  border-radius: 10px;
  display: block;
}

/* Disclaimer (Component J) */
.rp-disclaimer {
  border-top: 1px solid var(--rule);
  padding-top: 8px;
  margin-top: 10px;
  font-size: 0.7rem;
  line-height: 1.5;
  color: #666;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 400;
}

/* CTA Card */
.rp-cta-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 28px;
}
.rp-cta-card h3 {
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 10px;
}
.rp-cta-card p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
  max-width: 100%;
  line-height: 1.5;
}

/* ============================================================
   S08 AMBASSADOR
   ============================================================ */
.ambassador-section {
  background: var(--bkg-color);
  padding: var(--sp-xl) 0;
}
.ambassador-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}
.ambassador-cta-col { order: 1; }
.ambassador-copy    { order: 2; }
.ambassador-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--text-color);
  margin-bottom: 12px;
}
.ambassador-copy p { color: #555; max-width: 52ch; }

/* ============================================================
   S09 COVERAGE MAP
   ============================================================ */
.coverage-section {
  background: #212121;
  padding: var(--sp-xl) 0;
}
.coverage-inner {
  /* layout: Bootstrap row (col-12 col-md-5 / col-md-7) */
  align-items: center;
}
.coverage-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark-text-primary);
  margin-bottom: 12px;
}
.coverage-copy p {
  color: var(--dark-text-secondary);
  max-width: 44ch;
}
.coverage-map-col {
  display: flex; justify-content: flex-end;
}
.coverage-map-col img, .coverage-map-col svg {
  max-width: 100%;
  height: auto;
}
/* Map pin hover */
.map-pin { cursor: pointer; }
.map-pin .pin-dot { transition: transform 150ms ease; }
.map-pin:hover .pin-dot,
.map-pin:focus .pin-dot { transform: scale(1.33); }
@media (prefers-reduced-motion: reduce) {
  .map-pin .pin-dot { transition: none; }
}

/* ============================================================
   S10 APP DOWNLOADS
   ============================================================ */
.app-section {
  background: var(--bkg-color);
  padding: var(--sp-xl) 0;
}
.app-inner {
  /* layout: Bootstrap row (col-12 col-md-6 / col-md-6) */
  align-items: center;
}
.app-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--text-color);
  margin-bottom: 12px;
}
.app-copy p { color: #555; max-width: 44ch; margin-bottom: 24px; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #212121; color: #fff;
  padding: 12px 18px; border-radius: 0;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700; font-size: 0.85rem;
  min-height: 44px; text-decoration: none;
  transition: filter 200ms;
}
.store-btn:hover { filter: brightness(0.85); }

.qr-frame {
  display: inline-block;
  border: 3px solid var(--btn-red-color);
  padding: 8px;
  text-align: center;
}
.qr-placeholder {
  width: 80px; height: 80px;
  background: var(--btn-red-color);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.75rem;
  font-family: Catamaran, Calibri, sans-serif;
}
.qr-label {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin-top: 6px;
  font-family: Catamaran, Calibri, sans-serif;
}

/* App screenshot carousel skeleton */
.app-carousel {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
}
.phone-frame {
  width: 100px; height: 180px;
  border: 1px dashed var(--rule);
  background: #f3f2f2;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  transition: transform 200ms, opacity 200ms;
  flex-shrink: 0;
}
.phone-frame.active {
  border: 3px solid var(--btn-red-color);
  opacity: 1;
}
.phone-frame.adjacent {
  transform: scale(0.9);
  opacity: 0.7;
}
.phone-frame-label {
  font-size: 0.55rem;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  text-align: center;
  padding: 0 8px;
}
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 16px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: all 200ms;
}
.dot.active {
  width: 18px;
  border-radius: 3px;
  background: var(--btn-red-color);
}

/* ============================================================
   S11 TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bkg-card-color);
  padding: var(--sp-xl) 0;
  text-align: center;
}
.testimonials-section h2 { color: var(--text-color); margin-bottom: 8px; }

/* Conditional H2 */
.testimonials-heading-trust { display: none; }
.section--populated .testimonials-heading-placeholder { display: none; }
.section--populated .testimonials-heading-trust { display: block; }

.skeleton-grid {
  /* layout: Bootstrap row (col-12 col-md-4) */
  margin-top: 32px;
  text-align: left;
}
.skeleton-frame {
  background: var(--bkg-color);
  border: 1px dashed var(--rule);
  padding: 20px;
}
.skeleton-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rule);
  margin-bottom: 14px;
}
.skeleton-bar {
  height: 8px;
  background: var(--rule);
  border-radius: 2px;
  margin-bottom: 8px;
}
.testimonials-sub {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   S12 FOOTER
   ============================================================ */
.iz-footer {
  background: #212121;
  border-top: 4px solid var(--btn-bg-color);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px var(--sp-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo img { height: 48px; width: auto; min-width: 80px; margin-bottom: 12px; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--dark-text-secondary);
  max-width: 30ch;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: var(--dark-text-muted); transition: color 150ms; }
.footer-social a:hover { color: var(--dark-text-primary); }
.footer-social svg { width: 20px; height: 20px; display: block; }

.footer-col h4 {
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-text-muted);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none; margin: 0; padding: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--dark-text-muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover { color: var(--dark-text-primary); }
.footer-col ul li a.active { text-decoration-color: var(--btn-bg-color); text-decoration: underline; }

.footer-copyright-strip {
  border-top: 1px solid var(--dark-rule);
  padding: 16px var(--sp-md);
  text-align: center;
}
.footer-copyright-strip p {
  font-size: 0.72rem;
  color: var(--dark-text-faint);
  margin: 0; max-width: 100%;
  line-height: 1.5;
}
.footer-legal-links {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 6px; flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.72rem;
  color: var(--dark-text-faint);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--dark-text-muted); }

/* Footer accordion mobile */
.footer-col-toggle { display: none; }

/* ============================================================
   FLOATING WHATSAPP FAB
   ============================================================ */
.iz-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: inline-flex; align-items: center; gap: 10px;
  background: #212121; /* CEO override 21 Jul: all buttons #212121 */
  color: #fff;
  padding: 12px 18px;
  border-radius: 28px;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700; font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(33,33,33,0.35);
  transition: filter 200ms;
  min-height: 44px;
}
.iz-fab:hover { filter: brightness(1.4); }
.iz-fab img { width: 20px; height: 20px; }

/* ============================================================
   BUSINESS PAGE (business.html)
   ============================================================ */
.biz-hero {
  background: #212121;
  padding: 100px 0 60px;
}
.biz-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark-text-primary);
  margin-bottom: 12px;
}
.biz-hero p {
  color: var(--dark-text-secondary);
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.biz-main {
  background: var(--bkg-color);
  padding: var(--sp-xl) 0;
}
.biz-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}

/* Programme boxes */
.prog-box {
  background: #fff;
  border-left: 4px solid var(--btn-pill-color);
  padding: 20px;
  margin-bottom: 20px;
}
.prog-box h3 {
  font-family: Catamaran, Calibri, sans-serif;
  /* Issue 10: bumped from 1rem to 1.125rem to reduce steep step from biz-hero h1 */
  font-weight: 800; font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 6px;
}
.prog-box .prog-value {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px; max-width: 100%;
  line-height: 1.5;
}
.prog-box ul {
  list-style: none; margin: 0; padding: 0;
}
.prog-box ul li {
  font-size: 0.8rem; color: #666;
  padding: 3px 0 3px 14px;
  position: relative; line-height: 1.5;
}
.prog-box ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--btn-pill-color);
  font-weight: 700;
}
.prog-pending-note {
  font-size: 0.72rem;
  color: #aaa;
  font-style: italic;
}

/* Enquiry form */
.biz-form-surface {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 40px;
}
.biz-form-surface h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}
.form-row.full { grid-template-columns: 1fr; }

.field-group { display: flex; flex-direction: column; gap: 4px; }
.field-label {
  font-size: 0.72rem;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
}
.field-label .req { color: var(--btn-red-color); }

.field-input, .field-select, .field-textarea {
  width: 100%;
  border: 1px solid var(--rule);
  padding: 11px 14px;
  border-radius: 0;
  font-family: Catamaran, Calibri, sans-serif;
  font-size: 0.9rem;
  color: var(--text-color);
  background: #fff;
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
  -webkit-appearance: none;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--btn-pill-color);
  box-shadow: 0 0 0 3px rgba(16,131,165,0.15);
}
.field-textarea { min-height: 100px; resize: vertical; }
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.field-error {
  font-size: 0.72rem;
  color: var(--btn-red-color);
  display: none;
}
.field-group.has-error .field-input,
.field-group.has-error .field-select,
.field-group.has-error .field-textarea {
  border-color: var(--btn-red-color);
}
.field-group.has-error .field-error { display: block; }

/* Submit pending state */
.form-submit-pending {
  background: var(--bkg-card-color);
  border-top: 1px solid var(--rule);
  padding: 12px 16px;
  font-size: 0.75rem;
  color: #888;
  margin-top: -16px;
  margin-bottom: 16px;
  text-align: center;
}

/* Success panel */
.form-success {
  display: none;
  border-top: 3px solid var(--btn-pill-color);
  padding: 32px;
  text-align: center;
}
.form-success h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-color); margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9rem; color: #666; max-width: 100%;
}
.form-success.visible { display: block; }
.form-success .success-panel-visible { display: none; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- 960–1279px --- */
@media (max-width: 1279px) {
  .iz-nav__links { gap: 16px; }
  .hero-copy { padding: var(--sp-lg) var(--sp-md); }
}

@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* --- 768–959px --- */
@media (max-width: 959px) {
  /* Nav: hide all but 4 priority links, show More */
  .iz-nav__links .hide-at-960 { display: none; }
  .iz-nav__more-wrap { position: relative; display: block; }
}

/* --- 768–1279px hero --- */
@media (max-width: 1279px) and (min-width: 768px) {
  .hero-section { grid-template-columns: 1fr 1fr; min-height: 90vh; }
}

/* --- <900px delivery grid --- */
@media (max-width: 900px) {
  .delivery-grid { grid-template-columns: 1fr; }
  .pay-inner { grid-template-columns: 1fr; }
  .biz-inner { grid-template-columns: 1fr; }
  /* Issue 2: collapse at 900px (same as .biz-inner) instead of 767px to fix cramped tablet layout */
  .rp-inner { grid-template-columns: 1fr; }
  .ambassador-inner { grid-template-columns: 1fr; }
}

/* --- <768px mobile (merged — Issue 8) --- */
@media (max-width: 767px) {
  /* Grid collapses */
  /* .merchants-tiles — handled by Bootstrap col-12 col-md-4 */
  /* rp-inner and ambassador-inner moved to 900px block — Issue 2 */
  .ambassador-cta-col { order: 2; }
  .ambassador-copy { order: 1; }
  /* .coverage-inner — handled by Bootstrap col-12 col-md-5/col-md-7 */
  /* .app-inner — handled by Bootstrap col-12 col-md-6 */
  /* .skeleton-grid — handled by Bootstrap col-12 col-md-4 */
  /* .pay-tiles — handled by Bootstrap col-6 (2-col always; content is compact enough) */
  /* .drivers-inner — handled by Bootstrap col-12 col-md-5/col-md-7 */
  .drivers-copy { order: 1; }
  .drivers-calculator-col { order: 2; }
  .biz-form-surface { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .coverage-map-col img { max-width: 300px; margin: 0 auto; }

  /* Issue 4: card accent stripe — match card's 16px mobile padding to prevent bleed */
  .card-top-accent { margin: -16px -16px 16px; }

  /* Nav */
  .iz-nav__links { display: none; }
  .iz-nav__hamburger { display: flex; }
  .iz-nav__more-wrap { display: none; }

  /* Hero */
  .hero-section {
    grid-template-columns: 1fr;
    min-height: 100svh;
    min-height: max(100svh, 500px);
  }
  .hero-copy {
    padding: var(--sp-lg) var(--sp-md);
    order: 1;
  }
  /* Issue 12: increased from 200px to 260px for full-body driver photo */
  .hero-image-col {
    order: 2;
    min-height: 260px;
    height: 260px;
  }
  .hero-cta-stack { flex-direction: column; }
  .hero-cta-stack .btn-iz { width: 100%; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(5) { grid-column: 1 / -1; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--dark-rule); }

  /* Delivery cards */
  .delivery-card { padding: 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; padding: 32px var(--sp-md) 16px; }
  .footer-col h4 { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
  .footer-col h4::after { content: '+'; font-size: 1rem; }
  .footer-col.open h4::after { content: '−'; }
  .footer-col ul { display: none; }
  .footer-col.open ul { display: block; }

  /* Merchants CTA bar */
  .merchants-cta-bar { flex-direction: column; text-align: center; }

  /* Store buttons */
  .store-buttons { flex-direction: column; }

  /* Issue 11: reduce negative margin on mobile where heading wraps to two lines */
  .form-submit-pending { margin-top: -8px; }

  /* Issue 5: reduce disproportionate vertical gap between biz-hero and biz-main on mobile */
  .biz-hero { padding: 80px 0 40px; }
  .biz-main { padding: var(--sp-lg) 0; } /* --sp-lg = 48px */
}

/* --- <480px intermediate step — Issue 9 --- */
/* Gives ~440px content width at 500px viewport, reducing the cliff edge at 420px.
   The 420px rule below overrides .iz-container for anything ≤420px (later in cascade). */
@media (max-width: 480px) {
  .iz-container { padding: 0 20px; }
}

/* --- 375px tight --- */
@media (max-width: 420px) {
  .iz-container { padding: 0 16px; }
  .iz-section, .iz-section--xl { padding: var(--sp-lg) 16px; }
  .delivery-section, .pay-section, .drivers-section,
  .merchants-section, .rp-section, .ambassador-section,
  .coverage-section, .app-section, .testimonials-section {
    padding: var(--sp-lg) 0;
  }
  /* Issue 3: match .iz-container 16px side padding at narrowest widths */
  .merchants-cta-bar { padding: 20px 16px; }
}

/* ============================================================
   COVERAGE MAP PINS (S09 — item 9)
   ============================================================ */
.coverage-map-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 480px;
}
.coverage-map-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.map-pins-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
}
.map-pin .pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  transition: transform 150ms ease;
  flex-shrink: 0;
}
.map-pin--teal  .pin-dot { background: var(--btn-green-color); }
.map-pin--coral .pin-dot { background: var(--btn-red-color); }
.map-pin:hover .pin-dot,
.map-pin:focus .pin-dot,
.map-pin.pin-active .pin-dot { transform: scale(1.4); }
.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
  color: var(--text-color);
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.4;
  padding: 5px 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease;
  z-index: 10;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #fff;
}
.map-pin:hover .pin-tooltip,
.map-pin:focus .pin-tooltip,
.map-pin.pin-active .pin-tooltip { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .map-pin .pin-dot, .pin-tooltip { transition: none; }
}
/* Map legend */
.map-legend {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(33,33,33,0.8);
  padding: 8px 10px;
  font-family: Catamaran, Calibri, sans-serif;
  font-size: 0.6rem;
  color: #fff;
  line-height: 1.8;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.map-legend-dot--teal  { background: var(--btn-green-color); }
.map-legend-dot--coral { background: var(--btn-red-color); }

/* ============================================================
   FOOTER LEGAL PENDING TREATMENT (items 16)
   ============================================================ */
.footer-legal-pending {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.footer-pending-label {
  font-size: 0.6rem;
  color: var(--dark-text-faint);
  display: inline;
  margin-left: 4px;
  font-style: italic;
}

/* ============================================================
   CTA LEGAL REVIEW NOTE (item 18)
   ============================================================ */
.cta-legal-note {
  font-size: 0.65rem;
  color: #888;
  line-height: 1.5;
  margin-top: 10px;
  font-family: Catamaran, Calibri, sans-serif;
  font-style: italic;
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}

/* ============================================================
   POPIA FORM NOTICE (item 15)
   ============================================================ */
.form-popia-notice {
  font-size: 0.7rem;
  color: #888;
  line-height: 1.6;
  margin-top: 4px;
  margin-bottom: 16px;
  font-family: Catamaran, Calibri, sans-serif;
  max-width: 100%;
}
.form-popia-notice a {
  color: var(--btn-pill-color);
  text-decoration: underline;
}

/* ============================================================
   FURNITURE CARD — LIGHT CALCULATOR WIDGET (item 2)
   ============================================================ */
.card-calc-widget {
  margin-top: 12px;
  margin-bottom: 4px;
}
.card-calc-fields-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.card-calc-fields-disabled .calc-field-group {
  margin-bottom: 10px;
}
.card-calc-fields-disabled .calc-label {
  display: block;
  font-size: 0.6rem;
  font-family: Catamaran, Calibri, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 3px;
}
.card-calc-fields-disabled .calc-input-light {
  width: 100%;
  border: 1px solid var(--rule);
  padding: 8px 10px;
  border-radius: 0;
  background: var(--bkg-card-color);
  color: var(--text-color);
  font-family: Catamaran, Calibri, sans-serif;
  font-size: 0.8rem;
}
.card-calc-coming-note {
  font-size: 0.65rem;
  color: #999;
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   STORE BADGE BUTTONS — no-emoji version (item 11)
   ============================================================ */
.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #212121;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0;
  text-decoration: none;
  min-height: 52px;
  min-width: 140px;
  font-family: Catamaran, Calibri, sans-serif;
  transition: filter 200ms;
  border: 1px solid #444;
}
.store-badge:hover { filter: brightness(0.85); }
.store-badge-sub {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  line-height: 1;
  margin-bottom: 3px;
}
.store-badge-name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

/* ============================================================
   iZINGA PAY — supporting image column (item 5)
   ============================================================ */
.pay-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pay-image-col img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

/* ============================================================
   MERCHANTS — supporting image (item 6)
   ============================================================ */
.merchants-image-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
.merchants-image-row img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ============================================================
   REAL PHOTO SYSTEM — new section photos (Task A + B)
   Rounded corners + object-fit: cover applied site-wide
   to all content photography containers.
   ============================================================ */

/* S03 Food card — supporting photo */
.food-card-photo {
  margin-top: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
}
.food-card-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 10px;
  display: block;
}

/* S03 Parcel card — supporting photo (matches food card pattern) */
.parcel-card-photo {
  margin-top: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
}
.parcel-card-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 10px;
  display: block;
}

/* S05 Drivers — supporting photo (below copy CTAs) */
.drivers-photo {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.drivers-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 10px;
  display: block;
}

/* S06 Drivers — calculator column supporting photo */
.drivers-calc-photo {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.drivers-calc-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 55% 30%;
  border-radius: 10px;
  display: block;
}

/* S08 Ambassador — supporting photo (below copy) */
.ambassador-photo-col {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.ambassador-photo-col img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 10px;
  display: block;
}

/* S10 App carousel — real mockup frame */
.phone-frame--real {
  border: none;
  background: transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}
.phone-frame--real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* S11 Testimonials — photo feature block */
.testimonials-photo-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px auto;
  max-width: 600px;
  background: var(--bkg-color);
  border-left: 4px solid var(--btn-red-color);
  padding: 12px 16px;
  text-align: left;
  border-radius: 0 10px 10px 0;
}
.testimonials-photo-feature img {
  width: 110px;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}
.testimonials-photo-caption {
  font-family: Catamaran, Calibri, sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
}
.testimonials-photo-caption strong {
  display: block;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 4px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .testimonials-photo-feature {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
  .testimonials-photo-feature img {
    width: 100%;
    height: 180px;
  }
  .drivers-photo img { height: 300px; }
  .ambassador-photo-col img { height: 280px; }
}

/* ============================================================
   ACCESSIBILITY & MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--btn-pill-color);
  outline-offset: 2px;
}

/* Tap target safety net — Issue 1: scoped to actual interactive controls only.
   Bare <a> tags (nav logo, footer links, inline copy links) are excluded
   so .iz-nav__logo and similar non-CTA anchors are not forced to min-height/flex. */
button,
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"] {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
