/* ═══════════════════════════════════════════════════
   MONTEVILLE SUPPLIES & SERVICES — OVERHAULED CSS
   Palette: Deep navy + warm amber accent
   Typography: Outfit (display) + DM Sans (body)
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-2: #edf1f8;
  --surface-3: #dfe5f0;
  --text: #0f1d33;
  --text-soft: #546380;
  --white: #ffffff;
  --primary: #0b2d6e;
  --primary-2: #1a4faa;
  --primary-3: #071730;
  --accent: #d4910a;
  --accent-light: #f5dfa0;
  --border: rgba(15, 29, 51, 0.09);
  --shadow-sm: 0 2px 8px rgba(8, 20, 44, 0.06);
  --shadow: 0 8px 32px rgba(8, 20, 44, 0.08);
  --shadow-lg: 0 20px 48px rgba(8, 20, 44, 0.12);
  --glow-blue: rgba(114, 188, 255, 0.18);
  --glow-amber: rgba(212, 145, 10, 0.16);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(112, 170, 255, 0.08) 0%, rgba(112, 170, 255, 0) 26%),
    radial-gradient(circle at bottom right, rgba(212, 145, 10, 0.06) 0%, rgba(212, 145, 10, 0) 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 .85rem; line-height: 1.1; letter-spacing: -.025em; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3 { font-size: 1.18rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* ── Layout ────────────────────────────────────── */
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section, .site-footer { content-visibility: auto; contain-intrinsic-size: 1px 900px; }

/* ── Eyebrow ───────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .82rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  font-family: 'Outfit', sans-serif;
}
.eyebrow--hero {
  background: rgba(6, 18, 40, .38);
  border: 1px solid rgba(150, 202, 255, .28);
  color: #fff;
  box-shadow: 0 0 20px rgba(95, 170, 255, .14);
  backdrop-filter: blur(10px);
}
.eyebrow--body { background: var(--accent-light); border: 1px solid rgba(212,145,10,.18); color: var(--accent); }

/* ── Topbar ────────────────────────────────────── */
.topline {
  background: linear-gradient(90deg, #071730, #0d2550 48%, #102b59);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topline__inner { display: flex; justify-content: space-between; gap: .8rem; align-items: center; padding: .58rem 0; }
.topline__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.topline__actions a { transition: color var(--transition); }
.topline__actions a:hover { color: var(--accent-light); }

/* ── Header ────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 32px rgba(8, 20, 44, 0.08);
}
.header__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .55rem; padding: .65rem 0 .85rem; min-height: 88px; }

/* Brand */
.brand { display: flex; align-items: center; min-width: 0; }
.brand--full { max-width: min(240px, 34vw); flex: 0 0 auto; margin: 0 auto; }
.brand__logo-full { width: 100%; height: auto; display: block; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(11,45,110,.1)); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; flex-wrap: wrap; justify-content: center; }
.site-nav > a { color: var(--text-soft); padding: .4rem .2rem; position: relative; }
.site-nav > a:hover { color: var(--primary); }
.site-nav > a.is-active { color: var(--primary); }
.site-nav > a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.3rem;
  height: 2.5px; background: var(--accent); border-radius: 99px;
}
.site-nav > a:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible,
.whatsapp-float:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(212,145,10,.35);
  outline-offset: 3px;
}
.site-nav > a.button { margin-left: .3rem; }

/* Button */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .88rem 1.4rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-weight: 700; font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(255,255,255,.12); cursor: pointer; font-size: .95rem;
  box-shadow: 0 10px 24px rgba(11,45,110,.18), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(11,45,110,.24), inset 0 1px 0 rgba(255,255,255,.2); filter: saturate(1.05); }
.button--sm { padding: .68rem .95rem; font-size: .9rem; }
.button--light {
  background: linear-gradient(180deg, #ffffff, #f3f7fd);
  color: var(--primary);
  border-color: rgba(11,45,110,.08);
  box-shadow: 0 10px 20px rgba(8, 20, 44, 0.08), inset 0 1px 0 rgba(255,255,255,.95);
}
.button--light:hover { box-shadow: 0 16px 26px rgba(8, 20, 44, 0.12), inset 0 1px 0 rgba(255,255,255,1); }
.button--accent {
  background: linear-gradient(135deg, #d4910a, #bb7600);
  color: #fff;
  box-shadow: 0 12px 24px rgba(212,145,10,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.button--accent:hover { box-shadow: 0 18px 30px rgba(212,145,10,.3), inset 0 1px 0 rgba(255,255,255,.24); }
.button--ghost { background: transparent; color: var(--primary); border: 1.5px solid rgba(11,45,110,.18); box-shadow: none; }
.button--ghost:hover { border-color: var(--primary); background: rgba(11,45,110,.04); }
.button--block { width: 100%; }

/* Hamburger */
.menu-toggle { display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary); margin: 5px 0; border-radius: 3px; transition: var(--transition); }

/* ── Page Hero ─────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  min-height: clamp(340px, 52vh, 540px); display: flex; align-items: flex-end;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.page-hero.is-loaded::before { transform: scale(1); }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(92, 170, 255, .18) 0%, rgba(92, 170, 255, 0) 38%),
    linear-gradient(180deg, rgba(7,23,48,.34) 0%, rgba(7,23,48,.88) 100%);
}
.page-hero__inner {
  position: relative; z-index: 2; padding: 6rem 0 3rem; max-width: 800px;
}
.page-hero__inner h1,
.page-hero__inner h2,
.page-hero__inner h3 {
  color: #fff;
  text-shadow:
    0 0 16px rgba(115, 188, 255, .28),
    0 3px 10px rgba(4, 12, 28, .88),
    0 12px 28px rgba(4, 12, 28, .58);
}
.page-hero__inner p {
  max-width: 60ch; color: rgba(255,255,255,.95); font-size: 1.08rem;
  text-shadow:
    0 0 12px rgba(115, 188, 255, .16),
    0 2px 6px rgba(4, 12, 28, .82),
    0 8px 18px rgba(4, 12, 28, .5);
}

.hero-home::before { background-image: url('assets/engineering-site.jpg'); }
.hero-about::before { background-image: url('assets/hwange-town-site.jpg'); }
.hero-services::before { background-image: url('assets/mining.jpg'); }
.hero-procurement::before { background-image: url('assets/refrigeration.jpeg'); }
.hero-capability::before { background-image: url('assets/catering.webp'); }
.hero-contact::before { background-image: url('assets/engineering-site.jpg'); }

/* ── Sections ──────────────────────────────────── */
.section { padding: 5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section--light { background: var(--surface); }
.section--dark { background: linear-gradient(180deg, #0c1e3e, #132c56); color: #fff; }
.section--dark p, .section--dark li { color: rgba(255,255,255,.84); }
.section-heading { max-width: 760px; margin: 0 0 2rem; }
.section-heading h2 {
  position: relative;
  padding-bottom: .35rem;
}
.section-heading h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: .7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(212,145,10,0));
}

/* ── Grids ─────────────────────────────────────── */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.cards { display: grid; gap: 1.2rem; }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── Cards ─────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 32px rgba(8, 20, 44, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(8, 20, 44, 0.12);
  border-color: rgba(26,79,170,.16);
}
.card img {
  width: 100%; height: 210px; object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}
.card__body { padding: 1.25rem 1.35rem 1.5rem; }
.card__body a { color: var(--primary-2); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .3rem; }
.card__body a:hover { color: var(--accent); }
.card__body--icon { display: flex; flex-direction: column; height: 100%; justify-content: flex-start; }
.card__body--plain { display: flex; flex-direction: column; min-height: 100%; }
.card__body--plain a { margin-top: auto; }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-light), #fff);
  border: 1px solid rgba(212,145,10,.18);
  display: grid; place-items: center;
  font-weight: 800; font-size: .82rem; color: var(--accent);
  font-family: 'Outfit', sans-serif; margin-bottom: .85rem;
}

/* ── Intro grid (home) ─────────────────────────── */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }

/* ── Panels ────────────────────────────────────── */
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 14px 36px rgba(8, 20, 44, 0.07);
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(114,188,255,.26), rgba(255,255,255,.2));
}
.panel--dark {
  background: linear-gradient(165deg, #132c56, #0c1e3e);
  color: #fff; border-color: rgba(255,255,255,.06);
  box-shadow: 0 22px 44px rgba(5, 15, 34, 0.22);
}
.panel--dark p, .panel--dark li { color: rgba(255,255,255,.84); }

/* ── Stat Row ──────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-box { text-align: center; padding: 1.2rem .8rem; }
.stat-box {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.68));
  border: 1px solid rgba(11,45,110,.06);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 24px rgba(8,20,44,.05);
}
.stat-number {
  font-size: 2.4rem; font-family: 'Outfit', sans-serif; font-weight: 800;
  color: var(--primary); line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .85rem; color: var(--text-soft); margin-top: .3rem; font-weight: 500; }

/* ── KPI / Checklist / Lists ───────────────────── */
.kpi-list, .checklist, .timeline, .footer-links, .mini-list { list-style: none; padding: 0; margin: 0; }

.kpi-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; margin-top: 1rem; }
.kpi-list li { background: var(--surface-2); border: 1px solid rgba(11,45,110,.06); padding: 1rem; border-radius: var(--radius-sm); }
.kpi-list strong { display: block; font-size: 1.02rem; color: var(--primary); font-family: 'Outfit', sans-serif; }

.checklist { display: grid; gap: .75rem; margin-top: .8rem; }
.checklist li, .mini-list li { padding-left: 1.5rem; position: relative; font-size: .97rem; }
.checklist li::before, .mini-list li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

/* ── Logo Row ──────────────────────────────────── */
.logo-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: 1.2rem; }
.logo-row img {
  height: 40px; width: auto;
  filter: grayscale(1) opacity(.82);
  transition: var(--transition);
}
.logo-row img:hover { filter: grayscale(.2) opacity(1); transform: translateY(-1px); }
.logo-row span {
  padding: .45rem .75rem; border-radius: 999px;
  border: 1px solid rgba(11,45,110,.1); color: var(--primary);
  font-weight: 700; background: #fff; font-size: .88rem;
}

/* ── Pill / Tags ───────────────────────────────── */
.pill-row, .tag-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill-row span, .tag-grid span {
  padding: .48rem .8rem; background: var(--surface-2);
  border-radius: 999px; border: 1px solid rgba(11,45,110,.06);
  font-weight: 600; color: var(--primary); font-size: .9rem;
}

/* ── Timeline ──────────────────────────────────── */
.timeline { display: grid; gap: 0; }
.timeline li {
  display: grid; grid-template-columns: 100px 1fr; gap: 1.2rem;
  padding: 1.2rem 0; border-top: 1px solid var(--border);
}
.timeline li:first-child { border-top: 0; padding-top: 0; }
.timeline strong { color: var(--accent); font-size: 1rem; font-family: 'Outfit', sans-serif; }

/* ── Split Media ───────────────────────────────── */
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split-media img {
  height: 100%; min-height: 240px; object-fit: cover;
  border-radius: var(--radius); box-shadow: 0 18px 36px rgba(8,20,44,.1);
}

/* ── CTA Band ──────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border-radius: var(--radius); padding: 2.2rem 2rem;
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(212,145,10,.12);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
}
.cta-band p { margin: 0; color: rgba(255,255,255,.88); }

/* ── Quick Links ───────────────────────────────── */
.quick-links { display: grid; gap: .65rem; }
.quick-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--surface-2); font-weight: 700; color: var(--primary);
  border: 1px solid rgba(11,45,110,.06); min-height: 54px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: all var(--transition);
}
.quick-links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-color: rgba(11,45,110,.3);
  box-shadow: 0 14px 28px rgba(11,45,110,.16);
}
.panel--dark .quick-links a { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.08); }
.panel--dark .quick-links a:hover { background: rgba(255,255,255,.16); }

/* ── Info Grid (steps) ─────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.info-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
  box-shadow: 0 14px 34px rgba(8,20,44,.07);
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(212,145,10,0));
}
.metric {
  font-size: 2.2rem; font-family: 'Outfit', sans-serif; font-weight: 800;
  color: var(--accent); line-height: 1;
}

/* ── Leader Cards ──────────────────────────────── */
.leader-card img, .leader-card img.leader-photo {
  width: 100%; height: auto; aspect-ratio: auto; object-fit: contain;
  background: linear-gradient(180deg, #f7faff, #edf3fd);
  padding: 1rem 1rem 0; max-height: none;
}
.leader-card--featured { grid-column: span 2; }
.leader-card .card__body p:first-of-type { font-weight: 600; color: var(--text-soft); }

/* ── Forms ─────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.quote-helper {
  display: flex; flex-wrap: wrap; gap: .45rem;
  align-items: center; margin: 0 0 1rem;
  padding: .9rem 1rem; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid rgba(11,45,110,.08);
  color: var(--primary);
}
.quote-helper strong { font-family: 'Outfit', sans-serif; }
label { font-weight: 600; color: var(--text); font-size: .92rem; }
input, select, textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(15,29,51,.12); background: #fff;
  font: inherit; color: var(--text); font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary-2);
  box-shadow: 0 0 0 3px rgba(26,79,170,.1);
}
textarea { min-height: 140px; resize: vertical; }

/* ── Contact Layout ────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.contact-card {
  background: linear-gradient(165deg, #132c56, #0c1e3e);
  color: #fff; padding: 1.8rem; border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(5,15,34,.24);
  border: 1px solid rgba(255,255,255,.07);
}
.contact-card p, .contact-card a { color: rgba(255,255,255,.86); }
.contact-card a:hover { color: var(--accent-light); }
.contact-card .button { margin-top: .8rem; }

/* ── Footer ────────────────────────────────────── */
.site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(247,250,255,1));
  color: var(--primary);
  margin-top: 3rem;
  border-top: 1px solid rgba(11,45,110,.08);
}
.footer__grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr .9fr; gap: 2rem; padding: 3rem 0; }
.footer-brand--stacked { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.footer-brand__logo-full { width: min(250px, 100%); height: auto; object-fit: contain; display: block; filter: none; }
.footer-brand p { color: var(--text-soft); font-size: .93rem; }
.site-footer h3 { font-size: .95rem; margin-bottom: .65rem; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: var(--primary); font-size: .94rem; }
.footer-links a:hover { color: var(--primary-2); }
.footer-links--plain li { color: var(--text-soft); font-size: .93rem; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-top: 1px solid rgba(11,45,110,.08);
  color: var(--text-soft); font-size: .88rem;
}
.footer__bottom p:last-child { font-weight: 600; color: var(--primary); }

/* ── WhatsApp FAB ──────────────────────────────── */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 35;
  background: #25d366; color: #fff; font-weight: 700;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden; font-size: 0;
}
.whatsapp-float::before {
  content: '';
  display: block; width: 28px; height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,.45); }

/* ── Reveal animations ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1040px) {
  .grid--2, .grid--3, .cards--3, .cards--4, .intro-grid, .contact-layout, .footer__grid, .info-grid { grid-template-columns: 1fr 1fr; }
  .kpi-list, .stat-row { grid-template-columns: 1fr 1fr; }
  .site-nav {
    position: absolute; left: 1rem; right: 1rem; top: 100%;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1rem; box-shadow: var(--shadow-lg);
    display: none; flex-direction: column; align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: .6rem .4rem; }
  .site-nav > a.is-active::after { display: none; }
  .site-nav > a.button { margin: .4rem 0 0; }
  .menu-toggle { display: block; }
  .brand--full { max-width: 170px; }
  .header__inner { flex-direction: row; justify-content: space-between; min-height: 78px; }
}

@media (max-width: 760px) {
  .topline__inner, .footer__bottom, .cta-band { flex-direction: column; align-items: flex-start; }
  .header__inner { flex-direction: row; align-items: center; }
  .grid--2, .grid--3, .cards--3, .cards--4, .intro-grid, .contact-layout, .footer__grid, .info-grid, .form-grid, .split-media, .stat-row { grid-template-columns: 1fr; }
  .kpi-list { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; }
  .page-hero__inner { padding-top: 5rem; }
  .leader-card--featured { grid-column: span 1; }
  .brand--full { max-width: 150px; }
  .header__inner { min-height: 72px; }
  .topline__actions { gap: .35rem; }
  .topline__actions a { font-size: .84rem; }
  .footer-brand__logo-full { width: min(200px, 100%); }
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-float::before { width: 24px; height: 24px; }
  .section { padding: 3.5rem 0; }
}

input[name="bot-field"], .hidden-field { display:none !important; }

.card img { border-bottom: 1px solid rgba(11,45,110,.05); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .page-hero::before { transform: none !important; }
}
