/* ==========================================================================
   Growth Partners Mozambique — Design System
   ========================================================================== */

:root {
  --navy-900: #131b2f;
  --navy-800: #1a2540;
  --navy-700: #21304f;
  --navy-600: #2c3f68;
  --navy-500: #3c5285;
  --navy-100: #eef1f9;

  --gold-600: #e0930a;
  --gold-500: #fdab15;
  --gold-400: #ffc25c;
  --gold-100: #fff4e0;

  --gray-900: #1a1f2b;
  --gray-700: #4b5468;
  --gray-500: #7c869b;
  --gray-300: #cfd5e2;
  --gray-200: #e7eaf1;
  --gray-100: #f6f7fb;
  --white: #ffffff;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(19, 27, 47, 0.07);
  --shadow-md: 0 14px 34px rgba(19, 27, 47, 0.12);
  --shadow-lg: 0 24px 60px rgba(19, 27, 47, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.2;
  font-weight: 600;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Utilities ---------- */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.bg-light { background: var(--gray-100); }
.bg-navy { background: var(--navy-800); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.bg-navy .eyebrow, .on-dark .eyebrow { color: var(--gold-400); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--gray-700); font-size: 17px; }
.bg-navy .section-head p { color: var(--gray-300); }

.lede { font-size: 19px; color: var(--gray-700); max-width: 640px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--ease) .25s, box-shadow var(--ease) .25s, background var(--ease) .25s, color var(--ease) .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy-700); color: var(--white); }
.btn-navy:hover { background: var(--navy-600); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-outline-navy { border: 1.5px solid var(--navy-500); color: var(--navy-600); }
.btn-outline-navy:hover { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 22px; font-size: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-600);
  transition: gap var(--ease) .2s, color var(--ease) .2s;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--ease) .2s; }
.link-arrow:hover { gap: 13px; color: var(--gold-600); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: var(--gray-300);
  font-size: 13.5px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-left { display: flex; gap: 26px; }
.topbar-left a, .topbar-left span { display: inline-flex; align-items: center; gap: 7px; color: var(--gray-300); }
.topbar-left svg { width: 14px; height: 14px; color: var(--gold-500); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background var(--ease) .2s, transform var(--ease) .2s; }
.topbar-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px); }
.topbar-social svg { width: 13px; height: 13px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--ease) .3s, border-color var(--ease) .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--gray-200); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 62px; width: auto; }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main > li { position: relative; }
.nav-main > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-800);
  border-radius: 100px;
  transition: background var(--ease) .2s, color var(--ease) .2s;
}
.nav-main > li > a svg { width: 14px; height: 14px; transition: transform var(--ease) .2s; }
.nav-main > li:hover > a, .nav-main > li > a.active { background: var(--navy-100); color: var(--navy-700); }
.nav-main > li:hover > a svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--ease) .25s;
}
.nav-main > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-900);
  transition: background var(--ease) .2s, padding-left var(--ease) .2s;
}
.dropdown a .ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--navy-100); color: var(--navy-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dropdown a .ic svg { width: 17px; height: 17px; }
.dropdown a:hover { background: var(--gray-100); padding-left: 18px; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; background: var(--navy-100); }
.nav-burger svg { width: 20px; height: 20px; color: var(--navy-700); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(19,27,47,0.94) 20%, rgba(19,27,47,0.78) 55%, rgba(19,27,47,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 140px 0 80px; }
.hero-content .eyebrow { color: var(--gold-400); }
.hero-content h1 { font-size: clamp(34px, 5vw, 58px); color: var(--white); margin-bottom: 22px; }
.hero-content h1 span { color: var(--gold-500); }
.hero-content p { font-size: 18px; color: var(--gray-300); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
}
.hero-stats div { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.hero-stats div:last-child { border-right: none; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: clamp(24px,3vw,34px); color: var(--gold-500); }
.hero-stats span { font-size: 13.5px; color: var(--gray-300); }

/* Page banner (inner pages) */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  margin-top: -1px;
}
.page-banner .hero-bg::after { background: linear-gradient(120deg, rgba(19,27,47,0.93), rgba(19,27,47,0.68)); }
.page-banner-content { position: relative; z-index: 2; padding: 60px 0; }
.page-banner h1 { font-size: clamp(30px, 4vw, 46px); color: var(--white); margin: 10px 0 14px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-300); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-banner p.lede { color: var(--gray-300); }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease) .3s, box-shadow var(--ease) .3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb { position: relative; height: 220px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(19,27,47,0) 55%, rgba(19,27,47,0.55) 100%); }
.service-card .num { position: absolute; top: 16px; left: 16px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 600; font-size: 14px; border: 1px solid rgba(255,255,255,0.3); }
.service-card .body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card .ic {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--navy-100); color: var(--navy-600);
  display: flex; align-items: center; justify-content: center;
  margin-top: -58px; margin-bottom: 18px; position: relative; z-index: 3;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--white);
}
.service-card .ic svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--gray-700); font-size: 15px; margin-bottom: 20px; flex: 1; }

.value-card {
  padding: 34px 26px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform var(--ease) .25s, border-color var(--ease) .25s, box-shadow var(--ease) .25s;
}
.value-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-md); }
.value-card .ic {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-card .ic svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--gray-700); }

.feature-row {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: box-shadow var(--ease) .25s, transform var(--ease) .25s, border-color var(--ease) .25s;
}
.feature-row:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.feature-row .ic {
  width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0;
  background: var(--navy-100); color: var(--navy-600);
  display: flex; align-items: center; justify-content: center;
}
.feature-row .ic svg { width: 22px; height: 22px; }
.feature-row h4 { font-size: 16.5px; margin-bottom: 6px; }
.feature-row p { font-size: 14.5px; color: var(--gray-700); }

/* About / split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 26px; display: flex; align-items: center; gap: 14px;
}
.split-media .badge .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-500); color: var(--navy-900); display: flex; align-items: center; justify-content: center; }
.split-media .badge .ic svg { width: 22px; height: 22px; }
.split-media .badge strong { display: block; font-family: var(--font-head); font-size: 22px; color: var(--navy-800); }
.split-media .badge span { font-size: 13px; color: var(--gray-700); }
.split-media .frame { position: absolute; inset: -18px -18px auto auto; width: 140px; height: 140px; border: 8px solid var(--gold-500); border-radius: var(--radius-lg); z-index: -1; top: -18px; right: -18px; }

.split-text ul.checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--gray-700); }
.checklist li svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }

/* Stats / growth section */
.stats-section { position: relative; color: var(--white); overflow: hidden; }
.stats-section .hero-bg::after { background: linear-gradient(120deg, rgba(19,27,47,0.93), rgba(44,63,104,0.9)); }
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-box { text-align: center; }
.stat-box .num { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--gold-500); display: flex; align-items: center; justify-content: center; gap: 4px; }
.stat-box p { color: var(--gray-300); font-size: 14.5px; margin-top: 8px; }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-banner .hero-bg::after { background: linear-gradient(120deg, rgba(19,27,47,0.92), rgba(44,63,104,0.86)); }
.cta-banner-content { position: relative; z-index: 2; max-width: 560px; }
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-banner p { color: var(--gray-300); }
.cta-banner-actions { position: relative; z-index: 2; display: flex; gap: 16px; flex-wrap: wrap; }

/* Brands strip */
.brands-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brands-strip span {
  padding: 12px 26px; border-radius: 100px; background: var(--white);
  border: 1px solid var(--gray-200); font-family: var(--font-head); font-weight: 600;
  color: var(--navy-700); font-size: 14.5px; letter-spacing: .02em;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 40px; align-items: start; }
.contact-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px;
  transition: box-shadow var(--ease) .2s, transform var(--ease) .2s;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-100); color: var(--navy-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .ic svg { width: 21px; height: 21px; }
.contact-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--gray-700); }
.contact-card a:hover { color: var(--navy-600); }

.form-panel { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); background: var(--gray-100);
  font-family: var(--font-body); font-size: 15px; color: var(--gray-900);
  transition: border-color var(--ease) .2s, background var(--ease) .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-500); background: var(--white); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--gray-500); margin-top: 14px; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-top: 40px; }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: var(--gray-300); }
.footer-top { padding: 80px 0 50px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 56px; margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; color: var(--gray-500); max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--ease) .2s, transform var(--ease) .2s; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.site-footer h4 { color: var(--white); font-size: 16px; margin-bottom: 22px; }
.footer-links li { margin-bottom: 13px; }
.footer-links a { font-size: 14.5px; color: var(--gray-500); transition: color var(--ease) .2s, padding-left var(--ease) .2s; }
.footer-links a:hover { color: var(--gold-500); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 18px; font-size: 14.5px; color: var(--gray-500); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--gray-500); flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--gold-500); }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-800); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--ease) .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--navy-900); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 60px; }
  .split-media img { height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div:nth-child(2) { border-right: none; }
}

@media (max-width: 860px) {
  .nav-main, .nav-actions .btn-navy { display: none; }
  .nav-burger { display: flex; }
  .topbar-left span:last-child { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 0 60px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 60px 0 40px; }
  .cta-banner { padding: 46px 28px; flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media .badge { position: static; margin-top: 20px; }
  .split-media .frame { display: none; }
  .service-card .thumb { height: 190px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 900;
  background: var(--navy-900);
  padding: 26px 24px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav-top img { height: 48px; }
.mobile-nav-close { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); }
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav a { display: block; padding: 14px 6px; font-family: var(--font-head); font-size: 17px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .sub-links a { padding-left: 20px; font-size: 15px; color: var(--gray-300); font-weight: 400; }
.mobile-nav-cta { margin-top: 24px; }

/* ==========================================================================
   Cotação de EPIs — carrinho partilhado (presente em todas as páginas)
   ========================================================================== */

/* Small pill buttons reused by the catalogue (epis-shop.css) and the cart drawer */
.epi-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .03em; padding: 10px 12px; border-radius: var(--radius-sm); transition: background .2s, transform .2s; }
.epi-btn--quote { background: var(--navy-700); color: var(--white); width: 100%; }
.epi-btn--quote:hover { background: var(--navy-600); }
.epi-btn--lg { font-size: 13px; padding: 13px 18px; }
.epi-btn--wa { background: #25d366; color: var(--white); }
.epi-btn--wa:hover { background: #1fb955; }

/* Header cart icon */
.nav-cart-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--navy-100); color: var(--navy-700); transition: background .2s, color .2s; }
.nav-cart-btn:hover { background: var(--gold-100); color: var(--gold-600); }
.nav-cart-btn svg { width: 19px; height: 19px; }
.nav-cart-badge { position: absolute; top: -6px; right: -6px; background: var(--gold-500); color: var(--navy-900); font-size: 10.5px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 4px; border: 2px solid var(--white); }
.mobile-nav-cart { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-cart span[data-epi-quote-badge] { background: var(--gold-500); color: var(--navy-900); font-size: 12px; font-weight: 700; min-width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }

/* Toast */
.gp-toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--navy-900); color: var(--white); padding: 13px 22px; border-radius: 100px; font-size: 13.5px; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 1000; opacity: 0; visibility: hidden; transition: all .3s; max-width: 90vw; text-align: center; }
.gp-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.gp-toast--success { background: #1b7a3e; }

/* Cart floating action button */
.epi-cart-fab { position: fixed; right: 26px; bottom: 90px; z-index: 400; display: flex; align-items: center; gap: 9px; background: var(--gold-500); color: var(--navy-900); padding: 15px 22px; border-radius: 100px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; box-shadow: var(--shadow-lg); transition: transform .25s; }
.epi-cart-fab:hover { transform: translateY(-3px); }
.epi-cart-fab svg { width: 18px; height: 18px; }
.epi-cart-badge { background: var(--navy-900); color: var(--white); font-size: 11px; font-weight: 700; min-width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Cart drawer */
.epi-cart-overlay { position: fixed; inset: 0; background: rgba(19,27,47,.5); z-index: 950; opacity: 0; visibility: hidden; transition: opacity .3s; }
.epi-cart-overlay.open { opacity: 1; visibility: visible; }
.epi-cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 100%; background: var(--white); z-index: 960; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.epi-cart-drawer.open { transform: translateX(0); }
.epi-cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; background: var(--navy-800); color: var(--white); flex-shrink: 0; }
.epi-cart-header h3 { color: var(--white); font-size: 17px; }
.epi-cart-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); }
.epi-cart-close:hover { background: rgba(255,255,255,.2); }
.epi-cart-body { flex: 1; overflow-y: auto; padding: 10px 20px; }
.epi-cart-footer { padding: 16px 20px; border-top: 1px solid var(--gray-200); flex-shrink: 0; }
.epi-cart-footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.epi-cart-clear { font-size: 12.5px; color: var(--gray-500); text-decoration: underline; }
.epi-cart-form { padding: 16px 20px 24px; border-top: 1px solid var(--gray-200); flex-shrink: 0; max-height: 55vh; overflow-y: auto; }
.epi-cart-form .field { margin-bottom: 14px; }
.epi-cart-form label { display: block; font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.epi-cart-form input, .epi-cart-form textarea { width: 100%; padding: 11px 13px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); background: var(--gray-100); font-size: 13.5px; color: var(--gray-900); }
.epi-cart-form input:focus, .epi-cart-form textarea:focus { outline: none; border-color: var(--navy-500); background: var(--white); }
.epi-cart-form textarea { resize: vertical; min-height: 70px; }
.epi-cart-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

/* Cart item rows (rendered by quote-cart.js) */
.gp-cart-empty { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 60px 20px; color: var(--gray-500); text-align: center; }
.gp-cart-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.gp-cart-item-img { width: 52px; height: 52px; object-fit: contain; padding: 4px; border-radius: var(--radius-sm); background: var(--gray-100); }
.gp-cart-item-name { font-size: 13.5px; font-weight: 600; color: var(--navy-800); line-height: 1.3; }
.gp-cart-item-meta { font-size: 11.5px; color: var(--gray-500); margin-top: 2px; }
.gp-cart-item-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.gp-cart-remove { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-500); }
.gp-cart-remove:hover { background: #fee2e2; color: #dc2626; }
.gp-qty-stepper { display: flex; align-items: stretch; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; height: 34px; }
.gp-qty-stepper--sm { height: 30px; }
.gp-qty-step { width: 30px; display: grid; place-items: center; background: var(--gray-100); color: var(--navy-700); font-size: 15px; transition: background .2s, color .2s; }
.gp-qty-step:hover { background: var(--gold-500); color: var(--navy-900); }
.gp-qty-input { width: 44px; text-align: center; border: none; border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); outline: none; font-size: 13.5px; font-weight: 600; color: var(--navy-800); -moz-appearance: textfield; }
.gp-qty-input::-webkit-inner-spin-button, .gp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

@media (max-width: 640px) {
  .epi-cart-drawer { width: 100%; }
  .epi-cart-fab span.epi-cart-fab-label { display: none; }
  .epi-cart-fab { padding: 15px; bottom: 84px; right: 16px; }
}
