/* =========================================================
   The Maintenance Marshalls (Pty) Ltd
   Brand stylesheet — no dependencies, no build step.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --navy-900: #070F1C;
  --navy-800: #0A1628;
  --navy-700: #10233D;
  --navy-600: #17324F;
  --navy-500: #23486B;

  --orange:      #FF7A18;
  --orange-600:  #F2650A;
  --orange-700:  #D4530A;
  --orange-100:  #FFF1E4;

  --steel-400: #7C93AC;
  --steel-300: #A8BACD;

  --whatsapp:     #25D366;
  --whatsapp-600: #1DB255;

  /* Neutrals */
  --ink:      #101823;
  --ink-soft: #47576B;
  --ink-mute: #66768C;   /* darkened to clear WCAG AA (4.63:1 on white) */
  --line:     #E1E7EE;
  --surface:  #FFFFFF;
  --surface-2:#F5F7FA;
  --surface-3:#EDF1F6;

  /* Type */
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Space & shape */
  --wrap: 1180px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(16,24,35,.06), 0 2px 8px rgba(16,24,35,.05);
  --shadow:    0 4px 12px rgba(16,24,35,.08), 0 12px 28px rgba(16,24,35,.07);
  --shadow-lg: 0 18px 50px rgba(7,15,28,.18);

  --ease: cubic-bezier(.22,.7,.32,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { display: none; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--orange); color: #fff; padding: .8rem 1.2rem;
  font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Icons ---------- */
.ic {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ic--lg { width: 28px; height: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.4rem;
  border: 2px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .55rem 1.1rem; font-size: .88rem; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary  { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(255,122,24,.32); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 10px 26px rgba(255,122,24,.4); }

.btn--whatsapp { background: var(--whatsapp); color: #06301A; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn--whatsapp:hover { background: var(--whatsapp-600); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.4); }

.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }

.link { color: var(--orange-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.link:hover { color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-800);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}
.site-header.is-stuck { box-shadow: var(--shadow); }

.topbar {
  background: var(--navy-900);
  font-size: .82rem;
  color: var(--steel-300);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; align-items: center; gap: 1.5rem; padding: .5rem 0; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item .ic { width: 15px; height: 15px; color: var(--orange); }
.topbar__phone { margin-left: auto; color: #fff; font-weight: 700; }
.topbar__phone:hover { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; }

.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__gear { width: 44px; height: 44px; flex: none; }
.brand__teeth rect { fill: var(--orange); }
.brand__ring { fill: none; stroke: var(--orange); stroke-width: 6; }
.brand__hub  { fill: var(--navy-800); stroke: var(--steel-400); stroke-width: 1.5; }
.brand__mono { fill: #fff; font: 800 15px/1 var(--font); letter-spacing: -.02em; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  color: #fff; font-weight: 800; font-size: 1.02rem;
  letter-spacing: -.015em; text-transform: uppercase;
}
.brand__tag { color: var(--orange); font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.nav__toggle {
  display: none; background: none; border: 0; color: #fff; padding: .4rem; cursor: pointer;
}
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__menu > a { color: #D6E0EC; font-size: .92rem; font-weight: 600; position: relative; padding: .3rem 0; }
.nav__menu > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange); transition: width .22s var(--ease);
}
.nav__menu > a:not(.btn):hover { color: #fff; }
.nav__menu > a:not(.btn):hover::after { width: 100%; }
/* `.nav__menu > a` (0,1,1) out-ranks `.btn--sm` and `.nav__cta` (0,1,0), which
   was collapsing this button's horizontal padding to zero. Match its weight. */
.nav__menu > a.nav__cta { padding: .6rem 1.4rem; color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../assets/hero-bg.jpg") center 22% / cover no-repeat;
  opacity: .3;
  transform: scale(1.04);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(255,122,24,.2), transparent 55%),
    linear-gradient(180deg, rgba(7,15,28,.86) 0%, rgba(7,15,28,.93) 55%, var(--navy-900) 100%);
}
.hero__inner { padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem); max-width: 830px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.35);
  color: #7DEBA8; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37,211,102,.7); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero__title { color: #fff; text-transform: uppercase; letter-spacing: -.025em; margin-bottom: 1.1rem; }
.hero__title .accent {
  background: linear-gradient(100deg, var(--orange) 10%, #FFB067 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { color: #C6D3E2; font-size: clamp(1.05rem, 1.9vw, 1.28rem); max-width: 62ch; margin-bottom: 2rem; }
.hero__lede strong { color: #fff; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }

.hero__points { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; }
.hero__points li {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #B8C7D8; font-size: .92rem; font-weight: 600;
}
.hero__points .ic { width: 17px; height: 17px; color: var(--whatsapp); stroke-width: 3; }

/* ---------- Trust strip ---------- */
.trust { background: var(--orange); color: #fff; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; padding: 1.6rem 0;
}
.trust__item { display: flex; align-items: center; gap: .85rem; }
.trust__item .ic { color: #fff; opacity: .95; }
.trust__item div { display: flex; flex-direction: column; line-height: 1.3; }
.trust__item strong { font-size: .98rem; font-weight: 800; }
.trust__item span { font-size: .82rem; color: rgba(255,255,255,.88); }

/* ---------- Sections ---------- */
/* Keeps anchor targets clear of the sticky header. */
section[id], [id="top"] { scroll-margin-top: 120px; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--surface-2); }
.section--dark { background: var(--navy-800); color: #D8E2EE; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head { max-width: 720px; margin-bottom: 3rem; }
.eyebrow {
  color: var(--orange); font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .7rem;
}
.section__lede { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }
.section--dark .section__lede { color: var(--steel-300); }

/* ---------- Service cards ---------- */
.cards {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), #FFB067);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #CFDAE6; }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 54px; height: 54px; border-radius: var(--r);
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--orange-100); color: var(--orange-700);
}
.card h3 { color: var(--ink); }
.card > p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.1rem; }
.card__list { border-top: 1px solid var(--line); padding-top: .95rem; }
.card__list li {
  position: relative; padding-left: 1.35rem; margin-bottom: .42rem;
  font-size: .9rem; color: var(--ink-soft);
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.services__foot { text-align: center; margin-top: 2.5rem; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Sectors ---------- */
.sectors { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.sector {
  background: var(--navy-700); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 1.7rem 1.5rem;
  transition: border-color .22s var(--ease), transform .22s var(--ease), background-color .22s var(--ease);
}
.sector:hover { border-color: var(--orange); transform: translateY(-4px); background: var(--navy-600); }
.sector h3 { margin-bottom: .6rem; }
.sector p { color: var(--steel-300); font-size: .93rem; margin: 0; }

/* ---------- Process ---------- */
.steps {
  display: grid; gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.4rem;
  position: relative;
}
.step__num {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-weight: 800; font-size: 1.05rem;
  margin-bottom: .95rem;
  box-shadow: 0 0 0 5px rgba(255,122,24,.16);
}
.step h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.step p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 1.25fr .85fr; gap: 3.5rem; align-items: center; }
.why__copy h2 { margin-bottom: .8rem; }
.why__copy > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.6rem; }
.why__list { margin-bottom: 2rem; }
.why__list li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem; font-size: .96rem; }
.why__list .ic {
  width: 22px; height: 22px; padding: 3px; margin-top: 1px;
  color: #fff; background: var(--whatsapp); border-radius: 50%; stroke-width: 3.5;
}
.why__list span { color: var(--ink-soft); }
.why__list strong { color: var(--ink); }

.badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.badge {
  display: inline-flex; align-items: baseline; gap: .4rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .83rem; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.badge strong { color: var(--navy-800); font-weight: 800; }

.badge--accent {
  background: var(--orange-100); border-color: #FFC79A; color: var(--orange-700);
}
.badge--accent strong { color: var(--orange-700); }

.why__figure { margin: 0; }
.why__figure img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: center; }
.about__figure { margin: 0; position: relative; }
.about__figure img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  background: var(--navy-900);
}
.about__figure::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 38%;
  background: linear-gradient(180deg, transparent, rgba(7,15,28,.45));
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  pointer-events: none;
}
.about__copy h2 { margin-bottom: 1rem; }
.about__copy p { color: var(--ink-soft); }
.about__pull {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700; font-style: italic;
  color: var(--navy-800) !important;
  border-left: 4px solid var(--orange);
  padding-left: 1.1rem; margin-bottom: 1.4rem;
  line-height: 1.4;
}
.about__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.btn--outline {
  background: transparent; color: var(--navy-800); border-color: #C6D2E0;
}
.btn--outline:hover { border-color: var(--navy-800); background: var(--surface-2); }

/* ---------- Areas ---------- */
.areas { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.areas__block h3 {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--navy-800); margin-bottom: 1rem;
}
.areas__block h3 .ic { color: var(--orange); }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chips li {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: .38rem .85rem;
  font-size: .84rem; color: var(--ink-soft);
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.chips li:hover { background: var(--orange-100); border-color: var(--orange); color: var(--orange-700); }
.areas__note { margin-top: 2.2rem; color: var(--ink-soft); font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); margin-bottom: .7rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] { border-color: var(--orange); box-shadow: var(--shadow); }
.faq__item summary {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.15rem 1.35rem;
  font-weight: 700; font-size: 1rem; color: var(--ink);
  cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; margin-left: auto;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq__item summary:hover { color: var(--orange-700); }
.faq__body { padding: 0 1.35rem 1.25rem; }
.faq__body p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* ---------- Quote ---------- */
.quote { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: start; }
.quote__intro > p { color: var(--steel-300); margin-bottom: 1.6rem; }
.quote__direct { display: grid; gap: .7rem; margin-bottom: 1.4rem; }
.quote__hours {
  display: flex; align-items: flex-start; gap: .5rem;
  color: var(--steel-400); font-size: .85rem; margin: 0;
}
.quote__hours .ic { width: 17px; height: 17px; margin-top: 3px; color: var(--orange); }

.quote__form {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2rem 1.85rem; box-shadow: var(--shadow-lg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label, .field legend {
  display: block; font-size: .85rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem; padding: 0;
}
.req { color: var(--orange-700); }
.opt { color: var(--ink-mute); font-weight: 500; }

.field input, .field select, .field textarea {
  width: 100%; padding: .72rem .9rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: .93rem; color: var(--ink);
  background: var(--surface-2);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(255,122,24,.14);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: #DC2626; background: #FEF2F2; }

.field--fs { border: 0; margin: 0 0 1.1rem; padding: 0; }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: .45rem; }
/* `.checks .check` (0,2,0) must out-rank `.field label` (0,1,1) above,
   otherwise these labels fall back to display:block and lose the gap. */
.checks .check {
  display: flex; align-items: center; gap: .55rem;
  cursor: pointer; margin: 0; padding: .25rem 0; font-weight: 500;
}
.checks .check input {
  width: 18px; height: 18px; flex: none; margin: 0;
  accent-color: var(--orange); cursor: pointer;
}
.checks .check span { font-size: .86rem; font-weight: 500; color: var(--ink-soft); }
.checks .check:hover span { color: var(--ink); }

.form__error {
  background: #FEF2F2; border: 1px solid #FCA5A5; color: #B91C1C;
  border-radius: var(--r-sm); padding: .7rem .9rem; font-size: .88rem; font-weight: 600;
  margin-bottom: 1rem;
}
.form__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1rem; }
.form__actions .btn { flex: 1 1 200px; }
.form__note { font-size: .78rem; color: var(--ink-mute); margin: 0; line-height: 1.5; }

/* ---------- Contact ---------- */
.contact { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.contact__card {
  display: block; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.contact__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.contact__card .ic { color: var(--orange); margin-bottom: .85rem; }
.contact__card h3 { font-size: 1rem; margin-bottom: .3rem; }
.contact__value { font-weight: 700; color: var(--navy-800); font-size: .95rem; margin-bottom: .35rem; word-break: break-word; }
.contact__desc { font-size: .85rem; color: var(--ink-soft); margin: 0; }
.contact__card--primary { background: var(--navy-800); border-color: var(--navy-700); }
.contact__card--primary h3 { color: #fff; }
.contact__card--primary .ic { color: var(--whatsapp); }
.contact__card--primary .contact__value { color: var(--whatsapp); }
.contact__card--primary .contact__desc { color: var(--steel-300); }

.contact__meta {
  display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 2.5rem; padding-top: 2.2rem; border-top: 1px solid var(--line);
}
.contact__meta h4 {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--navy-800); margin-bottom: .5rem;
}
.contact__meta h4 .ic { width: 16px; height: 16px; color: var(--orange); }
.contact__meta p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- CTA banner ---------- */
.cta {
  background: linear-gradient(115deg, var(--orange) 0%, var(--orange-700) 100%);
  color: #fff; text-align: center;
}
.cta__inner { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta h2 { color: #fff; text-transform: uppercase; margin-bottom: .6rem; }
.cta p { color: rgba(255,255,255,.94); font-size: 1.08rem; margin-bottom: 1.8rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--steel-300); padding-top: 3.5rem; font-size: .9rem; }
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  padding-bottom: 3rem;
}
.footer__logo { width: 210px; border-radius: var(--r-sm); margin-bottom: 1.1rem; background: #fff; padding: .4rem; }
.footer__blurb { color: var(--steel-400); font-size: .88rem; max-width: 34ch; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  color: var(--steel-300);
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.footer__social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.footer__col h4 {
  color: #fff; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.footer__col ul li { margin-bottom: .55rem; }
.footer__col ul a, .footer__contact span {
  color: var(--steel-400); display: inline-flex; align-items: center; gap: .5rem;
  transition: color .18s var(--ease);
}
.footer__col ul a:hover { color: var(--orange); }
.footer__contact .ic { width: 15px; height: 15px; color: var(--orange); }
.footer__contact li { word-break: break-word; }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: var(--steel-400);
}
.footer__legal p { margin: 0; }
.footer__reg { color: var(--steel-400); }

.footer__credit {
  text-align: center;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .8rem;
  color: var(--steel-400);
}
.footer__credit p { margin: 0; }
.footer__credit a {
  color: var(--steel-300); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.25);
  transition: color .18s var(--ease), text-decoration-color .18s var(--ease);
}
.footer__credit a:hover { color: var(--orange); text-decoration-color: var(--orange); }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--whatsapp); color: #06301A;
  padding: .85rem 1.25rem; border-radius: 999px;
  font-weight: 800; font-size: .92rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.03); background: var(--whatsapp-600); color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .why   { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__figure { max-width: 460px; margin-inline: auto; }
  .about { grid-template-columns: 1fr; gap: 2.2rem; }
  .about__figure { max-width: 330px; margin-inline: auto; }
  .quote { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--navy-900);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 5.5rem 1.6rem 2rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    box-shadow: -12px 0 40px rgba(0,0,0,.4);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > a { padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 1rem; }
  .nav__menu > a:not(.btn)::after { display: none; }
  .nav__menu > a.nav__cta {
    padding: .95rem 1.4rem; margin-top: 1.2rem;
    border-bottom: 0; justify-content: center;
  }
  .nav__toggle { z-index: 101; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .topbar__item--hide-sm { display: none; }
  .topbar__inner { justify-content: space-between; gap: .8rem; }
  .brand__name { font-size: .88rem; }
  .brand__tag { font-size: .58rem; }
  .brand__gear { width: 38px; height: 38px; }

  .hero__eyebrow { font-size: .72rem; padding: .38rem .85rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__points { gap: .5rem 1.2rem; }
  .hero__points li { font-size: .86rem; }

  .trust__grid { grid-template-columns: 1fr; gap: 1rem; padding: 1.3rem 0; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote__form { padding: 1.5rem 1.25rem; }
  .form__actions .btn { flex: 1 1 100%; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }

  .fab__label { display: none; }
  .fab { padding: 1rem; border-radius: 50%; }
}

/* ---------- Motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .fab, .cta, .quote__form, .nav__toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .hero, .section--dark { background: #fff !important; color: #000 !important; }
  .hero__bg, .hero::after { display: none; }
  .hero__title, .section--dark h2, .section--dark h3 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
