/* ════════════════════════════════════════════════════════════
   CORPOCAPITAL — Diseño Institucional Elegante
   Paleta: Azul #0A2463 / Blanco #FAFAFA / Acentos #1560BD
   Tipografía: Cormorant Garamond (display) + Libre Baskerville
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Cormorant+SC:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --azul:        #0A2463;
  --azul-mid:    #1560BD;
  --azul-light:  #2A75D4;
  --azul-pale:   #E8F0FA;
  --azul-ghost:  #F0F5FF;
  --blanco:      #FAFAFA;
  --blanco-puro: #FFFFFF;
  --gris-10:     #F2F4F8;
  --gris-20:     #E4E9F2;
  --gris-40:     #BDC8DC;
  --gris-60:     #8596B0;
  --texto:       #0A1628;
  --texto-soft:  #3D526E;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-sc:      'Cormorant SC', serif;
  --font-body:    'Libre Baskerville', 'Georgia', serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);

  scroll-behavior: smooth;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
img, video {
  max-width: 100%;
  height: auto;
}
html {
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  cursor: auto;
}

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor-dot, .cursor-ring { display: none !important; }

/* ── Container ──────────────────────────────────────────── */
.container-cc {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
html.js .reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
html.js .reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
html.js .reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
html.js .reveal-up.revealed, html.js .reveal-left.revealed, html.js .reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* ── Kicker / label ─────────────────────────────────────── */
.kicker {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azul-mid);
  margin-bottom: 12px;
  display: block;
}

/* ── Display Title ──────────────────────────────────────── */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--texto);
  letter-spacing: -0.01em;
}
.display-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--azul-mid);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 18px 2%;
  transition: padding 0.4s var(--ease-out), background 0.4s, backdrop-filter 0.4s;
}
#navbar .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar.scrolled {
  padding: 12px 2%;
  background: rgba(10, 36, 99, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(10,36,99,0.22);
}

.nav-logo-img {
  height: 80px !important;
  max-height: none !important;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.4s var(--ease-out);
}
#navbar.scrolled .nav-logo-img { height: 64px !important; }

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    z-index: auto !important;
    box-shadow: none !important;
  }
}
.nav-link {
  font-family: var(--font-sc);
  font-size: 0.90rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78) !important;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link[style] {
  color: rgba(255,255,255,0.78) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

body.qs-page .nav-link,
body.ac-page .nav-link {
  color: rgba(255,255,255,0.78) !important;
}
body.qs-page .nav-link:hover,
body.ac-page .nav-link:hover {
  color: #fff !important;
}

.btn-suite {
  font-family: var(--font-sc);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul) !important;
  background: var(--blanco-puro);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 2px;
  margin-left: 12px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.btn-suite:hover {
  background: var(--azul-pale);
  box-shadow: 0 6px 24px rgba(10,36,99,0.18);
  transform: translateY(-2px);
  color: var(--azul) !important;
  text-decoration: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%; height: 115%;
  object-fit: cover;
  transform-origin: center top;
  will-change: transform;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10,36,99,0.82) 0%,
    rgba(10,36,99,0.55) 45%,
    rgba(5,15,40,0.75) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  will-change: transform, opacity;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-sc);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0em;
  margin-bottom: 4px;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cc {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azul);
  background: var(--blanco-puro);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  transition: box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out), background 0.2s;
}
.btn-primary-cc:hover {
  box-shadow: 0 12px 36px rgba(255,255,255,0.18);
  transform: translateY(-3px);
  color: var(--azul);
  text-decoration: none;
  background: #f0f5ff;
}

.btn-ghost-cc {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: transparent;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.25s, color 0.25s, transform 0.28s var(--ease-out);
}
.btn-ghost-cc:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sc);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--azul);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 28s linear infinite;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-sc);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0 20px;
}
.ticker-dot {
  color: rgba(255,255,255,0.25);
  padding: 0 4px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION INTRO
   ═══════════════════════════════════════════════════════════ */
.section-intro {
  padding: 120px 0;
  background: var(--blanco);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.intro-left .display-title { margin-bottom: 32px; }

.link-arrow {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azul-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--azul-pale);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s, gap 0.2s;
}
.link-arrow:hover {
  border-color: var(--azul-mid);
  color: var(--azul);
  gap: 14px;
  text-decoration: none;
}
.link-arrow i { font-size: 16px; transition: transform 0.2s; }
.link-arrow:hover i { transform: translateX(4px); }

.intro-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--texto-soft);
  margin-bottom: 48px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--azul);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sc);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris-60);
}
.stat-divider {
  width: 1px; height: 44px;
  background: var(--gris-20);
}

/* ═══════════════════════════════════════════════════════════
   PILARES
   ═══════════════════════════════════════════════════════════ */
.section-pillars {
  padding: 100px 0;
  background: var(--gris-10);
}
.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
}

.pillar-card {
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.pillar-card:hover { transform: translateY(-8px); }
.pillar-card:hover::before { opacity: 1; }

.pillar-dark {
  background: var(--azul);
  color: #fff;
}
.pillar-dark::before { background: var(--azul-mid); }

.pillar-light {
  background: var(--blanco-puro);
  color: var(--texto);
  border-top: 3px solid var(--azul-pale);
}
.pillar-light::before { background: var(--azul-ghost); }

.pillar-accent {
  background: var(--azul-mid);
  color: #fff;
}
.pillar-accent::before { background: var(--azul-light); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.pillar-dark .pillar-num,
.pillar-accent .pillar-num { color: #000000; }

.pillar-icon {
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.pillar-dark .pillar-icon,
.pillar-accent .pillar-icon { color: rgba(255,255,255,0.7); }
.pillar-light .pillar-icon { color: var(--azul-mid); }

.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  line-height: 1.25;
}
.pillar-light h3 { color: var(--texto); }
.pillar-dark h3, .pillar-accent h3 { color: #fff; }

.pillar-card p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.pillar-light p { color: var(--texto-soft); }
.pillar-dark p, .pillar-accent p { color: rgba(255,255,255,0.68); }

/* ═══════════════════════════════════════════════════════════
   ALIADOS
   ═══════════════════════════════════════════════════════════ */
.allies-band {
  padding: 28px 0;
  background: var(--blanco-puro);
  border-top: 1px solid var(--gris-20);
  border-bottom: 1px solid var(--gris-20);
}
.allies-band .container-cc {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.allies-label {
  font-family: var(--font-sc);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-60);
  white-space: nowrap;
}
.allies-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
}
.ally-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sc);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--texto-soft);
}
.ally-item i { font-size: 18px; color: var(--azul-mid); }
.ally-sep { color: var(--gris-40); font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   REDES / SOCIAL
   ═══════════════════════════════════════════════════════════ */
.section-social {
  padding: 100px 0;
  background: var(--blanco);
}
.social-header {
  text-align: center;
  margin-bottom: 64px;
}
.social-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gris-60);
  margin-top: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  margin-bottom: 48px;
}

.news-card {
  background: var(--blanco-puro);
  border: 1px solid var(--gris-20);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,36,99,0.1);
  z-index: 1;
}
.news-img-wrap {
  overflow: hidden;
  height: 220px;
}
.news-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.news-card:hover .news-img-wrap img { transform: scale(1.04); }

.news-body { padding: 24px 28px; }
.news-body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--texto);
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-body p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--texto-soft);
}

.widgets-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   GALERÍA / CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.section-gallery {
  padding: 100px 0 0;
  background: var(--azul);
}
.gallery-header {
  padding-bottom: 48px;
}
.gallery-header .kicker { color: rgba(255,255,255,0.45); }
.gallery-header .display-title { color: #fff; }
.gallery-header .display-title em { color: rgba(255,255,255,0.45); }

.carousel-full {
  width: 100%;
  position: relative;
}
.carousel-full .carousel { border-radius: 0; }
.carousel-full .carousel img {
  height: 520px;
  object-fit: cover;
  filter: brightness(0.78);
}

.carousel-caption-cc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 5% 44px;
  background: linear-gradient(transparent, rgba(5,15,40,0.75));
  text-align: left;
}
.carousel-caption-cc h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}
.carousel-caption-cc p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  width: 52px; height: 52px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  margin: 0 24px;
}
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255,255,255,0.22);
}
.carousel-control-prev i,
.carousel-control-next i { font-size: 24px; color: #fff; }
.carousel-control-prev-icon,
.carousel-control-next-icon { display: none; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer-cc {
  background: linear-gradient(170deg, var(--azul) 0%, #040f28 100%);
}
.footer-top { padding: 80px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
}
.footer-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  opacity: 0.85;
}
.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; color: rgba(255,255,255,0.5); }
.fsoc-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.fsoc-link:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.fsoc-link i { font-size: 17px; }

.footer-col-title {
  font-family: var(--font-sc);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom-cc {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner p {
  font-family: var(--font-sc);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  #navbar { padding: 16px 2%; }
  #navbar .nav-inner { max-width: 100%; }
  .nav-logo-img { height: 70px !important; }
  .hero { min-height: 90vh; }
  .hero-body { padding: 0 24px; max-width: 960px; }
  .hero-title { font-size: clamp(3.6rem, 6vw, 6.5rem); }
  .hero-sub { max-width: 820px; margin-inline: auto; }
  .hero-cta-row { max-width: 860px; }
  .btn-primary-cc, .btn-ghost-cc { padding-inline: clamp(24px, 4vw, 36px); }
  .intro-grid { gap: 72px; }
  .pillars-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-header, .social-header { margin-bottom: 48px; }
  .footer-grid { gap: 40px; }
  .carousel-full .carousel img { height: 460px; }
}

@media (max-width: 992px) {
  .hero { min-height: 80vh; }
  .hero-body { padding: 0 20px; max-width: 820px; }
  .hero-title { font-size: clamp(3rem, 7vw, 5rem); }
  .hero-sub { max-width: 760px; margin-inline: auto; margin-bottom: 32px; }
  .hero-cta-row { gap: 12px; max-width: 720px; margin-inline: auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .stat-row { gap: 24px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-header, .social-header { margin-bottom: 40px; }
  .carousel-caption-cc { padding: 36px 4% 32px; }
}

@media (max-width: 768px) {
  #navbar { padding: 14px 2%; }
  #navbar .nav-inner { flex-wrap: wrap; justify-content: space-between; gap: 16px; }
  .nav-hamburger {
    display: flex;
    z-index: 910;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,0.14); }
  .nav-hamburger.open { background: rgba(255,255,255,0.16); }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 92vw);
    height: 100dvh;
    background: rgba(10,36,99,0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 84px 24px 28px;
    gap: 18px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.25s ease, visibility 0.35s ease;
    z-index: 905;
    box-shadow: -20px 0 60px rgba(0,0,0,0.32);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links {
    overscroll-behavior-x: contain;
  }
  .nav-link { width: 100%; font-size: 0.94rem; letter-spacing: 0.12em; padding: 16px 14px; margin: 0; background: rgba(255,255,255,0.04); border-radius: 8px; }
  .nav-link::after { left: 14px; right: 14px; bottom: 12px; }
  .nav-link:hover { background: rgba(255,255,255,0.1); }
  .btn-suite { width: 100%; margin-left: 0; margin-top: 8px; padding: 16px 18px; border-radius: 8px; }

  .hero { min-height: 66vh; }
  .hero-body { padding: 0 16px; max-width: 760px; }
  .hero-eyebrow { font-size: 0.62rem; gap: 10px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem); line-height: 1.05; }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-cta-row { flex-direction: column; width: 100%; max-width: 420px; margin: 0 auto; }
  .hero-cta-row a { width: 100%; }
  .hero-scroll { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar-card { padding: 32px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 18px; }
  .ticker-wrap { padding: 12px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .carousel-full .carousel img { height: 300px; }
  .carousel-caption-cc { padding: 28px 4% 24px; }
  .carousel-control-prev, .carousel-control-next { width: 44px; height: 44px; margin: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 576px) {
  body { font-size: 0.95rem; }
  #navbar { padding: 12px 2%; }
  #navbar .nav-inner { gap: 12px; }
  .nav-logo-img { height: 52px !important; }
  .nav-hamburger { width: 44px; height: 44px; }
  .nav-link { padding: 10px 14px; }
  .hero { min-height: 58vh; overflow-x: hidden; }
  .hero-body { padding: 0 14px; max-width: 100vw; overflow-x: hidden; }
  .hero-title { font-size: clamp(2rem, 12vw, 2.8rem); line-height: 1.05; }
  .hero-sub { font-size: 0.92rem; }
  .hero-cta-row { max-width: 100%; }
  .btn-primary-cc, .btn-ghost-cc { width: 100%; padding-inline: 20px; }
  .intro-grid { gap: 28px; }
  .pillars-grid { gap: 16px; }
  .pillar-card { padding: 24px 18px; }
  .allies-band .container-cc { gap: 14px; }
  .footer-col ul { gap: 12px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .carousel-caption-cc { padding: 24px 4% 20px; }
  .carousel-control-prev, .carousel-control-next { margin: 0 10px; }
}
