@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;800;900&family=Nunito:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Oswald:wght@400;500;600&family=Poppins:wght@300;400;500;600&family=Proza+Libre:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;800;900&display=swap');

:root {
  --blue: #003385;
  --blue-mid: #375c89;
  --blue-light: #03a9f4;
  --ink: #171f25;
  --text: #46707f;
  --muted: #6f7d84;
  --line: #e2e6e9;
  --mist: #f6f7f8;
  --grey: #b6b0b0;
  --black: #020101;
  --white: #ffffff;
  --max: 1120px;
  --shadow: 0 18px 55px rgba(15, 42, 70, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top:112px; overflow-x:hidden; }
body {
  margin: 0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  color: var(--text);
  background: #fff;
  font: 400 16px/1.75 "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
#page-root, #site-footer, main { max-width:100%; overflow-x:hidden; }
.origins > *, .knowledge-grid > *, .card-grid > *, .product-strip > *, .ventures-callout > *, .venture-models > *, .category-head > *, .route-grid > *, .star-grid > *, .feature-grid > *, .products-grid > *, .split-section > *, .methodology-heading > *, .budget-grid > *, .specialty-hero-grid > *, .specialty-service-grid > *, .specialty-area-grid > *, .specialty-team-grid > *, .specialty-directive > * { min-width:0; }

#site-header { height:92px; }
.site-header {
  position: fixed;
  top: 0;
  left:0;
  right:0;
  z-index: 1000;
  height: 92px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { width: 112px; height: 68px; object-fit: contain; }
.desktop-nav { height: 100%; display: flex; align-items: stretch; }
.nav-list { display: flex; align-items: stretch; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; display: flex; align-items: stretch; }
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: #54595f;
  font-size: 12px;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 25px;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform .22s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue); }
.chevron { font-size: 10px; transition: transform .2s ease; }
.nav-item:hover .chevron { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #f2f2f2;
  box-shadow: 0 15px 35px rgba(0,0,0,.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 10px 20px; color: #111; font-size: 14px; white-space: nowrap; }
.dropdown a:hover { color: var(--blue); background: #fff; }
.service-dropdown { min-width: 240px; }
.dropdown-parent { position: relative; }
.dropdown-parent > a { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.nested-dropdown {
  position:absolute;
  left:100%;
  top:-8px;
  min-width:285px;
  margin:0;
  padding:8px 0;
  list-style:none;
  background:#fff;
  box-shadow:0 15px 35px rgba(0,0,0,.13);
  opacity:0;
  visibility:hidden;
  transform:translateX(8px);
  transition:.2s ease;
}
.dropdown-parent:hover > .nested-dropdown, .dropdown-parent:focus-within > .nested-dropdown { opacity:1; visibility:visible; transform:none; }
.project-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 20px;
  border: 0;
  background: var(--blue-mid);
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.project-cta:hover, .button:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,51,133,.22); }
.mobile-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; color: var(--blue); font-size: 26px; cursor: pointer; }
.mobile-panel { display: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 62px 0; }
.section-grey { background: var(--grey); color: #fff; }
.section-mist { background: var(--mist); }
.section-dark { background: var(--black); color: #fff; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font: 600 13px/1.4 Raleway, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
.section-title {
  margin: 0 0 18px;
  color: var(--black);
  font: 400 clamp(34px, 4.1vw, 48px)/1.15 Raleway, sans-serif;
}
.section-title.light { color: #fff; }
.section-intro { max-width: 780px; margin: 0 0 44px; color: var(--text); }
.section-intro.light { color: rgba(255,255,255,.83); }
.rule { width: 74px; height: 3px; margin: 22px 0; background: var(--blue); }

.home-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #edf2f6 url("assets/images/hero-home.png") center/cover no-repeat;
}
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.52) 56%, rgba(255,255,255,.18)); }
.home-hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); }
.hero-kicker { margin: 0 0 10px; color: var(--blue); font: 600 13px Raleway, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.hero-brand { margin:0 0 12px!important; color:var(--blue)!important; font:500 clamp(30px,8vw,94px)/1 Oswald,sans-serif!important; letter-spacing:.015em; text-transform:uppercase; white-space:nowrap; }
.mobile-brand-break { display:none; }
.home-hero h1 { max-width: 820px; margin: 0; color: var(--ink); font: 500 clamp(38px, 5vw, 58px)/1.08 Oswald, sans-serif; letter-spacing: .01em; text-transform: uppercase; }
.home-hero h2 { margin: 12px 0 24px; color: var(--ink); font: 300 clamp(27px, 4vw, 42px)/1.3 "Open Sans", sans-serif; }
.home-hero p { max-width: 690px; margin: 0 0 32px; color: #425e6b; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button.primary { background: var(--blue); padding: 15px 30px; font-family: Raleway, sans-serif; font-weight: 600; }
.button.ghost { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.button.ghost:hover { color: #fff; background: var(--blue); }
.button.light { background: #fff; color: var(--blue); }

.origins { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.origin-original { background:#fff; text-align:center; }
.origin-original .origin-logos { width:min(680px,100%); margin:0 auto 66px; }
.origin-logos { display: grid; grid-template-columns: repeat(2,1fr); gap: 42px; align-items: center; }
.origin-logos figure { min-height: 150px; margin: 0; display: grid; place-items: center; padding: 22px; background:#fff; }
.origin-logos img { max-height:105px; width:auto; }
.origin-eyebrow { text-align:center; }
.origin-statement { max-width:1080px; margin:18px auto 0; color:#050505; font:500 clamp(32px,4.2vw,46px)/1.18 Oswald,sans-serif; letter-spacing:.065em; text-align:center; text-transform:uppercase; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.25); }
.pillar { min-height: 225px; padding: 42px 34px; background: var(--grey); text-align: center; }
.pillar-number { display: block; margin-bottom: 14px; color: var(--blue); font: 500 44px/1 Oswald, sans-serif; }
.pillar h3 { margin: 0; color: #fff; font: 300 30px/1.35 "Open Sans", sans-serif; }
.home-pillars { background:#fff; }
.home-pillars .pillars { background:var(--line); }
.home-pillars .pillar { background:#fff; }
.home-pillars .pillar h3 { color:var(--text); }

.method-banner {
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  background: url("assets/images/methodology-banner.jpg") center 42%/cover no-repeat fixed;
}
.method-banner::before { content:""; position:absolute; inset:0; background:rgba(0,21,54,.55); }
.method-banner .container { position: relative; z-index: 1; text-align:center; }
.method-banner h2 { margin:0 0 22px; color:#fff; font:400 clamp(36px,5vw,54px) Raleway,sans-serif; }

.knowledge-grid, .card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.knowledge-card, .content-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 34px;
  background: #fff;
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.knowledge-card:hover, .content-card:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(15,42,70,.15); }
.knowledge-card .index { position:absolute; right:24px; top:8px; color:#eef1f4; font:600 72px Oswald,sans-serif; }
.knowledge-card h3, .content-card h3 { position:relative; margin:0 0 10px; color:var(--ink); font:500 25px/1.25 Raleway,sans-serif; }
.knowledge-card ul { position:relative; margin:16px 0 0; padding:0; list-style:none; }
.knowledge-card li { padding:4px 0 4px 18px; }
.knowledge-card li::before { content:"—"; position:absolute; margin-left:-18px; color:var(--blue); }

.product-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.product-mini { padding:28px 20px; background:#fff; border:1px solid var(--line); text-align:center; }
.product-mini img { width:100%; height:95px; margin:0 auto 18px; object-fit:contain; }
.kico-mini-logo { height:95px; margin:0 auto 18px; background:url("assets/images/kico_logo.png") center 44% / 100% auto no-repeat; }
.kico-mini-mark { height:95px; margin:0 auto 18px; display:grid; place-items:center; background:#f0f1f2; color:#003385; font:500 30px Oswald,sans-serif; letter-spacing:.08em; }
.product-mini h3 { margin:0 0 7px; color:var(--ink); font:500 20px Raleway,sans-serif; }
.product-mini p { margin:0; font-size:13px; line-height:1.55; }
.product-mini > span { display:block; margin-top:16px; color:var(--blue); font-size:11px; font-weight:700; text-transform:uppercase; }
.product-mini-disabled,.product-card-disabled { cursor:default; }
.product-mini-disabled > span,.product-card-disabled .route-link { color:var(--muted); }
.product-card-disabled:hover { transform:none; box-shadow:none; border-color:var(--line); }

.ventures-callout { display:grid; grid-template-columns:.75fr 1.25fr; gap:56px; align-items:center; }
.ventures-logo { color:#fff; font:500 clamp(42px,6vw,72px)/1 Oswald,sans-serif; text-transform:uppercase; }
.ventures-logo span { display:block; color:#8db4dd; }
.venture-models { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.venture-model { padding:28px; border:1px solid rgba(255,255,255,.18); }
.venture-model h3 { margin:0 0 12px; color:#fff; font:500 22px Raleway,sans-serif; }
.venture-model p { margin:0 0 14px; color:#b9c6ce; font-size:14px; }
.home-knowledge { background:#fff; }

.page-hero { position:relative; min-height:390px; display:grid; place-items:center; overflow:hidden; background:#edf2f6; }
.page-hero.has-photo { min-height:480px; background-position:center; background-size:cover; }
.page-hero.has-photo::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,32,76,.84),rgba(0,32,76,.32)); }
.page-hero-content { position:relative; z-index:1; width:min(var(--max),calc(100% - 40px)); }
.breadcrumbs { margin-bottom:24px; color:#8ea0aa; font-size:13px; text-transform:uppercase; letter-spacing:.06em; }
.breadcrumbs a { color:var(--blue); }
.page-hero h1 { max-width:900px; margin:0 0 16px; color:var(--blue); font:500 clamp(46px,6vw,68px)/1.08 Oswald,sans-serif; text-transform:uppercase; }
.page-hero.has-photo h1, .page-hero.has-photo .breadcrumbs, .page-hero.has-photo .breadcrumbs a { color:#fff; }
.page-hero p { max-width:820px; margin:0; color:#4b6570; font-size:18px; }
.page-hero.has-photo p { color:rgba(255,255,255,.9); }
.page-hero .meta { margin-top:16px; color:var(--blue); font:600 12px Raleway,sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.page-hero.has-photo .meta { color:#fff; }
.solution-for {
  margin-bottom:16px;
  color:#fff;
  font:300 14px/1.2 Nunito,sans-serif;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.methodology-showcase { overflow:hidden; background:#fff; }
.methodology-heading { display:grid; grid-template-columns:1fr .8fr; gap:60px; align-items:end; margin-bottom:42px; }
.methodology-heading p:last-child { margin:0; }
.methodology-diagram { width:100%; height:auto; border:0; background:#fff; box-shadow:none; }
.methodology-panorama {
  min-height:clamp(180px,12vw,250px);
  background:
    linear-gradient(rgba(255,255,255,.62),rgba(255,255,255,.62)),
    url("assets/images/methodology-banner.jpg") center 48%/cover no-repeat;
  background-attachment:fixed;
}
.training-methodology { max-width:1000px; margin:34px auto 0; }
.training-extra { max-width:900px; margin:0 0 35px; padding:25px 30px; border-left:4px solid var(--blue); background:var(--mist); color:var(--text); }
.training-extra a { color:var(--blue); }
.training-list { margin:16px 0 0; padding-left:20px; color:var(--text); font-size:14px; line-height:1.65; }
.training-stairs { max-width:900px; margin:48px auto 10px; display:grid; grid-template-columns:repeat(3,1fr); align-items:end; gap:8px; }
.training-stairs > div { display:flex; flex-direction:column; justify-content:center; padding:24px; background:var(--blue); color:#fff; }
.training-stairs > div:nth-child(1) { min-height:120px; opacity:.72; }
.training-stairs > div:nth-child(2) { min-height:170px; opacity:.86; }
.training-stairs > div:nth-child(3) { min-height:220px; }
.training-stairs span { margin-bottom:10px; color:#9fc2e8; font:500 30px/1 Oswald,sans-serif; }
.training-stairs strong { font:500 17px/1.35 Raleway,sans-serif; }
.training-corner-layout { display:grid; grid-template-columns:minmax(0,1.6fr) minmax(260px,.8fr); align-items:start; gap:40px; margin-bottom:42px; }
.training-corner-layout .section-title { margin-bottom:0; }
.training-corner-image { width:min(100%,430px); max-height:290px; object-fit:contain; object-position:top right; justify-self:end; }

.budget-hero {
  position:relative;
  min-height:600px;
  display:grid;
  align-items:center;
  background:url("assets/images/hero-contacto.jpeg") center/cover no-repeat;
}
.budget-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(4,27,51,.82),rgba(4,27,51,.34) 64%,rgba(4,27,51,.12)); }
.budget-hero-content { position:relative; z-index:1; }
.budget-hero h1 { max-width:930px; margin:0 0 25px; color:#fff; font:500 clamp(46px,6.2vw,67px)/1.12 "Proza Libre",Raleway,sans-serif; letter-spacing:-.025em; }
.budget-hero p { max-width:780px; margin:0; color:rgba(255,255,255,.92); font-size:18px; line-height:1.75; }
.budget-contact { background:#fff; }
.budget-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:80px; align-items:center; }
.budget-office-image img { width:100%; min-height:500px; object-fit:cover; box-shadow:var(--shadow); }
.budget-info h2 { margin:0 0 20px; color:var(--ink); font:500 clamp(38px,5vw,55px)/1.15 "Proza Libre",Raleway,sans-serif; }
.budget-info address { margin:0 0 34px; color:var(--text); font-style:normal; font-size:17px; line-height:1.8; }
.budget-links { display:grid; border-top:1px solid var(--line); }
.budget-links a { display:grid; grid-template-columns:105px 1fr; gap:20px; align-items:center; padding:18px 0; border-bottom:1px solid var(--line); transition:.2s ease; }
.budget-links a:hover { color:var(--blue); padding-left:8px; }
.budget-links span { color:var(--muted); font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.budget-links strong { color:var(--ink); font:500 18px Raleway,sans-serif; overflow-wrap:anywhere; }

.category { padding:76px 0; border-bottom:1px solid var(--line); }
.category:last-child { border-bottom:0; }
.category-head { display:grid; grid-template-columns:250px 1fr; gap:55px; margin-bottom:32px; }
.category-name { color:var(--blue); font:500 29px Raleway,sans-serif; }
.category-copy { margin:0; }
.route-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.route-grid.two { grid-template-columns:repeat(2,1fr); }
.route-grid.single { grid-template-columns:1fr; }
.route-card { display:flex; flex-direction:column; min-height:250px; padding:28px; border:1px solid var(--line); background:#fff; transition:.23s ease; }
.route-card:hover { border-color:var(--blue); transform:translateY(-4px); box-shadow:var(--shadow); }
.route-label { margin-bottom:13px; color:var(--blue); font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; }
.route-card h3 { margin:0 0 12px; color:var(--ink); font:500 24px/1.25 Raleway,sans-serif; }
.route-card p { margin:0 0 22px; font-size:14px; line-height:1.65; }
.route-link { margin-top:auto; color:var(--blue); font-size:13px; font-weight:700; text-transform:uppercase; }

.detail-layout { display:grid; grid-template-columns:1fr; gap:52px; }
.star-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.star-card { padding:28px; border-top:4px solid var(--blue); background:#fff; box-shadow:var(--shadow); }
.price { margin-bottom:12px; color:var(--blue); font:500 30px Oswald,sans-serif; }
.star-card h3 { margin:0 0 10px; color:var(--ink); font:500 20px/1.35 Raleway,sans-serif; }
.star-card p { margin:0; font-size:14px; line-height:1.65; }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-box { padding:28px; background:var(--mist); }
.feature-box h3 { margin:0 0 13px; color:var(--ink); font:600 19px Raleway,sans-serif; }
.feature-box ul { margin:0; padding:0; list-style:none; font-size:14px; }
.feature-box li { padding:5px 0 5px 17px; }
.feature-box li::before { content:"—"; position:absolute; margin-left:-17px; color:var(--blue); }
.service-note { margin-top:24px; padding:30px 34px; border-left:4px solid var(--blue); background:var(--mist); color:var(--text); }
.service-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-gallery img { width:100%; height:310px; object-fit:cover; }
.cta-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; }

.catalog-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:34px; }
.catalog-head p { max-width:620px; margin:0; }
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.product-card { display:flex; flex-direction:column; min-height:420px; padding:28px; background:#fff; border:1px solid var(--line); transition:.23s ease; }
.product-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.product-card img { width:100%; height:125px; margin-bottom:22px; object-fit:contain; }
.kico-card-logo { height:125px; margin-bottom:22px; background:url("assets/images/kico_logo.png") center 44% / 80% auto no-repeat; }
.kico-card-mark { height:125px; margin-bottom:22px; display:grid; place-items:center; background:#f6f7f8; color:#003385; font:500 42px Oswald,sans-serif; }
.product-card h3 { margin:0 0 10px; color:var(--ink); font:500 25px Raleway,sans-serif; }
.product-card p { margin:0 0 18px; font-size:14px; }
.product-card .route-link { margin-top:auto; }
.tag { display:inline-block; margin:0 0 14px; color:var(--blue); font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }

.venture-long-section { scroll-margin-top:110px; background:#fff; }
.venture-builder-section { background:#f7f8f9; }
.venture-long-intro { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:end; margin-bottom:58px; }
.venture-long-intro .section-title { margin-bottom:0; }
.venture-long-intro > p { margin:0; font-size:17px; line-height:1.8; }
.venture-process { border-top:1px solid var(--line); }
.venture-process-step { display:grid; grid-template-columns:90px 1fr; gap:30px; padding:36px 0; border-bottom:1px solid var(--line); }
.venture-process-step > span { color:#d4a843; font:600 42px/1 Oswald,sans-serif; }
.venture-process-step h3 { margin:0 0 10px; color:var(--ink); font:600 clamp(23px,3vw,31px)/1.2 Raleway,sans-serif; }
.venture-process-step p { max-width:890px; margin:0; }
.venture-condition-label { margin-top:68px; }
.venture-conditions { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.venture-conditions article { padding:30px; border:1px solid var(--line); background:#fff; }
.venture-conditions h3 { margin:0 0 9px; color:var(--ink); font:600 21px/1.25 Raleway,sans-serif; }
.venture-conditions p { margin:0; font-size:14px; }
.venture-portfolio { background:#fff; border-top:1px solid var(--line); }

.split-section { display:grid; grid-template-columns:1fr 1fr; gap:58px; align-items:center; }
.split-image { min-height:440px; background-position:center; background-size:cover; box-shadow:var(--shadow); }
.steps { counter-reset:step; margin-top:24px; }
.step { position:relative; padding:0 0 24px 52px; border-left:1px solid #ced6dc; }
.step:last-child { border-left-color:transparent; }
.step::before { counter-increment:step; content:counter(step); position:absolute; left:-18px; top:0; width:36px; height:36px; display:grid; place-items:center; border-radius:50%; background:var(--blue); color:#fff; font:500 16px Oswald,sans-serif; }
.step h3 { margin:0 0 6px; color:var(--ink); font:600 18px Raleway,sans-serif; }
.step p { margin:0; font-size:14px; }

.contact-band { position:relative; padding:88px 0; background:#18242b url("assets/images/contact-banner.jpeg") center/cover no-repeat; color:#fff; text-align:center; }
.contact-band::before { content:""; position:absolute; inset:0; background:rgba(0,22,48,.70); }
.contact-band .container { position:relative; z-index:1; }
.contact-band h2 { margin:0 0 8px; font:400 clamp(28px,4vw,42px) Raleway,sans-serif; }
.contact-band a { display:block; max-width:100%; color:#fff; font:400 clamp(28px,5vw,56px) Nunito,sans-serif; overflow-wrap:anywhere; }

.site-footer { background:var(--black); color:#7c8c95; }
.footer-main { min-height:220px; padding:46px 0; display:grid; grid-template-columns:160px 1fr .85fr 1.2fr; gap:58px; align-items:center; }
.footer-brand img { width:130px; filter:brightness(0) invert(1); opacity:.96; }
.footer-legal-link,.footer-legal-text { color:#fff; font:400 18px/1.4 "Open Sans",sans-serif; }
.footer-legal-link { transition:color .2s ease; }
.footer-legal-link:hover { color:#8db4dd; }
.footer-bottom { padding:22px 0; border-top:1px solid rgba(255,255,255,.08); text-align:center; color:#7c8c95; font-size:12px; }

.specialty-page { font-family:Roboto,"Open Sans",sans-serif; color:#666; }
.specialty-hero { position:relative; min-height:720px; display:grid; align-items:center; overflow:hidden; background-position:center; background-size:cover; }
.specialty-hero .reveal { opacity:1; transform:none; }
.specialty-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.92) 48%,rgba(255,255,255,.38) 78%,rgba(255,255,255,.12)); }
.specialty-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:1fr 260px; gap:70px; align-items:center; }
.specialty-hero-grid.no-logo { grid-template-columns:1fr; }
.specialty-eyebrow,.specialty-label { margin:0 0 12px; color:var(--accent); font:700 15px/1.2 Lato,sans-serif; letter-spacing:.16em; text-transform:uppercase; }
.specialty-hero h1 { margin:0 0 28px; color:#0c0c0c; font:800 clamp(66px,8vw,104px)/.88 Lato,sans-serif; letter-spacing:-.045em; text-transform:none; }
.specialty-hero h1 span,.specialty-hero h1 strong { display:block; }
.specialty-hero h1 span { color:var(--accent); font-size:.86em; font-weight:900; }
.specialty-hero h1 strong { font-weight:800; }
.theme-comunica .specialty-hero h1 span { color:var(--accent); font-size:1em; }
.specialty-hero-copy > p:not(.specialty-eyebrow) { max-width:790px; margin:0 0 30px; color:#444; font-size:17px; line-height:1.8; }
.specialty-logo { width:190px; height:190px; object-fit:contain; filter:drop-shadow(0 14px 25px rgba(0,0,0,.12)); }
.specialty-button { display:inline-flex; padding:15px 27px; background:var(--accent); color:#fff; font:700 12px Lato,sans-serif; letter-spacing:.08em; text-transform:uppercase; transition:.2s ease; }
.specialty-button:hover { transform:translateY(-2px); filter:brightness(.92); }
.specialty-quote { padding:82px 0; background:#fafafa url("assets/images/specialty-quote-bg.png") center/cover no-repeat; text-align:center; }
.specialty-quote blockquote { max-width:900px; margin:0 auto 18px; color:#999; font:300 clamp(25px,3.4vw,38px)/1.45 Roboto,sans-serif; }
.specialty-quote cite { color:var(--accent); font:700 13px Lato,sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.quote-pair { display:grid; grid-template-columns:repeat(2,1fr); gap:60px; }
.quote-pair blockquote { font-size:28px; }
.specialty-services h2,.specialty-areas h2,.specialty-team h2 { margin:0 0 18px; color:#0c0c0c; font:800 clamp(45px,6vw,68px)/1 Roboto,sans-serif; letter-spacing:-.035em; }
.specialty-lead { max-width:880px; margin:0 0 46px; font-size:17px; line-height:1.8; }
.specialty-service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.specialty-service-card { position:relative; min-height:300px; padding:36px; border:1px solid #e4e4e4; background:#fff; }
.specialty-service-card::before { content:""; position:absolute; inset:0 auto 0 0; width:4px; background:var(--accent); }
.specialty-service-card > span { color:var(--accent); font:900 36px Lato,sans-serif; opacity:.35; }
.specialty-service-card h3 { margin:16px 0 12px; color:#0c0c0c; font:800 23px/1.25 Lato,sans-serif; text-transform:uppercase; }
.specialty-service-card p,.specialty-service-card li { font-size:14px; line-height:1.75; }
.specialty-service-card ul { margin:0; padding-left:20px; }
.specialty-areas { background:#fff; padding-bottom:0; }
.specialty-areas > .container { width:min(1500px,100%); }
.specialty-areas > .container > .specialty-label,.specialty-areas > .container > h2,.specialty-areas > .container > .specialty-lead { margin-left:clamp(24px,5vw,76px); margin-right:clamp(24px,5vw,76px); }
.specialty-areas h2 { color:#090909; }
.specialty-areas .specialty-lead { color:var(--text); }
.specialty-area-grid { display:block; background:#fff; }
.specialty-area-card { min-height:560px; display:grid; grid-template-columns:1fr 1fr; background:#fff; }
.specialty-area-copy,.specialty-directive-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(42px,6vw,92px); background:linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)),url("assets/images/specialty-lines.jpeg") center/cover no-repeat; }
.specialty-area-card:nth-child(even) .specialty-area-copy,.specialty-directive:nth-child(even) .specialty-directive-copy { order:2; }
.specialty-area-card:nth-child(even) .specialty-color-panel,.specialty-directive:nth-child(even) .specialty-color-panel { order:1; }
.specialty-color-panel { min-height:100%; background:var(--accent); }
.specialty-card-kicker { margin:0 0 22px; color:var(--accent)!important; font:700 11px Lato,sans-serif!important; letter-spacing:.11em; text-transform:uppercase; }
.specialty-area-card h3 { margin:0 0 25px; color:#050505; font:800 clamp(35px,4.4vw,58px)/1.02 Roboto,sans-serif; text-transform:uppercase; }
.specialty-area-card p { color:var(--text); font-size:15px; line-height:1.8; }
.specialty-area-card a { display:inline-block; margin-top:16px; color:var(--accent); font:700 12px Lato,sans-serif; text-transform:uppercase; }
.specialty-team { padding:0; background:#fff; color:var(--text); }
.specialty-team-grid { width:100%; max-width:none; display:grid; grid-template-columns:1fr 1fr; }
.specialty-team-photo { min-height:650px; background-position:center; background-size:cover; }
.specialty-team-copy { display:flex; flex-direction:column; justify-content:center; padding:80px clamp(35px,6vw,100px); }
.specialty-team h2 { color:#090909; text-transform:none; }
.specialty-team-copy p:not(.specialty-label) { max-width:720px; font-size:15px; line-height:1.8; }
.specialty-directive-grid { display:block; background:#fff; }
.specialty-directive { min-height:570px; display:grid; grid-template-columns:1fr 1fr; background:#fff; }
.specialty-directive-copy > span { display:none; }
.specialty-directive h3 { margin:0 0 30px; color:#050505; font:800 clamp(36px,4.5vw,61px)/1.03 Roboto,sans-serif; text-transform:uppercase; }
.specialty-directive p { margin:0; color:var(--text); font-size:15px; line-height:1.8; letter-spacing:.045em; }
body[data-page="be"] .contact-band,body[data-page="comunica"] .contact-band,body[data-page="gobdata"] .contact-band { background-image:url("assets/images/specialty-lines.jpeg"); }
body[data-page="be"] .contact-band::before { background:rgba(30,16,6,.84); }
body[data-page="comunica"] .contact-band::before { background:rgba(8,38,64,.84); }
body[data-page="gobdata"] .contact-band::before { background:rgba(0,46,42,.84); }

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

@media (max-width: 1180px) {
  .desktop-nav, .project-cta { display:none; }
  .mobile-toggle { display:grid; place-items:center; }
  .mobile-panel {
    position:absolute;
    top:100%;
    left:0;
    right:0;
    height:calc(100vh - 92px);
    height:calc(100dvh - 92px);
    display:block;
    padding:12px 20px calc(34px + env(safe-area-inset-bottom));
    background:#fff;
    box-shadow:0 20px 50px rgba(0,25,60,.16);
    transform:translateX(100%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:transform .3s ease,opacity .2s ease,visibility .3s;
    overflow-x:hidden;
    max-width:100%;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }
  .menu-open .mobile-panel { transform:none; opacity:1; visibility:visible; pointer-events:auto; }
  .mobile-panel-inner { width:min(720px,100%); margin:0 auto; }
  .mobile-panel details { margin:0; }
  .mobile-panel summary { list-style:none; cursor:pointer; -webkit-tap-highlight-color:transparent; }
  .mobile-panel summary::-webkit-details-marker { display:none; }
  .mobile-section { border-bottom:1px solid var(--line); }
  .mobile-section > summary {
    min-height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:13px 5px;
    color:var(--ink);
    font:600 15px/1.25 Raleway,sans-serif;
    letter-spacing:.04em;
    text-transform:uppercase;
  }
  .menu-symbol { color:var(--blue); font:300 25px/1 Nunito,sans-serif; transition:transform .2s ease; }
  details[open] > summary > .menu-symbol { transform:rotate(45deg); }
  .mobile-section-body { padding:0 5px 16px; }
  .mobile-panel a { display:block; color:var(--text); }
  .mobile-overview { margin:0 0 8px; padding:11px 14px; background:var(--mist); color:var(--blue)!important; font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
  .mobile-group { margin:5px 0 5px 12px!important; border-left:2px solid #e2e8ed; }
  .mobile-group > summary { min-height:46px; display:flex; align-items:center; justify-content:space-between; gap:14px; padding:9px 12px; color:var(--ink); font:600 14px/1.3 Raleway,sans-serif; }
  .mobile-group .menu-symbol { font-size:21px; }
  .mobile-group-links { padding:0 10px 8px; }
  .mobile-group-links .mobile-overview { margin-top:2px; }
  .mobile-panel .sub-route { padding:10px 14px; border-bottom:1px solid #edf0f2; color:var(--text); font-size:13px; line-height:1.4; }
  .mobile-panel .sub-route:last-child { border-bottom:0; }
  .mobile-simple-link { min-height:60px; display:flex!important; align-items:center; padding:13px 5px; border-bottom:1px solid var(--line); color:var(--ink)!important; font:600 15px/1.25 Raleway,sans-serif; letter-spacing:.04em; text-transform:uppercase; }
  .mobile-simple-link.active { color:var(--blue)!important; }
  .mobile-project { margin:22px 0 8px; padding:15px 20px; background:var(--blue-mid); color:#fff!important; text-align:center; font:600 13px Raleway,sans-serif; letter-spacing:.04em; text-transform:uppercase; }
  .origins, .ventures-callout, .split-section { grid-template-columns:1fr; }
  .product-strip { grid-template-columns:repeat(2,1fr); }
  .route-grid, .products-grid { grid-template-columns:repeat(2,1fr); }
  .star-grid, .feature-grid { grid-template-columns:1fr; }
  .specialty-hero-grid { grid-template-columns:1fr; }
  .specialty-logo { display:none; }
  .specialty-area-card,.specialty-directive { min-height:500px; }
  .venture-long-intro { grid-template-columns:1fr; gap:24px; }
  .methodology-heading,.budget-grid { grid-template-columns:1fr; gap:35px; }
  .budget-office-image img { min-height:380px; }
  .footer-main { grid-template-columns:140px repeat(3,minmax(0,1fr)); gap:26px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top:92px; }
  #site-header { height:76px; }
  .site-header { height:76px; }
  .brand img { width:88px; height:55px; }
  .mobile-panel { height:calc(100vh - 76px); height:calc(100dvh - 76px); padding:8px 16px calc(28px + env(safe-area-inset-bottom)); }
  .home-hero { min-height:650px; }
  .hero-brand { font-size:clamp(48px,14vw,62px)!important; }
  .mobile-brand-break { display:block; }
  .home-hero::after { background:rgba(255,255,255,.79); }
  .section { padding:70px 0; }
  .pillars, .knowledge-grid, .card-grid, .product-strip, .route-grid, .route-grid.two, .products-grid { grid-template-columns:1fr; }
  .venture-models { grid-template-columns:1fr; }
  .venture-conditions { grid-template-columns:1fr; }
  .venture-process-step { grid-template-columns:58px 1fr; gap:18px; }
  .category-head { grid-template-columns:1fr; gap:10px; }
  .origin-logos { grid-template-columns:1fr 1fr; }
  .catalog-head { display:block; }
  .catalog-head p { margin-top:16px; }
  .footer-main { min-height:0; padding:38px 0; grid-template-columns:1fr; gap:20px; }
  .footer-brand img { width:112px; }
  .method-banner { background-attachment:scroll; }
  .methodology-panorama { display:none; }
  .service-gallery,.specialty-service-grid,.quote-pair,.specialty-team-grid { grid-template-columns:1fr; }
  .specialty-hero { min-height:670px; }
  .specialty-hero h1 { font-size:clamp(42px,15vw,58px); overflow-wrap:anywhere; }
  .specialty-team-photo { min-height:420px; }
  .specialty-team-copy { padding:60px 25px; }
  .specialty-area-card,.specialty-directive { grid-template-columns:1fr; min-height:0; }
  .specialty-area-copy,.specialty-directive-copy { min-height:470px; padding:54px 25px; }
  .specialty-color-panel { min-height:180px; }
  .specialty-area-card:nth-child(even) .specialty-area-copy,.specialty-directive:nth-child(even) .specialty-directive-copy { order:1; }
  .specialty-area-card:nth-child(even) .specialty-color-panel,.specialty-directive:nth-child(even) .specialty-color-panel { order:2; }
  .specialty-directive h3,.specialty-area-card h3 { font-size:clamp(33px,11vw,48px); overflow-wrap:anywhere; }
  .mobile-section > summary { min-height:55px; font-size:14px; }
  .mobile-group { margin-left:7px!important; }
  .mobile-panel .sub-route { font-size:12px; }
  .methodology-heading { margin-bottom:28px; }
  .budget-hero { min-height:560px; }
  .budget-hero h1 br { display:none; }
  .budget-links a { grid-template-columns:1fr; gap:3px; }
  .training-stairs { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
  .training-stairs > div { min-height:100px!important; }
  .training-stairs > div:nth-child(1) { width:72%; }
  .training-stairs > div:nth-child(2) { width:86%; }
  .training-stairs > div:nth-child(3) { width:100%; }
  .training-corner-layout { grid-template-columns:1fr; gap:24px; }
  .training-corner-image { width:min(82%,360px); max-height:none; justify-self:end; order:-1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}
