/* FUNCIENCIAS® Design System v7.0 - BLO Style + FUNCIENCIAS Colors */
/* Based on BLO Corporate Theme + FUNCIENCIAS Brand Guidelines */

/* ===== VARIABLES ===== */
:root {
  --navy: #0C1F38;
  --navy-dark: #061120;
  --green: #37A74A;
  --green-dark: #2d8f3d;
  --gold: #C8A84B;
  --gold-dark: #8A6D2B;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-light: #f4f6f8;
  --gray: #e8ecf0;
  --text: #444444;
  --text-light: #666666;
  --border: rgba(12, 31, 56, 0.1);
  
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-light); }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }

.section--gray { background: var(--gray-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  margin-bottom: 1.5rem;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section--navy .section__subtitle { color: rgba(255,255,255,0.8); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.header__logo span { color: var(--gold); }

.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.header__link:hover::after { width: 100%; }
.header__link:hover { color: var(--gold); }

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(200, 168, 75, 0.15);
  border-left: 3px solid var(--gold);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
}

.btn:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 168, 75, 0.3);
}

.btn--secondary {
  background: var(--green);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(55, 167, 74, 0.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  min-height: 44px;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  min-height: 60px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(12, 31, 56, 0.1);
}

.card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  margin-bottom: 1.5rem;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.card__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1.5rem;
}

.card__link:hover {
  color: var(--gold-dark);
  gap: 0.75rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.service-card:hover {
  border-left-color: var(--gold);
  background: var(--gray-light);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 2rem;
}

.stat__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.section--navy .stat__label { color: rgba(255,255,255,0.7); }

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== FEATURE BOX ===== */
.feature-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-box__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.feature-box__content h4 {
  margin-bottom: 0.5rem;
}

.feature-box__content p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--navy);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__logo span { color: var(--gold); }

.footer__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ===== CTA STICKY ===== */
.cta-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 999;
  display: none;
}

@media (max-width: 767px) {
  .cta-sticky { display: block; }
}

.cta-sticky:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@media (max-width: 767px) {
  .whatsapp-btn {
    bottom: 4rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--gold);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 1.5rem 0;
}

.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===== FOCUS STATES ===== */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem;
  z-index: 9999;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .marquee__content { animation: none; }
}

/* ===== EDITORIAL HERO ===== */
.editorial-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.editorial-hero__content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.editorial-hero__rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.3em;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--white);
  opacity: 0.3;
  padding-top: 1rem;
}

.editorial-hero__main {
  flex: 1;
  max-width: 800px;
}

.editorial-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(200, 168, 75, 0.15);
  border-left: 3px solid var(--gold);
}

.editorial-hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.editorial-hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.editorial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.editorial-hero__bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 40vw;
  font-weight: 800;
  color: var(--white);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .editorial-hero__rail {
    display: none;
  }
  
  .editorial-hero__content {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== EDITORIAL SPLIT ===== */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.editorial-split__sticky {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.editorial-split__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.editorial-split__text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.editorial-split__indicator {
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.editorial-split__bar {
  height: 4px;
  background: var(--gold);
  width: 100%;
}

.editorial-split__scroll {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .editorial-split__sticky {
    position: relative;
    top: 0;
  }
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-left: 4px solid transparent;
  transition: var(--transition);
  position: relative;
}

.problem-card:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(12, 31, 56, 0.1);
}

.problem-card__number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.problem-card:hover .problem-card__number {
  opacity: 0.2;
  color: var(--gold);
}

.problem-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.problem-card__text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== FRAMEWORK SECTION ===== */
.editorial-framework__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.framework-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.framework-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.framework-card__letter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.framework-card__title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.framework-card__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.framework-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .framework-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== DIAGNOSTICO SECTION ===== */
.editorial-diagnostico__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.editorial-diagnostico__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .editorial-diagnostico__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .editorial-diagnostico__grid {
    grid-template-columns: 1fr;
  }
}

.diagnostico-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.diagnostico-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(12, 31, 56, 0.1);
}

.diagnostico-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  margin-bottom: 1.5rem;
}

.diagnostico-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.diagnostico-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.diagnostico-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.editorial-diagnostico__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== LÍNEAS SECTION ===== */
.editorial-lineas__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.linea-card {
  background: var(--off-white);
  padding: 2rem;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.linea-card:hover {
  border-bottom-color: var(--gold);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(12, 31, 56, 0.1);
  transform: translateY(-5px);
}

.linea-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.linea-card__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
}

.linea-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.linea-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.linea-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.linea-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.linea-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1.5rem;
  transition: var(--transition);
}

.linea-card:hover .linea-card__link {
  gap: 0.75rem;
}

/* ===== FINANCIACIÓN SECTION ===== */
.editorial-financiacion__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.editorial-financiacion__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .editorial-financiacion__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .editorial-financiacion__grid {
    grid-template-columns: 1fr;
  }
}

.financiacion-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  transition: var(--transition);
}

.financiacion-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.financiacion-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.financiacion-card__title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.financiacion-card__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.editorial-financiacion__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== EDITORIAL CTA ===== */
.editorial-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.editorial-cta__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.editorial-cta__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.editorial-cta__text {
  font-size: 1.25rem;
  color: var(--navy);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.editorial-cta .btn--primary {
  background: var(--navy);
  color: var(--white);
}

.editorial-cta .btn--primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 10px 30px rgba(12, 31, 56, 0.3);
}

.editorial-cta__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ===== SECTION VARIANTS ===== */
.section--white {
  background: var(--white);
}

/* ===== NORMATIVA CARDS ===== */
.normativa-card {
  background: var(--off-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--navy);
  transition: var(--transition);
}

.normativa-card:last-child {
  margin-bottom: 0;
}

.normativa-card:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(12, 31, 56, 0.1);
}

.normativa-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--white);
  background: var(--navy);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.normativa-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.normativa-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CASO CARDS ===== */
.caso-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.caso-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(12, 31, 56, 0.1);
  transform: translateY(-5px);
}

.caso-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.caso-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.caso-card__monto {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.caso-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.caso-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.caso-card__footer {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray);
}

.caso-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.caso-card__detail-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.caso-card__detail-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===== METHOD CARDS ===== */
.method-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.method-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.method-card__number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.method-card__title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.method-card__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== EDITORIAL QUOTE ===== */
.editorial-quote {
  background: var(--off-white);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--navy);
  margin: 2rem 0;
}

.editorial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

/* ===== DIMENSION CARDS ===== */
.dimension-card {
  background: var(--off-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--navy);
  transition: var(--transition);
}

.dimension-card:last-child {
  margin-bottom: 0;
}

.dimension-card:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(12, 31, 56, 0.1);
}

.dimension-card__badge {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.dimension-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.dimension-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CYCLE GRID ===== */
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .cycle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.cycle-step {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.cycle-step:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(12, 31, 56, 0.1);
}

.cycle-step--active {
  background: var(--navy);
  border-color: var(--gold);
}

.cycle-step--active:hover {
  border-color: var(--gold);
}

.cycle-step__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.625rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cycle-step__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.cycle-step--active .cycle-step__number {
  color: var(--gold);
  opacity: 0.5;
}

.cycle-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cycle-step--active .cycle-step__title {
  color: var(--white);
}

.cycle-step__text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.cycle-step--active .cycle-step__text {
  color: rgba(255,255,255,0.7);
}

/* ===== STAT HIGHLIGHT ===== */
.stat-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.stat-highlight__number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}

.stat-highlight__text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .stat-highlight {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== EQUIPO CARDS ===== */
.equipo-card {
  background: var(--off-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--green);
  transition: var(--transition);
}

.equipo-card:last-child {
  margin-bottom: 0;
}

.equipo-card:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(12, 31, 56, 0.1);
}

.equipo-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.equipo-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.equipo-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== TRANSVERSAL CARDS ===== */
.transversal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  transition: var(--transition);
}

.transversal-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.transversal-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.transversal-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
}

.transversal-card__title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.transversal-card__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== HERO QUOTE ===== */
.hero-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.hero-quote p {
  margin: 0;
}

/* ===== VALIDACION CARDS ===== */
.validacion-card {
  display: flex;
  gap: 1.5rem;
  background: var(--off-white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--green);
  transition: var(--transition);
}

.validacion-card:last-child {
  margin-bottom: 0;
}

.validacion-card:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(12, 31, 56, 0.1);
}

.validacion-card__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.validacion-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.validacion-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== ENTREGABLE CARDS ===== */
.entregable-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  position: relative;
  transition: var(--transition);
}

.entregable-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(12, 31, 56, 0.1);
  transform: translateY(-5px);
}

.entregable-card__number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.entregable-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.entregable-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== DECISION CARDS ===== */
.decision-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.decision-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(12, 31, 56, 0.1);
}

.decision-card--dark {
  background: var(--navy);
  border-color: var(--navy);
}

.decision-card--dark:hover {
  border-color: var(--gold);
}

.decision-card__badge {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.decision-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.decision-card--dark .decision-card__title {
  color: var(--white);
}

.decision-card__text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.decision-card--dark .decision-card__text {
  color: rgba(255,255,255,0.7);
}

/* ===== FORM LAYOUT ===== */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .form-layout__sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
  }
}

/* ===== FORM EDITORIAL ===== */
.form-editorial {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-editorial .form-group {
  margin-bottom: 0;
}

.form-editorial input,
.form-editorial textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--gray);
  background: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-editorial input:focus,
.form-editorial textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.2);
}

.form-editorial label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.form-checkbox a {
  color: var(--gold);
  text-decoration: underline;
}

/* ===== SIDEBAR CARDS ===== */
.sidebar-card {
  background: var(--navy);
  padding: 2rem;
  color: var(--white);
}

.sidebar-card--light {
  background: var(--off-white);
  color: var(--navy);
}

.sidebar-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.sidebar-card--light .sidebar-card__title {
  color: var(--navy);
}

.sidebar-card__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sidebar-card--light .sidebar-card__text {
  color: var(--text-light);
}

.sidebar-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.sidebar-link {
  display: block;
  color: var(--gold);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray);
  transition: var(--transition);
}

.sidebar-link:hover {
  padding-left: 0.5rem;
  color: var(--navy);
}

/* ===== CONTACT INFO CARDS ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.contact-info-card {
  background: var(--off-white);
  padding: 2rem;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-bottom-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(12, 31, 56, 0.1);
}

.contact-info-card__icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.contact-info-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-info-card__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-info-card__subtext {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== FAQ GRID ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.faq-item {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(12, 31, 56, 0.1);
}

.faq-item__question {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.faq-item__answer {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CONFIRMATION MESSAGE ===== */
.confirmation-message {
  background: var(--green);
  color: var(--white);
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.confirmation-message strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.confirmation-message p {
  margin: 0;
  opacity: 0.9;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 150px 0 80px;
  text-align: center;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.active svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p { color: var(--text-light); }
