:root {
  --blue: #244aa5;
  --blue-dark: #1c3f94;
  --navy: #0f1a2e;
  --navy-soft: #16243c;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --ink: #121b31;
  --muted: #5c6b85;
  --line: #d7e0ef;
  --page: #f3f6fb;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 26, 46, 0.1);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --header-height: 76px;
  --header-h: var(--header-height);
  --container-wide: 1480px;
  --container: 1180px;
  --container-narrow: 760px;
  --pad-inline: clamp(1rem, 3vw, 1.6rem);
  --section-padding-large: clamp(2.4rem, 5vw, 4rem);
  --section-padding: clamp(1.8rem, 3.6vw, 3rem);
  --section-padding-small: clamp(1.2rem, 2.4vw, 2rem);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.06rem);
  -webkit-font-smoothing: antialiased;
}
img, svg, video, picture { max-width: 100%; height: auto; }
picture { display: block; }
img, video { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - var(--pad-inline) * 2, var(--container)); margin-inline: auto; }
.site-header .container { width: min(100% - 1.4rem, 1240px); }
.container-wide { width: min(100% - var(--pad-inline) * 2, var(--container-wide)); margin-inline: auto; }
.container-narrow { width: min(100% - var(--pad-inline) * 2, var(--container-narrow)); margin-inline: auto; }
.skip-link {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
  position: absolute; width: auto; height: auto; clip: auto; clip-path: none; white-space: normal;
  left: 1rem; top: 1rem; z-index: 80; background: var(--navy); color: #fff; padding: .7rem 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 .7rem;
  overflow-wrap: break-word;
  hyphens: manual;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.55rem); font-weight: 600; }
.page-hero h1 { font-size: clamp(1.85rem, 3vw, 2.5rem); line-height: 1.15; max-width: 18em; }
h2 { font-size: clamp(1.45rem, 2.5vw, 2.35rem); }
h3 { font-size: clamp(1.08rem, 1.3vw, 1.28rem); }
p { margin: 0 0 .9rem; color: var(--muted); }
.lead, .page-hero p, .prose p { max-width: 70ch; }
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.gold { color: var(--gold-soft); }

.btn, .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: clamp(.72rem, 0.6vw + .68rem, .84rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover, .header-cta:hover, .header-action:hover { transform: translateY(-1px); }
.btn:focus-visible, .header-cta:focus-visible, .header-action:focus-visible, .header-quiet:focus-visible, .site-nav a:focus-visible, .nav-chevron:focus-visible, .profile-mini:focus-visible, .service-card:focus-visible, .sector-card a:focus-visible, .person:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px;
}
.btn-primary, .header-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(36,74,165,.28);
}
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost-dark { border-color: var(--line); color: var(--navy); background: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 50; min-height: var(--header-height);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215,224,239,.9);
}
.header-inner { display: flex; align-items: center; gap: .6rem; min-height: var(--header-height); min-width: 0; max-width: 100%; }
.brand { flex: 0 0 auto; }
.brand img { height: 42px; width: auto; }
.site-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: .5rem .7rem;
  margin-left: auto; min-width: 0; flex: 1 1 auto;
}
.header-toolbar { display: flex; align-items: center; gap: .4rem; flex: 0 0 auto; }
.nav-group { display: flex; align-items: center; flex-wrap: nowrap; gap: .2rem .7rem; min-width: 0; }
.nav-access { display: none; }
.nav-label { display: none; margin: 0; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.nav-group a {
  background: none; border: 0; padding: .35rem 0; cursor: pointer;
  font-weight: 600; color: var(--navy-soft); font-size: .9rem; white-space: nowrap;
}
.nav-group a[aria-current="page"], .nav-group a:hover { color: var(--blue); }
.nav-item { position: relative; }
.nav-combo { display: inline-flex; align-items: center; gap: .15rem; }
.nav-chevron {
  width: 28px; height: 28px; border: 0; background: transparent; border-radius: 8px; cursor: pointer;
  display: grid; place-items: center; color: var(--navy);
}
.nav-chevron span {
  width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); display: block;
}
.nav-item.open .nav-chevron span { transform: rotate(225deg) translateY(-1px); }
.nav-mega {
  position: absolute; top: calc(100% + .55rem); left: 0;
  width: min(920px, calc(100% - 2rem)); max-width: 100%;
  display: none; padding: 1.1rem 1.15rem 1rem;
  border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); z-index: 60;
  grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem 1rem;
}
.mega-col { min-width: 0; }
.mega-title {
  margin: 0 0 .45rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--blue);
}
.nav-mega a { display: grid; gap: .12rem; padding: .45rem .5rem; border-radius: 10px; white-space: normal; }
.nav-mega a strong { font-size: .9rem; color: var(--navy); }
.nav-mega a span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.nav-mega a:hover { background: #eef3fb; }
.mega-all {
  grid-column: 1 / -1; margin-top: .2rem; font-weight: 700; color: var(--blue); letter-spacing: .04em;
  text-transform: uppercase; font-size: .78rem;
}
.nav-panel {
  position: absolute; top: calc(100% + .55rem); left: 0; z-index: 60;
  min-width: 15rem; display: none; padding: .45rem;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
}
.nav-panel a { display: block; padding: .65rem .75rem; border-radius: 10px; white-space: normal; font-weight: 650; }
.nav-panel a:hover, .nav-panel a:focus-visible { background: #eef3fb; }
.nav-item.open .nav-mega, .nav-item.open .nav-panel { display: grid; }
@media (hover: hover) and (pointer: fine) and (min-width: 1281px) {
  .nav-item.has-menu:hover .nav-mega,
  .nav-item.has-menu:hover .nav-panel,
  .nav-item.has-menu:focus-within .nav-panel { display: grid; }
}
@media (min-width: 1281px) {
  .header-inner { position: relative; }
  .nav-item.has-menu { position: static; }
  .nav-mega {
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, calc(100% - 2rem));
  }
}
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; margin-left: auto; }
.header-wa {
  display: none; place-items: center; width: 44px; height: 44px; margin-left: auto;
  border-radius: 12px; background: #128c7e; color: #fff;
}
.header-wa:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--navy); }
.header-action, .header-quiet {
  display: inline-flex; align-items: center; min-height: 38px; padding: .35rem .7rem;
  border-radius: 999px; font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--navy);
}
.header-action { border: 1px solid var(--line); background: #fff; }
.header-quiet {
  border: 0; background: transparent; color: var(--muted);
  letter-spacing: .01em; text-transform: none; font-size: .82rem; font-weight: 600;
  padding: .35rem .4rem;
}
.header-quiet:hover { color: var(--blue); }
.header-cta { margin-left: 0; min-height: 40px; padding: .5rem .95rem; }
.nav-access .header-cta, .nav-access .header-action { white-space: nowrap; }

.hero {
  position: relative; overflow: hidden; color: #fff;
  min-height: 0;
  max-height: none;
  padding: clamp(1.6rem, 3.5vw, 2.8rem) 0 clamp(2rem, 4vw, 3.2rem);
  background: radial-gradient(circle at 85% 10%, rgba(36,74,165,.55), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(201,162,39,.16), transparent 28%),
    linear-gradient(160deg, #0f1a2e 0%, #163057 55%, #1c3f94 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .9fr); gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center; }
.hero h1, .hero p { color: rgba(255,255,255,.92); }
.hero h1 { max-width: 16ch; }
.hero .lead { font-size: clamp(1.02rem, 1.2vw, 1.16rem); max-width: 38rem; color: rgba(255,255,255,.86); }
.hero-home { padding-bottom: clamp(4.8rem, 8vw, 5.6rem); }
.hero-photo {
  margin: 0; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 22px 48px rgba(0,0,0,.28), inset 0 0 0 1px rgba(201,162,39,.45);
  background: #1b3158;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 68%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.2rem 0 .6rem; }
.hero .btn-primary { background: #fff; color: var(--navy); }
.hero-visual {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .85fr); gap: .7rem;
  align-items: stretch; min-width: 0; max-width: 100%;
}
.dash {
  border-radius: 20px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); padding: .9rem 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.18); min-width: 0;
}
.dash h4 { color: #fff; font-size: 1rem; margin-bottom: .4rem; }
.dash strong { display: block; font-family: var(--font-display); font-size: 1.45rem; color: var(--gold-soft); }
.dash small { color: rgba(255,255,255,.65); }
.dash-main { grid-row: 1 / span 2; }
.dash-float { animation: float 6s ease-in-out infinite; }
.d2 { animation-direction: reverse; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 72px; margin-top: .5rem; }
.bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--gold-soft), var(--blue)); }
.bars span:nth-child(1) { height: 38%; } .bars span:nth-child(2) { height: 62%; }
.bars span:nth-child(3) { height: 48%; } .bars span:nth-child(4) { height: 84%; }
.bars span:nth-child(5) { height: 70%; } .bars span:nth-child(6) { height: 92%; }
.line { height: 36px; margin-top: .5rem; background:
  radial-gradient(circle at 18% 70%, transparent 46%, #e8d48a 47% 53%, transparent 54%),
  radial-gradient(circle at 42% 40%, transparent 46%, #e8d48a 47% 53%, transparent 54%),
  radial-gradient(circle at 68% 55%, transparent 46%, #e8d48a 47% 53%, transparent 54%),
  radial-gradient(circle at 88% 28%, transparent 46%, #e8d48a 47% 53%, transparent 54%);
  opacity: .85;
}
@keyframes float { 50% { transform: translateY(-6px); } }

.band { padding: var(--section-padding) 0; }
.band-large { padding: var(--section-padding-large) 0; }
.band-small { padding: var(--section-padding-small) 0; }
.band-navy { background: var(--navy); color: #fff; }
.band-navy h2, .band-navy p, .band-white h2 { color: inherit; }
.band-white { background: #fff; }
.band-soft { background: var(--page); }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 1.6rem; align-items: start; }
.split > * { min-width: 0; max-width: 100%; }
.eq {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: .55rem; margin-top: 1.2rem;
}
.eq span, .eq strong {
  display: grid; place-items: center; min-height: 72px; text-align: center; padding: .6rem;
  border-radius: 16px; font-size: .84rem; font-weight: 700;
}
.eq span { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #fff; }
.eq strong { background: var(--gold); color: var(--navy); }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem;
  margin-top: -1.6rem; position: relative; z-index: 2;
}
.stat {
  background: #fff; border-radius: 18px; padding: 1.05rem 1.05rem; box-shadow: var(--shadow); border: 1px solid #eef2f8;
}
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.55rem, 2vw, 1.95rem); color: var(--blue); }
.stat span { color: var(--muted); font-size: .92rem; }

.mosaic { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: .9rem; align-items: stretch; }
.tile {
  padding: 1.25rem 1.3rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15,26,46,.06); transition: transform .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.tile:hover { transform: translateY(-3px); }
.tile.navy { background: linear-gradient(160deg, var(--navy), #1b3158); color: #fff; }
.tile.navy p, .tile.navy h2, .tile.navy h3 { color: #fff; }
.tile.wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 1.2rem; align-items: center; }
.checks { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.checks li + li { margin-top: .35rem; }
.navy .checks { color: rgba(255,255,255,.82); }

.sectors { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .75rem; }
.sector {
  padding: 1rem 1.05rem; border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7f9fd); border: 1px solid var(--line); color: var(--navy);
  transition: transform .2s ease, border-color .2s ease;
}
.sector:hover { transform: translateY(-3px); border-color: #b8c8e4; }
.sector b { display: block; font-weight: 700; margin-bottom: .25rem; }
.sector span { display: block; color: var(--muted); font-size: .86rem; font-weight: 500; }
.sector.is-lead { background: var(--navy); color: #fff; border-color: var(--navy); }
.sector.is-lead span { color: rgba(255,255,255,.75); }

.timeline { display: grid; gap: .75rem; }
.time {
  display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: .85rem; padding: .9rem 1.05rem;
  background: #fff; border-left: 4px solid var(--gold); border-radius: 0 16px 16px 0;
}
.time b { color: var(--blue); }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem; }
.value { padding: 1rem 1.05rem; background: #fff; border-radius: 18px; border-top: 3px solid var(--gold); }

.profiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: .9rem; align-items: stretch; }
.profile-card { background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.portrait {
  height: 168px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 2.3rem;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.16), transparent 40%),
    linear-gradient(160deg, var(--navy), var(--blue));
}
.portrait::after {
  content: ""; position: absolute; inset: auto 18% 14px; height: 3px; border-radius: 99px; background: var(--gold-soft); opacity: .7;
}
.portrait-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; display: block; background: #e7edf6; }
.tile.navy a, .why-band a, .folio-rule a, .close a { color: #fff; }
.tile.navy .eyebrow, .tile.navy h2, .tile.navy h3, .tile.navy p { color: #fff; }
.portrait.alt { background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.14), transparent 42%), linear-gradient(160deg, #1b3158, #087e86); }
.portrait.soft { background: radial-gradient(circle at 40% 10%, rgba(255,255,255,.18), transparent 40%), linear-gradient(160deg, #244aa5, #c9a227); }
.profile-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.profile-card .more { display: none; color: var(--muted); }
.profile-card.expanded .more { display: block; }
.role { font-weight: 700; color: var(--blue); margin-bottom: .35rem; }

.dashboards { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: .9rem; }
.mock {
  background: #10192c; color: #fff; border-radius: 22px; padding: 1.15rem; min-width: 0;
}
.mock h3 { color: #fff; }
.kpi { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: .6rem; margin: .8rem 0; }
.kpi div { background: rgba(255,255,255,.06); border-radius: 14px; padding: .7rem; min-width: 0; }
.kpi b { display: block; font-size: 1.25rem; color: var(--gold-soft); }
.chart-row { display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.chart-row i { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #7aa2ff, #244aa5); display: block; }
.spark { height: 46px; margin: .5rem 0; background:
  linear-gradient(180deg, transparent 60%, rgba(232,212,138,.12)),
  radial-gradient(circle at 12% 70%, #e8d48a 0 4px, transparent 5px),
  radial-gradient(circle at 32% 42%, #7aa2ff 0 4px, transparent 5px),
  radial-gradient(circle at 54% 58%, #e8d48a 0 4px, transparent 5px),
  radial-gradient(circle at 76% 28%, #7aa2ff 0 4px, transparent 5px),
  radial-gradient(circle at 92% 48%, #e8d48a 0 4px, transparent 5px);
}
.flow { display: grid; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.78); }
.flow span { display: flex; justify-content: space-between; gap: .6rem; padding: .35rem .5rem; background: rgba(255,255,255,.05); border-radius: 10px; }
.mini-list { display: grid; gap: .65rem; }
.mini-list article { background: #fff; border-radius: 16px; padding: .9rem 1rem; border: 1px solid var(--line); }

.form {
  background: #fff; border-radius: 22px; padding: 1.35rem; border: 1px solid var(--line); box-shadow: var(--shadow);
  position: relative; min-width: 0; max-width: 100%;
}
.field { display: grid; gap: .4rem; margin-bottom: .9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 12px; background: #fbfcff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,74,165,.14);
}
.field-check label { display: flex; gap: .65rem; align-items: flex-start; color: var(--muted); font-size: .92rem; }
.field-check input { margin-top: .28rem; flex: 0 0 auto; width: 1.1rem; height: 1.1rem; }
.field-check a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.hp-field {
  position: absolute; left: 0; top: 0; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0;
}
.form-note { color: var(--muted); min-height: 1.3em; }
.form-note.success { color: #0d6b4d; }
.form-note.error { color: #b42318; }
.form.is-sending .btn { pointer-events: none; }
.form-success { display: grid; gap: .9rem; }
.form-success[hidden], .form-fields[hidden] { display: none; }
.form-success p { color: var(--navy); font-weight: 600; }
.btn-whatsapp { background: #1f8a4c; color: #fff; }
.btn-whatsapp:hover { background: #187a42; }
.btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.contact-channels {
  list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .55rem;
}
.contact-channels li { color: var(--muted); }
.contact-channels a { color: var(--blue); font-weight: 700; }
.contact-channels strong { display: block; color: var(--navy); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.whatsapp-float {
  position: fixed; z-index: 40;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 28px rgba(15, 26, 46, .28);
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.prose a { color: var(--blue); font-weight: 700; }
.email-chooser { position: relative; display: inline-flex; vertical-align: middle; }
.email-chooser-menu {
  position: absolute; top: calc(100% + .45rem); left: 0; z-index: 80;
  min-width: 16rem; max-width: min(18rem, 100%);
  padding: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
}
.email-chooser-menu[hidden] { display: none; }
.email-chooser-label {
  margin: 0 .35rem .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.email-chooser-option {
  display: block; padding: .7rem .8rem; border-radius: 12px;
  color: var(--navy); font-weight: 700; letter-spacing: .03em;
}
.email-chooser-option:hover, .email-chooser-option:focus-visible { background: #eef3fb; color: var(--blue); }

.ally {
  display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 1.2rem; align-items: center;
  background: #fff; border-radius: 24px; padding: 1.35rem; border: 1px solid var(--line);
}
.ally-mark {
  height: 120px; border-radius: 20px; display: grid; place-items: center;
  background: linear-gradient(160deg, #0f1a2e, #244aa5); color: #fff; font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: .08em;
}

.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 1.8rem 0 4.6rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto; gap: 1.2rem; align-items: start; }
.footer-mark { margin-bottom: .6rem; }
.site-footer strong { color: #fff; display: block; font-family: var(--font-display); }
.site-footer nav { display: grid; gap: .35rem; }
.footer-meta { display: grid; gap: .4rem; justify-items: start; }
.footer-contact { display: grid; gap: .4rem; margin-top: .85rem; }
.footer-social { margin-top: .95rem; }
.footer-social p { margin: 0 0 .35rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--gold-soft); }
.footer-social ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.footer-social a { color: #fff; font-weight: 700; }
.footer-social a:hover { text-decoration: underline; }
.footer-social span { color: rgba(255,255,255,.72); }
.contact-social .footer-social p { color: var(--blue); }
.contact-social .footer-social a { color: var(--navy); }
.contact-social .footer-social span { color: var(--muted); }
.footer-contact a { color: var(--gold-soft); font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }
.team-access { color: var(--gold-soft); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

.page-hero { padding: 2.2rem 0 1.6rem; background: #fff; border-bottom: 1px solid var(--line); }
.page-hero, section[id], h1, h2 { scroll-margin-top: calc(var(--header-height) + 14px); }
.crumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .88rem; color: var(--muted); margin-bottom: .7rem; }
.crumb a { color: var(--blue); font-weight: 600; }
.portfolio { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: .85rem; align-items: stretch; }
.service-card {
  display: flex; flex-direction: column; min-width: 0; padding: 1.15rem 1.2rem; border-radius: 20px;
  background: #fff; border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card small { color: var(--ink); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 1rem; }
.service-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 14px; margin-bottom: .85rem; background: #e7edf6; }
.service-card h2, .service-card h3 { font-size: 1.28rem; line-height: 1.25; }
.service-card .go { margin-top: auto; font-weight: 700; color: var(--blue); }
.service-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow); }
.service-card:hover .go { text-decoration: underline; }
.profile-grid { display: grid; gap: var(--section-padding); }
.scope { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .7rem; }
.scope li, .steps { color: var(--muted); }
.steps { counter-reset: step; list-style: none; padding: 0; display: grid; gap: .55rem; }
.steps li { padding: .75rem .9rem .75rem 2.6rem; background: #fff; border-radius: 14px; border: 1px solid var(--line); position: relative; }
.steps li::before {
  counter-increment: step; content: counter(step); position: absolute; left: .7rem; top: .7rem;
  width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: .75rem; font-weight: 700;
}
.related { display: flex; flex-wrap: wrap; gap: .5rem; }
.related a { padding: .45rem .8rem; border-radius: 999px; background: #eef3fb; color: var(--blue); font-weight: 700; font-size: .84rem; }
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: .9rem; }
.app-card {
  background: #fff; border-radius: 22px; padding: 1.25rem; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .5rem; min-width: 0;
}
.app-card .btn, .app-card .badge { margin-top: auto; align-self: flex-start; }
.badge { display: inline-flex; padding: .4rem .75rem; border-radius: 999px; background: #eef3fb; color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }

.why-mgt .lead { max-width: 62ch; }
.why-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .9rem;
  margin: 1.35rem 0 1.5rem;
}
.why-card {
  grid-column: span 2; min-width: 0; max-width: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15,26,46,.05);
}
.why-card:nth-child(n+4) { grid-column: span 3; }
.why-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-bottom: .7rem;
}
.why-num {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; color: var(--blue);
}
.why-icon {
  width: 36px; height: 36px; flex: 0 0 auto; border-radius: 12px;
  display: grid; place-items: center;
  background: #eef3fb; color: var(--navy);
}
.why-icon svg { width: 18px; height: 18px; display: block; }
.why-card h3 { margin-bottom: .4rem; }
.why-card p { margin: 0; font-size: .95rem; }
.why-cta {
  padding: 1.05rem 1.15rem; border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7f9fd); border: 1px solid var(--line);
}
.why-cta p { margin: 0; color: var(--navy); font-weight: 600; max-width: 42ch; }

.section-intro { align-items: end; margin-bottom: 1.2rem; }
.service-stage { display: grid; gap: .9rem; }
.svc-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: .9rem; align-items: stretch; }
.svc-stack, .svc-row { display: grid; gap: .9rem; }
.svc-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.svc {
  min-width: 0; padding: 1.15rem 1.2rem; border-radius: 20px;
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .15rem;
}
.svc h3 { margin-bottom: .35rem; }
.svc p { margin: 0 0 .4rem; }
.svc > a:not(.btn) { margin-top: auto; color: var(--blue); font-weight: 700; }
.svc-get { color: var(--ink); }
.svc-get b {
  display: inline-block; margin-right: .35rem;
  color: var(--blue); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.svc-links { display: flex; flex-wrap: wrap; gap: .45rem .8rem; margin: .2rem 0 0; }
.svc-links a { color: var(--blue); font-weight: 700; }
.svc-feature {
  background: linear-gradient(165deg, #12203a, #1c3f94); color: #fff;
  justify-content: center;
}
.svc-feature h3, .svc-feature p { color: #fff; }
.svc-feature .svc-get b { color: var(--gold-soft); }
.svc-feature .btn { margin-top: .8rem; align-self: flex-start; }
.svc-wide {
  display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 1rem; align-items: center;
  border-left: 4px solid var(--gold);
}
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .9rem; }
.profile-mini {
  display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: .8rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: .85rem;
  min-width: 0;
}
.profile-mini .portrait { width: 72px; height: 72px; border-radius: 16px; font-size: 1.15rem; }
.profile-mini .portrait::after { display: none; }
.profile-mini strong { display: block; color: var(--navy); font-size: 1rem; }
.profile-mini em { display: block; color: var(--blue); font-style: normal; font-weight: 700; font-size: .86rem; margin: .15rem 0 .3rem; }
.profile-mini span span { display: block; color: var(--muted); font-size: .9rem; }
.deliverable {
  background: #10192c; color: #fff; border-radius: 22px; padding: 1.15rem 1.2rem; min-width: 0;
}
.deliverable h3, .deliverable p { color: #fff; }
.deliverable ol { list-style: none; margin: 0 0 .8rem; padding: 0; display: grid; gap: .5rem; }
.deliverable li {
  display: grid; gap: .1rem; padding: .7rem .8rem;
  background: rgba(255,255,255,.06); border-radius: 12px;
}
.deliverable b { color: var(--gold-soft); }
.deliverable span, .deliverable small { color: rgba(255,255,255,.78); }
.invite { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.7rem); color: #fff; margin: 0; }
.contact-close { display: grid; gap: .65rem; justify-items: start; }
.contact-close a:not(.btn) { color: var(--gold-soft); font-weight: 700; font-size: 1.05rem; }
.contact-close a:not(.btn):hover { text-decoration: underline; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal, .page-hero .reveal { opacity: 1; transform: none; }

@media (max-width: 1500px) {
  .header-toolbar .header-quiet { display: none; }
}
@media (min-width: 1281px) and (max-width: 1440px) {
  .nav-group { gap: .12rem .42rem; }
  .nav-group a { font-size: .82rem; }
  .header-cta { padding: .42rem .75rem; }
  .header-action { padding: .28rem .5rem; font-size: .66rem; }
  .brand img { height: 38px; }
  .nav-mega { width: min(820px, calc(100% - 2rem)); }
}
@media (max-width: 1280px) {
  .nav-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .site-nav {
    display: none; position: absolute; top: var(--header-height); left: 0; right: 0;
    background: #fff; padding: 1rem; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    max-height: calc(100vh - var(--header-height)); overflow: auto; z-index: 70;
  }
  .site-nav.open { display: flex; }
  .nav-group { flex-direction: column; align-items: stretch; gap: .35rem; padding: .4rem 0 .7rem; }
  .nav-label { display: block; }
  .nav-combo { width: 100%; justify-content: space-between; }
  .nav-mega, .nav-panel {
    position: static; display: none; width: auto; box-shadow: none; border: 0; padding: .4rem 0 .2rem .4rem;
    grid-template-columns: 1fr;
  }
  .nav-item.open .nav-mega, .nav-item.open .nav-panel { display: grid; }
  .nav-item.has-menu:hover .nav-mega,
  .nav-item.has-menu:focus-within .nav-mega,
  .nav-item.has-menu:hover .nav-panel,
  .nav-item.has-menu:focus-within .nav-panel { display: none; }
  .nav-item.open .nav-mega,
  .nav-item.open .nav-panel,
  .nav-item.open.has-menu:hover .nav-mega,
  .nav-item.open.has-menu:focus-within .nav-mega,
  .nav-item.open.has-menu:hover .nav-panel,
  .nav-item.open.has-menu:focus-within .nav-panel { display: grid; }
  .header-inner { position: relative; }
  .header-action, .header-cta { justify-content: center; }
}
@media (max-width: 1024px) {
  .hero, .hero-grid, .split, .mosaic, .dashboards, .ally, .tile.wide, .footer-grid, .svc-grid, .svc-wide { grid-template-columns: 1fr; }
  .hero { min-height: 0; max-height: none; }
  .hero h1 { max-width: 18ch; }
  .hero-photo { aspect-ratio: 16 / 10; max-height: 240px; }
  .hero-visual { grid-template-columns: 1fr; }
  .dash-main { grid-row: auto; }
  .section-intro { align-items: start; }
}
@media (max-width: 900px) {
  .header-toolbar { display: none; }
  .header-wa { display: grid; }
  .nav-toggle { margin-left: .45rem; }
  .whatsapp-float { display: none; }
  .nav-access { display: flex; flex-direction: column; align-items: stretch; border-top: 1px solid var(--line); margin-top: .3rem; }
  .nav-access .header-quiet { min-height: 44px; justify-content: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card, .why-card:nth-child(n+4) { grid-column: auto; }
}
@media (max-width: 768px) {
  .field-row, .svc-row, .team-grid { grid-template-columns: 1fr; }
  .time { grid-template-columns: 1fr; }
  .stats { margin-top: 1rem; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .whatsapp-float { width: 52px; height: 52px; }
  .hero-home { padding-bottom: 5.2rem; }
  .hero-photo { max-height: 200px; }
}
@media (max-width: 430px) {
  .brand img { height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .dash, .btn, .hero-photo img, .tile, .sector, .service-card { animation: none; transition: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Portada editorial — inicio */
.stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100svh - var(--header-height));
  background: var(--navy);
  color: #fff;
}
.stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 3.4rem) clamp(1.2rem, 4vw, 3.2rem);
  max-width: 680px;
  margin-left: auto;
  width: 100%;
}
.stage h1 { color: #fff; font-size: clamp(2.2rem, 3.5vw, 4rem); max-width: 12em; }
.stage .lead { color: rgba(255,255,255,.88); max-width: 38ch; font-size: 1.08rem; }
.stage-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }
.stage .btn-primary { background: #fff; color: var(--navy); box-shadow: none; }
.stage .btn-ghost { border-color: rgba(255,255,255,.62); }
.stage-photo { position: relative; min-height: 280px; margin: 0; }
.stage-photo picture { position: absolute; inset: 0; display: block; }
.stage-photo img {
  width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 58% 42%;
}

.trail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trail div { padding: 1.15rem 1.15rem 1.2rem; border-left: 1px solid var(--line); min-width: 0; }
.trail div:first-child { border-left: 0; }
.trail b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--blue);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.trail span { display: block; margin-top: .25rem; color: var(--muted); font-size: .92rem; }

.folio { background: #fff; padding: var(--section-padding-large) 0; }
.folio-head { max-width: 40rem; margin-bottom: 1.6rem; }
.folio-head h2 { margin-bottom: .45rem; }
.folio-open, .folio-rule {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem 1.5rem;
  align-items: center;
}
.folio-open { padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.folio-index {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: .9;
  color: var(--gold);
  letter-spacing: -.04em;
}
.folio h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); margin-bottom: .35rem; }
.folio-get { margin-bottom: 0; }
.folio-get b, .folio-links a { color: var(--blue); }
.folio-link {
  color: var(--blue);
  font-weight: 700;
  font-size: .92rem;
  border-bottom: 1px solid transparent;
}
.folio-link:hover { border-bottom-color: var(--blue); }
.folio-link:focus-visible, .shot:focus-visible, .person:focus-visible, .folio-links a:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px;
}
.folio-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.folio-pair article { padding: 1.45rem 1.4rem 1.45rem 0; }
.folio-pair article + article { padding: 1.45rem 0 1.45rem 1.4rem; border-left: 1px solid var(--line); }
.folio-pair-last { border-top: 1px solid var(--line); }
.folio-ico { display: block; color: var(--blue); margin-bottom: .55rem; }
.folio-ico svg {
  width: 28px; height: 28px; fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.folio-rule {
  background: var(--navy);
  color: #fff;
  padding: 1.45rem 1.3rem;
  margin-top: .2rem;
}
.folio-rule h3, .folio-rule p { color: #fff; }
.folio-rule .folio-get b, .folio-rule .folio-link { color: var(--gold-soft); }
.folio-rule .folio-ico { color: var(--gold-soft); margin: 0; }
.folio-links { display: flex; flex-wrap: wrap; gap: .8rem 1.1rem; margin: .7rem 0 0; }
.folio-links a { font-weight: 700; }
.folio-more { margin: 1.2rem 0 0; }
.folio-more a { color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--gold); }

.why-band { background: var(--navy); color: #fff; padding: var(--section-padding-large) 0; }
.why-band h2, .why-band span { color: #fff; }
.why-line {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.1rem;
}
.why-line li { border-top: 2px solid var(--gold); padding-top: .85rem; min-width: 0; }
.why-line b {
  display: block; font-family: var(--font-display); font-size: 1.7rem;
  color: var(--gold-soft); letter-spacing: -.03em; line-height: 1;
}
.why-line strong { display: block; margin: .45rem 0 .3rem; color: #fff; font-size: 1.05rem; }
.why-line span { display: block; color: rgba(255,255,255,.82); font-size: .95rem; }

.sectors-home { background: var(--page); padding: var(--section-padding-large) 0; }
.sector-photos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .65rem; }
.shot {
  position: relative; display: block; min-height: 320px; overflow: hidden; color: #fff;
}
.shot picture { position: absolute; inset: 0; display: block; }
.shot img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.shot-industry img { object-position: 40% 45%; }
.shot span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(8, 16, 32, .86));
  color: #fff; font-size: .95rem;
}
.shot b { display: block; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: #fff; }
.sector-rest { margin-top: 1rem; color: var(--ink); }
.sector-rest b { color: var(--navy); }
.photo-note { color: var(--muted); font-size: .86rem; }

.tech-home { background: #fff; padding: var(--section-padding-large) 0; }
.tech-split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center; }
.demo-frame { margin: 0; }
.demo-frame img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.demo-frame figcaption { margin-top: .55rem; color: var(--muted); font-size: .86rem; }

.people { background: #f4efe6; padding: var(--section-padding-large) 0; }
.people-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: .4rem; }
.person { display: block; padding: .2rem 1.25rem 0 0; margin-right: 1.25rem; border-right: 1px solid #e2d8c6; min-width: 0; }
.person:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.person i {
  display: block; font-style: normal; font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.3rem); line-height: 1; color: var(--blue); margin-bottom: .55rem;
}
.person strong { display: block; color: var(--navy); font-size: 1.08rem; }
.person em { display: block; margin: .15rem 0 .35rem; color: var(--blue); font-style: normal; font-weight: 700; font-size: .92rem; }
.person span { display: block; color: var(--muted); }

.learn { background: #fff; padding: var(--section-padding-large) 0; border-top: 1px solid var(--line); }
.learn-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center; }
.learn-grid figure { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; }
.learn-grid img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 70% 40%; }

.close { background: var(--blue); color: #fff; padding: var(--section-padding-large) 0; }
.close h2, .close p { color: #fff; }
.close-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 1.4rem; align-items: center; }
.close .invite { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.7rem); color: #fff; margin: 0; }
.close-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
@media (min-width: 901px) {
  .person:last-child,
  .learn-grid > div,
  .close-actions,
  .tech-split > div { padding-right: 4.5rem; }
}
.close-actions a:not(.btn) { color: #fff; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.45); }

@media (max-width: 1100px) {
  .why-line { grid-template-columns: 1fr 1fr; }
  .shot { min-height: 240px; }
}
@media (max-width: 860px) {
  .stage { display: block; min-height: 0; }
  .stage-copy { margin: 0; max-width: none; padding: 1.25rem 1.1rem 1.45rem; }
  .stage h1 { font-size: clamp(1.85rem, 7.4vw, 2.45rem); }
  .stage-photo { height: 210px; min-height: 210px; }
  .folio-open, .folio-rule { grid-template-columns: auto minmax(0, 1fr); }
  .folio-open .folio-link, .folio-rule .folio-link { grid-column: 2; }
  .folio-pair, .tech-split, .people-grid, .learn-grid, .close-grid, .sector-photos { grid-template-columns: 1fr; }
  .folio-pair article, .folio-pair article + article { padding: 1.2rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .person { border-right: 0; margin: 0; padding: 1rem 0; border-top: 1px solid #e2d8c6; }
  .person:first-child { border-top: 0; padding-top: 0; }
  .shot { min-height: 220px; }
  .why-line { grid-template-columns: 1fr; }
  .trail { grid-template-columns: 1fr 1fr; }
  .trail div:nth-child(odd) { border-left: 0; }
  .trail div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .stage-actions { flex-direction: column; align-items: stretch; }
  .stage-actions .btn { width: 100%; }
  .stage-photo { height: 188px; min-height: 188px; }
}

.svc-layout, .svc-close { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 1.4rem; align-items: start; }
.svc-photo { margin: 0; }
.svc-photo img, .sector-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 16px; background: #e7edf6; }
.svc-copy h2, .svc-points h2, .svc-close h2 { font-size: 1.35rem; margin-bottom: .35rem; }
.svc-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .9rem; align-items: stretch; }
.svc-points .tile, .svc-close .tile { height: 100%; }
.svc-close .btn { margin-top: .8rem; }
.sector-list { display: grid; gap: 1.1rem; }
.sector-card { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 1.1rem; align-items: center; padding: .7rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.sector-card figure { margin: 0; }
.sector-card h2 { font-size: 1.45rem; margin-bottom: .3rem; }
.sector-card .btn { margin-top: .7rem; }
.person img { width: 112px; height: 140px; object-fit: cover; object-position: center 18%; border-radius: 14px; margin-bottom: .55rem; display: block; }
.brand img { background: transparent; }
@media (max-width: 800px) {
  .svc-layout, .svc-close, .svc-points, .sector-card { grid-template-columns: 1fr; }
  .sector-card .btn, .svc-close .btn { width: auto; }
}
