@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #0b1f33;
  --ink-2: #17324d;
  --blue: #0878be;
  --blue-dark: #075e96;
  --blue-soft: #eaf5fb;
  --aqua: #62c7d4;
  --paper: #f6f8f9;
  --white: #ffffff;
  --muted: #607286;
  --line: #dce4e9;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #207c6b;
  --shadow: 0 24px 64px rgba(11, 31, 51, 0.1);
  --radius: 8px;
  --container: 1200px;
  --nav-height: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

::selection { color: var(--white); background: var(--blue); }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-paper { background: var(--paper); }
.section-dark { color: var(--white); background: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--aqua); }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(48px, 6.2vw, 84px); line-height: 1.02; }
h2 { font-size: clamp(34px, 4.3vw, 56px); line-height: 1.08; }
h3 { font-size: 22px; line-height: 1.25; }
h4 { font-size: 17px; line-height: 1.4; }

.display-balance { max-width: 780px; }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.7; }
.section-dark .lead { color: rgba(255,255,255,.7); }
.text-muted { color: var(--muted); }
.text-blue { color: var(--blue); }
.kicker { color: var(--blue-dark); font-weight: 700; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.button::after { content: "\2197"; font-size: 17px; font-weight: 400; }
.button:hover { transform: translateY(-2px); background: var(--ink-2); }
.button-primary { border-color: var(--blue); background: var(--blue); }
.button-primary:hover { border-color: var(--blue-dark); background: var(--blue-dark); }
.button-ghost { color: var(--ink); background: transparent; }
.button-ghost:hover { color: var(--white); background: var(--ink); }
.button-light { border-color: var(--white); color: var(--ink); background: var(--white); }
.button-light:hover { border-color: var(--blue-soft); background: var(--blue-soft); }
.button-link { min-height: auto; padding: 0; border: 0; color: var(--blue-dark); background: none; }
.button-link:hover { color: var(--blue); background: none; transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: height .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled, .site-header.header-light {
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 32px rgba(11,31,51,.07);
  backdrop-filter: blur(14px);
}

.site-header.scrolled { height: 74px; }

.nav-wrap {
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  object-fit: cover;
}

.header-light .brand-mark, .scrolled .brand-mark { border-color: var(--line); }
.brand-text { display: grid; width: max-content; gap: 2px; font-family: "Manrope", sans-serif; line-height: 1; }
.brand-text strong {
  width: 100%;
  font-size: 17px;
  letter-spacing: .42em;
  text-align: justify;
  text-align-last: justify;
}
.brand-text span { opacity: .66; font-size: 9px; font-weight: 600; letter-spacing: .17em; white-space: nowrap; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 32px; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 30px 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { color: var(--aqua); }
.header-light .nav-menu > li > a:hover, .header-light .nav-menu > li > a[aria-current="page"],
.scrolled .nav-menu > li > a:hover, .scrolled .nav-menu > li > a[aria-current="page"] { color: var(--blue); }
.has-dropdown > a::after { content: "+"; opacity: .58; font-size: 14px; }

.dropdown {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 110;
  display: grid;
  width: 310px;
  margin: 0 0 0 -155px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility 0s linear .16s;
}

.dropdown a {
  display: flex;
  justify-content: space-between;
  padding: 11px 13px;
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  opacity: 1;
  visibility: visible;
}
.dropdown a::after { color: var(--blue); content: "\2197"; opacity: 0; transform: translate(-4px, 4px); transition: opacity .2s ease, transform .2s ease; }
.dropdown a:hover, .dropdown a:focus-visible { color: var(--blue-dark); background: var(--blue-soft); }
.dropdown a:hover::after { opacity: 1; transform: none; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 17px !important;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px;
}

.header-light .nav-cta, .scrolled .nav-cta { border-color: var(--ink); }
.nav-cta::after { content: "\2197" !important; opacity: 1 !important; }

.language-item { display: flex; align-items: center; }
.language-select {
  width: 82px;
  min-height: 38px;
  padding: 0 23px 0 9px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 3px;
  color: inherit;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 12px) 16px, calc(100% - 8px) 16px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}
.language-select:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; }
.language-select option { color: var(--ink); background: var(--white); }
.header-light .language-select, .scrolled .language-select { border-color: var(--line); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: transparent;
}

.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 72px; align-items: center; padding-top: 90px; }
.hero-copy { position: relative; z-index: 2; padding: 76px 0; }
.hero h1 { max-width: none; margin-bottom: 26px; font-size: clamp(30px, 5.1vw, 68px); }
.hero-title-line { display: block; white-space: nowrap; }
html[lang="es"] .hero h1 { font-size: clamp(30px, 4vw, 52px); }
html[lang="fr"] .hero h1 { font-size: clamp(28px, 3.4vw, 44px); }
.hero h1 .hero-title-accent { color: var(--aqua); }
.hero .lead { max-width: 700px; color: rgba(255,255,255,.72); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 40px; color: rgba(255,255,255,.7); font-size: 13px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); content: ""; }

.hero-system {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-dark);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}

.hero-system::before, .hero-system::after { position: absolute; border: 1px solid rgba(98,199,212,.26); border-radius: 50%; content: ""; }
.hero-system::before { inset: 85px 60px; }
.hero-system::after { inset: 145px 120px; }
.system-axis-x, .system-axis-y { position: absolute; background: rgba(255,255,255,.12); }
.system-axis-x { top: 50%; right: 0; left: 0; height: 1px; }
.system-axis-y { top: 0; bottom: 0; left: 50%; width: 1px; }
.system-logo { position: absolute; top: 50%; left: 50%; width: 92px; height: 92px; border: 8px solid rgba(255,255,255,.08); border-radius: 50%; object-fit: cover; transform: translate(-50%,-50%); box-shadow: 0 0 0 1px rgba(98,199,212,.55); }
.system-dot { position: absolute; width: 10px; height: 10px; border: 2px solid var(--ink); border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 1px var(--aqua); }
.system-dot.d1 { top: 84px; left: 29%; }
.system-dot.d2 { top: 84px; right: 29%; }
.system-dot.d3 { bottom: 74px; left: 29%; }
.system-dot.d4 { right: 29%; bottom: 74px; }
.system-label { position: absolute; padding: 8px 11px; border: 1px solid var(--line-dark); color: rgba(255,255,255,.73); background: rgba(11,31,51,.84); font-family: "Manrope"; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.system-label.l1 { top: 104px; left: 42px; }
.system-label.l2 { top: 148px; right: 38px; }
.system-label.l3 { bottom: 96px; left: 60px; }
.system-label.l4 { right: 18px; bottom: 136px; }
.system-counter { position: absolute; top: 28px; left: 50%; color: rgba(255,255,255,.38); font: 600 9px/1 "Manrope"; letter-spacing: .1em; white-space: nowrap; transform: translateX(-50%); }

.proof-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 128px; padding: 28px 30px; border-left: 1px solid var(--line); }
.proof-item:last-child { border-right: 1px solid var(--line); }
.proof-item strong { display: block; margin-bottom: 4px; font: 700 clamp(24px,3vw,34px)/1.2 "Manrope"; letter-spacing: -.04em; }
.proof-item span { color: var(--muted); font-size: 13px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 58px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading .lead { max-width: 420px; margin-bottom: 4px; font-size: 17px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 370px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.service-card:hover { color: var(--white); background: var(--ink); }
.card-number { display: inline-block; margin-bottom: 70px; color: var(--blue); font: 700 11px/1 "Manrope"; letter-spacing: .12em; }
.service-card:hover .card-number { color: var(--aqua); }
.service-card h3 { margin-bottom: 16px; }
.service-card p { margin-bottom: 34px; color: var(--muted); font-size: 15px; }
.service-card:hover p { color: rgba(255,255,255,.68); }
.service-card .card-arrow { position: absolute; right: 32px; bottom: 28px; color: var(--blue); font-size: 24px; }
.service-card:hover .card-arrow { color: var(--aqua); }
.service-card:hover .button-link { color: var(--aqua); }

.sectors-list { border-top: 1px solid var(--line); }
.sector-row { display: grid; grid-template-columns: 72px 1fr 1.1fr 48px; gap: 28px; align-items: center; min-height: 144px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.sector-row:hover { padding-inline: 20px; background: var(--paper); }
.sector-row .num { color: var(--blue); font: 700 11px "Manrope"; letter-spacing: .12em; }
.sector-row h3 { margin: 0; font-size: clamp(21px,2.3vw,30px); }
.sector-row p { margin: 0; color: var(--muted); font-size: 14px; }
.sector-row .arrow { color: var(--blue); font-size: 23px; text-align: right; }

.advantage-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 88px; align-items: start; }
.advantage-intro { position: sticky; top: 120px; }
.advantage-list { border-top: 1px solid var(--line-dark); }
.advantage-item { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 32px 0; border-bottom: 1px solid var(--line-dark); }
.advantage-item .check { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(98,199,212,.4); border-radius: 50%; color: var(--aqua); font-size: 13px; }
.advantage-item h3 { margin-bottom: 8px; font-size: 19px; }
.advantage-item p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-item { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-item .step { display: grid; width: 42px; height: 42px; margin-bottom: 52px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font: 700 11px "Manrope"; }
.process-item h3 { margin-bottom: 12px; font-size: 18px; }
.process-item p { color: var(--muted); font-size: 14px; }

.cta-band { position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.cta-band::after { position: absolute; top: -200px; right: -100px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 84px rgba(255,255,255,.04), 0 0 0 168px rgba(255,255,255,.025); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 44px; min-height: 350px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 0; }

.site-footer { color: rgba(255,255,255,.68); background: #071827; }
.footer-main { display: grid; grid-template-columns: 1.1fr .7fr .7fr 1fr; gap: 60px; padding: 80px 0 58px; }
.footer-brand .brand { color: var(--white); margin-bottom: 24px; }
.footer-brand p { max-width: 300px; font-size: 14px; }
.footer-col h3 { margin-bottom: 22px; color: var(--white); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: 13px; }
.footer-col a:hover { color: var(--aqua); }
.footer-contact { font-style: normal; font-size: 13px; }
.footer-contact p { margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: 11px; }
.footer-bottom p { margin: 0; }

.page-hero {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 92px;
  color: var(--white);
  background: var(--ink);
}

.page-hero::after { position: absolute; top: -30%; right: -8%; width: min(50vw, 720px); aspect-ratio: 1; border: 1px solid rgba(98,199,212,.26); border-radius: 50%; content: ""; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.015); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 44px; color: rgba(255,255,255,.54); font-size: 12px; }
.breadcrumbs span { color: var(--aqua); }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(44px,6vw,72px); }
.page-hero .lead { max-width: 760px; margin: 0; color: rgba(255,255,255,.68); }

.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 96px; }
.intro-grid h2 { margin: 0; }
.intro-copy p { color: var(--muted); font-size: 17px; }
.intro-copy p:first-child { color: var(--ink-2); font-size: 21px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { min-height: 290px; padding: 36px; background: var(--white); }
.value-icon { display: grid; width: 42px; height: 42px; margin-bottom: 60px; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font-size: 14px; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 14px; }

.management-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.management-card { display: grid; grid-template-columns: 150px 1fr; gap: 30px; align-items: start; padding: 32px; border: 1px solid var(--line); background: var(--white); }
.management-photo { width: 150px; height: 180px; border: 1px solid var(--line); background: var(--paper); object-fit: cover; object-position: center top; }
.management-card h3 { margin-bottom: 5px; font-size: 25px; }
.management-role { margin-bottom: 20px; color: var(--blue-dark); font: 700 12px/1.4 "Manrope", sans-serif; letter-spacing: .09em; text-transform: uppercase; }
.management-card p:not(.management-role) { color: var(--muted); font-size: 14px; }
.linkedin-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 6px; color: var(--blue-dark); font: 700 13px/1.3 "Manrope", sans-serif; }
.linkedin-link:hover { color: var(--blue); }
.linkedin-icon { width: 17px; height: 17px; flex: none; fill: currentColor; }

.service-support-note { grid-column: 1 / -1; margin-top: 20px; padding: 30px; border: 1px solid var(--line); border-left: 4px solid var(--blue); background: var(--blue-soft); }
.service-support-note h3 { margin-bottom: 8px; font-size: 18px; }
.service-support-note p { margin: 0; color: var(--muted); font-size: 14px; }

.reach-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.reach-map { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.reach-map::before { position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(circle, rgba(98,199,212,.24) 1px, transparent 1px); background-size: 18px 18px; content: ""; }
.world-map { position: absolute; inset: 28px 20px; width: calc(100% - 40px); height: calc(100% - 56px); object-fit: contain; }
.map-point { position: absolute; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); font: 600 11px "Manrope"; letter-spacing: .08em; text-transform: uppercase; }
.map-point::before { width: 8px; height: 8px; border: 2px solid var(--ink); border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 1px var(--aqua); content: ""; }
.map-point.p1 { top: 43%; left: 65%; }
.map-point.p2 { top: 52%; left: 49%; }
.map-point.p3 { top: 27%; left: 50%; }
.reach-list { display: grid; gap: 0; margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.reach-list li { padding: 16px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.72); }

.detail-layout { display: grid; grid-template-columns: 280px 1fr; gap: 92px; align-items: start; }
.detail-nav { position: sticky; top: 112px; }
.detail-nav span { display: block; margin-bottom: 18px; color: var(--muted); font: 700 11px "Manrope"; letter-spacing: .12em; text-transform: uppercase; }
.detail-nav a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.detail-nav a:hover, .detail-nav a.active { color: var(--blue); }
.detail-nav a::after { content: "\2192"; }
.detail-content > .lead { max-width: 760px; margin-bottom: 52px; color: var(--ink-2); }

.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.capability-card { min-height: 230px; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.capability-card .cap-num { display: block; margin-bottom: 44px; color: var(--blue); font: 700 10px "Manrope"; letter-spacing: .12em; }
.capability-card h3 { margin-bottom: 10px; font-size: 18px; }
.capability-card p { margin: 0; color: var(--muted); font-size: 14px; }

.feature-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 72px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.feature-copy { padding: 48px; background: var(--ink-2); }
.feature-copy h2 { font-size: clamp(30px,4vw,46px); }
.feature-copy p { color: rgba(255,255,255,.68); }
.feature-data { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); }
.feature-data div { padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.feature-data strong { display: block; margin-bottom: 6px; color: var(--aqua); font: 700 25px "Manrope"; letter-spacing: -.04em; }
.feature-data span { color: rgba(255,255,255,.58); font-size: 12px; }

.list-check { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.list-check li { display: flex; gap: 12px; color: var(--muted); font-size: 14px; }
.list-check li::before { color: var(--blue); content: "\2713"; font-weight: 700; }

.download-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 52px; padding: 28px 32px; border: 1px solid var(--line); background: var(--paper); }
.download-card h3 { margin-bottom: 4px; font-size: 18px; }
.download-card p { margin: 0; color: var(--muted); font-size: 13px; }
.download-card .button-row { margin-top: 0; flex-shrink: 0; }
.section-dark .button:not(.button-light):not(.button-primary) { border-color: var(--blue); background: var(--blue); }
.section-dark .button:not(.button-light):not(.button-primary):hover { border-color: var(--blue-dark); background: var(--blue-dark); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { padding: 28px; border: 1px solid var(--line); }
.contact-card small { display: block; margin-bottom: 12px; color: var(--blue); font: 700 10px "Manrope"; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { display: block; font-size: 17px; line-height: 1.5; }
.contact-card span { color: var(--muted); font-size: 13px; }
.contact-card a:hover { color: var(--blue); }
.contact-panel { padding: 54px; color: var(--white); background: var(--ink); }
.contact-panel h2 { margin-bottom: 22px; }
.contact-panel p { color: rgba(255,255,255,.66); }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 38px; }
.contact-action { padding: 24px; border: 1px solid var(--line-dark); transition: background .2s ease; }
.contact-action:hover { background: rgba(255,255,255,.06); }
.contact-action small { display: block; margin-bottom: 12px; color: var(--aqua); text-transform: uppercase; letter-spacing: .1em; }
.contact-action strong { font-family: "Manrope"; }

.document-shell { padding-top: calc(var(--nav-height) + 44px); background: var(--paper); }
.document-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; padding: 62px 0 34px; }
.document-head h1 { margin-bottom: 0; font-size: clamp(34px,5vw,52px); }
.document-frame { width: 100%; height: min(78vh, 900px); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.document-fallback { padding: 18px 0 70px; color: var(--muted); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  :root { --nav-height: 74px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: calc(100dvh - var(--nav-height));
    max-height: calc(100vh - var(--nav-height));
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-open .nav-menu { opacity: 1; pointer-events: auto; transform: none; }
  .nav-menu > li > a { width: 100%; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { color: var(--blue); }
  .language-item { padding: 16px 0 4px; }
  .language-select { min-height: 44px; border-color: var(--line); color: var(--ink); background-color: var(--paper); }
  .dropdown { position: static; width: 100%; margin: 0; padding: 8px 0 14px 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .dropdown a { padding: 9px 0; color: var(--muted); font-size: 13px; }
  .nav-cta { margin-top: 18px; justify-content: center !important; border-color: var(--ink); background: var(--ink); color: var(--white); }
  .site-header:not(.scrolled):not(.header-light) .nav-menu { color: var(--ink); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 130px 0 78px; }
  .hero-copy { padding: 0; }
  .hero-system { min-height: 420px; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 24px; }
  .advantage-grid, .intro-grid, .reach-grid, .contact-grid { grid-template-columns: 1fr; gap: 58px; }
  .management-grid { grid-template-columns: 1fr; }
  .advantage-intro, .detail-nav { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .detail-layout { grid-template-columns: 1fr; gap: 52px; }
  .detail-nav { display: none; }
}

@media (max-width: 760px) {
  .container, .nav-wrap { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 54px 0; }
  h1 { font-size: clamp(42px, 14vw, 62px); }
  h2 { font-size: clamp(31px, 10vw, 44px); }
  .brand-text strong { font-size: 17px; }
  .brand-text span { font-size: 8px; }
  .hero-grid { gap: 48px; }
  html[lang="es"] .hero-title-line, html[lang="fr"] .hero-title-line { white-space: normal; }
  .hero-system { min-height: 340px; }
  .hero-system::before { inset: 58px 38px; }
  .hero-system::after { inset: 106px 84px; }
  .system-counter { display: none; }
  .system-label { padding: 6px 7px; font-size: 8px; }
  .system-label.l1 { top: 68px; left: 20px; }
  .system-label.l2 { top: 112px; right: 16px; }
  .system-label.l3 { bottom: 82px; left: 44px; }
  .system-label.l4 { right: 12px; bottom: 98px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { min-height: 112px; padding: 22px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(even) { border-right: 1px solid var(--line); }
  .services-grid, .values-grid, .management-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .card-number { margin-bottom: 46px; }
  .sector-row { grid-template-columns: 42px 1fr 30px; gap: 14px; min-height: 112px; }
  .sector-row p { display: none; }
  .process-grid, .capability-grid { grid-template-columns: 1fr; }
  .process-item { min-height: 230px; }
  .cta-inner { display: block; padding: 72px 0; }
  .cta-inner .button { margin-top: 34px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 28px; padding-top: 64px; }
  .footer-brand, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }
  .page-hero { min-height: 520px; padding: 140px 0 70px; }
  .breadcrumbs { margin-bottom: 30px; }
  .intro-grid { gap: 34px; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-copy { padding: 34px; }
  .feature-data div { padding: 25px; }
  .download-card, .document-head { align-items: start; flex-direction: column; }
  .contact-panel { padding: 34px 26px; }
  .contact-actions { grid-template-columns: 1fr; }
  .management-card { grid-template-columns: 1fr; padding: 30px; }
  .document-frame { height: 68vh; }
}

@media (max-width: 420px) {
  .brand-text strong { font-size: 13px; letter-spacing: .31em; }
  .brand-text span { font-size: 7px; letter-spacing: .12em; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .feature-data { grid-template-columns: 1fr; }
}
