:root {
  --orange: #f59e0b;
  --orange-strong: #e87d05;
  --orange-soft: #fff4dc;
  --blue: #0a5ca8;
  --blue-dark: #073f75;
  --ink: #14181f;
  --ink-2: #2f3742;
  --gray: #667085;
  --gray-2: #98a2b3;
  --line: #e4e7ec;
  --soft: #f7f8fa;
  --white: #fff;
  --success: #16875b;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, .08);
  --shadow-lg: 0 22px 70px rgba(16, 24, 40, .16);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
::selection { color: var(--ink); background: #ffd98f; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; position: relative; }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: #111922; overflow: hidden; }
.section--dark::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 58%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 68%);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.topbar { color: #fff; background: #20252d; font-size: .78rem; }
.topbar__inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; letter-spacing: .02em; }
.topbar__links { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.topbar__links a:hover { color: #ffc14f; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(228,231,236,.8);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(16,24,40,.08); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: 25px; font-size: .91rem; font-weight: 700; }
.main-nav > a:not(.btn) { position: relative; padding: 28px 0; }
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.main-nav > a:not(.btn):hover::after, .main-nav > a:not(.btn).active::after { right: 0; }
.lang-switch {
  border: 1px solid var(--line);
  width: 38px;
  height: 34px;
  border-radius: 10px;
  color: var(--ink-2);
  background: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.lang-switch:hover { border-color: var(--orange); background: var(--orange-soft); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--soft); padding: 11px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.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); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #161616; background: linear-gradient(135deg, #ffb52d, var(--orange)); box-shadow: 0 10px 24px rgba(245,158,11,.24); }
.btn--primary:hover { box-shadow: 0 14px 34px rgba(245,158,11,.34); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.08); }
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--outline { color: var(--ink); border-color: var(--line); background: #fff; }
.btn--outline:hover { border-color: var(--orange); background: var(--orange-soft); }
.btn--sm { min-height: 42px; padding: 10px 17px; font-size: .87rem; }
.btn--lg { min-height: 56px; padding: 16px 28px; }
.btn--block { width: 100%; border: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange-strong);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: #ffc04b; }
.section-heading { max-width: 750px; margin-bottom: 50px; position: relative; z-index: 1; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2, .split__content h2, .contact-info h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .lead { color: var(--gray); font-size: 1.08rem; }
.section--dark .section-heading p { color: #b9c3ce; }
.section-heading p { max-width: 680px; margin: 0; }
.section-heading--center p { margin-inline: auto; }

.hero {
  min-height: calc(100vh - 119px);
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #111922;
}
.hero__media { position: absolute; inset: 0 0 0 49%; background: url('../img/hero-workers.webp') center/cover no-repeat; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #111922 0%, #111922 43%, rgba(17,25,34,.93) 56%, rgba(17,25,34,.3) 100%),
    linear-gradient(0deg, rgba(17,25,34,.7), transparent 40%);
}
.hero::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(245,158,11,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(245,158,11,.03), 0 0 0 140px rgba(245,158,11,.02);
}
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) 360px; gap: 70px; align-items: center; padding-block: 90px; }
.hero__copy { max-width: 760px; }
.hero h1 { margin: 0 0 24px; max-width: 830px; font-size: clamp(2.65rem, 5.8vw, 5.25rem); line-height: .98; letter-spacing: -.058em; }
.hero__copy > p { max-width: 675px; margin: 0; color: #d6dde5; font-size: clamp(1rem, 1.5vw, 1.23rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 38px; }
.hero__trust span { display: flex; align-items: center; gap: 9px; color: #dde4eb; font-size: .84rem; }
.hero__trust svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 1.8; }
.hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  background: rgba(13,20,28,.72);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
}
.hero-card__badge { display: inline-flex; padding: 6px 11px; border-radius: 999px; color: #1f1605; background: var(--orange); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.hero-card h2 { margin: 16px 0 8px; font-size: 1.55rem; line-height: 1.16; }
.hero-card > p { margin: 0 0 20px; color: #bdc7d1; font-size: .9rem; }
.quick-link { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.quick-link:hover strong { color: #ffc04b; }
.quick-link__icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; color: #17211b; background: #31c56e; font-size: .7rem; font-weight: 900; }
.quick-link:nth-of-type(2) .quick-link__icon { background: #fff; }
.quick-link small, .quick-link strong { display: block; }
.quick-link small { color: #9eabb8; font-size: .75rem; }
.quick-link strong { font-size: .96rem; }
.hero-card__hours { display: flex; align-items: center; gap: 8px; margin-top: 12px; color: #c5ced7; font-size: .76rem; }
.hero-card__hours > span:first-child { width: 8px; height: 8px; border-radius: 50%; background: #31c56e; box-shadow: 0 0 0 4px rgba(49,197,110,.16); }
.scroll-cue { position: absolute; z-index: 3; bottom: 25px; left: 50%; width: 32px; height: 51px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 10px; left: 50%; width: 5px; height: 9px; border-radius: 8px; background: var(--orange); transform: translateX(-50%); animation: scrollCue 1.7s infinite; }
@keyframes scrollCue { 0% { transform: translate(-50%,0); opacity: 1; } 70% { transform: translate(-50%,16px); opacity: 0; } 100% { opacity: 0; } }

.trust-strip { position: relative; z-index: 4; margin-top: -1px; border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip__grid div { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 20px 34px; border-right: 1px solid var(--line); }
.trust-strip__grid div:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { font-size: 1.25rem; letter-spacing: -.02em; }
.trust-strip span { color: var(--gray); font-size: .8rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.split__content > p { color: var(--gray); }
.image-stack { position: relative; min-height: 580px; }
.image-stack__main { width: 88%; height: 560px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.image-stack::before { content: ""; position: absolute; z-index: -1; inset: -22px auto auto -22px; width: 52%; height: 64%; border-radius: 26px; background: var(--orange-soft); }
.image-stack__accent { position: absolute; right: 0; top: 74px; display: flex; flex-direction: column; justify-content: center; width: 148px; height: 148px; padding: 24px; border-radius: 50%; color: #fff; background: var(--ink); box-shadow: var(--shadow-lg); }
.image-stack__accent strong { color: var(--orange); font-size: 2.35rem; line-height: .9; }
.image-stack__accent span { font-weight: 900; letter-spacing: .12em; font-size: .77rem; }
.image-stack__note { position: absolute; right: 18px; bottom: 4px; width: 290px; padding: 20px 24px; border-left: 5px solid var(--orange); border-radius: 15px; background: #fff; box-shadow: var(--shadow-lg); }
.image-stack__note b, .image-stack__note span { display: block; }
.image-stack__note span { color: var(--gray); font-size: .83rem; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 34px 0; }
.value-grid > div { display: flex; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.value-icon { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 12px; color: var(--orange-strong); background: var(--orange-soft); font-size: .72rem; font-weight: 900; }
.value-grid b, .value-grid small { display: block; }
.value-grid b { line-height: 1.25; }
.value-grid small { margin-top: 4px; color: var(--gray); line-height: 1.35; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 900; }
.text-link span:last-child { color: var(--orange-strong); font-size: 1.5rem; transition: transform .2s ease; }
.text-link:hover span:last-child { transform: translateX(5px); }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { position: relative; min-height: 430px; padding: 34px 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #ffd27b; box-shadow: var(--shadow-lg); }
.service-card::after { content: ""; position: absolute; right: -60px; bottom: -75px; width: 150px; height: 150px; border-radius: 50%; border: 24px solid rgba(245,158,11,.07); }
.service-card__number { position: absolute; top: 21px; right: 24px; color: #d8dde4; font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.service-card__icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 28px; border-radius: 18px; color: var(--orange-strong); background: var(--orange-soft); }
.service-card__icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 260px; margin: 0 0 13px; font-size: 1.28rem; line-height: 1.18; }
.service-card p { margin: 0 0 20px; color: var(--gray); font-size: .91rem; }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 8px 0; padding-left: 18px; color: var(--ink-2); font-size: .84rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.service-card--featured { color: #fff; border-color: #162332; background: linear-gradient(145deg, #1c2b3b, #101820); }
.service-card--featured p, .service-card--featured li { color: #cbd4dc; }
.service-card--featured .service-card__number { color: #516070; }
.service-card__tag { position: absolute; top: 18px; right: 18px; padding: 5px 10px; border-radius: 999px; color: #1e1608; background: var(--orange); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.service-card--featured .service-card__number { display: none; }

.training-feature { overflow: hidden; }
.training-feature::before { content: ""; position: absolute; right: -150px; top: 80px; width: 400px; height: 400px; border-radius: 50%; background: var(--orange-soft); z-index: -1; }
.split--feature { gap: 100px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 27px 0 30px; }
.pill-list span { padding: 9px 13px; border: 1px solid #ffd58b; border-radius: 999px; color: #8a4b00; background: #fff9ed; font-size: .78rem; font-weight: 800; }
.feature-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 0 0 30px; }
.feature-points > div { display: flex; gap: 8px; }
.feature-points > div > span { display: grid; place-items: center; flex: 0 0 24px; height: 24px; border-radius: 50%; color: #fff; background: var(--success); font-size: .72rem; }
.feature-points p { margin: 0; }
.feature-points b, .feature-points small { display: block; }
.feature-points b { font-size: .86rem; line-height: 1.25; }
.feature-points small { margin-top: 4px; color: var(--gray); font-size: .75rem; line-height: 1.35; }
.feature-collage { position: relative; min-height: 610px; }
.feature-collage__main { position: absolute; right: 0; top: 0; width: 77%; height: 525px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-lg); }
.feature-collage__secondary { position: absolute; left: 0; bottom: 0; width: 53%; height: 260px; object-fit: cover; border: 9px solid #fff; border-radius: 24px; box-shadow: var(--shadow-lg); }
.feature-collage__badge { position: absolute; right: 5%; bottom: 15px; display: flex; flex-direction: column; justify-content: center; width: 165px; height: 165px; padding: 23px; border-radius: 50%; color: var(--ink); background: var(--orange); box-shadow: var(--shadow-lg); }
.feature-collage__badge strong { font-size: 1.3rem; line-height: 1.1; }
.feature-collage__badge span { margin-top: 4px; font-size: .72rem; line-height: 1.25; }

.standards-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.standard-card { min-height: 230px; padding: 27px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); transition: background .2s ease, transform .2s ease; }
.standard-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.standard-card > span { display: inline-grid; place-items: center; min-width: 66px; height: 45px; padding: 0 12px; border-radius: 12px; color: #161a20; background: var(--orange); font-weight: 950; }
.standard-card h3 { margin: 25px 0 9px; font-size: 1.07rem; }
.standard-card p { margin: 0; color: #aebac5; font-size: .85rem; }
.standards-note { position: relative; z-index: 1; max-width: 850px; margin: 28px 0 0; color: #9eabb7; font-size: .82rem; }

.process-section { border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.process-grid li { position: relative; min-height: 250px; padding: 30px 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.process-grid li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -25px; top: 50%; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-strong); background: #fff; transform: translateY(-50%); }
.process-grid span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #fff; background: var(--ink); font-size: 1.1rem; font-weight: 900; }
.process-grid h3 { margin: 27px 0 10px; font-size: 1.1rem; }
.process-grid p { margin: 0; color: var(--gray); font-size: .86rem; }

.section--coverage { background: linear-gradient(180deg, #fff, #fffaf1); overflow: hidden; }
.split--coverage { gap: 110px; }
.coverage-map { position: relative; display: grid; place-items: center; min-height: 570px; border-radius: 32px; background: #16202c; overflow: hidden; }
.coverage-map::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(245,158,11,.12); filter: blur(2px); }
.coverage-map svg { position: relative; z-index: 1; width: min(88%,460px); overflow: visible; }
.map-shape { fill: #293847; stroke: #647587; stroke-width: 2; }
.map-pin circle { fill: var(--orange); stroke: #111922; stroke-width: 3; }
.map-pin text { fill: #fff; font-size: 15px; font-weight: 800; }
.coverage-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin: 28px 0; }
.coverage-list span { padding: 13px; border: 1px solid var(--line); border-radius: 12px; text-align: center; background: #fff; font-size: .82rem; font-weight: 800; }
.coverage-note { padding-left: 16px; border-left: 3px solid var(--orange); font-size: .87rem; }

.section--allies { padding-bottom: 80px; }
.allies-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--line);
}

.ally-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  transition: background .2s ease, box-shadow .2s ease;
}

.ally-card img {
  width: auto;
  height: auto;
  max-width: 165px;
  max-height: 75px;
  object-fit: contain;
  display: block;
  image-rendering: auto;
  transition: transform .2s ease, filter .2s ease;
}

.ally-card:hover {
  background: var(--orange-soft);
}

.ally-card:hover img {
  transform: scale(1.03);
}

a.ally-card:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.gallery-section { padding-top: 70px; background: var(--soft); }
.campaign-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.campaign-card { margin: 0; padding: 9px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.campaign-card img { width: 100%; height: 420px; object-fit: cover; border-radius: 14px; object-position: top; transition: transform .35s ease; }
.campaign-card:hover img { transform: scale(1.025); }
.campaign-card figcaption { padding: 16px 10px 9px; font-size: .82rem; font-weight: 800; }

.faq-section { background: #fff; }
.split--faq { align-items: start; }
.split--faq .split__content { position: sticky; top: 130px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 22px 46px 22px 0; list-style: none; font-size: 1rem; font-weight: 850; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 0; top: 17px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--orange-strong); background: var(--orange-soft); font-size: 1.3rem; transition: transform .2s ease; }
.accordion details[open] summary::after { content: "−"; transform: rotate(180deg); }
.accordion p { margin: -2px 50px 22px 0; color: var(--gray); font-size: .9rem; }

.contact-section { position: relative; color: #fff; background: #111922; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; right: -180px; top: -180px; width: 520px; height: 520px; border-radius: 50%; border: 90px solid rgba(245,158,11,.065); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; padding-block: 100px; }
.contact-info > p { color: #b7c2cd; font-size: 1.04rem; }
.contact-list { margin-top: 34px; }
.contact-list a { display: flex; align-items: center; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-list a > span { display: grid; place-items: center; flex: 0 0 46px; height: 46px; border-radius: 15px; color: #1c1d1f; background: var(--orange); font-weight: 900; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: #96a5b4; font-size: .74rem; }
.contact-list strong { font-size: .94rem; }
.contact-list a:hover strong { color: #ffc44f; }
.contact-promise { display: flex; gap: 12px; margin-top: 28px; }
.contact-promise > span { display: grid; place-items: center; flex: 0 0 27px; height: 27px; border-radius: 50%; color: #15301f; background: #58d18a; }
.contact-promise p { margin: 0; }
.contact-promise b, .contact-promise small { display: block; }
.contact-promise small { margin-top: 3px; color: #98a5b2; font-size: .76rem; }
.contact-card { padding: 38px; border-radius: 27px; color: var(--ink); background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.form-heading h3 { margin: 0; font-size: 1.7rem; }
.form-heading p { margin: 6px 0 25px; color: var(--gray); font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label > span:first-child { display: block; margin-bottom: 6px; color: var(--ink-2); font-size: .78rem; font-weight: 800; }
.form-grid__full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #d7dce2; border-radius: 12px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { min-height: 48px; padding: 0 13px; }
textarea { min-height: 120px; padding: 12px 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(245,158,11,.14); }
input:invalid:not(:placeholder-shown), textarea:invalid:not(:placeholder-shown) { border-color: #f2a19a; }
.consent { display: flex; align-items: flex-start; gap: 10px; }
.consent input { flex: 0 0 18px; width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--orange-strong); }
.consent span { margin: 0 !important; color: var(--gray) !important; font-size: .75rem !important; font-weight: 500 !important; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-card .btn { margin-top: 22px; }
.form-status { min-height: 24px; margin-top: 13px; font-size: .8rem; font-weight: 700; text-align: center; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.map-frame { height: 360px; border-top: 5px solid var(--orange); background: #d8dde3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(.95); }

.site-footer { color: #c1c9d2; background: #090e14; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.25fr; gap: 55px; padding-block: 68px; }
.footer-brand img { width: 200px; height: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 355px; margin: 0; color: #8e9aa7; font-size: .86rem; }
.footer-grid h2 { margin: 5px 0 18px; color: #fff; font-size: .91rem; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 9px 0; color: #8f9aa6; font-size: .8rem; }
.footer-grid a:hover { color: #ffc04b !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #707d89; font-size: .74rem; }
.footer-bottom p { margin: 0; }

.whatsapp-widget { position: fixed; z-index: 150; right: 24px; bottom: 24px; }
.whatsapp-button { display: grid; place-items: center; width: 60px; height: 60px; border: 0; border-radius: 50%; color: #fff; background: #20b35f; box-shadow: 0 12px 36px rgba(23,154,79,.38); transition: transform .2s ease; }
.whatsapp-button:hover { transform: scale(1.06); }
.whatsapp-button svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-panel { position: absolute; right: 0; bottom: 74px; width: 310px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); }
.whatsapp-panel[hidden] { display: none; }
.whatsapp-panel > strong { display: block; margin-bottom: 12px; font-size: .87rem; }
.whatsapp-panel a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; background: #f5fbf7; }
.whatsapp-panel a + a { margin-top: 8px; }
.whatsapp-panel a:hover { background: #eaf7ee; }
.whatsapp-panel a > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; background: #20b35f; font-size: .65rem; font-weight: 900; }
.whatsapp-panel b, .whatsapp-panel small { display: block; }
.whatsapp-panel b { font-size: .81rem; }
.whatsapp-panel small { color: var(--gray); }
.back-to-top { position: fixed; z-index: 140; right: 31px; bottom: 95px; width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

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

@media (max-width: 1100px) {
  :root { --container: 960px; }
  .main-nav { gap: 16px; font-size: .83rem; }
  .brand img { width: 125px; max-height: 56px; }
  .nav-cta { display: none; }
  .hero__content { grid-template-columns: 1fr 320px; gap: 40px; }
  .hero h1 { font-size: clamp(2.7rem, 6vw, 4.5rem); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .feature-points { grid-template-columns: 1fr; gap: 11px; }
  .allies-wall { grid-template-columns: repeat(4,1fr); }
  .campaign-grid { grid-template-columns: repeat(2,1fr); }
  .campaign-card img { height: 540px; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .topbar { display: none; }
  .site-header { height: var(--header-height); }
  .brand img { width: 115px; max-height: 50px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 26px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(16,24,40,.12);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.btn)::after { display: none; }
  .lang-switch { margin-top: 15px; }
  .nav-cta { display: inline-flex; margin-top: 13px; }
  .hero { min-height: 820px; }
  .hero__media { inset: 0; opacity: .48; background-position: 64% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(13,20,28,.96), rgba(13,20,28,.66)), linear-gradient(0deg, #111922, transparent 65%); }
  .hero__content { grid-template-columns: 1fr; gap: 35px; padding-block: 82px 100px; }
  .hero__copy { max-width: 700px; }
  .hero-card { max-width: 520px; }
  .scroll-cue { display: none; }
  .trust-strip__grid { grid-template-columns: repeat(2,1fr); }
  .trust-strip__grid div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-strip__grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 65px; }
  .split--about .split__media { order: 2; }
  .image-stack { max-width: 680px; }
  .split--feature { gap: 55px; }
  .feature-collage { max-width: 680px; width: 100%; }
  .standards-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid li:nth-child(2)::after { display: none; }
  .coverage-map { max-width: 700px; width: 100%; }
  .split--coverage { gap: 55px; }
  .allies-wall { grid-template-columns: repeat(3,1fr); }
  .split--faq .split__content { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-info { max-width: 720px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .split__content h2, .contact-info h2 { font-size: clamp(1.95rem, 10vw, 2.7rem); }
  .hero { min-height: 780px; align-items: flex-start; }
  .hero__content { padding-block: 72px 80px; }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.7rem); }
  .hero__copy > p { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 14px; }
  .hero__trust span { flex: 1 1 100%; }
  .hero-card { padding: 22px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid div, .trust-strip__grid div:first-child, .trust-strip__grid div:nth-child(3), .trust-strip__grid div:nth-child(4) { min-height: 88px; border: 0; border-bottom: 1px solid var(--line); padding: 16px 20px; }
  .image-stack { min-height: 480px; }
  .image-stack__main { width: 95%; height: 455px; }
  .image-stack__accent { width: 112px; height: 112px; right: -2px; top: 45px; padding: 18px; }
  .image-stack__accent strong { font-size: 1.8rem; }
  .image-stack__note { right: 0; width: 250px; padding: 16px 18px; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid, .standards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .feature-collage { min-height: 500px; }
  .feature-collage__main { width: 90%; height: 420px; }
  .feature-collage__secondary { width: 58%; height: 205px; }
  .feature-collage__badge { width: 125px; height: 125px; right: 0; padding: 17px; }
  .feature-collage__badge strong { font-size: 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 210px; }
  .process-grid li::after { display: none !important; }
  .coverage-map { min-height: 470px; }
  .coverage-list { grid-template-columns: repeat(2,1fr); }
  .allies-wall { grid-template-columns: repeat(2,1fr); }
  .ally-card { min-height: 104px; padding: 14px; }
.ally-card img {
  width: auto;
  height: auto;
  max-width: 135px;
  max-height: 64px;
  object-fit: contain;
}
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-card img { height: auto; max-height: 660px; object-fit: contain; background: #eee; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .contact-card { padding: 26px 20px; }
  .contact-grid { padding-block: 75px; }
  .map-frame { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-widget { right: 16px; bottom: 16px; }
  .whatsapp-button { width: 56px; height: 56px; }
  .whatsapp-panel { right: 0; width: min(310px, calc(100vw - 32px)); }
  .back-to-top { right: 22px; bottom: 83px; }
}

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