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

:root {
  --red: #d74028;
  --red-light: #de614a;
  --navy-dark: #15192c;
  --navy: #071a34;
  --blue: #0d4ed0;
  --blue-2: #2f71e5;
  --blue-light: #93b6f1;
  --text-dark: #263238;
  --text-muted: #4f6772;
  --bg-page: #eceff1;
  --surface: #ffffff;
  --border: #d7dee2;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 24px rgba(21, 25, 44, 0.08);
  --shadow-lg: 0 20px 48px rgba(21, 25, 44, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .container { padding: 0 16px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.17s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #b93a25; transform: translateY(-1px); }

.btn-outline { background: #fff; color: var(--text-dark); border: 1.5px solid var(--red); }
.btn-outline:hover { background: #fef4f2; }

.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f1f1f1; }

/* Eyebrow labels */
.eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow.on-dark { color: var(--blue-light); }
.eyebrow.on-light { color: var(--blue-2); }

h2.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

/* ===== Header ===== */
.utility-bar {
  background: var(--navy-dark);
  color: #fff;
}
.utility-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 700;
}
.utility-link { display: inline-flex; align-items: center; gap: 6px; color: #eceff1; }
.utility-link:hover { color: #fff; }
.utility-link svg { width: 14px; height: 14px; }
.utility-cta {
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}
.utility-cta:hover { background: #b93a25; }

header.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--navy); }
.nav-links svg { width: 14px; height: 14px; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle:hover { background: var(--bg-page); }

.nav-links-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 8px 20px 16px;
}
.nav-links-mobile a {
  padding: 14px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.nav-links-mobile a:last-child { border-bottom: none; }
.nav-links-mobile a.mobile-cta {
  margin-top: 12px;
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-sm);
  border-bottom: none;
}
.nav-links-mobile.open { display: flex; }

@media (max-width: 900px) {
  .utility-bar .utility-link.hide-mobile { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,26,52,0.94) 0%, rgba(7,26,52,0.82) 42%, rgba(7,26,52,0.35) 75%, rgba(7,26,52,0.1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 0 84px;
}
.hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero-inner p {
  font-size: 1.15rem;
  color: #eceff1;
  max-width: 42ch;
  margin-bottom: 40px;
}

/* ===== Partner logos band ===== */
.partners {
  background: var(--navy-dark);
  padding: 56px 0;
  text-align: center;
}
.partners p {
  color: #eceff1;
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}
.partners-row img { height: 32px; width: auto; opacity: 0.92; }

/* ===== Section shell ===== */
section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ===== News ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-card-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-date { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.news-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy-dark); line-height: 1.3; }
.news-card-body p { font-size: 0.92rem; color: var(--text-muted); flex: 1; }
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-top: 6px;
}
.news-link svg { width: 16px; height: 16px; color: var(--red); }
.news-link:hover { color: var(--red); }

/* ===== Invest banner ===== */
.invest-banner {
  background: linear-gradient(120deg, #0d4ed0 0%, #0a3bab 60%, #082f8c 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.invest-banner ul { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 36px; }
.invest-banner ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: #eceff1; }
.invest-banner ul svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--blue-light); }
.invest-banner img { width: 100%; max-width: 480px; margin: 0 auto; }
.invest-banner h2 { color: #fff; }

@media (max-width: 900px) {
  .invest-banner { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .invest-banner ul { text-align: left; }
}

/* ===== Testimonials ===== */
.testimonials-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.carousel-nav { display: flex; gap: 12px; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform .2s ease;
}
.carousel-nav button:hover { border-color: var(--red); transform: translateY(-1px); }
.carousel-nav button.primary { background: var(--red); border-color: var(--red); color: #fff; }
.carousel-nav button.primary:hover { background: #b93a25; }
.carousel-nav svg { width: 16px; height: 16px; }

.t-viewport { overflow: hidden; }
.t-track { display: flex; gap: 28px; transition: transform 0.5s cubic-bezier(0.65,0,0.35,1); }
.t-card {
  flex: 0 0 calc(25% - 21px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.t-card::before {
  content: "";
  position: absolute;
  right: -40%; top: -20%;
  width: 140%; height: 140%;
  background: linear-gradient(135deg, transparent 55%, #eceff1 56%);
  pointer-events: none;
}
.t-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.t-stars svg { width: 18px; height: 18px; color: #de6a2e; }
.t-quote { font-style: italic; font-size: 0.98rem; color: var(--text-dark); flex: 1; position: relative; z-index: 1; }
.t-person { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 20px; position: relative; z-index: 1; }
.t-person-info strong { display: block; font-size: 1.05rem; color: var(--navy-dark); }
.t-person-info span { font-size: 0.85rem; color: var(--text-muted); }
.t-photo { width: 96px; height: 96px; object-fit: contain; object-position: bottom; margin-right: -8px; margin-bottom: -8px; }

@media (max-width: 1100px) { .t-card { flex-basis: calc(50% - 14px); } }
@media (max-width: 640px) { .t-card { flex-basis: 100%; } }

/* ===== Digital channel ===== */
.digital-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.digital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.digital-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.digital-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.digital-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; background: #f1f5f9; }
.digital-card-body { padding: 28px; }
.digital-card-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.digital-card-body p { font-size: 0.94rem; color: var(--text-muted); }

@media (max-width: 900px) { .digital-grid { grid-template-columns: 1fr; } }

/* ===== Fund simulator ===== */
.simulator-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
}
.sim-form { padding: 44px; display: flex; flex-direction: column; gap: 22px; }
.sim-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.sim-field label .req { color: var(--red); }
.sim-toggle { display: inline-flex; background: var(--bg-page); border-radius: 999px; padding: 4px; }
.sim-toggle button {
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all .2s ease;
}
.sim-toggle button.active { background: var(--navy-dark); color: #fff; }

.sim-select, .sim-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
}
.sim-select:focus, .sim-input:focus { outline: none; border-color: var(--blue); }

.sim-slider-row { display: flex; align-items: center; gap: 14px; }
.sim-slider-row input[type=range] { flex: 1; accent-color: var(--red); }
.sim-slider-value { font-weight: 700; color: var(--navy-dark); font-size: 0.9rem; min-width: 56px; text-align: right; }

.sim-fund-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.sim-fund-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-page);
  padding: 6px 12px;
  border-radius: 999px;
}

.sim-cta { margin-top: 8px; justify-content: center; }
.sim-disclaimer { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

.sim-result {
  background: linear-gradient(160deg, #0d1b34 0%, #0a2a52 100%);
  color: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
}
.sim-result-fund { font-size: 0.85rem; font-weight: 600; color: #b9c8dd; margin-bottom: 4px; }
.sim-result-fund strong { display: block; color: #fff; font-size: 1.15rem; font-weight: 700; margin-top: 4px; }
.sim-result-numbers { display: flex; gap: 40px; margin: 28px 0; flex-wrap: wrap; }
.sim-result-numbers div span { display: block; font-size: 0.8rem; color: #b9c8dd; margin-bottom: 6px; }
.sim-result-numbers div strong { font-size: 2rem; font-weight: 800; transition: transform .15s ease; display: inline-block; }
.sim-result-numbers div strong.pulse { animation: simPulse .35s ease; }
@keyframes simPulse { 0%{transform:scale(1);} 40%{transform:scale(1.08); color: var(--blue-light);} 100%{transform:scale(1);} }

.sim-result-meta { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); }
.sim-result-meta div { display: flex; justify-content: space-between; font-size: 0.85rem; color: #dde6f0; }
.sim-result-meta strong { color: #fff; }

@media (max-width: 900px) {
  .simulator-box { grid-template-columns: 1fr; }
  .sim-form, .sim-result { padding: 30px 24px; }
}

/* ===== Research ===== */
.research-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
.research-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.research-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.research-card img { width: 100%; height: 180px; object-fit: cover; }
.research-card-body { padding: 24px; }
.research-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; min-height: 54px; }
.research-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }

.research-quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.research-quote blockquote { font-size: 1.15rem; font-style: italic; color: var(--text-dark); line-height: 1.5; flex: 1; }
.research-quote-person { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.research-quote-person img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.research-quote-person strong { display: block; color: var(--navy-dark); font-size: 1.05rem; }
.research-quote-person span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .research-grid { grid-template-columns: 1fr; }
  .research-quote { flex-direction: column; text-align: center; }
}

/* ===== Footer ===== */
footer {
  background: var(--navy-dark);
  color: #f4fbf3;
  padding: 72px 0 0;
}
.footer-top { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; padding-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-social { margin-top: 20px; }
.footer-social span { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.footer-social-icons { display: flex; gap: 12px; }
.footer-social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social-icons a:hover { background: var(--red); }
.footer-social-icons svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: #fff; }
.footer-col p, .footer-col a { display: block; font-size: 0.88rem; color: #d3ded8; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #b9c2be;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero-inner { padding: 64px 0; }
}

/* ===== Responsive section grids ===== */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .section-head, .digital-head, .research-head, .testimonials-head { flex-direction: column; align-items: flex-start; }
}

/* ===== Nosotros page ===== */

/* Active nav link */
.nav-links a.nav-active { color: var(--navy); }

/* About hero — identical behaviour to main hero */
.about-hero .hero-inner h1 { max-width: 20ch; }

/* Quiénes somos split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-split-text { display: flex; flex-direction: column; gap: 18px; }
.about-split-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.about-split-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.about-fact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-fact-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.about-fact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split-facts { position: static; }
}

/* Stats band */
.stats-band {
  background: linear-gradient(100deg, #0d4ed0 0%, #0a3bab 55%, #082f8c 100%);
  padding: 56px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span {
  font-size: 0.88rem;
  color: var(--blue-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .stats-band-grid { grid-template-columns: 1fr; }
}

/* Mission / Vision / Values cards */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mvv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.mvv-card-wide { grid-column: 1 / -1; }
.mvv-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mvv-icon svg { width: 26px; height: 26px; color: var(--blue); }
.mvv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.mvv-card > p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.7; }
.values-list { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}
.value-item strong { display: block; font-size: 1rem; color: var(--navy-dark); margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-card-wide { grid-column: auto; }
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder svg { width: 64px; height: 64px; opacity: 0.6; }
.team-card-body { padding: 24px; }
.team-card-body strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--navy-dark); }
.team-card-body > span { display: block; font-size: 0.85rem; color: var(--blue-2); font-weight: 600; margin: 4px 0 12px; }
.team-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .team-grid { grid-template-columns: 1fr; } }

/* Offices grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.office-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.office-flag { font-size: 2.2rem; margin-bottom: 8px; }
.office-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
.office-role { font-size: 0.8rem; font-weight: 700; color: var(--blue-2); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.office-card p { font-size: 0.9rem; color: var(--text-muted); }
.office-card a { font-size: 0.88rem; color: var(--blue); font-weight: 500; }
.office-card a:hover { color: var(--navy); text-decoration: underline; }

@media (max-width: 900px) { .offices-grid { grid-template-columns: 1fr; } }

/* About CTA section */
.about-cta-section {
  padding: 0 0 88px;
}
.about-cta-box {
  background: linear-gradient(120deg, #0d4ed0 0%, #0a3bab 60%, #082f8c 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-cta-box h2 { color: #fff; }
.about-cta-box p { color: var(--blue-light); font-size: 1rem; max-width: 42ch; margin-top: 10px; }
.about-cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-cta-box { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
  .about-cta-section { padding: 0 0 56px; }
}

@media (max-width: 560px) {
  .about-cta-section { padding: 0 0 56px; }
}
