html, body { overflow-x: hidden; }
:root {
  --navy-950: #031a3a;
  --navy-900: #062a5e;
  --navy-800: #0b3978;
  --navy-700: #164a92;
  --gold-500: #f5aa00;
  --gold-400: #ffc12c;
  --gold-100: #fff4d5;
  --ink: #101828;
  --muted: #5f6b7a;
  --line: #dbe2ea;
  --surface: #f4f7fb;
  --white: #ffffff;
  --shadow-sm: 0 12px 28px rgba(3, 26, 58, 0.08);
  --shadow-lg: 0 28px 70px rgba(3, 26, 58, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 92px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link { position: fixed; top: -80px; left: 20px; z-index: 9999; padding: 12px 18px; background: var(--gold-500); color: var(--navy-950); font-weight: 800; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 20px; }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p, .topbar__links, .topbar a { display: flex; align-items: center; gap: 8px; margin: 0; }
.topbar__links { gap: 24px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 15px; height: 15px; color: var(--gold-400); }

.header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(6,42,94,.08); backdrop-filter: blur(14px); transition: box-shadow .25s, height .25s; }
.header.is-scrolled { box-shadow: 0 10px 30px rgba(3,26,58,.08); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 218px; height: auto; max-height: 78px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 700; color: var(--navy-900); }
.nav > a:not(.button) { position: relative; padding: 10px 0; }
.nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 100%; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav > a:not(.button):hover::after, .nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: var(--surface); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 21px; height: 2px; background: var(--navy-900); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; padding: 0 25px; border-radius: 8px; font-weight: 800; font-size: 14px; letter-spacing: .01em; transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 18px; background: var(--navy-900); color: var(--white); box-shadow: 0 8px 20px rgba(6,42,94,.16); }
.button--small:hover { background: var(--navy-800); }
.button--gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 12px 25px rgba(245,170,0,.22); }
.button--gold:hover { background: var(--gold-400); box-shadow: 0 16px 32px rgba(245,170,0,.3); }
.button--ghost { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button--ghost:hover { background: var(--white); color: var(--navy-950); }
.button--navy { background: var(--navy-900); color: var(--white); }
.button--navy:hover { background: var(--navy-800); }
.button--full { width: 100%; }
.button svg { width: 20px; height: 20px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--navy-800); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 35px; height: 3px; background: var(--gold-500); }
.eyebrow--light { color: var(--gold-400); }

.hero { min-height: calc(100vh - 38px - var(--header-height)); position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero__media { position: absolute; inset: 0; background: url('../img/hero-warehouse.jpg') center/cover no-repeat; transform: scale(1.02); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,26,58,.98) 0%, rgba(3,26,58,.9) 38%, rgba(3,26,58,.46) 70%, rgba(3,26,58,.2) 100%), linear-gradient(0deg, rgba(3,26,58,.72), transparent 45%); }
.hero__lines { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(118deg, transparent 0 78%, rgba(245,170,0,.95) 78.2% 78.9%, transparent 79.1%), linear-gradient(118deg, transparent 0 82%, rgba(255,255,255,.7) 82.2% 82.45%, transparent 82.65%); opacity: .8; }
.hero__content { position: relative; z-index: 2; padding: 95px 0 170px; }
.hero__copy { max-width: 735px; }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(47px, 6vw, 82px); line-height: .98; letter-spacing: -.045em; font-weight: 850; text-wrap: balance; }
.hero h1 strong { color: var(--gold-400); font-weight: 850; }
.hero__copy > p { max-width: 650px; margin: 28px 0 34px; color: rgba(255,255,255,.84); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__contact { display: flex; align-items: center; gap: 18px; margin-top: 34px; font-size: 14px; }
.hero__contact span { color: rgba(255,255,255,.6); }
.hero__contact a { position: relative; font-size: 18px; font-weight: 800; }
.hero__contact a::before { content: ""; position: absolute; left: -10px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-400); transform: translateY(-50%); }
.hero__trust { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.97); color: var(--ink); border-top: 1px solid rgba(255,255,255,.4); }
.hero__trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.hero__trust-grid > div { min-height: 112px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 14px; padding: 20px 24px; border-right: 1px solid var(--line); }
.hero__trust-grid > div:last-child { border-right: 0; }
.hero__trust-grid span { grid-row: 1 / span 2; align-self: center; color: var(--gold-500); font-size: 12px; font-weight: 900; }
.hero__trust-grid strong { color: var(--navy-900); font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.hero__trust-grid small { color: var(--muted); font-size: 12px; }

.intro { overflow: hidden; }
.intro__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.intro__visual { position: relative; min-width: 0; }
.intro__image-wrap { position: relative; z-index: 2; }
.intro__image-wrap > img { width: 100%; aspect-ratio: 4/4.45; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.intro__image-wrap::before { content: ""; position: absolute; z-index: 2; top: 0; left: 0; width: 85px; height: 8px; background: var(--gold-500); }
.intro__badge { position: absolute; right: -42px; bottom: 38px; z-index: 3; width: min(325px, 80%); display: flex; align-items: center; gap: 15px; padding: 22px; color: var(--white); background: var(--navy-900); border-radius: 10px; box-shadow: var(--shadow-lg); }
.intro__badge svg { flex: 0 0 auto; width: 43px; height: 43px; color: var(--gold-400); }
.intro__badge strong, .intro__badge span { display: block; }
.intro__badge strong { margin-bottom: 3px; font-size: 16px; }
.intro__badge span { color: rgba(255,255,255,.66); font-size: 12px; }
.intro__shape { position: absolute; left: -48px; bottom: -38px; width: 65%; height: 55%; border: 2px solid var(--gold-500); opacity: .7; }
.intro__copy h2, .section-heading h2, .value h2, .promise h2, .quote h2, .location h2 { margin: 0; color: var(--navy-950); font-size: clamp(34px, 4vw, 54px); line-height: 1.1; letter-spacing: -.035em; text-wrap: balance; }
.intro__copy .lead { margin: 28px 0 14px; color: var(--navy-900); font-size: 20px; line-height: 1.55; }
.intro__copy > p:not(.lead) { margin: 0; color: var(--muted); }
.intro__points { display: grid; gap: 22px; margin: 36px 0 30px; }
.intro__points article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; }
.icon-box { width: 58px; height: 58px; display: grid; place-items: center; background: var(--gold-100); color: var(--navy-900); border-radius: 12px; }
.icon-box svg { width: 29px; height: 29px; }
.intro__points h3 { margin: 0 0 4px; color: var(--navy-900); font-size: 17px; }
.intro__points p { margin: 0; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-900); font-weight: 900; }
.text-link span { color: var(--gold-500); font-size: 22px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.services { position: relative; background: var(--surface); }
.services::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(6,42,94,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(6,42,94,.06) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }
.services .container { position: relative; }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading p { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-size: 17px; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card { display: grid; grid-template-columns: 45% 55%; min-height: 365px; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; min-height: 100%; overflow: hidden; }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,26,58,.5), transparent 55%); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.service-card:hover .service-card__media img { transform: scale(1.055); }
.service-card__number { position: absolute; z-index: 2; left: 18px; bottom: 12px; color: var(--white); font-size: 43px; font-weight: 900; line-height: 1; opacity: .8; }
.service-card__body { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 38px 32px 30px; }
.service-card__body::before { content: ""; position: absolute; top: 0; left: 0; width: 80px; height: 5px; background: var(--gold-500); }
.service-card__icon { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 10px; background: var(--navy-900); color: var(--gold-400); }
.service-card__icon svg { width: 29px; height: 29px; }
.service-card h3 { margin: 0 0 12px; color: var(--navy-950); font-size: 23px; line-height: 1.2; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.service-link { margin-top: auto; padding: 0; border: 0; background: none; color: var(--navy-900); font-size: 13px; font-weight: 900; text-align: left; }
.service-link span { margin-left: 8px; color: var(--gold-500); font-size: 18px; transition: margin-left .2s; }
.service-link:hover span { margin-left: 13px; }

.value { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.value__background { position: absolute; inset: 0; opacity: .18; background: linear-gradient(100deg, var(--navy-950) 0 55%, transparent 80%), url('../img/hero-warehouse.jpg') right center/cover no-repeat; }
.value::before { content: ""; position: absolute; left: -90px; bottom: -190px; width: 420px; height: 420px; border: 60px solid rgba(245,170,0,.08); border-radius: 50%; }
.value__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.value h2 { color: var(--white); }
.value__copy p { margin: 25px 0 34px; color: rgba(255,255,255,.72); font-size: 17px; }
.value__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card { min-height: 185px; padding: 27px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; backdrop-filter: blur(10px); transition: background .25s, border-color .25s; }
.value-card:hover { background: rgba(255,255,255,.15); border-color: rgba(245,170,0,.5); }
.value-card > span { display: inline-block; margin-bottom: 24px; color: var(--gold-400); font-size: 12px; font-weight: 900; }
.value-card h3 { margin: 0 0 7px; font-size: 20px; }
.value-card p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }

.promise { background: var(--white); }
.promise__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.promise__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise__items article { min-height: 285px; padding: 30px 25px; border: 1px solid var(--line); border-radius: 12px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.promise__items article:hover { transform: translateY(-5px); border-color: rgba(245,170,0,.6); box-shadow: var(--shadow-sm); }
.promise__items svg { width: 48px; height: 48px; margin-bottom: 45px; color: var(--gold-500); }
.promise__items h3 { margin: 0 0 10px; color: var(--navy-900); font-size: 21px; }
.promise__items p { margin: 0; color: var(--muted); font-size: 14px; }

.quote { position: relative; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); overflow: hidden; }
.quote::before { content: ""; position: absolute; top: -200px; left: -160px; width: 520px; height: 520px; border: 70px solid rgba(245,170,0,.06); border-radius: 50%; }
.quote::after { content: ""; position: absolute; right: -100px; bottom: -230px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.quote__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.quote h2 { color: var(--white); }
.quote__info > p { margin: 25px 0 38px; color: rgba(255,255,255,.7); font-size: 16px; }
.contact-card { display: grid; gap: 14px; }
.contact-card > a, .contact-card > div { display: flex; align-items: center; gap: 16px; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; transition: border-color .2s, background .2s; }
.contact-card > a:hover { border-color: rgba(245,170,0,.5); background: rgba(255,255,255,.05); }
.contact-card__icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; background: rgba(245,170,0,.13); color: var(--gold-400); border-radius: 9px; }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { margin-bottom: 2px; color: rgba(255,255,255,.52); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { color: var(--white); font-size: 14px; font-style: normal; overflow-wrap: anywhere; }
.quote-form { padding: 42px; color: var(--ink); background: var(--white); border-radius: 14px; box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.quote-form__header { margin-bottom: 28px; }
.quote-form__header > span { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quote-form h3 { margin: 4px 0 0; color: var(--navy-950); font-size: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.form-grid__wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--line); background: #fbfcfe; border-radius: 7px; outline: none; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s; }
.form-grid input, .form-grid select { height: 50px; padding: 0 14px; }
.form-grid textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold-500); background: var(--white); box-shadow: 0 0 0 3px rgba(245,170,0,.13); }
.form-grid .is-invalid { border-color: #d92d20; box-shadow: 0 0 0 3px rgba(217,45,32,.1); }
.form-status { min-height: 24px; margin: 12px 0; color: #b42318; font-size: 13px; font-weight: 700; }
.quote-form__note { display: block; margin-top: 14px; color: var(--muted); text-align: center; }
.quote-form__note a { color: var(--navy-900); font-weight: 800; }

.location { padding: 55px 0; background: var(--gold-500); }
.location__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.location__mark { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: rgba(255,255,255,.65); }
.location__mark svg { width: 38px; height: 38px; }
.location .eyebrow { margin-bottom: 5px; color: var(--navy-950); }
.location .eyebrow::before { background: var(--navy-950); }
.location h2 { font-size: clamp(28px, 3.4vw, 43px); }
.location p { margin: 9px 0 0; color: rgba(3,26,58,.72); }

.footer { padding: 80px 0 0; color: rgba(255,255,255,.7); background: var(--navy-950); }
.footer__grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer__brand img { width: 220px; max-height: 115px; object-fit: contain; padding: 8px; background: var(--white); border-radius: 8px; }
.footer__brand p { max-width: 320px; margin: 18px 0 0; font-size: 14px; }
.footer h2 { margin: 7px 0 22px; color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer nav, .footer ul, .footer address { display: grid; gap: 10px; margin: 0; padding: 0; font-size: 13px; font-style: normal; list-style: none; }
.footer a { transition: color .2s; overflow-wrap: anywhere; }
.footer a:hover { color: var(--gold-400); }
.footer__bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer__bottom p { margin: 0; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 950; height: 55px; display: flex; align-items: center; gap: 10px; padding: 0 18px; border-radius: 999px; color: var(--white); background: #19a95b; box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: 13px; font-weight: 900; transition: transform .2s, background .2s; }
.whatsapp-float:hover { transform: translateY(-3px); background: #128c4b; }
.whatsapp-float svg { width: 25px; height: 25px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1080px) {
  :root { --header-height: 82px; }
  .brand img { width: 190px; }
  .nav { gap: 18px; }
  .intro__grid { gap: 65px; }
  .services__grid { gap: 20px; }
  .service-card { grid-template-columns: 42% 58%; }
  .service-card__body { padding: 32px 24px 25px; }
  .promise__grid { grid-template-columns: 1fr; }
  .promise__heading { max-width: 720px; }
}

@media (max-width: 900px) {
  .topbar p { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .header__inner { gap: 15px; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; top: calc(38px + var(--header-height)); left: 0; right: 0; height: calc(100vh - 38px - var(--header-height)); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 25px 20px 35px; background: var(--white); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
  .nav.is-open { transform: translateX(0); }
  .nav > a:not(.button) { padding: 18px 5px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav > a:not(.button)::after { display: none; }
  .nav .button { margin-top: 22px; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero__content { padding-top: 95px; }
  .hero__trust-grid { grid-template-columns: repeat(2,1fr); }
  .hero__trust-grid > div { min-height: 90px; }
  .hero__trust-grid > div:nth-child(2) { border-right: 0; }
  .hero__trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro__grid, .value__grid, .quote__grid { grid-template-columns: 1fr; }
  .intro__grid { gap: 75px; }
  .intro__visual { max-width: 620px; }
  .intro__badge { right: -20px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 335px; }
  .value__grid, .quote__grid { gap: 55px; }
  .promise__items { grid-template-columns: repeat(3,1fr); }
  .location__inner { grid-template-columns: auto 1fr; }
  .location .button { grid-column: 2; justify-self: start; }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .topbar__links a:first-child { display: none; }
  .topbar__links { width: 100%; justify-content: center; }
  .brand img { width: 165px; max-height: 67px; }
  .hero { min-height: 820px; }
  .hero__media { background-position: 58% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(3,26,58,.97), rgba(3,26,58,.75)); }
  .hero__content { padding: 75px 0 220px; }
  .hero h1 { font-size: clamp(42px, 13vw, 61px); }
  .hero__copy > p { margin-top: 23px; font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__trust-grid > div { grid-template-columns: auto 1fr; padding: 15px 12px; }
  .hero__trust-grid strong { font-size: 13px; }
  .hero__trust-grid small { font-size: 10px; }
  .intro__badge { right: 12px; bottom: -35px; width: calc(100% - 24px); }
  .intro__shape { display: none; }
  .intro__copy h2, .section-heading h2, .value h2, .promise h2, .quote h2, .location h2 { font-size: 36px; }
  .service-card { display: block; }
  .service-card__media { height: 245px; }
  .service-card__body { min-height: 320px; }
  .value__cards, .promise__items { grid-template-columns: 1fr; }
  .value-card { min-height: 155px; }
  .promise__items article { min-height: 230px; }
  .promise__items svg { margin-bottom: 30px; }
  .quote-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .location { padding: 48px 0; }
  .location__inner { grid-template-columns: 1fr; text-align: center; }
  .location__mark { margin: auto; }
  .location .eyebrow { justify-content: center; }
  .location .button { grid-column: auto; justify-self: stretch; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
  .whatsapp-float { width: 56px; padding: 0; justify-content: center; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 420px) {
  .topbar__links a { font-size: 12px; }
  .hero { min-height: 850px; }
  .hero__trust-grid > div { column-gap: 8px; }
  .hero__trust-grid span { display: none; }
  .service-card__body { min-height: 335px; }
  .intro__badge { padding: 17px; }
  .intro__badge svg { width: 34px; height: 34px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand, .footer__grid > div:last-child { grid-column: auto; }
}
