/* =============================================================
   EJE CAPITAL INTERNATIONAL — Premium Landing
   Brand: #04154e (Azul Profundo) · #0067FF (Azul Corporativo) · #575756 (Gris)
   Fonts: Montserrat (display) · Lato (body)
   ============================================================= */

/* ---------- Reset & Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

:root {
  --navy:        #04154e;
  --navy-2:      #081f6e;
  --navy-deep:   #020a2f;
  --blue:        #0067FF;
  --blue-soft:   #5aa8ff;
  --gray:        #575756;
  --gray-soft:   #9aa3b2;
  --ink:         #0c1226;
  --ink-soft:    #3a4564;
  --paper:       #f6f8fc;
  --line:        rgba(4, 21, 78, 0.08);
  --line-light:  rgba(255,255,255,0.12);

  --ease:        cubic-bezier(.2, .8, .2, 1);
  --container:   1240px;
  --radius:      14px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
.h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.h2 em { font-style: normal; color: var(--blue); }
.h2--light { color: #fff; }
.h2--light em { color: var(--blue-soft); }

.lead {
  font-size: clamp(1.02rem, .96rem + .25vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 1.2rem;
  line-height: 1.7;
}
.lead--light { color: rgba(255,255,255,0.78); }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow--light { color: var(--blue-soft); }
.eyebrow--light::before { background: var(--blue-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 42px -16px rgba(0, 103, 255, .55);
}
.btn--primary:hover { background: #0a55cc; transform: translateY(-2px); box-shadow: 0 24px 52px -16px rgba(0, 103, 255, .65); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(4, 21, 78, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(255,255,255,0.08);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.nav__icon { width: 42px; height: 42px; }
.nav__wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.01em;
  line-height: 1;
}
.wm-eje { color: var(--blue-soft); }
.wm-cap { color: #fff; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  position: relative;
  padding: .4rem 0;
  transition: color .25s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__menu a:hover { color: #fff; }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--blue);
  color: #fff !important;
  padding: .7rem 1.3rem !important;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: #0a55cc; transform: translateY(-2px); }

.nav__burger { display: none; width: 40px; height: 40px; position: relative; }
.nav__burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px; background: #fff;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,10,47,.55) 0%, rgba(2,10,47,.65) 50%, rgba(2,10,47,.95) 100%),
    linear-gradient(90deg, rgba(2,10,47,.85) 0%, rgba(2,10,47,.25) 60%);
}
.hero__content { position: relative; max-width: 900px; }
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 1.2rem 0 1.4rem;
}
.hero__title em { font-style: normal; color: var(--blue-soft); }
.hero__lead {
  font-size: clamp(1.05rem, .96rem + .4vw, 1.28rem);
  color: rgba(255,255,255,.84);
  max-width: 64ch;
  line-height: 1.7;
}
.hero__ctas {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  letter-spacing: .35em;
  color: rgba(255,255,255,.6);
}
.hero__line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.6); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- Trust strip ---------- */
.strip {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.strip__item {
  padding: 0 1rem;
  border-left: 1px solid rgba(255,255,255,.12);
}
.strip__item:first-child { border-left: none; padding-left: 0; }
.strip__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 1.8rem + 1.6vw, 3.4rem);
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.strip__num sup { font-size: .55em; color: var(--blue-soft); font-weight: 600; margin-left: 4px; }
.strip__item p {
  margin-top: .8rem;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  max-width: 24ch;
}

/* ---------- About ---------- */
.about { padding: 140px 0; background: #fff; position: relative; }
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}
.values {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}
.values__item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin: .4rem 0 .4rem;
}
.values__item p { color: var(--ink-soft); font-size: .96rem; }
.values__mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--blue);
}

.about__panel {
  display: flex; flex-direction: column; gap: 1.2rem;
  position: sticky; top: 110px;
}
.panel__card {
  background: var(--navy);
  color: #fff;
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.panel__card::after {
  content: "";
  position: absolute; right: -30px; bottom: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(0, 103, 255, .35), transparent 70%);
  pointer-events: none;
}
.panel__card--alt { background: linear-gradient(135deg, var(--blue), #0a55cc); }
.panel__kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .7rem;
}
.panel__text { color: #fff; font-size: 1.02rem; line-height: 1.6; }
.panel__quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  font-size: 1.15rem;
  padding: 1.4rem 0 .4rem;
  border-top: 1px solid var(--line);
  margin-top: .6rem;
  position: relative;
}
.panel__quote span {
  font-size: 3rem;
  color: var(--blue);
  line-height: 0;
  margin-right: .3rem;
  vertical-align: -.4em;
}

/* ---------- Section head ---------- */
.section__head { max-width: 760px; margin-bottom: 4rem; }
.section__head--center { margin: 0 auto 4rem; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head .h2 { margin-top: 1.2rem; }

/* ---------- Services ---------- */
.services { padding: 140px 0; position: relative; overflow: hidden; }
.services--dark {
  color: #fff;
  background: var(--navy-deep);
  isolation: isolate;
}
.services--dark .services__bg {
  position: absolute; inset: 0; z-index: -1;
}
.services--dark .services__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: grayscale(.4) contrast(1.1);
}
.services--dark::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at top left, rgba(0,103,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(2,10,47,.85), rgba(2,10,47,.96));
}
.services--light { background: var(--paper); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(90,168,255,.45); background: rgba(255,255,255,.07); }
.card:hover::before { transform: scaleX(1); }
.card__code {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--blue-soft);
}
.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  margin: .7rem 0 .9rem;
  line-height: 1.25;
}
.card p { color: rgba(255,255,255,.7); font-size: .96rem; line-height: 1.65; }
.card__pills {
  margin-top: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.card__pills li {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
}
.card--highlight {
  background: linear-gradient(135deg, rgba(0,103,255,.18), rgba(255,255,255,.02));
  border-color: rgba(90,168,255,.4);
}
.card--highlight .card__code { color: #fff; }

.cards--light .card { background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(4,21,78,0.02); }
.cards--light .card:hover { transform: translateY(-6px); border-color: rgba(0,103,255,.4); box-shadow: 0 26px 60px -30px rgba(4,21,78,.25); background: #fff; }
.card--light h3 { color: var(--navy); }
.card--light p { color: var(--ink-soft); }
.card--light .card__code { color: var(--blue); }
.card--light.card--highlight {
  background: linear-gradient(135deg, #fff, #eef4ff);
  border-color: rgba(0,103,255,.35);
}

/* ---------- Process / Timeline ---------- */
.process {
  padding: 140px 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, #fff 100%);
  position: relative;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem 1rem;
  counter-reset: step;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 38px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(0,103,255,.1));
  z-index: 0;
}
.timeline li {
  position: relative;
  padding-top: 86px;
  z-index: 1;
}
.t-num {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -16px rgba(4,21,78,.25);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.timeline li:hover .t-num { background: var(--blue); color: #fff; transform: translateX(-50%) translateY(-4px); }
.timeline h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: .4rem;
}
.timeline p {
  text-align: center;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding: 0 .4rem;
}

/* ---------- Investments (rama futura) ---------- */
.invest {
  position: relative;
  color: #fff;
  padding: 160px 0;
  isolation: isolate;
  overflow: hidden;
}
.invest__bg { position: absolute; inset: 0; z-index: -1; }
.invest__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.invest__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,10,47,.7) 0%, rgba(2,10,47,.86) 100%),
    linear-gradient(135deg, rgba(0,103,255,.35), transparent 60%);
}
.invest__content { max-width: 820px; text-align: center; margin: 0 auto; }
.invest__content .eyebrow { justify-content: center; }
.invest__content .lead { margin-left: auto; margin-right: auto; }
.invest__chips {
  margin: 2.4rem 0 1.2rem;
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center;
}
.invest__chips span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .55rem 1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.05);
}
.invest__note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  margin-top: 1rem;
}

/* ---------- Contact ---------- */
.contact { padding: 140px 0; background: #fff; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__info {
  margin-top: 2.4rem;
  display: grid;
  gap: 1.2rem;
}
.contact__info li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.contact__info strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact__info a, .contact__info span { color: var(--ink); font-size: 1rem; }
.contact__info a:hover { color: var(--blue); }

.contact__form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact__form .full { grid-column: 1 / -1; }
.contact__form label { display: flex; flex-direction: column; gap: .5rem; }
.contact__form label > span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  resize: vertical;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,103,255,.12);
}
.contact__form button { grid-column: 1 / -1; }
.form__success {
  grid-column: 1 / -1;
  color: var(--blue);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
}

/* ---------- Footer ---------- */
.foot {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
}
.foot__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.foot__brand p { font-size: .94rem; color: rgba(255,255,255,.55); max-width: 36ch; }
.foot__col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.foot__col ul { display: flex; flex-direction: column; gap: .6rem; }
.foot__col a {
  font-size: .92rem;
  color: rgba(255,255,255,.62);
  transition: color .25s var(--ease);
}
.foot__col a:hover { color: var(--blue-soft); }

.foot__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.foot__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot__bar small { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ---------- Page Banner (sub-pages) ---------- */
.page-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 70px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-banner__media { position: absolute; inset: 0; z-index: -2; }
.page-banner__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
.page-banner__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,10,47,.55) 0%, rgba(2,10,47,.72) 60%, rgba(2,10,47,.95) 100%),
    linear-gradient(90deg, rgba(2,10,47,.7) 0%, rgba(2,10,47,.15) 70%);
}
.page-banner__inner { position: relative; max-width: 900px; }
.page-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.022em;
  margin: 1rem 0 1rem;
}
.page-banner__title em { font-style: normal; color: var(--blue-soft); }
.page-banner__sub {
  font-size: clamp(1rem, .94rem + .3vw, 1.18rem);
  color: rgba(255,255,255,.82);
  max-width: 62ch;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.85); transition: color .25s var(--ease); }
.breadcrumb a:hover { color: var(--blue-soft); }
.breadcrumb__sep { opacity: .5; }

/* Active link state */
.nav__menu a.is-active { color: #fff; }
.nav__menu a.is-active::after { transform: scaleX(1); }

/* ---------- Page section utilities ---------- */
.section { padding: 120px 0; background: #fff; }
.section--alt { background: var(--paper); }
.section--dark {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  isolation: isolate;
}
.section--dark .h2 { color: #fff; }
.section--dark .h2 em { color: var(--blue-soft); }
.section--dark .lead { color: rgba(255,255,255,.78); }

/* Two-column intro block */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.intro-grid__side .eyebrow + .h2 { margin-top: 1.2rem; }

/* Detail blocks */
.detail-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: 1px solid var(--line); }
.detail-row__code {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--blue);
}
.detail-row__code small {
  display: block;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--gray);
  margin-top: .5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.detail-row h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .8rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.detail-row p { color: var(--ink-soft); font-size: 1.02rem; max-width: 70ch; }
.detail-row__tags {
  margin-top: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.detail-row__tags li {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .35rem .8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
}

/* Pre-footer CTA */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #081f6e 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 103, 255, .35), transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.cta-band h2 em { font-style: normal; color: var(--blue-soft); }
.cta-band p { color: rgba(255,255,255,.74); margin-top: 1rem; max-width: 56ch; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-row { grid-template-columns: 1fr; gap: 1rem; padding: 2.4rem 0; }
  .detail-row h3 { font-size: 1.35rem; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .page-banner { min-height: 52vh; padding: 130px 0 60px; }
  .section { padding: 80px 0; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    background: rgba(4, 21, 78, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 80px 36px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { font-size: 1.05rem; }
  .nav__burger { display: block; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__panel { position: static; }
  .values { grid-template-columns: 1fr; gap: 1.6rem; }

  .cards { grid-template-columns: repeat(2, 1fr); }

  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }

  .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 2rem; }
  .strip__item:nth-child(3) { border-left: none; padding-left: 0; }

  .foot__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }

  .contact__form { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .hero { padding: 130px 0 90px; min-height: 92vh; }
  .hero__scroll { display: none; }
  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .nav__wordmark { font-size: 1.2rem; }
  .nav__icon { width: 36px; height: 36px; }
  .services, .about, .process, .invest, .contact { padding: 90px 0; }
  .contact__form { padding: 1.8rem; }
  .contact__info li { grid-template-columns: 1fr; gap: .2rem; padding-bottom: 1rem; }
}

/* =============================================================
   WOW LAYER — Premium overrides & dramatic visuals
   ============================================================= */

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.05);
  z-index: 100;
  pointer-events: none;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft) 50%, #fff);
  width: 0%;
  box-shadow: 0 0 14px rgba(0,103,255,.6);
  transition: width .08s linear;
}

/* ---------- Animated gradient mesh + orbs ---------- */
.mesh {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .55;
  pointer-events: none;
  will-change: transform;
}
.orb--blue   { width: 620px; height: 620px; background: #0067FF; top: -120px;  right: -160px; animation: orbA 22s ease-in-out infinite; }
.orb--sky    { width: 480px; height: 480px; background: #5aa8ff; bottom: -150px; left: -120px; animation: orbB 26s ease-in-out infinite; }
.orb--purple { width: 380px; height: 380px; background: #2a5cff; top: 40%; left: 35%; opacity: .35; animation: orbC 30s ease-in-out infinite; }

@keyframes orbA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-120px, 100px) scale(1.1); } }
@keyframes orbB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(140px, -80px) scale(1.15); } }
@keyframes orbC { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(80px, -60px) scale(.95); } 66% { transform: translate(-60px, 80px) scale(1.1); } }

/* ---------- Gradient text ---------- */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #5aa8ff 50%, #0067FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.gradient-text--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, #5aa8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- WOW Hero overrides ---------- */
.hero {
  min-height: 100vh;
  text-align: center;
  align-items: center;
  padding: 180px 0 140px;
}
.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  font-size: clamp(3rem, 1.6rem + 6vw, 7rem);
  letter-spacing: -.035em;
  line-height: .98;
  margin: 1.8rem auto 1.8rem;
  max-width: 18ch;
}
.hero__lead {
  margin-left: auto; margin-right: auto;
  text-align: center;
  font-size: clamp(1.1rem, .98rem + .5vw, 1.35rem);
  max-width: 64ch;
}
.hero__ctas { justify-content: center; }
.hero .eyebrow { justify-content: center; }
.hero__veil {
  background:
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(2,10,47,.55) 50%, rgba(2,10,47,.95) 100%),
    linear-gradient(180deg, rgba(2,10,47,.55) 0%, rgba(2,10,47,.92) 100%);
}

/* Glow behind hero title */
.hero__content::before {
  content: "";
  position: absolute;
  top: 35%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,103,255,.45), transparent 65%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

/* ---------- Marquee Ticker ---------- */
.ticker {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--navy-deep), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--navy-deep), transparent); }

.ticker__track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
  white-space: nowrap;
}
.ticker__item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.55);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.ticker__item em {
  font-style: normal;
  color: var(--blue-soft);
}
.ticker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Centered everything ---------- */
.section__head { max-width: 820px; margin: 0 auto 4.5rem; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head .lead { margin-left: auto; margin-right: auto; text-align: center; }
.intro-grid { text-align: center; grid-template-columns: 1fr; gap: 2rem; max-width: 920px; margin: 0 auto; }
.intro-grid__side .eyebrow { justify-content: center; }
.intro-grid p { margin-left: auto; margin-right: auto; }

/* WOW Stats — bigger, gradient numbers */
.strip { padding: 100px 0; }
.strip__grid { gap: 2rem; }
.strip__item {
  text-align: center;
  border-left: none;
  padding: 0 1rem;
  position: relative;
}
.strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
.strip__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 2rem + 3vw, 5.4rem);
  background: linear-gradient(180deg, #ffffff 0%, rgba(90,168,255,.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
  line-height: .95;
  display: inline-flex;
  align-items: baseline;
}
.strip__num sup {
  font-size: .4em;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 6px;
  font-weight: 700;
}
.strip__item p {
  margin: 1rem auto 0;
  text-align: center;
  max-width: 22ch;
  font-size: .92rem;
  color: rgba(255,255,255,.6);
}

/* ---------- About — centered & dramatic ---------- */
.about__grid { grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto; text-align: center; }
.about__copy .eyebrow { justify-content: center; }
.about__copy .lead { margin-left: auto; margin-right: auto; text-align: center; }
.values { grid-template-columns: repeat(4, 1fr); margin-top: 4rem; text-align: center; }
.values__item { text-align: center; padding: 1.5rem; }
.values__mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0a55cc);
  color: #fff;
  font-size: .95rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
  box-shadow: 0 12px 30px -10px rgba(0,103,255,.55);
}
.about__panel {
  grid-column: 1; position: static;
  grid-template-columns: 1fr 1fr;
  display: grid; gap: 1.4rem;
  max-width: 900px; margin: 3rem auto 0;
}
.panel__quote {
  grid-column: 1 / -1;
  text-align: center;
  border-top: none;
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* ---------- Section heads (dark) centering ---------- */
.services--dark .section__head { color: #fff; }

/* ---------- Cards — 3D tilt + glow ---------- */
.cards { gap: 1.6rem; }
.card {
  text-align: left;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 36px 80px -30px rgba(0,103,255,.35);
}
.cards--light .card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 36px 80px -30px rgba(4,21,78,.25);
}

/* ---------- Banner sub-pages — centered & taller ---------- */
.page-banner {
  min-height: 72vh;
  align-items: center;
  text-align: center;
  padding: 180px 0 100px;
}
.page-banner__inner {
  margin: 0 auto;
  text-align: center;
}
.page-banner .breadcrumb {
  justify-content: center;
  margin-bottom: .4rem;
}
.page-banner__title {
  font-size: clamp(2.8rem, 1.6rem + 4.2vw, 5.2rem);
  letter-spacing: -.03em;
  line-height: 1;
  margin: 1.2rem auto 1.4rem;
  max-width: 22ch;
}
.page-banner__sub {
  margin: 0 auto;
  font-size: clamp(1.05rem, .96rem + .35vw, 1.22rem);
  max-width: 64ch;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.page-banner__inner::before {
  content: "";
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,103,255,.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* ---------- Detail rows centered ---------- */
.detail-row {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 1.4rem;
  max-width: 820px;
  margin: 0 auto;
}
.detail-row > div:first-child {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.detail-row__code {
  display: inline-block;
  padding: .4rem 1rem;
  background: linear-gradient(135deg, var(--blue), #0a55cc);
  color: #fff !important;
  border-radius: 999px;
  font-size: .72rem !important;
}
.detail-row__code small {
  display: inline-block;
  margin: 0 0 0 .6rem;
  color: rgba(255,255,255,.7);
}
.detail-row p { margin: 0 auto; }
.detail-row__tags { justify-content: center; }
.detail-row h3 {
  font-size: clamp(1.5rem, 1.2rem + .8vw, 2rem);
  margin-bottom: 1rem;
}

/* ---------- Timeline centered & glowing ---------- */
.timeline::before {
  background: linear-gradient(90deg, rgba(0,103,255,.1), var(--blue), rgba(0,103,255,.1));
  height: 2px;
  box-shadow: 0 0 14px rgba(0,103,255,.4);
}
.t-num {
  background: linear-gradient(135deg, #fff 0%, #eef4ff 100%);
  border-color: transparent;
  box-shadow: 0 14px 36px -16px rgba(4,21,78,.3), 0 0 0 1px var(--line);
}
.timeline li:hover .t-num {
  background: linear-gradient(135deg, var(--blue) 0%, #0a55cc 100%);
  color: #fff;
  box-shadow: 0 18px 40px -10px rgba(0,103,255,.55);
}

/* ---------- Investments section override ---------- */
.invest__content { text-align: center; }

/* ---------- Contact — centered intro, form keeps grid ---------- */
.contact__grid { grid-template-columns: 1.1fr 1fr; text-align: left; }
.contact__copy { text-align: left; }
.contact__copy .eyebrow { justify-content: flex-start; }

/* ---------- CTA Band — centered & dramatic ---------- */
.cta-band { padding: 130px 0; text-align: center; }
.cta-band__inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 820px; margin: 0 auto;
  position: relative;
}
.cta-band__inner > div:first-child { display: flex; flex-direction: column; align-items: center; }
.cta-band h2 {
  font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3.6rem);
  margin: 0 auto;
}
.cta-band p { margin: 1rem auto 0; text-align: center; max-width: 60ch; }
.cta-band__actions { justify-content: center; }
.cta-band::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,103,255,.4), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-band__inner > * { position: relative; z-index: 2; }

/* ---------- Buttons WOW ---------- */
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0a55cc 100%);
  padding: 1.1rem 2rem;
  font-size: .96rem;
  box-shadow: 0 20px 50px -16px rgba(0,103,255,.6), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #5aa8ff 0%, var(--blue) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 60px -16px rgba(0,103,255,.75);
}

/* ---------- Logo cloud (NEW) ---------- */
.cred {
  padding: 80px 0;
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred__label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
}
.cred__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.cred__item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  letter-spacing: .04em;
  opacity: .45;
  transition: opacity .3s var(--ease);
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.cred__item:hover { opacity: 1; }
.cred__item small {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: .3rem;
}

/* ---------- Pillars (NEW big icons grid) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.pillar {
  padding: 2.4rem 1.6rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.06);
  border-color: rgba(90,168,255,.4);
}
.pillar__ic {
  width: 72px; height: 72px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0a55cc);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 16px 36px -10px rgba(0,103,255,.55);
}
.pillar h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: .8rem;
}
.pillar p { color: rgba(255,255,255,.7); font-size: .96rem; }

/* ---------- Hero scroll dot ---------- */
.hero__scroll {
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ---------- Footer enhancement ---------- */
.foot { padding-top: 100px; position: relative; overflow: hidden; }
.foot::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,103,255,.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

/* ---------- Responsive overrides ---------- */
@media (max-width: 980px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item:not(:last-child)::after { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .cred__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; text-align: center; }
  .contact__copy { text-align: center; }
  .contact__copy .eyebrow { justify-content: center; }
  .contact__info li { grid-template-columns: 1fr; text-align: center; gap: .3rem; }
  .about__panel { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .values { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .cred__grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 140px 0 100px; }
  .page-banner { min-height: 65vh; padding: 140px 0 70px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
