/* ==========================================================================
   EL TOV LOGISTICS AND SERVICES
   Production stylesheet (mobile first, accessible, performance focused)
   --------------------------------------------------------------------------
   Sections:
   1.  Design tokens (CSS custom properties)
   2.  Reset and base
   3.  Typography
   4.  Layout helpers (container, grid, section)
   5.  Buttons and links
   6.  Top utility bar
   7.  Header / navigation
   8.  Page hero / breadcrumb banner
   9.  Home hero (split with quote form)
   10. Cards, services, features
   11. Stats, process, testimonials
   12. Forms
   13. CTA band
   14. Footer
   15. Floating WhatsApp button
   16. Animations and utilities
   17. Responsive breakpoints
   ========================================================================== */

/* 1. DESIGN TOKENS ======================================================== */
:root {
  /* Brand colours (refined from the El Tov logo: deep blue + signal gold) */
  --c-navy:        #0d1b2e;   /* near-black brand navy */
  --c-blue:        #14457f;   /* primary brand blue */
  --c-blue-700:    #0f3461;
  --c-gold:        #ffc20e;   /* signal gold accent */
  --c-gold-600:    #e6ad00;
  --c-cream:       #fdf9ed;   /* warm section tint */
  --c-ink:         #14202e;   /* body text */
  --c-muted:       #5d6b7a;   /* secondary text */
  --c-line:        #e7ebef;   /* hairline borders */
  --c-white:       #ffffff;
  --c-surface:     #ffffff;
  --c-bg:          #ffffff;

  /* Typography */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   clamp(1.25rem, 2.2vw, 1.5rem);
  --fs-2xl:  clamp(1.6rem, 3.4vw, 2.25rem);
  --fs-3xl:  clamp(2rem, 5vw, 3.25rem);
  --fs-hero: clamp(2.4rem, 6vw, 4rem);

  /* Spacing scale */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem;   --sp-8: 2rem;    --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;   --sp-24: 6rem;

  /* Radii and shadows */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(13,27,46,.06);
  --shadow-md: 0 12px 30px rgba(13,27,46,.10);
  --shadow-lg: 0 28px 70px rgba(13,27,46,.16);

  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* 2. RESET AND BASE ====================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }

/* Visible focus for keyboard users (accessibility) */
:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 2px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--c-navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* 3. TYPOGRAPHY ========================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 800; color: var(--c-navy); }
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
p  { color: var(--c-muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: .14em; text-transform: uppercase; color: var(--c-blue);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-gold); display: inline-block; }
.lead { font-size: var(--fs-lg); color: var(--c-muted); }

/* 4. LAYOUT ============================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--cream { background: var(--c-cream); }
.section--navy { background: var(--c-navy); color: #cdd6e0; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: var(--sp-12); }
.section-head p { margin-top: var(--sp-3); }
.grid { display: grid; gap: var(--sp-6); }

/* 5. BUTTONS ============================================================= */
.btn {
  --bg: var(--c-gold); --fg: var(--c-navy);
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm);
  padding: .9rem 1.5rem; border: 0; border-radius: var(--r-pill); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn .btn__ic {
  display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-navy); color: var(--c-gold); transition: transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover .btn__ic { transform: translateX(3px) rotate(0deg); }
.btn--dark { --bg: var(--c-navy); --fg: #fff; }
.btn--dark .btn__ic { background: var(--c-gold); color: var(--c-navy); }
.btn--ghost { --bg: transparent; --fg: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn--ghost .btn__ic { background: var(--c-gold); }
.btn--block { width: 100%; justify-content: center; }
.btn--wa { --bg: #25d366; --fg: #06351a; }
.btn--wa .btn__ic { background: #06351a; color: #25d366; }

/* 6. TOP UTILITY BAR ===================================================== */
.topbar { background: var(--c-navy); color: #c6d0db; font-size: var(--fs-xs); }
.topbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1.4rem; padding-block: .5rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--c-gold); flex: none; }
.topbar__spacer { margin-left: auto; }
.topbar a:hover { color: #fff; }

/* 7. HEADER / NAV ======================================================== */
.header {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; gap: var(--sp-6); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 50px; height: 50px; flex: none; }
.brand__txt { font-family: var(--font-display); font-weight: 800; line-height: 1; color: var(--c-navy); font-size: 1.05rem; }
.brand__txt small { display: block; font-weight: 600; font-size: .68rem; letter-spacing: .14em; color: var(--c-blue); margin-top: 3px; }
.nav__menu { display: none; gap: var(--sp-2); margin-inline: auto; }
.nav__link {
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  padding: .55rem .9rem; border-radius: var(--r-pill); color: var(--c-navy); position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--c-gold); transition: width .25s var(--ease), left .25s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 50%; left: 25%; }
.nav__cta { display: none; align-items: center; gap: .7rem; }
.nav__phone { display: flex; align-items: center; gap: .65rem; }
.nav__phone .ic {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-navy);
}
.nav__phone small { display: block; font-size: var(--fs-xs); color: var(--c-muted); }
.nav__phone b { font-family: var(--font-display); color: var(--c-navy); font-size: 1rem; }

/* Mobile toggle */
.nav__toggle {
  margin-left: auto; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--c-line);
  background: #fff; display: grid; place-items: center; cursor: pointer;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--c-navy); border-radius: 2px;
  position: relative; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--header-h) 0 0 0; background: #fff; z-index: 190;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2);
  overflow-y: auto;
}
.nav.is-open .nav__drawer { opacity: 1; transform: none; pointer-events: auto; }
.nav__drawer a.nav__link { font-size: 1.15rem; padding: .9rem .5rem; border-bottom: 1px solid var(--c-line); border-radius: 0; }
.nav__drawer .btn { margin-top: var(--sp-4); }

/* 8. PAGE HERO BANNER ==================================================== */
.banner {
  position: relative; color: #fff; text-align: center;
  padding-block: clamp(3.5rem, 10vw, 7rem); isolation: isolate;
  background: linear-gradient(180deg, rgba(13,27,46,.78), rgba(13,27,46,.86)),
              url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=70") center/cover;
  /* REPLACE: hero truck banner image (Unsplash placeholder) */
}
.banner h1 { color: #fff; }
.breadcrumb { margin-top: var(--sp-3); font-size: var(--fs-sm); color: #c6d0db; }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb b { color: var(--c-gold); }

/* 9. HOME HERO =========================================================== */
.hero {
  position: relative; color: #fff; isolation: isolate;
  background: linear-gradient(180deg, rgba(13,27,46,.72), rgba(13,27,46,.9)),
              url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1700&q=70") center/cover;
  /* REPLACE: night highway trucks hero image (Unsplash placeholder) */
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero__grid { display: grid; gap: var(--sp-8); align-items: center; }
.hero__copy { text-align: center; }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: var(--sp-4); }
.hero__copy p { color: #dde4ec; max-width: 540px; margin-inline: auto; }
.hero__actions { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

.hero__card {
  background: #fff; color: var(--c-ink); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow-lg);
}
.hero__card h2 { font-size: var(--fs-xl); text-align: center; }
.hero__card .sub { text-align: center; color: var(--c-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }

/* 10. CARDS / SERVICES / FEATURES ======================================= */
.svc { display: grid; gap: var(--sp-8); }
.svc__row {
  display: grid; gap: var(--sp-6); align-items: center; background: var(--c-cream);
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-line);
}
.svc__media { position: relative; aspect-ratio: 4/3; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__badge {
  position: absolute; top: 1rem; right: 1rem; width: 56px; height: 56px; border-radius: 16px;
  background: var(--c-gold); color: var(--c-navy); display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.svc__badge svg { width: 28px; height: 28px; }
.svc__body { padding: clamp(1.5rem, 4vw, 2.5rem); }
.svc__body h3 { font-size: var(--fs-2xl); color: var(--c-navy); margin-bottom: var(--sp-3); }
.svc__body p { margin-bottom: var(--sp-3); }
.svc__body p b { color: var(--c-navy); }
.svc__body .btn { margin-top: var(--sp-2); }

/* Generic feature cards */
.cards { display: grid; gap: var(--sp-6); }
.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: var(--sp-8); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy)); color: var(--c-gold); margin-bottom: var(--sp-4);
}
.card__ic svg { width: 28px; height: 28px; }
.card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.card p { font-size: var(--fs-sm); }

/* Checklist */
.checklist { display: grid; gap: var(--sp-3); margin: var(--sp-4) 0; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; color: var(--c-ink); font-weight: 500; }
.checklist svg { width: 22px; height: 22px; color: var(--c-gold); flex: none; margin-top: 2px; }

/* 11. STATS / PROCESS / TESTIMONIALS ==================================== */
.stats { display: grid; gap: var(--sp-8); text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--c-gold); line-height: 1; }
.stat__label { font-family: var(--font-display); letter-spacing: .12em; text-transform: uppercase; font-size: var(--fs-xs); color: #aeb9c6; margin-top: var(--sp-2); }

.process { display: grid; gap: var(--sp-8); counter-reset: step; }
.step { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--sp-8); position: relative; }
.step__no {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-gold); color: var(--c-navy); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: var(--sp-4);
}
.step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.step p { font-size: var(--fs-sm); }

.tcards { display: grid; gap: var(--sp-6); }
.tcard { background: #122339; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); padding: var(--sp-8); }
.tcard__stars { color: var(--c-gold); letter-spacing: 3px; margin-bottom: var(--sp-3); }
.tcard p { color: #dde4ec; font-style: italic; }
.tcard__who { display: flex; align-items: center; gap: .8rem; margin-top: var(--sp-6); }
.tcard__who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tcard__who b { color: #fff; font-family: var(--font-display); display: block; }
.tcard__who small { color: #9fb0c2; }

/* 12. FORMS ============================================================= */
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--c-navy); margin-bottom: .35rem; }
.field .req { color: #d23; }
.input, .textarea, .select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--c-line); border-radius: var(--r-sm);
  background: #fbfcfd; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(20,69,127,.12); outline: none; background: #fff;
}
.textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
.checks { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: var(--sp-4); }
.checks label { display: inline-flex; align-items: center; gap: .45rem; font-size: var(--fs-sm); color: var(--c-muted); font-weight: 500; }
/* Honeypot (anti-spam): visually hidden, off-screen */
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
/* Inline form feedback */
.form-note { display: none; padding: .85rem 1rem; border-radius: var(--r-sm); font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.form-note.is-ok  { display: block; background: #e6f7ee; color: #11663b; border: 1px solid #b8e6cd; }
.form-note.is-err { display: block; background: #fdecec; color: #8a1f1f; border: 1px solid #f3c2c2; }
.field-error { color: #c0392b; font-size: var(--fs-xs); margin-top: .25rem; display: none; }
.input.is-invalid, .textarea.is-invalid, .select.is-invalid { border-color: #c0392b; }

/* 13. CTA BAND ========================================================== */
.cta {
  background: linear-gradient(120deg, var(--c-gold), var(--c-gold-600));
  text-align: center; color: var(--c-navy);
}
.cta h2 { color: var(--c-navy); }
.cta p { color: #5a4a05; margin: var(--sp-3) auto var(--sp-6); max-width: 520px; }

/* 14. FOOTER ============================================================ */
.footer { background: #07101e; color: #9fb0c2; padding-block: var(--sp-16) var(--sp-6); }
.footer__grid { display: grid; gap: var(--sp-10); margin-bottom: var(--sp-12); }
.footer h4 { color: #fff; font-size: var(--fs-lg); margin-bottom: var(--sp-4); }
.footer a:hover { color: var(--c-gold); }
.footer__links li { margin-bottom: .6rem; }
.footer__links a { display: inline-flex; gap: .4rem; }
.footer__brand .brand__txt, .footer__brand small { color: #fff; }
.footer__about { font-size: var(--fs-sm); margin: var(--sp-4) 0; max-width: 30ch; }
.social { display: flex; gap: .6rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .25s var(--ease), border-color .25s; }
.social a:hover { background: var(--c-gold); color: var(--c-navy); border-color: var(--c-gold); }
.social svg { width: 18px; height: 18px; }
.footer__say .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--c-gold); color: var(--c-navy); display: grid; place-items: center; }
.footer__say { display: flex; align-items: center; gap: .8rem; margin-bottom: var(--sp-4); }
.footer__say b { color: #fff; font-size: 1.15rem; font-family: var(--font-display); display: block; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: var(--fs-sm); }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* 15. FLOATING WHATSAPP ================================================= */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.06); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* 16. ANIMATIONS / UTILITIES =========================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* 17. RESPONSIVE ======================================================== */
@media (min-width: 720px) {
  .cards, .tcards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .svc__row { grid-template-columns: 1fr 1fr; }
  .svc__row--rev .svc__media { order: 2; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
@media (min-width: 992px) {
  .nav__menu, .nav__cta { display: flex; }
  .nav__toggle, .nav__drawer { display: none; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1.1fr .9fr; }
  .hero__copy { text-align: left; }
  .hero__copy p { margin-inline: 0; }
  .hero__actions { justify-content: flex-start; }
}

/* ==========================================================================
   18. EXTENDED SECTIONS (static HTML build)
   Imagery gallery, use cases, logos strip, larger media treatments.
   ========================================================================== */

/* Image mosaic / gallery */
.mosaic { display: grid; gap: var(--sp-3); grid-template-columns: 1fr 1fr; }
.mosaic figure { position: relative; overflow: hidden; border-radius: var(--r-md); margin: 0; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mosaic figure:hover img { transform: scale(1.06); }
.mosaic figure::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem .9rem; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm);
  background: linear-gradient(180deg, transparent, rgba(7,16,30,.85));
}
.mosaic .tall { grid-row: span 2; }
@media (min-width: 760px) {
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
  .mosaic figure { grid-column: span 1; }
  .mosaic .wide { grid-column: span 2; }
  .mosaic .tall { grid-row: span 2; }
}

/* Use-case cards with image header */
.usecases { display: grid; gap: var(--sp-6); }
.uc {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.uc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.uc__img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.uc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.uc:hover .uc__img img { transform: scale(1.05); }
.uc__tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--c-gold); color: var(--c-navy);
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-xs); padding: .35rem .8rem; border-radius: var(--r-pill);
}
.uc__body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.uc__body h3 { font-size: var(--fs-lg); }
.uc__body p { font-size: var(--fs-sm); }
.uc__metric { margin-top: auto; display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); color: var(--c-blue); font-weight: 700; font-size: var(--fs-sm); }
.uc__metric svg { width: 18px; height: 18px; color: var(--c-gold); }
@media (min-width: 760px) { .usecases { grid-template-columns: repeat(3, 1fr); } }

/* Trust / partners strip */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-8); opacity: .8; }
.trust span { font-family: var(--font-display); font-weight: 800; color: var(--c-muted); font-size: 1.1rem; letter-spacing: .02em; }

/* Split feature with big image */
.feature {
  display: grid; gap: var(--sp-8); align-items: center;
}
.feature__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--rev .feature__media { order: 2; }
}

/* Solution-led testimonial cards (light variant) */
.solrev { display: grid; gap: var(--sp-6); }
.solrev .sr {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--sp-8);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--sp-3);
}
.sr__chip { align-self: flex-start; background: var(--c-cream); color: var(--c-blue); border: 1px solid var(--c-line); font-size: var(--fs-xs); font-weight: 700; font-family: var(--font-display); padding: .3rem .75rem; border-radius: var(--r-pill); }
.sr__stars { color: var(--c-gold); letter-spacing: 2px; }
.sr p { color: var(--c-ink); }
.sr__who { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: var(--sp-3); border-top: 1px solid var(--c-line); }
.sr__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.sr__who b { font-family: var(--font-display); color: var(--c-navy); display: block; }
.sr__who small { color: var(--c-muted); }
@media (min-width: 760px) { .solrev { grid-template-columns: repeat(3, 1fr); } }
