:root {
  --navy: #05223f;
  --deep: #0f3964;
  --mid: #0d559d;
  --blue: #2388ed;
  --cyan: #52a1f1;
  --sky: #81bbf5;
  --ice: #e0eefc;
  --mist: #f4f7fb;
  --ink: #102238;
  --muted: #607186;
  --line: #d9e2eb;
  --white: #ffffff;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
html.is-loading body { overflow: hidden; background: var(--navy); }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .52s var(--ease), visibility .52s var(--ease);
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__panel {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(280px, calc(100% - 48px));
}
.page-loader__logo {
  animation: loaderPulse 1.8s var(--ease) infinite;
}
.page-loader__logo img { width: 78px; height: auto; }
.page-loader__track {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}
.page-loader__bar {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: loaderSlide 1.15s var(--ease) infinite;
}
.page-loader__label {
  color: #b6cadb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
@keyframes loaderSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@keyframes loaderPulse {
  0%, 100% { opacity: .72; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1); }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid rgba(35, 136, 237, .42); outline-offset: 4px; }
[hidden] { display: none !important; }

.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { background: var(--deep); transform: translateY(-2px); }
.button--outline { border-color: currentColor; background: transparent; color: var(--navy); }
.button--outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.arrow { display: inline-block; transition: transform .25s ease; }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }
.skip-link { position: fixed; z-index: 200; left: 16px; top: -80px; padding: 12px 16px; background: #fff; color: var(--navy); }
.skip-link:focus { top: 16px; }

.utility {
  background: var(--navy);
  color: #c8d8e8;
  font-size: 11px;
  letter-spacing: .04em;
}
.utility__row { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility__links { display: flex; align-items: center; gap: 24px; }
.utility a:hover { color: #fff; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .96);
  transition: border-color .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 34px rgba(15, 57, 100, .07); }
.navigation { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 78px; }
.nav-links { display: flex; align-items: center; gap: 25px; font-size: 12px; font-weight: 750; }
.nav-links a {
  position: relative;
  padding: 31px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after { right: 0; }
.navigation__cta { min-height: 44px; padding-inline: 18px; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: #f7f9fc;
}
.hero__copy {
  display: flex;
  align-items: center;
  padding: 90px max(44px, calc((100vw - 1240px) / 2));
  padding-right: 68px;
}
.hero h1 {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.hero h1 span { color: var(--blue); }
.hero__copy p { max-width: 610px; margin-top: 24px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__image { position: relative; min-height: 620px; overflow: hidden; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,249,252,.16), transparent 32%); }
.hero__seal {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  width: 210px;
  padding: 21px;
  background: rgba(5, 34, 63, .94);
  color: #fff;
  backdrop-filter: blur(12px);
}
.hero__seal strong { display: block; margin-bottom: 8px; font-size: 14px; }
.hero__seal span { color: #bcd1e5; font-size: 12px; line-height: 1.6; }

.proof { border-block: 1px solid var(--line); background: #fff; }
.proof__grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
.proof__grid > div {
  min-height: 126px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.proof__grid > div:last-child { border-right: 0; }
.proof__intro { color: var(--deep); font-size: 13px; font-weight: 800; line-height: 1.6; }
.proof strong { color: var(--navy); font-size: 34px; letter-spacing: -.04em; line-height: 1; }
.proof span { margin-top: 8px; color: var(--muted); font-size: 12px; }

.section { padding: 112px 0; }
.section--mist { background: var(--mist); }
.section-head { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: end; margin-bottom: 48px; }
.section-head h2 { margin-top: 18px; font-size: clamp(34px, 4vw, 54px); letter-spacing: -.04em; line-height: 1.08; }
.section-head p { color: var(--muted); font-size: 17px; line-height: 1.75; }

.vision__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; }
.vision h2 { margin-top: 18px; font-size: clamp(36px, 4.5vw, 60px); letter-spacing: -.04em; line-height: 1.08; }
.vision__copy > p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.vision__values { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.vision__value { padding-top: 16px; border-top: 1px solid var(--line); }
.vision__value strong { display: block; color: var(--deep); font-size: 14px; }
.vision__value span { color: var(--muted); font-size: 12px; line-height: 1.6; }

.solution { min-height: 730px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.solution__media { position: relative; min-height: 580px; overflow: hidden; }
.solution__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.solution:hover .solution__media img { transform: scale(1.025); }
.solution__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(5,34,63,.34)); }
.solution__copy { padding: 92px 8vw; display: flex; flex-direction: column; justify-content: center; }
.solution__copy h2 { max-width: 670px; margin-top: 20px; font-size: clamp(42px, 4.8vw, 66px); letter-spacing: -.05em; line-height: 1.02; }
.solution__intro { margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.solution__emphasis {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  background: #edf5fc;
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.7;
}
.solution__facts { margin-top: 30px; border-top: 1px solid var(--line); }
.solution__fact { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.solution__fact b { color: var(--blue); font-size: 10px; letter-spacing: .1em; }
.solution__fact strong { display: block; font-size: 14px; }
.solution__fact span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.solution__copy .button { align-self: flex-start; margin-top: 30px; }
.solution--blue { background: var(--navy); color: #fff; }
.solution--blue .solution__copy { order: 1; }
.solution--blue .solution__media { order: 2; }
.solution--blue .eyebrow { color: var(--cyan); }
.solution--blue .solution__intro, .solution--blue .solution__fact span { color: #b7cadc; }
.solution--blue .solution__facts, .solution--blue .solution__fact { border-color: rgba(255,255,255,.14); }
.solution--blue .solution__emphasis { border-color: var(--cyan); background: rgba(255,255,255,.06); color: #d8e8f5; }
.solution--blue .button { background: #fff; color: var(--navy); }
.solution--blue .button:hover { background: var(--cyan); color: var(--navy); }

.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.service:last-child { border-right: 0; }
.service:hover { z-index: 2; background: var(--navy); color: #fff; transform: translateY(-5px); }
.service__icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--blue); }
.service__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { margin-top: 46px; font-size: 18px; line-height: 1.35; }
.service p { margin-top: 11px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service:hover p { color: #b9ccde; }
.service a { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--blue); font-size: 11px; font-weight: 800; }
.service:hover a { color: var(--cyan); }

.commitment { background: var(--navy); color: #fff; overflow: hidden; }
.commitment__grid { min-height: 600px; display: grid; grid-template-columns: 1fr 1fr; }
.commitment__media img { width: 100%; height: 100%; object-fit: cover; }
.commitment__copy { padding: 86px 72px; display: flex; flex-direction: column; justify-content: center; }
.commitment__copy .eyebrow { color: var(--cyan); }
.commitment h2 { max-width: 620px; margin-top: 22px; font-size: clamp(36px, 4vw, 56px); letter-spacing: -.04em; line-height: 1.09; }
.commitment__copy > p { margin-top: 22px; color: #bfd0e0; line-height: 1.8; }
.commitment__values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.commitment__values div { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); }
.commitment__values strong { display: block; font-size: 14px; }
.commitment__values span { color: #9eb6cb; font-size: 12px; }

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.sector {
  min-height: 118px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  background: #fff;
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
  transition: background .25s ease, color .25s ease;
}
.sector:hover { background: var(--mist); color: var(--blue); }

.contact { padding: 112px 0; background: #eaf2f9; }
.contact__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; }
.contact h2 { max-width: 600px; margin-top: 18px; font-size: clamp(36px, 4vw, 54px); letter-spacing: -.04em; line-height: 1.1; }
.contact__lead { margin-top: 18px; color: var(--muted); line-height: 1.75; }
.contact__data { margin-top: 34px; color: var(--deep); font-size: 13px; line-height: 2; }
.contact__data a:hover { color: var(--blue); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd8e3;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--ink);
  text-transform: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,136,237,.1); }
.contact-form__actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-status { grid-column: 1 / -1; padding: 14px 16px; font-size: 12px; }
.form-status--success { border: 1px solid #64a678; background: #edf8f0; color: #245d35; }
.form-status--error { border: 1px solid #d68484; background: #fff0f0; color: #8b2727; }
.contact-form button[disabled] { cursor: wait; opacity: .65; transform: none; }

.whatsapp {
  position: fixed;
  z-index: 75;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(7, 48, 27, .24);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7, 48, 27, .3);
}
.whatsapp svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

footer { padding: 64px 0 96px; background: #03172a; color: #9eb3c7; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer__brand img { width: 72px; margin-bottom: 18px; }
footer h3 { margin-bottom: 14px; color: #fff; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
footer a, footer p { display: block; margin: 8px 0; font-size: 12px; line-height: 1.7; }
footer a:hover { color: #fff; }
.footer__bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: 11px; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js [data-reveal="left"] { transform: translateX(-24px); }
.js [data-reveal="right"] { transform: translateX(24px); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .nav-links { gap: 18px; }
  .navigation__cta { display: none; }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 82px; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset: 116px 0 0;
    padding: 30px 32px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: #fff;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-links a::after { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { padding: 78px 34px 52px; }
  .hero__image { min-height: 520px; }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  .proof__intro { grid-column: 1 / -1; }
  .section-head, .vision__grid, .contact__grid { grid-template-columns: 1fr; gap: 28px; }
  .solution, .solution--blue { grid-template-columns: 1fr; }
  .solution__media { min-height: 520px; }
  .solution--blue .solution__media { order: 1; }
  .solution--blue .solution__copy { order: 2; }
  .services__grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .service { border-bottom: 1px solid var(--line); }
  .commitment__grid { grid-template-columns: 1fr; }
  .commitment__media { min-height: 520px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 36px, 1240px); }
  .utility { display: none; }
  .nav-links { inset: 82px 0 0; }
  .hero__copy { padding: 66px 18px 48px; }
  .hero h1 { font-size: 42px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__image { min-height: 430px; }
  .hero__seal { right: 18px; bottom: 18px; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__grid > div { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 80px 0; }
  .vision__values, .services__grid, .sector-grid, .contact-form, .footer__grid { grid-template-columns: 1fr; }
  .solution__media { min-height: 390px; }
  .solution__copy { padding: 68px 24px; }
  .solution__copy h2 { font-size: 42px; }
  .service { min-height: 280px; border-right: 0; }
  .commitment__media { min-height: 420px; }
  .commitment__copy { padding: 58px 24px; }
  .commitment__values { grid-template-columns: 1fr; }
  .field--full, .contact-form__actions, .form-status { grid-column: auto; }
  .contact-form__actions { align-items: stretch; flex-direction: column; }
  .contact-form__actions .button { width: 100%; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .whatsapp { right: 14px; bottom: 14px; }
}

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