/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -60px; left: 1rem; background: var(--gold); color: var(--navy); font-weight: 700; padding: .5rem 1rem; border-radius: 4px; text-decoration: none; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }

:root {
  --navy:   #062A3F;
  --navy2:  #0a3a56;
  --gold:   #C2AC53;
  --gold2:  #d4be6a;
  --teal:   #1B5455;
  --dark:   #232323;
  --gray:   #F5F5F5;
  --blue:   #2A83C0;
  --gray-t: #555555;
  --gray-b: #D9D9D9;
  --white:  #FFFFFF;
  --font:   'Inter', 'Calibri', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(6,42,63,0.09);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
  padding: 0 2rem;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--gray-b);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo-img { height: 30px; filter: brightness(0) invert(1); transition: filter .3s; }
.nav.scrolled .nav-logo-img { filter: none; }

.nav-links { display: flex; list-style: none; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.85); transition: color .2s; letter-spacing: .02em;
}
.nav.scrolled .nav-links a { color: var(--gray-t); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold) !important; }
.nav.scrolled .nav-links a.active { color: var(--navy) !important; font-weight: 700; }

.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: .45rem 1.1rem !important; border-radius: 4px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.nav-right { display: flex; align-items: center; gap: .75rem; }

.lang-btn {
  background: none; border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.8); font-family: var(--font); font-size: .75rem;
  font-weight: 700; letter-spacing: .08em; padding: .3rem .65rem;
  border-radius: 4px; cursor: pointer; transition: all .2s;
}
.nav.scrolled .lang-btn { border-color: var(--gray-b); color: var(--gray-t); }
.lang-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lang-select {
  background: transparent; border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9); font-family: var(--font); font-size: .75rem;
  font-weight: 700; letter-spacing: .08em; padding: .3rem .5rem .3rem .55rem;
  border-radius: 4px; cursor: pointer; transition: all .2s;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 6px center;
  padding-right: 1.3rem;
}
.lang-select option { background: #062A3F; color: #fff; font-weight: 600; }
.nav.scrolled .lang-select { border-color: rgba(6,42,63,.3); color: #062A3F;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='rgba(6,42,63,0.4)'/%3E%3C/svg%3E");
}
.lang-select:hover, .lang-select:focus { border-color: var(--gold); color: var(--gold); outline: none; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: white; transition: all .3s; border-radius: 2px; }
.nav.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: .9rem; padding: .85rem 1.75rem; border-radius: 4px;
  letter-spacing: .02em; transition: background .2s, transform .15s;
  border: none; cursor: pointer; font-family: var(--font);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; padding: .85rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85);
  font-weight: 500; font-size: .9rem; border-radius: 4px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  display: inline-flex; align-items: center; padding: .75rem 1.5rem;
  border: 2px solid var(--navy); color: var(--navy); font-weight: 600;
  font-size: .875rem; border-radius: 4px; transition: background .2s, color .2s;
  font-family: var(--font);
}
.btn-outline:hover { background: var(--navy); color: white; }

.btn-outline-light {
  display: inline-flex; align-items: center; padding: .75rem 1.5rem;
  border: 2px solid rgba(255,255,255,.5); color: white; font-weight: 600;
  font-size: .875rem; border-radius: 4px; transition: all .2s;
  font-family: var(--font);
}
.btn-outline-light:hover { background: white; color: var(--navy); border-color: white; }

/* ===== HERO (HOMEPAGE) ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #062A3F 0%, #0d3f5c 45%, #1B5455 100%); z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(194,172,83,.07) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 1200px;
  margin: 0 auto; padding: 90px 2rem 0; width: 100%;
  display: flex; align-items: center; gap: 4rem; min-height: 100vh;
}
.hero-left { flex: 1; max-width: 580px; }
.hero-eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem; max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { flex: 0 0 auto; width: 360px; display: flex; align-items: center; justify-content: center; }
.hero-logo { width: 100%; max-width: 320px; filter: drop-shadow(0 20px 60px rgba(0,0,0,.3)); animation: float 6s ease-in-out infinite; will-change: transform; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem; z-index: 1; opacity: .45;
}
.hero-scroll span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: white; }
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, white, transparent); animation: scroll-line 2s ease-in-out infinite; will-change: transform; }
@keyframes scroll-line {
  0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom}
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--white); border-top: 1px solid var(--gray-b); border-bottom: 1px solid var(--gray-b); padding: 2rem 0 2.5rem; }
.stats-bar-title { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.stats-bar-item { text-align: center; padding: 0 1rem; border-right: 1px solid var(--gray-b); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1; margin-bottom: .3rem; }
.stats-bar-lbl { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-t); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3f5c 50%, var(--teal) 100%);
  padding: 5rem 2rem 4rem; text-align: center; position: relative;
}
.page-hero-video { padding: 0; overflow: hidden; min-height: 560px; display: flex; align-items: center; justify-content: center; width: 100vw; margin-left: calc(-50vw + 50%); }
.page-hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(6,42,63,.55); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; padding: 8rem 2rem 4rem; text-align: center; width: 100%; max-width: 860px; margin: 0 auto; }
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold2), var(--gold));
}
.page-hero-eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.page-hero-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: white; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 1rem; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; display: block; }
.section-label.light { color: var(--gold); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1rem; }
.section-title.light { color: white; }
.section-sub { font-size: 1rem; color: var(--gray-t); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.gold-line { width: 44px; height: 3px; background: var(--gold); margin: 0 auto 1rem; border-radius: 2px; }

/* ===== HOMEPAGE FEATURES ===== */
.features { background: var(--gray); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feat-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-b); transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); will-change: transform; }
.feat-card-top {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.feat-card-top.navy { background: var(--navy); }
.feat-card-top.teal { background: var(--teal); }
.feat-card-top.gold-bg { background: var(--gold); }
.feat-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.feat-card-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .6rem; }
.feat-card-body p { font-size: .9rem; line-height: 1.65; color: var(--gray-t); flex: 1; margin-bottom: 1.25rem; }
.feat-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 700; color: var(--navy); letter-spacing: .02em;
  transition: color .2s; border-top: 1px solid var(--gray-b); padding-top: 1rem;
}
.feat-link:hover { color: var(--gold); }
.feat-link::after { content: '→'; }

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--navy); padding: 5rem 0; }
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.testimonial-quote-mark { font-size: 7rem; line-height: .4; color: var(--gold); opacity: .35; font-family: Georgia, serif; display: block; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.4rem; font-weight: 500; color: white; line-height: 1.65; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { font-size: .85rem; color: var(--gold); font-weight: 600; letter-spacing: .05em; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%); padding: 5rem 0; }
.cta-band-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; color: white; margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-band p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--gray-t); margin-bottom: 1.25rem; }
.about-lead { font-size: 1.15rem !important; color: var(--dark) !important; }
.about-lead strong { color: var(--navy); }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pillar { padding: 1.5rem; border: 1px solid var(--gray-b); border-radius: var(--radius); transition: box-shadow .2s, border-color .2s; }
.pillar:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.pillar-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: .85rem; }
.pillar-icon svg { width: 20px; height: 20px; }
.pillar-icon.navy { background: var(--navy); color: white; }
.pillar-icon.teal { background: var(--teal); color: white; }
.pillar-icon.gold { background: var(--gold); color: var(--navy); }
.pillar-icon.blue { background: var(--blue); color: white; }
.pillar h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.pillar p { font-size: .85rem; line-height: 1.6; color: var(--gray-t); }

/* ===== VALUES GRID ===== */
.values-section { background: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.value-card { background: white; padding: 1.75rem 1.5rem; border-radius: var(--radius); border-top: 3px solid var(--gold); transition: box-shadow .2s; }
.value-card:hover { box-shadow: var(--shadow); }
.value-icon { width: 36px; height: 36px; margin-bottom: .9rem; color: var(--gold); }
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
.value-card p { font-size: .85rem; line-height: 1.65; color: var(--gray-t); }

/* ===== NUESTROS VALORES (nueva sección navy) ===== */
.valores-section { background: var(--navy); }
.valores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 1rem; }
.valor-card { display: flex; gap: 1.25rem; align-items: flex-start; }
.valor-icon { flex-shrink: 0; color: var(--gold); opacity: .9; }
.valor-body h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .5rem; line-height: 1.3; }
.valor-body p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.65); }
.section-sub.light { color: rgba(255,255,255,.7); }
@media(max-width:900px){ .valores-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .valores-grid { grid-template-columns: 1fr; } }

/* ===== STEPS ===== */
.steps-section { background: white; }
.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding: 0 1.5rem; }
.step-connector { flex: 0 0 auto; width: 50px; height: 2px; background: var(--gold); margin-top: 2.5rem; position: relative; }
.step-connector::after { content: ''; position: absolute; right: -6px; top: -5px; width: 0; height: 0; border-left: 10px solid var(--gold); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.step-number { font-size: 3rem; font-weight: 800; color: var(--gray-b); line-height: 1; margin-bottom: .9rem; letter-spacing: -.03em; transition: color .2s; }
.step:hover .step-number { color: var(--gold); }
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.step p { font-size: .875rem; line-height: 1.7; color: var(--gray-t); }

/* ===== COMPANIES ===== */
.companies-section { background: white; }
.companies-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.company-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-b); transition: box-shadow .25s, transform .25s;
}
.company-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); will-change: transform; }
.card-top { height: 100px; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.card-logo-placeholder { font-size: 1.3rem; font-weight: 800; color: white; letter-spacing: -.01em; text-align: center; }
.card-logo-placeholder.dark { color: var(--navy); }
.card-logo { max-height: 52px; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); }
.card-body { padding: 1.25rem; }
.card-tag { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.card-body p { font-size: .82rem; line-height: 1.6; color: var(--gray-t); margin-bottom: .9rem; }
.card-link { font-size: .78rem; font-weight: 600; color: var(--navy); transition: color .2s; }
.card-link:hover { color: var(--gold); }

/* ===== TEAM ===== */
.team-section { background: white; }
.team-section.gray-bg { background: var(--gray); }
.team-section-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gray-b);
  padding-bottom: .75rem; margin-bottom: 2rem;
}
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.team-grid.three { grid-template-columns: repeat(3,1fr); }
.team-grid.six { grid-template-columns: repeat(6,1fr); }

.team-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-b); transition: box-shadow .2s, transform .2s;
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.team-photo {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top;
  display: block;
}
.team-avatar-fallback {
  width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: white; letter-spacing: -.02em;
}
.team-card-body { padding: 1.1rem 1rem 1.25rem; }
.team-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; line-height: 1.2; }
.team-role { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; }
.team-card p { font-size: .8rem; line-height: 1.6; color: var(--gray-t); }
.team-story-btn { display: inline-block; margin-top: .65rem; background: none; border: none; padding: 0; font-size: .78rem; font-weight: 700; color: var(--navy); cursor: pointer; letter-spacing: .02em; transition: color .2s; }
.team-story-btn:hover { color: var(--gold); }

/* Dirección — larger cards */
.team-grid.directors .team-card .team-photo { aspect-ratio: 4/5; }

/* CEO grid — smaller */
.team-ceo-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.ceo-card { text-align: center; }
.ceo-photo {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top;
  margin: 0 auto .6rem; display: block; border: 3px solid var(--gray-b);
}
.ceo-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto .6rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: white; background: var(--navy);
}
.ceo-name { font-size: .78rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.ceo-company { font-size: .7rem; color: var(--gray-t); }

/* ===== EXPERTS ===== */
.experts-section { background: white; }
.experts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 5rem; }
.expert-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-b);
  transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column;
}
.expert-card:hover { box-shadow: 0 8px 32px rgba(6,42,63,.12); transform: translateY(-4px); }
.expert-header { padding: 2rem 2rem 1.25rem; }
.expert-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.expert-icon svg { width: 26px; height: 26px; }
.expert-icon.navy { background: var(--navy); color: white; }
.expert-icon.teal { background: var(--teal); color: white; }
.expert-icon.blue { background: var(--blue); color: white; }
.expert-icon.gold { background: var(--gold); color: var(--navy); }
.expert-icon.green { background: #00B050; color: white; }
.expert-icon.purple { background: #5B2D8E; color: white; }
.expert-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .6rem; }
.expert-desc { padding: 0 2rem 2rem; font-size: .9rem; line-height: 1.7; color: var(--gray-t); }
.expert-footer { padding: 1rem 2rem; border-top: 1px solid var(--gray-b); background: var(--gray); margin-top: auto; }
.expert-tag { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* How it works */
.how-section { background: var(--gray); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.how-card { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.how-number { font-size: 3rem; font-weight: 800; color: var(--gold); opacity: .3; line-height: 1; margin-bottom: .75rem; letter-spacing: -.03em; }
.how-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.how-card p { font-size: .9rem; line-height: 1.7; color: var(--gray-t); }

/* ===== CONTACT ===== */
.contact-section { background: linear-gradient(135deg, var(--navy) 0%, #0d3f5c 60%, var(--teal) 100%); padding: 5.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; color: white; margin: 1rem 0; letter-spacing: -.02em; }
.contact-desc { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin: 1.25rem 0 2rem; }
.contact-items { display: flex; flex-direction: column; gap: .9rem; }
.contact-item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.8); font-size: .95rem; }
.contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.contact-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 2rem; backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  min-height: 44px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: .75rem 1rem; color: white; font-family: var(--font);
  font-size: .9rem; outline: none; transition: border-color .2s, background .2s; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.5); }
.form-group select option { background: var(--navy); color: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }
.form-group textarea { height: 100px; resize: vertical; }

/* ===== TESTIMONIOS PAGE ===== */
.testi-hero { background: linear-gradient(135deg, var(--navy) 0%, #0d3f5c 60%, #1a4a4a 100%); }
.testi-section { background: var(--gray); }
.testi-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; padding: 3.5rem 0; border-bottom: 1px solid var(--gray-b); }
.testi-row:last-child { border-bottom: none; }
.testi-row-reverse { grid-template-columns: 1.4fr 1fr; }
.testi-row-reverse .testi-left { order: 2; }
.testi-row-reverse .testi-right { order: 1; }
.testi-entrevista { font-size: 1.5rem; font-weight: 300; color: var(--navy); margin-bottom: .25rem; }
.testi-role { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; line-height: 1.5; }
.testi-quote { font-size: 1rem; line-height: 1.75; color: var(--dark); border-left: 3px solid var(--gold); padding-left: 1rem; margin-bottom: 1rem; font-style: italic; }
.testi-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.testi-right { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 16/9; background: var(--navy); }
.testi-right img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.testi-right:hover img { transform: scale(1.03); }
.testi-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(6,42,63,.35); transition: background .2s; }
.testi-right:hover .testi-play { background: rgba(6,42,63,.55); }
.testi-play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
@media(max-width:768px) {
  .testi-row, .testi-row-reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .testi-row-reverse .testi-left { order: unset; }
  .testi-row-reverse .testi-right { order: unset; }
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 3rem 0 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 40px; width: auto; margin-bottom: .6rem; }
.footer-tagline { font-size: .75rem; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .4rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; margin-top: 2rem; }
.footer-bottom span { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-arrow img { height: 22px; opacity: .35; }
.footer-legal-links { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: .78rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links span { color: rgba(255,255,255,.2); font-size: .75rem; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .6rem; }
.legal-content p { font-size: .95rem; line-height: 1.8; color: #444; margin-bottom: 1rem; }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; }
.legal-content ul li { font-size: .95rem; line-height: 1.8; color: #444; margin-bottom: .35rem; }
.legal-content a { color: var(--navy); }
.legal-content a:hover { color: var(--gold); }
.legal-update { color: var(--gray-t) !important; font-size: .85rem !important; margin-top: 3rem; border-top: 1px solid var(--gray-b); padding-top: 1rem; }

/* ===== FADE UP ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-up:not(.visible) { will-change: opacity, transform; }
.fade-up.d1 { transition-delay: .08s; }
.fade-up.d2 { transition-delay: .16s; }
.fade-up.d3 { transition-delay: .24s; }
.fade-up.d4 { transition-delay: .32s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITY ===== */
.bg-gray { background: var(--gray); }
.bg-navy { background: var(--navy); }

/* ===== CRITERIA SECTION ===== */
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.criteria-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--gray); border-radius: 10px; border: 1px solid var(--gray-b); }
.criteria-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; margin-top: 2px; }
.criteria-item strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: .25rem; }
.criteria-item p { font-size: .875rem; color: var(--gray-t); line-height: 1.6; margin: 0; }

/* ===== AUDIENCE TABS ===== */
.audience-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 700px; margin: 0 auto 0; }
.audience-tab { padding: 1.5rem; border-radius: 12px; border: 2px solid var(--gray-b); cursor: pointer; text-align: center; transition: all .25s; background: white; }
.audience-tab:hover { border-color: var(--gold); }
.audience-tab.active { border-color: var(--navy); background: var(--navy); color: white; }
.audience-tab.active p { color: rgba(255,255,255,.7); }
.audience-tab .tab-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.audience-tab strong { display: block; font-size: 1rem; margin-bottom: .25rem; }
.audience-tab p { font-size: .85rem; color: var(--gray-t); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .companies-grid { grid-template-columns: repeat(3,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid.six { grid-template-columns: repeat(3,1fr); }
  .team-ceo-grid { grid-template-columns: repeat(4,1fr); }
  .experts-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .stats-bar-item { border-right: none; border-bottom: 1px solid var(--gray-b); padding-bottom: 1.5rem; }
  .stats-bar-item:nth-child(5), .stats-bar-item:nth-child(6) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0; background: var(--navy);
    padding: 1.5rem 2rem; gap: 1rem;
  }
  .nav-links.open a { color: rgba(255,255,255,.85) !important; font-size: 1rem; }
  .nav-links.open a.active,
  .nav.scrolled .nav-links.open a.active { color: var(--gold) !important; }

  .hero-content { flex-direction: column; gap: 2rem; text-align: center; padding-top: 100px; }
  .hero-left { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-right { width: 180px; }
  .hero-sub { max-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid.directors { grid-template-columns: 1fr 1fr; }
  .team-grid.six { grid-template-columns: repeat(2,1fr); }
  .team-ceo-grid { grid-template-columns: repeat(3,1fr); }
  .experts-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .steps-grid { flex-direction: column; gap: 2rem; }
  .step-connector { width: 2px; height: 32px; margin: 0 0 0 1.5rem; }
  .step-connector::after { right:-5px; bottom:-6px; top:auto; border-left:6px solid transparent; border-right:6px solid transparent; border-top:10px solid var(--gold); border-bottom: none; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .companies-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-ceo-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 3.5rem 0; }
}

/* ===== EXPERTISE AREAS (equipo.html fusionado) ===== */
.expertise-area { margin-bottom: 3.5rem; }
.expertise-area-header {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 1.75rem; background: var(--gray);
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid var(--gray-b); border-bottom: none;
}
.expertise-area-header .expert-icon { flex-shrink: 0; margin-bottom: 0; }
.expertise-area-header-text { flex: 1; }
.expertise-area-header h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.expertise-area-header p { font-size: .875rem; line-height: 1.65; color: var(--gray-t); margin-bottom: .6rem; }
.expertise-area .team-grid {
  border: 1px solid var(--gray-b); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.5rem; background: white; margin-bottom: 0;
}

/* ===== NEWS FEATURED ===== */
.news-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(194,172,83,.3);
  background: var(--navy); margin-bottom: 2.5rem;
  box-shadow: 0 8px 40px rgba(6,42,63,.18);
}
.news-featured-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.news-featured-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.news-featured:hover .news-featured-img img { transform: scale(1.03); }
.news-featured-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; transition: transform .2s;
}
.news-featured-play:hover { transform: scale(1.1); }
.news-featured-body {
  padding: 2.5rem 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: center; gap: .5rem;
}
.news-featured-badge {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .25rem;
}
.news-featured-body .news-category { color: rgba(255,255,255,.55); }
.news-featured-body .news-date { color: rgba(255,255,255,.4); }
.news-featured-title {
  font-size: 1.65rem; font-weight: 800; color: #fff; line-height: 1.2;
  margin: .4rem 0 .75rem;
}
.news-featured-excerpt { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.65; }
@media (max-width: 768px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-body { padding: 1.5rem; }
  .news-featured-title { font-size: 1.3rem; }
}

/* ===== NEWS PAGE ===== */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.news-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--gray-b);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-card-accent { height: 5px; }
.news-card-accent.navy { background: var(--navy); }
.news-card-accent.teal { background: var(--teal); }
.news-card-accent.gold { background: var(--gold); }
.news-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.news-category { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .4rem; }
.news-date { font-size: .78rem; color: var(--gray-t); display: block; margin-bottom: .75rem; }
.news-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: .75rem; }
.news-card p.news-excerpt { font-size: .875rem; line-height: 1.65; color: var(--gray-t); flex: 1; margin-bottom: 1.25rem; }
.news-link { font-size: .82rem; font-weight: 700; color: var(--navy); border-top: 1px solid var(--gray-b); padding-top: 1rem; display: inline-flex; align-items: center; gap: .3rem; transition: color .2s; }
.news-link:hover { color: var(--gold); }

.news-card-img { overflow: hidden; background: var(--gray); }
.news-card-img img { width: 100%; height: auto; display: block; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }

/* ===== VS SECTION ===== */
.vs-section { background: var(--gray); }
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: start; margin-top: 3rem; background: white; border-radius: var(--radius); border: 1px solid var(--gray-b); overflow: hidden; }
.vs-col { padding: 2rem; }
.vs-col-solo { background: white; }
.vs-col-bsg { background: var(--navy); }
.vs-col-header { margin-bottom: 1.5rem; }
.vs-badge { display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 20px; }
.vs-badge.solo { background: var(--gray); color: var(--gray-t); border: 1px solid var(--gray-b); }
.vs-badge.bsg  { background: var(--gold); color: white; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.vs-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; line-height: 1.4; }
.vs-item.negative { color: var(--gray-t); }
.vs-item.positive { color: rgba(255,255,255,.9); }
.vs-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.vs-item.negative .vs-icon { background: #f5f5f5; color: #aaa; border: 1px solid #ddd; }
.vs-item.positive .vs-icon { background: var(--gold); color: white; }
.vs-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem .5rem; background: white; border-left: 1px solid var(--gray-b); border-right: 1px solid var(--gray-b); }
.vs-divider-line { width: 1px; flex: 1; background: var(--gray-b); }
.vs-divider-logo { width: 32px; margin: 1rem 0; }

/* ===== VIDEO SECTION ===== */
.video-section { background: white; }
.video-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.video-card { display: flex; flex-direction: column; gap: .75rem; text-decoration: none; color: inherit; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-card:hover .video-play { background: var(--gold); }
.video-thumb { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--navy); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(6,42,63,.55); transition: background .25s; }
.video-play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.video-info strong { display: block; font-size: .875rem; font-weight: 700; color: var(--navy); }
.video-info span { font-size: .78rem; color: var(--gray-t); }

/* ===== OFFICES ===== */
.offices-section { background: var(--navy); padding: 4rem 0 5rem; }
.offices-section .section-label { color: var(--gold); margin-bottom: 2rem; display: block; text-align: center; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; font-weight: 600; }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.office-card { display: flex; align-items: flex-start; gap: 1.5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(194,172,83,.2); border-radius: 14px; padding: 2rem 2rem 2rem 1.75rem; text-decoration: none; transition: background .25s, border-color .25s, transform .25s; }
.office-card:hover { background: rgba(194,172,83,.08); border-color: rgba(194,172,83,.5); transform: translateY(-3px); }
.office-card-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(194,172,83,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.office-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.office-city { font-size: 1.15rem; font-weight: 700; color: white; margin: 0 0 .5rem; }
.office-address { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0 0 1rem; }
.office-link { font-size: .82rem; color: var(--gold); font-weight: 500; letter-spacing: .02em; }

/* ===== PRESS PAGE ===== */
.press-logos-grid { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; padding: 2.5rem; background: white; border-radius: var(--radius); border: 1px solid var(--gray-b); }
.press-logo-item { font-size: .9rem; font-weight: 700; color: var(--gray-t); padding: .9rem 1.5rem; border: 1px solid var(--gray-b); border-radius: 6px; transition: border-color .2s, color .2s; }
.press-logo-item:hover { border-color: var(--navy); color: var(--navy); }
.presskit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.logo-downloads { display: flex; flex-direction: column; gap: 1.5rem; }
.logo-download-item { border: 1px solid var(--gray-b); border-radius: var(--radius); overflow: hidden; }
.logo-preview { height: 110px; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.logo-preview.dark-bg  { background: var(--navy); }
.logo-preview.light-bg { background: var(--gray); border-bottom: 1px solid var(--gray-b); }
.logo-preview img { max-height: 50px; max-width: 180px; object-fit: contain; }
.logo-download-actions { padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.logo-download-actions span { font-size: .875rem; font-weight: 600; color: var(--navy); }
.download-links { display: flex; gap: .5rem; }
.btn-download { font-size: .78rem; font-weight: 700; padding: .35rem .85rem; border-radius: 6px; border: 1.5px solid var(--navy); color: var(--navy); text-decoration: none; transition: background .2s, color .2s; }
.btn-download:hover { background: var(--navy); color: white; }
.brand-colors-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.color-swatch { display: flex; align-items: center; gap: 1.25rem; padding: 1rem; border-radius: var(--radius); border: 1px solid var(--gray-b); }
.color-swatch-preview { width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0; }
.color-name  { font-weight: 700; color: var(--navy); display: block; font-size: .9rem; }
.color-hex   { font-size: .82rem; color: var(--gray-t); display: block; }

/* ===== MULTI-TESTIMONIAL SECTION ===== */
.testimonials-multi-section { background: var(--navy); padding: 5.5rem 0; }
.testimonials-multi-section .section-header { margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; transition: background .25s, border-color .25s; }
.testimonial-card:hover { background: rgba(255,255,255,.1); border-color: rgba(194,172,83,.4); }
.tcard-quote { font-size: 3.5rem; color: var(--gold); opacity: .4; font-family: Georgia,serif; line-height: .7; display: block; margin-bottom: .75rem; }
.tcard-text { font-size: .925rem; line-height: 1.7; color: rgba(255,255,255,.8); font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.tcard-author { display: flex; align-items: center; gap: .9rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.tcard-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(194,172,83,.5); flex-shrink: 0; }
.tcard-author strong { display: block; font-size: .875rem; font-weight: 700; color: white; line-height: 1.2; }
.tcard-author span { display: block; font-size: .75rem; color: var(--gold); margin-top: .15rem; }

/* ===== LIGHT TEXT ON DARK ===== */
.section-title.light { color: white; }
.section-label.light { color: rgba(255,255,255,.6); }

/* ===== RESPONSIVE NUEVAS SECCIONES ===== */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .presskit-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .office-card { padding: 1.25rem; gap: 1rem; }
  .office-city { font-size: 1rem; }
  .office-address { font-size: .83rem; }
  .video-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .expertise-area-header { flex-direction: column; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { flex-direction: row; padding: 1rem 2rem; border-left: none; border-right: none; border-top: 1px solid var(--gray-b); border-bottom: 1px solid var(--gray-b); }
  .vs-divider-line { width: 1px; height: 1px; flex: 1; background: var(--gray-b); }
  .video-grid { grid-template-columns: repeat(2,1fr); }
}


/* ===== NEWS MODAL ===== */
.news-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .3s; }
.news-overlay.active { opacity: 1; pointer-events: all; }
.news-modal { background: white; border-radius: var(--radius); max-width: 740px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform .3s; }
.news-overlay.active .news-modal { transform: translateY(0); }
.news-modal-close { position: sticky; top: 0; float: right; margin: 1rem 1rem 0 0; background: var(--gray); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; color: var(--navy); z-index: 10001; transition: background .2s; }
.news-modal-close:hover { background: var(--gray-b); }
.nmodal-img { height: 260px; overflow: hidden; }
.nmodal-img img { width: 100%; height: 100%; object-fit: cover; }
.nmodal-meta { display: flex; gap: 1rem; align-items: center; padding: 1.5rem 2rem .5rem; }
.nmodal-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); padding: 0 2rem 1rem; line-height: 1.3; }
.nmodal-body { padding: 0 2rem 2rem; color: var(--gray-t); line-height: 1.8; font-size: .95rem; }
.nmodal-body p { margin-bottom: 1rem; }
.nmodal-body ul, .nmodal-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.nmodal-body li { margin-bottom: .4rem; }
.nmodal-body strong { color: var(--navy); }

/* ===== VIDEO FEATURED ===== */
.video-featured { margin: 2.5rem 0 0; border-radius: var(--radius); overflow: hidden; background: var(--navy); }
.video-featured-player { width: 100%; display: block; max-height: 480px; background: #000; }
.video-featured-caption { padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.video-featured-caption strong { color: white; font-size: 1rem; }
.video-featured-caption span { color: rgba(255,255,255,.6); font-size: .875rem; }
.video-card { cursor: pointer; }
.video-modal-inner { overflow: visible; }

/* ===== ARTICLE FULL PAGE ===== */
.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; object-position: top; display: block; }
.article-container { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.article-meta-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.article-title { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 2rem; }
.article-body { color: var(--gray-t); line-height: 1.85; font-size: 1rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article-body h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.article-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); margin-top: 2rem; }
.article-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.article-body li { margin-bottom: .5rem; }
.article-body strong { color: var(--dark); }
.article-body em { font-style: italic; }
.news-card-img { position: relative; }
.news-card-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; background: none; border: none; cursor: pointer; padding: 0; transition: transform .2s; }
.news-card-play:hover { transform: translate(-50%,-50%) scale(1.12); }
/* Video modal */
#video-modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
#video-modal.active { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); }
.video-modal-box { position: relative; z-index: 1; width: 94vw; max-width: 1100px; background: #000; border-radius: 10px; overflow: hidden; }
.video-modal-close { position: absolute; top: .75rem; right: .75rem; z-index: 2; background: rgba(0,0,0,.6); border: none; color: white; font-size: 1.2rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-modal-frame { position: relative; padding-bottom: 56.25%; height: 0; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.article-back { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--navy); border: 1.5px solid var(--navy); border-radius: 6px; padding: .5rem 1rem; margin-bottom: 2.5rem; transition: all .2s; }
.article-back:hover { background: var(--navy); color: white; }
.article-back svg { transition: transform .2s; }
.article-back:hover svg { transform: translateX(-3px); }

/* ===== NEWS CARD LINK ===== */
a.news-card { display: block; text-decoration: none; color: inherit; }
a.news-card:hover .news-link { color: var(--gold); }

/* ===== NEWS FILTERS ===== */
.news-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .5rem; }
.news-filter-btn { font-size: .78rem; font-weight: 600; letter-spacing: .04em; padding: .4rem 1rem; border-radius: 20px; border: 1.5px solid var(--gray-b); background: white; color: var(--gray-t); cursor: pointer; transition: all .2s; }
.news-filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.news-filter-btn.active { background: var(--navy); border-color: var(--navy); color: white; }

/* ===== PRESS CARDS ===== */
.press-card { background: white; border: 1px solid var(--gray-b); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; transition: box-shadow .25s, transform .25s; }
.press-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.press-card-outlet { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.press-card-title { font-size: .975rem; font-weight: 700; color: var(--navy); line-height: 1.4; flex: 1; }
.press-card-link { font-size: .825rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: .35rem; margin-top: auto; }
.press-card-link:hover { color: var(--gold); }

/* ===== PRESS BRAND KIT ===== */
.press-brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 768px) { .press-brand-grid { grid-template-columns: 1fr; } }
.press-brand-card { background: white; border: 1px solid var(--gray-b); border-radius: var(--radius); padding: 1.75rem; }
.press-brand-card h3 { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.color-swatch-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.color-dot { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); flex-shrink: 0; }
.color-info { display: flex; flex-direction: column; }
.color-name { font-size: .8rem; font-weight: 600; color: var(--dark); }
.color-hex { font-size: .75rem; font-family: monospace; color: var(--gray-t); }
.logo-dl-row { display: flex; flex-direction: column; gap: .75rem; }
.logo-dl-item { display: flex; align-items: center; gap: .75rem; }
.logo-dl-preview { border-radius: 6px; padding: .5rem .75rem; display: flex; align-items: center; justify-content: center; min-width: 90px; }
.logo-dl-preview.dark { background: var(--navy); }
.logo-dl-preview.light { background: var(--gray); border: 1px solid var(--gray-b); }
.logo-dl-preview img { height: 22px; }
.logo-dl-name { font-size: .8rem; font-weight: 600; flex: 1; }
.logo-dl-btn { font-size: .75rem; font-weight: 700; color: var(--navy); border: 1.5px solid var(--navy); border-radius: 4px; padding: .2rem .55rem; transition: all .2s; }
.logo-dl-btn:hover { background: var(--navy); color: white; }

/* ===== SYNEXA BANNER ===== */
.synexa-banner { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 2.5rem; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .synexa-banner { grid-template-columns: 1fr; gap: 2rem; } }
.synexa-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .6rem; }
.synexa-title { font-size: 2.25rem; font-weight: 800; color: white; letter-spacing: -.03em; margin-bottom: .75rem; }
.synexa-desc { font-size: .925rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.synexa-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .synexa-pillars { grid-template-columns: 1fr; } }
.synexa-pillar { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 1.5rem; }
.synexa-pillar-icon { color: var(--gold); margin-bottom: .75rem; }
.synexa-pillar h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .5rem; }
.synexa-pillar p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ===== EXPERT CARD DARK (for navy bg sections) ===== */
.expert-card-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.expert-card-dark h3 { color: white; }
.expert-card-dark .expert-desc { color: rgba(255,255,255,.65); }
.expert-card-dark .expert-tag { color: rgba(255,255,255,.4); }

/* ===== ARTICLE SHARE BUTTONS ===== */
.article-share { display: flex; align-items: center; gap: .75rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-b); flex-wrap: wrap; }
.article-share-label { font-size: .8rem; font-weight: 600; color: var(--gray-t); text-transform: uppercase; letter-spacing: .08em; margin-right: .25rem; }
.share-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border: 1px solid var(--gray-b); border-radius: 4px; background: white; color: var(--navy); font-size: .82rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: border-color .2s, background .2s; }
.share-btn:hover { border-color: var(--navy); background: var(--gray); }
.share-btn svg { width: 15px; height: 15px; }

/* ===== RELATED ARTICLES ===== */
.related-articles { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--gray-b); }
.related-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card { text-decoration: none; color: inherit; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-b); transition: box-shadow .2s, transform .2s; display: block; }
.related-card:hover { box-shadow: 0 4px 16px rgba(6,42,63,.1); transform: translateY(-2px); }
.related-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.related-card-body { padding: .9rem 1rem; }
.related-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); display: block; margin-bottom: .4rem; }
.related-card h3 { font-size: .88rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin: 0; }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--navy); margin-top: 68px; padding: .5rem 0; }
nav.breadcrumb ol { list-style: none !important; list-style-type: none !important; padding: 0 !important; margin: 0 !important; }
nav.breadcrumb ol li { list-style: none !important; list-style-type: none !important; }
.breadcrumb-list { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.breadcrumb-list li { font-size: .78rem; color: rgba(255,255,255,.5); }
.breadcrumb-list a { color: rgba(255,255,255,.7); text-decoration: none; font-weight: 500; }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list [aria-current="page"] { color: rgba(255,255,255,.85); }
