/* Tu Alianza Financiera — Google Ads Compliant | Responsive */

:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --navy-card: #1a2d4a;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-glow: rgba(201, 162, 39, 0.25);
  --emerald: #10b981;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --whatsapp: #25d366;
  --danger: #f87171;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --legal-h: 56px;
  --disclaimer-h: 52px;
  --top-stack: calc(var(--legal-h) + var(--disclaimer-h));
}

/* Aviso NO entidad bancaria — Google Ads */
.bank-disclaimer-bar {
  position: fixed; top: var(--legal-h); left: 0; right: 0; z-index: 1001;
  background: linear-gradient(90deg, rgba(248,113,113,0.12), rgba(201,162,39,0.08));
  border-bottom: 1px solid rgba(248,113,113,0.35);
  padding: 0.65rem 0;
}
.bank-disclaimer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.5rem 1rem; text-align: center;
}
.bank-disclaimer-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(248,113,113,0.2); border: 1px solid rgba(248,113,113,0.45);
  color: #fecaca; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 6px;
}
.bank-disclaimer-text {
  font-size: 0.78rem; color: var(--text-muted); max-width: 900px; line-height: 1.5;
}
.bank-disclaimer-text strong { color: var(--text); }
.bank-notice-section {
  background: var(--navy-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.bank-notice-box {
  background: rgba(248,113,113,0.06); border: 1px solid rgba(248,113,113,0.25);
  border-radius: var(--radius-lg); padding: 1.75rem 2rem;
}
.bank-notice-box h2 {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #fecaca; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.bank-notice-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1rem;
}
.bank-notice-item {
  padding: 1rem; background: rgba(10,22,40,0.5); border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 0.88rem; color: var(--text-muted);
}
.bank-notice-item strong { color: var(--text); display: block; margin-bottom: 0.35rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bank-notice-item.no strong { color: #fca5a5; }
.bank-notice-item.yes strong { color: var(--emerald); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Skip link — accesibilidad */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 10000;
  padding: 0.75rem 1.25rem; background: var(--gold); color: var(--navy);
  font-weight: 700; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Legal bar — Google Ads: datos visibles sin clic */
.legal-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: #060e1a; border-bottom: 1px solid var(--border);
  font-size: 0.72rem; color: var(--text-muted);
}
.legal-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.35rem 1.25rem; padding: 0.45rem 1rem; text-align: center;
}
.legal-bar strong { color: var(--gold-light); font-weight: 600; }
.legal-bar a { color: var(--gold-light); text-decoration: underline; }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy-light); border-top: 1px solid var(--border);
  padding: 1rem 1.25rem; transform: translateY(100%);
  transition: transform 0.5s ease; max-height: 45vh; overflow-y: auto;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between;
}
.cookie-content p { flex: 1; min-width: 260px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.cookie-content a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.65rem; flex-shrink: 0; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0.75rem 1.75rem; border: none; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition);
}
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid rgba(201, 162, 39, 0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-sm { min-height: 40px; padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* Header */
.header {
  position: fixed; top: var(--top-stack); left: 0; right: 0; z-index: 1000;
  padding: 0.85rem 0; transition: all var(--transition);
}
.header.scrolled {
  background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy);
}
.logo-text span:first-child { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; display: block; }
.logo-text span:last-child { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  padding: 0.55rem 0.9rem; border-radius: 8px; font-size: 0.88rem;
  font-weight: 500; color: var(--text-muted); min-height: 44px; display: flex; align-items: center;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { color: var(--gold-light); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: calc(var(--top-stack) + var(--header-h)); }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease, transform 8s ease; transform: scale(1.06);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.72) 50%, rgba(201,162,39,0.12) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 2rem 0 4rem; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3); border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(1.85rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-desc { font-size: clamp(0.95rem, 2.5vw, 1.08rem); color: var(--text-muted); margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }

/* Disclosure box — visible sin clic (Google Ads finanzas) */
.disclosure-hero {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-top: 1.5rem;
}
.disclosure-hero p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.5rem; }
.disclosure-hero p:last-child { margin-bottom: 0; }
.disclosure-hero strong { color: var(--text); }

.slider-controls {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 0.5rem;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3);
  border: none; cursor: pointer; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.slider-dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: currentColor; color: rgba(255,255,255,0.3); }
.slider-dot.active::after { color: var(--gold); transform: scale(1.2); }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; pointer-events: none;
}
.slider-arrow {
  pointer-events: all; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* Fees section — OBLIGATORIO visible Google Ads */
.fees-section {
  background: var(--navy-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.fees-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem;
}
.fee-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.fee-card h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.35rem; }
.fee-card .price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.35rem; }
.fee-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.fees-note {
  margin-top: 1.25rem; padding: 1rem 1.25rem;
  background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.25);
  border-radius: var(--radius); font-size: 0.8rem; color: var(--text-muted);
}
.fees-note strong { color: var(--danger); }

/* Trust bar */
.trust-bar { padding: 1.25rem 0; background: #060e1a; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.65rem;
}
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.65rem, 3.5vw, 2.5rem); margin-bottom: 0.85rem; }
.section-head p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 0.95rem; }

.cta-banner {
  background: linear-gradient(135deg, var(--navy-light), rgba(201,162,39,0.06));
  padding: 3.5rem 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.65rem; }
.cta-banner h2 span { color: var(--gold-light); }

.services-section { background: var(--navy-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.25); box-shadow: var(--shadow); }
.service-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.88rem; }

.program-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.program-areas { display: flex; flex-direction: column; gap: 0.85rem; }
.area-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem;
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition); min-height: 44px;
}
.area-card:hover, .area-card.active { border-color: rgba(201,162,39,0.4); transform: translateX(6px); }
.area-icon { font-size: 1.3rem; flex-shrink: 0; }
.area-card small { display: block; font-size: 0.68rem; text-transform: uppercase; color: var(--text-muted); }
.area-card strong { font-family: var(--font-display); font-size: 0.95rem; }
.program-visual { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.program-visual img { width: 100%; height: min(420px, 50vh); object-fit: cover; transition: opacity 0.3s; }
.program-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(10,22,40,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem;
}
.program-badge h4 { font-family: var(--font-display); color: var(--gold-light); font-size: 1rem; }
.program-badge p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.stat-card {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.stat-num { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }
.stat-disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }

.advisory-section { background: linear-gradient(180deg, var(--navy), var(--navy-light)); }
.advisory-box {
  max-width: 880px; margin: 0 auto; padding: 2.5rem;
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.advisory-box h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); text-align: center; }
.advisory-box h3 { color: var(--gold-light); text-align: center; font-size: 1rem; font-weight: 500; margin: 0.5rem 0 1.25rem; }
.advisory-box p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.85rem; text-align: justify; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.process-step {
  text-align: center; padding: 1.75rem 1.25rem;
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.85rem;
}
.process-step h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

.contact-section { background: var(--navy-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.contact-card, .contact-form {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.contact-card h3 { font-family: var(--font-display); margin-bottom: 1.25rem; }
.contact-item { display: flex; gap: 0.85rem; margin-bottom: 1.1rem; }
.contact-icon {
  width: 42px; height: 42px; background: rgba(201,162,39,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-item h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-item p, .contact-item a { font-size: 0.92rem; word-break: break-word; }
.contact-item a:hover { color: var(--gold-light); }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; min-height: 48px; padding: 0.75rem 1rem;
  background: var(--navy); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 16px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent { display: flex; gap: 0.65rem; margin-bottom: 1.25rem; align-items: flex-start; }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-consent label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.form-consent a { color: var(--gold-light); text-decoration: underline; }
.form-message { padding: 0.85rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.88rem; display: none; }
.form-message.success { display: block; background: rgba(16,185,129,0.12); border: 1px solid var(--emerald); color: var(--emerald); }
.form-message.error { display: block; background: rgba(248,113,113,0.12); border: 1px solid var(--danger); color: var(--danger); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: min(400px, 60vh); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.whatsapp-float {
  position: fixed; bottom: 88px; right: 20px; z-index: 998;
  width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-float:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.footer { background: #060e1a; border-top: 1px solid var(--border); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.85rem; max-width: 280px; }
.footer h4 { font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 0.65rem; margin-bottom: 0.7rem; font-size: 0.85rem; color: var(--text-muted); }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-non-bank {
  margin-top: 1rem; padding: 1rem; background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.25); border-radius: var(--radius);
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.55;
}
.footer-non-bank strong { color: #fecaca; }
.footer-legal-block {
  border-top: 1px solid var(--border); padding: 1.25rem 0 0; margin-top: 1rem;
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.25rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.85rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold-light); }

.page-hero {
  padding: calc(var(--top-stack) + var(--header-h) + 3rem) 0 3.5rem;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); }
.page-hero p { color: var(--text-muted); margin-top: 0.85rem; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.breadcrumb span { color: var(--gold); }
.content-page { padding: 3.5rem 0; }
.content-wrap { max-width: 800px; margin: 0 auto; }
.content-wrap h2 { font-family: var(--font-display); font-size: 1.35rem; margin: 2rem 0 0.85rem; }
.content-wrap h3 { font-size: 1.05rem; color: var(--gold-light); margin: 1.5rem 0 0.65rem; }
.content-wrap p, .content-wrap li { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.85rem; }
.content-wrap ul { list-style: disc; padding-left: 1.25rem; }
.content-box {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.75rem;
}
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.info-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.info-card h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.35rem; }
.info-card p { font-size: 0.9rem; color: var(--text); margin: 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.mv-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  border-left: 4px solid var(--gold);
}
.mv-card h3 { font-family: var(--font-display); margin-bottom: 0.75rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 992px) {
  .program-split, .contact-grid, .mission-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --legal-h: 72px; --disclaimer-h: 72px; --header-h: 64px; }
  .legal-bar-inner { font-size: 0.65rem; gap: 0.25rem 0.75rem; padding: 0.4rem 0.75rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(85%, 300px); height: 100vh;
    background: var(--navy-light); flex-direction: column; align-items: stretch;
    padding: calc(var(--legal-h) + 4rem) 1.5rem 2rem; gap: 0.25rem;
    transition: right var(--transition); box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .slider-arrows { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: auto; padding-bottom: 4rem; }
  .hero-actions .btn { width: 100%; }
  .cookie-content { flex-direction: column; align-items: stretch; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-buttons .btn { flex: 1; }
}

@media (max-width: 380px) {
  .fees-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
