/* ============================================================
   Fundesmo · Web institucional · Hoja de estilos compartida
   Pensada para portar a WordPress: clases semánticas, sin dependencias.
   ============================================================ */

@import url('../assets/tokens.css');

/* Local tokens that aren't in the design system */
:root {
  --header-h: 96px;
  /* Border-radius system (iteración 2 → más redondeado) */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-2xl: 44px;
  --radius-pill: 999px;
}

/* Reset ligero */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--color-bg); color: var(--color-fg); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--color-primary-light); }

/* ---------- Layout ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.section { padding: 56px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-primary-dark); color: var(--color-fg-on-dark); }
.section--deep { background: var(--color-primary-deep); color: var(--color-fg-on-dark); }
.section--primary { background: var(--color-primary); color: var(--color-fg-on-dark); }

/* ============================================================
   Section visual rhythm · diferenciación entre bloques
   ============================================================
   - Top "shoulder" ornament: thin gold line + dot
   - Subtle radial accent in corners of light sections
   - Stronger alternation between cream and white
   ============================================================ */
.section--lined { position: relative; }
.section--lined::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px; background: var(--color-accent); opacity: 0.5;
}
.section--lined::after {
  content: ""; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-bg);
}
.section--alt.section--lined::after { box-shadow: 0 0 0 4px var(--color-bg-alt); }

/* Soft corner glow for warmth on light sections */
.section--glow { position: relative; }
.section--glow::before {
  content: ""; position: absolute; top: -40px; right: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.section--glow::after {
  content: ""; position: absolute; bottom: -40px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(26, 79, 107, 0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.section--glow > * { position: relative; z-index: 1; }

/* Wave divider between contiguous light sections */
.section--wave-top { position: relative; padding-top: 96px; }
.section--wave-top::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 56px;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Typography helpers ---------- */
.eyebrow { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 20px; display: inline-block; }
.eyebrow--lg { font-size: 16px; letter-spacing: 0.2em; padding: 8px 20px; }
.eyebrow--center { display: block; text-align: center; }
.h-hero { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(40px, 5.6vw, 72px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 24px; }
.h-section { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 20px; }
.h-sub { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(22px, 1.6vw, 28px); line-height: 1.22; margin: 0 0 16px; color: var(--color-primary); }
.lead { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: 18px; line-height: 1.65; color: var(--color-fg-muted); margin: 0 0 24px; max-width: 60ch; }
.lead--on-dark { color: rgba(255, 255, 255, 0.82); }
.text-on-dark { color: rgba(255, 255, 255, 0.85); }
.muted { color: var(--color-fg-muted); }
.divider-gold { width: 60px; height: 3px; background: var(--color-accent); border: 0; margin: 0 0 28px; }
.divider-gold--center { margin: 0 auto 28px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; padding: 18px 32px; border-radius: 4px; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), color var(--dur-fast); white-space: nowrap; cursor: pointer; line-height: 1; }
.btn--primary { background: var(--color-accent); color: #fff; border: 2px solid var(--color-primary); box-shadow: 0 2px 0 rgba(0,0,0,0.04); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35); background: var(--color-accent-light); color: #fff; border-color: var(--color-primary-deep); }
.btn--ghost { background: var(--color-accent); color: #fff; border: 2px solid var(--color-primary); box-shadow: none; }
.btn--ghost:hover { background: var(--color-accent-light); color: #fff; border-color: var(--color-primary-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35); }
.btn--ghost-light { background: var(--color-accent); color: #fff; border: 2px solid var(--color-primary); box-shadow: none; }
.btn--ghost-light:hover { background: var(--color-accent-light); color: #fff; border-color: var(--color-primary-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35); }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 40px; font-size: 15px; }
.btn--sm { padding: 12px 22px; font-size: 12.5px; }
.btn .arrow { display: inline-block; transition: transform var(--dur-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; background: rgba(255, 255, 255, 0.96); backdrop-filter: saturate(180%) blur(8px); -webkit-backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid transparent; z-index: 50; transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base); }
.site-header.is-scrolled { border-bottom-color: var(--color-border); box-shadow: 0 1px 0 rgba(0,0,0,0.02); }
.site-header.is-hidden { opacity: 0; pointer-events: none; }
.site-header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; text-decoration: none; }
.brand img { display: none; }
.brand__name { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 32px; line-height: 1; letter-spacing: -0.02em; color: var(--color-primary); text-transform: none; transition: font-size var(--dur-base) var(--ease-out), color var(--dur-fast); }
.brand__tag { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 14px; line-height: 1.2; letter-spacing: 0.02em; color: var(--color-primary-light); margin-top: 4px; transition: font-size var(--dur-base) var(--ease-out); }
.site-header.is-scrolled .brand__name { font-size: 26px; }
.site-header.is-scrolled .brand__tag { font-size: 12px; }
.brand:hover .brand__name { color: var(--color-primary-light); }
.nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav__link { font-family: var(--font-display); font-size: 13px; font-weight: var(--fw-semibold); color: var(--color-fg); text-transform: uppercase; letter-spacing: 0.06em; padding: 8px 0; border-bottom: 2px solid transparent; transition: color var(--dur-fast), border-color var(--dur-fast); }
.nav__link:hover { color: var(--color-primary); }
.nav__link.is-active { color: var(--color-primary); border-bottom-color: var(--color-accent); }
.header-ctas { display: flex; gap: 10px; align-items: center; }
.header-phone { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 14px; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; }
.header-phone svg { width: 16px; height: 16px; }

/* WhatsApp button — replaces phone in header */
.btn-wa { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--color-accent); color: #fff; border: 2px solid var(--color-primary); padding: 10px 22px; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px; transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-fast); white-space: nowrap; line-height: 1; }
.btn-wa:hover { transform: translateY(-2px); background: var(--color-accent-light); border-color: var(--color-primary-deep); color: #fff; box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35); }
.btn-wa svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-wa--sm { padding: 9px 18px; font-size: 12.5px; }
.btn-wa--sm svg { width: 16px; height: 16px; }

/* Aula virtual link in header */
.aula-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 13px; letter-spacing: 0.04em; color: var(--color-primary); border: 1.5px solid rgba(26, 79, 107, 0.18); background: transparent; transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast); white-space: nowrap; }
.aula-link svg { width: 18px; height: 18px; flex: 0 0 auto; }
.aula-link:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: translateY(-1px); }
.aula-link--block { display: flex; justify-content: center; padding: 14px 18px; font-size: 14px; }

/* Inline WhatsApp link (under form button, under prices) */
.wa-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: var(--fw-regular); color: var(--color-primary); transition: color var(--dur-fast); }
.wa-link svg { width: 20px; height: 20px; color: var(--color-accent); flex: 0 0 auto; }
.wa-link:hover { color: var(--color-accent); text-decoration: underline; text-decoration-color: var(--color-accent); }
.wa-link--sm { font-size: 13px; }
.wa-link--sm svg { width: 16px; height: 16px; }
.wa-link--on-dark { color: rgba(255,255,255,0.78); font-size: 14px; }
.wa-link--on-dark:hover { color: var(--color-accent); }

.alt-divider { display: flex; align-items: center; gap: 16px; margin: 18px 0 12px; color: var(--color-fg-subtle); font-family: var(--font-secondary); font-size: 12.5px; letter-spacing: 0.06em; text-transform: lowercase; }
.alt-divider::before, .alt-divider::after { content: ""; flex: 1; height: 1px; background: var(--color-border); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }

@media (max-width: 1024px) {
  .nav, .header-ctas { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* Mobile nav drawer */
.nav-drawer { position: fixed; inset: 0 0 0 auto; width: min(360px, 90vw); background: #fff; box-shadow: -20px 0 40px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out); z-index: 80; padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; }
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a { font-family: var(--font-display); font-size: 16px; font-weight: var(--fw-semibold); color: var(--color-fg); padding: 14px 0; border-bottom: 1px solid var(--color-border); text-transform: uppercase; letter-spacing: 0.04em; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(7,34,58,0.5); opacity: 0; pointer-events: none; transition: opacity var(--dur-base); z-index: 70; }
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer__close { align-self: flex-end; background: transparent; border: 0; font-size: 24px; color: var(--color-fg-muted); padding: 0; margin-bottom: 8px; }

/* ---------- Floating actions ---------- */
.floating-beca { position: fixed; right: 0; top: 40%; background: var(--color-accent); color: #fff; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); padding: 18px 8px; border-radius: 4px 0 0 4px; z-index: 60; box-shadow: -2px 4px 12px rgba(15, 74, 74, 0.18); transition: background var(--dur-fast); }
.floating-beca:hover { background: var(--color-accent-light); color: #fff; }
.floating-wa { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); z-index: 60; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), opacity 600ms var(--ease-out); opacity: 0; transform: translateY(20px); pointer-events: none; }
.floating-wa.is-ready { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-wa:hover { transform: translateY(0) scale(1.1); box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5); }
.floating-wa svg { width: 28px; height: 28px; }
@media (max-width: 768px) {
  .floating-wa { opacity: 1; transform: translateY(0); pointer-events: auto; right: 16px; bottom: 16px; }
}
@media (max-width: 768px) {
  .floating-beca { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary-deep); color: rgba(255, 255, 255, 0.78); padding-top: 80px; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.site-footer__brand img { height: 48px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.9; }
.site-footer__brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0 0 20px; max-width: 320px; }
.site-footer__brand .social { display: flex; gap: 12px; }
.site-footer__brand .social a { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); color: var(--color-accent); transition: background var(--dur-fast); }
.site-footer__brand .social a:hover { background: rgba(201, 168, 76, 0.18); }
.site-footer h5 { font-family: var(--font-display); font-size: 13px; font-weight: var(--fw-bold); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer ul a { color: rgba(255,255,255,0.78); }
.site-footer ul a:hover { color: var(--color-accent); }

/* Footer contact column with icons */
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact li, .footer-contact a { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.78); transition: color var(--dur-fast); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-contact svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--color-accent); margin-top: 2px; }
.footer-contact span { display: flex; flex-direction: column; font-family: var(--font-body); font-size: 14px; line-height: 1.4; }
.footer-contact small { font-family: var(--font-secondary); font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-contact .hours { cursor: default; }
.footer-contact .hours:hover { color: rgba(255,255,255,0.78); }
.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 0; }
.site-footer__bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.site-footer__bar .accent-line { width: 60px; height: 2px; background: var(--color-accent); margin: 0 auto 24px; }
.site-footer__bar p { margin: 0; font-family: var(--font-secondary); font-size: 12.5px; color: rgba(255,255,255,0.5); }
.site-footer__bar .links { display: flex; gap: 24px; font-size: 12.5px; }
.site-footer__bar .links a { color: rgba(255,255,255,0.55); }
.site-footer__bar .links a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal-on-scroll animations · Apple-style cinematic feel
   ============================================================
   More dramatic: starts further away + scales more + longer
   duration so users CLEARLY perceive the scroll-driven motion.
   ============================================================ */
.reveal { opacity: 0; transform: translateY(80px) scale(0.94); filter: blur(8px); transition: opacity 1800ms cubic-bezier(0.16, 1, 0.3, 1), transform 1800ms cubic-bezier(0.16, 1, 0.3, 1), filter 1400ms cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform, filter; }
.reveal.is-in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal[data-delay="1"] { transition-delay: 180ms; }
.reveal[data-delay="2"] { transition-delay: 360ms; }
.reveal[data-delay="3"] { transition-delay: 540ms; }
.reveal[data-delay="4"] { transition-delay: 720ms; }
.reveal[data-delay="5"] { transition-delay: 900ms; }
.reveal[data-delay="6"] { transition-delay: 1080ms; }

/* Variants */
.reveal--soft { transform: translateY(40px); filter: none; transition: opacity 1500ms cubic-bezier(0.22, 1, 0.36, 1), transform 1500ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal--soft.is-in { transform: translateY(0); }
.reveal--scale { transform: scale(0.88); filter: none; transition: opacity 1800ms cubic-bezier(0.16, 1, 0.3, 1), transform 1900ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal--scale.is-in { transform: scale(1); }
.reveal--right { transform: translateX(80px) scale(0.96); filter: none; transition: opacity 1800ms cubic-bezier(0.16, 1, 0.3, 1), transform 1800ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal--right.is-in { transform: translateX(0) scale(1); }
.reveal--left { transform: translateX(-80px) scale(0.96); filter: none; transition: opacity 1800ms cubic-bezier(0.16, 1, 0.3, 1), transform 1800ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal--left.is-in { transform: translateX(0) scale(1); }

/* Words reveal — apply word-by-word stagger via JS */
.reveal-words .word { display: inline-block; opacity: 0; transform: translateY(0.8em) rotateX(-25deg); transform-origin: 50% 100%; transition: opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1); transition-delay: calc(var(--i, 0) * 140ms); }
.reveal-words.is-in .word { opacity: 1; transform: translateY(0) rotateX(0); }
/* When .reveal and .reveal-words coexist, the parent stays neutral —
   the word spans drive the reveal so the cascade is visible. */
.reveal.reveal-words { opacity: 1; transform: none; filter: none; }
.reveal.reveal-words.is-in { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-words .word { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Scroll-driven animations (native, where supported)
   ============================================================
   Modern Chromium 115+, Safari 26+. Animaciones MUY largas — el
   elemento se transforma con TODO el recorrido del scroll por
   el viewport, no solo al entrar.
   ============================================================ */
@supports (animation-timeline: view()) {
  /* Hero image: clear parallax + scale through the whole viewport */
  .hero__visual {
    animation: heroParallax linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes heroParallax {
    from { transform: translateY(-100px) scale(1.15); }
    to   { transform: translateY(140px) scale(0.95); }
  }
  /* Hero center content fades while scrolling away */
  .hero__center {
    animation: heroFadeOut linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 80%;
  }
  @keyframes heroFadeOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(-60px) scale(0.9); }
  }
  /* Intro pitch — text appears slowly + scales as it enters */
  .intro-pitch__inner {
    animation: introPitchEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes introPitchEnter {
    from { opacity: 0; transform: translateY(80px) scale(0.92); filter: blur(10px); }
    40%  { filter: blur(0); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  /* Page-hero title drift */
  .page-hero h1 {
    animation: heroDriftIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
  @keyframes heroDriftIn {
    from { opacity: 0.1; transform: translateY(80px) scale(0.92); filter: blur(8px); }
    35%  { filter: blur(0); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  /* Section heads scale and slide as they enter — wide range so it
     progresses with the scroll a long time */
  .audience__head, .includes__head, .testimonials__head, .faq__head, .video-split__grid > div:first-child {
    animation: sectionEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes sectionEnter {
    from { opacity: 0; transform: translateY(120px) scale(0.88); filter: blur(10px); }
    35%  { filter: blur(0); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  /* Course modules / cards — cinematic stagger.
     The native view() timeline applies per element, so cards in the
     same grid enter at slightly different scroll positions naturally. */
  .program__grid .module,
  .audience__grid .acard,
  .testimonials__grid .tcard,
  .faculty__grid .prof,
  .bullet-list li {
    animation: cardEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
  @keyframes cardEnter {
    from { opacity: 0; transform: translateY(140px) scale(0.86); filter: blur(8px); }
    35%  { filter: blur(0); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  /* Bullet list items slide in from the side AND scale */
  .bullet-list li {
    animation: bulletEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes bulletEnter {
    from { opacity: 0; transform: translateX(-50px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
  }
  /* Pricing card — breathes on enter */
  .pricing__card {
    animation: priceEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes priceEnter {
    from { opacity: 0; transform: translateY(100px) scale(0.84); filter: blur(8px); }
    40%  { filter: blur(0); }
    60%  { opacity: 1; transform: translateY(0) scale(1.04); filter: blur(0); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  /* Close CTA — slow zoom-in pin */
  .close-cta__inner {
    animation: closeCtaPin linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 60%;
  }
  @keyframes closeCtaPin {
    from { opacity: 0; transform: scale(0.82); filter: blur(10px); }
    40%  { filter: blur(0); }
    to   { opacity: 1; transform: scale(1); filter: blur(0); }
  }
  /* Aval seal — rotates AND scales on view */
  .aval__grid > div:first-child {
    animation: sealEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 60%;
  }
  @keyframes sealEnter {
    from { opacity: 0; transform: scale(0.5) rotate(-25deg); }
    to   { opacity: 1; transform: scale(1) rotate(0); }
  }
  /* Aval copy — slide from right while seal scales in */
  .aval__copy {
    animation: avalCopy linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 60%;
  }
  @keyframes avalCopy {
    from { opacity: 0; transform: translateX(80px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  /* Authority strip numbers zoom-in */
  .authority__item {
    animation: numEnter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes numEnter {
    from { opacity: 0; transform: scale(0.4); filter: blur(6px); }
    40%  { filter: blur(0); }
    to   { opacity: 1; transform: scale(1); filter: blur(0); }
  }
  /* Section background subtle parallax for any section with --bg */
  .section--alt {
    animation: bgParallax linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes bgParallax {
    from { background-position: 50% 0%; }
    to   { background-position: 50% 100%; }
  }
}

/* Dermotricología pillars (3 cards) */
.dermo-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px auto 0; max-width: 1080px; }
.dermo-pillar { background: #fff; border: 2px solid var(--color-primary-deep); border-radius: var(--radius-xl); padding: 32px 28px; text-align: left; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.dermo-pillar:hover { transform: translateY(-3px); border-color: var(--color-accent); box-shadow: 0 12px 32px rgba(7, 34, 58, 0.06); }
.dermo-pillar__icon { width: 56px; height: 56px; padding: 12px; border-radius: 50%; background: rgba(201, 168, 76, 0.12); color: var(--color-accent); margin-bottom: 20px; box-sizing: border-box; }
.dermo-pillar h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 22px; color: var(--color-primary-deep); margin: 0 0 12px; letter-spacing: -0.01em; }
.dermo-pillar p { font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--color-fg-muted); margin: 0; }
@media (max-width: 900px) {
  .dermo-pillars { grid-template-columns: 1fr; gap: 14px; max-width: 480px; padding: 0 24px; margin-top: 32px; }
  .dermo-pillar { padding: 24px; }
}

/* ============================================================
   COMPONENT: Hero · Versión 2 (vídeo de fondo, centrado)
   ============================================================ */
.hero { position: relative; min-height: 100vh; padding: 120px 0; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden; }
.hero__video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video-bg video, .hero__video-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 34, 58, 0.45) 0%, rgba(7, 34, 58, 0.88) 100%); }
.hero__center { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.hero__center .eyebrow { display: inline-block; color: var(--color-accent); padding: 6px 18px; border-radius: var(--radius-pill); background: rgba(201, 168, 76, 0.12); border: 1px solid rgba(201, 168, 76, 0.28); font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 32px; }
.hero__h1 { font-family: 'Roboto Condensed', 'Roboto', 'Arial Narrow', sans-serif; font-weight: 700; font-size: clamp(34px, 4.8vw, 58px); line-height: 1.08; letter-spacing: -0.01em; color: #fff; margin: 0 0 24px; }
.hero__h1-brand { font-family: var(--font-display); font-weight: var(--fw-bold); letter-spacing: -0.02em; }
.hero__h2 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--color-accent); margin: 0 auto; max-width: 760px; }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 48px 0 0; }
.hero__cta { padding: 20px 32px; font-size: 14.5px; border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 10px; }
.hero__micro { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 28px; font-family: var(--font-secondary); font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.hero__micro::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2); }
@media (prefers-reduced-motion: reduce) {
  .hero__video-bg video { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 90vh; padding: 80px 0; }
  .hero__h2 { font-size: 16px; }
  .hero__ctas { flex-direction: column; gap: 12px; margin-top: 36px; }
  .hero__ctas .btn { width: 100%; }
}

/* ============================================================
   COMPONENT: Intro section (transición Qué es Fundesmo)
   ============================================================ */
.intro-pitch { background: var(--color-bg-alt); padding: 48px 0; text-align: center; }
.intro-pitch + .intro-pitch { padding-top: 0; }
.intro-pitch + .intro-pitch .intro-pitch__inner { border-top: 1px solid rgba(201, 168, 76, 0.18); padding-top: 40px; }
.intro-pitch__inner { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.intro-pitch h2 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(36px, 4.6vw, 60px); line-height: 1.1; letter-spacing: -0.02em; color: var(--color-primary-deep); margin: 16px 0 28px; }
.intro-pitch p { font-family: var(--font-body); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--color-fg); max-width: 720px; margin: 0 auto; }
@media (max-width: 768px) {
  .intro-pitch { padding: 48px 0; }
  .intro-pitch + .intro-pitch .intro-pitch__inner { padding-top: 40px; }
}

/* ============================================================
   COMPONENT: Testimonials cards · Vídeo navy + gold play
   ============================================================ */
.testimonials__grid--cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard--video { background: transparent; box-shadow: none; border-radius: 0; cursor: pointer; transition: transform var(--dur-base) var(--ease-out); display: flex; flex-direction: column; }
.tcard--video:hover { transform: translateY(-4px); box-shadow: none; }
.tcard--video .tcard__thumb { background: var(--color-primary-deep); aspect-ratio: 16 / 11; border-radius: var(--radius-xl); position: relative; overflow: hidden; transition: background var(--dur-base); }
.tcard--video:hover .tcard__thumb { background: #0a2b48; }
.tcard--video .tcard__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; color: var(--color-accent); transition: transform var(--dur-base) var(--ease-out); }
.tcard--video .tcard__play svg { width: 100%; height: 100%; }
.tcard--video:hover .tcard__play { transform: translate(-50%, -50%) scale(1.1); }
.tcard--video .tcard__body { padding: 24px 4px 0; background: transparent; }
.tcard--video .tcard__person { border: 0; padding: 0; margin-bottom: 16px; }
.tcard--video .tcard__person strong { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 18px; color: var(--color-primary-deep); display: block; }
.tcard--video .tcard__person span { font-family: var(--font-secondary); font-size: 14px; color: var(--color-accent); display: block; margin-top: 4px; }
.tcard--video .tcard__quote { font-family: var(--font-body); font-style: normal; font-size: 16px; line-height: 1.5; color: var(--color-fg); margin: 0; }
.tcard--video .tcard__quote::before { content: ""; }
@media (max-width: 900px) {
  .testimonials__grid--cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 20px; }
}

/* ============================================================
   COMPONENT: Testimonials cards · Shorts vertical 9:16
   ============================================================ */
.testimonials__grid.testimonials__grid--shorts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; justify-content: center; max-width: 1080px; margin: 0 auto; }
.tcard--short { background: transparent; box-shadow: none; border-radius: 0; transition: transform var(--dur-base) var(--ease-out); cursor: pointer; }
.tcard--short:hover { transform: translateY(-6px); }
.tcard--short:hover { box-shadow: none; }
.tcard--short .tcard__thumb { aspect-ratio: 9 / 16; width: 100%; border-radius: var(--radius-xl); overflow: hidden; position: relative; background: #07223A; display: block; }
.tcard--short .tcard__thumb img, .tcard--short .tcard__thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.tcard--short:hover .tcard__thumb img { transform: scale(1.04); }
.tcard--short .tcard__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)); pointer-events: none; }
/* YouTube-style red play button */
.yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 48px; border-radius: 12px; background: #FF0000; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); z-index: 3; pointer-events: none; }
.tcard--short:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5); }
.yt-play svg { width: 24px; height: 24px; fill: #fff; margin-left: 2px; }
.tcard--short .tcard__body { padding: 18px 4px 0; background: transparent; color: #fff; }
.tcard--short .tcard__person { padding: 0; border: 0; margin-bottom: 8px; }
.tcard--short .tcard__person strong { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 16px; color: #fff; }
.tcard--short .tcard__person span { font-family: var(--font-secondary); font-size: 13px; color: rgba(255, 255, 255, 0.65); display: block; margin-top: 2px; }
.tcard--short .tcard__quote { font-family: var(--font-body); font-style: italic; font-size: 14px; color: rgba(255, 255, 255, 0.88); line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tcard--short .tcard__quote::before { content: ""; }
/* Bloque de testimonios sobre fondo claro (Máster/Historia): texto en paleta Fundesmo */
.testimonials--light .tcard--short .tcard__body { color: var(--color-fg); }
.testimonials--light .tcard--short .tcard__person strong { color: var(--color-primary-deep); font-size: 17px; }
.testimonials--light .tcard--short .tcard__person span { color: var(--color-fg-muted); }
.testimonials--light .tcard--short .tcard__quote { color: var(--color-fg-muted); font-style: normal; display: block; -webkit-line-clamp: unset; }
.ig-link { display: inline-flex; align-items: center; gap: 5px; color: var(--color-accent); font-weight: 600; text-decoration: none; transition: color var(--dur-base); }
.ig-link svg { width: 15px; height: 15px; flex: none; }
.ig-link:hover { color: var(--color-primary); text-decoration: underline; }
/* Cuadro de testimonio bajo el vídeo: nombre · Instagram · descripción separados */
.testimonials--light .tcard--short .tcard__body--boxed { margin-top: 14px; padding: 0; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.testimonials--light .tcard--short .tcard__body--boxed .tcard__name { display: block; font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 17px; color: var(--color-primary-deep); padding: 14px 16px 10px; }
.testimonials--light .tcard--short .tcard__body--boxed .ig-link { display: flex; padding: 0 16px 12px; border-bottom: 1px solid var(--color-border); }
.testimonials--light .tcard--short .tcard__body--boxed .tcard__quote { padding: 12px 16px 16px; font-size: 13.5px; line-height: 1.6; }
@media (max-width: 900px) {
  .testimonials__grid.testimonials__grid--shorts { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding: 8px 24px 24px; margin: 0 -24px; scroll-padding: 0 24px; max-width: none; }
  .testimonials__grid--shorts::-webkit-scrollbar { display: none; }
  .tcard--short { flex: 0 0 78%; max-width: 280px; scroll-snap-align: center; }
}

/* ============================================================
   COMPONENT: Premio Salón Look in authority strip
   ============================================================ */
.authority__trophy { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--color-accent); }
.authority__trophy svg { width: 100%; height: 100%; }

/* ============================================================
   COMPONENT: Aval — premio trophy card (under seal)
   ============================================================ */
.aval__premio { margin-top: 32px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(201, 168, 76, 0.22); border-radius: var(--radius-2xl); padding: 28px 24px; text-align: center; backdrop-filter: blur(8px); }
.aval__premio .trophy { width: 88px; height: 88px; margin: 0 auto 16px; color: var(--color-accent); display: flex; align-items: center; justify-content: center; }
.aval__premio .trophy svg { width: 100%; height: 100%; }
.aval__premio .trophy--photo { width: 180px; height: 260px; }
.aval__premio .trophy--photo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4)); }
.aval__premio .caption { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin: 8px 0 0; }
.aval__premio .subcaption { font-family: var(--font-secondary); font-size: 12px; color: rgba(255, 255, 255, 0.8); margin: 6px 0 0; }

.seal__inner--photo { padding: 0; overflow: hidden; background: transparent; border: 0; }
.seal__inner--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ============================================================
   WhatsApp QR popover (hover on any WA link/icon)
   ============================================================ */
.wa-qr-popover { position: fixed; pointer-events: none; opacity: 0; transform: translateY(8px) scale(0.96); transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1), transform 260ms cubic-bezier(0.16, 1, 0.3, 1); z-index: 9998; background: #fff; border-radius: var(--radius-lg); border-top: 3px solid #25D366; box-shadow: 0 12px 36px rgba(7, 34, 58, 0.22), 0 2px 8px rgba(0,0,0,0.06); padding: 18px 18px 16px; width: 224px; }
.wa-qr-popover.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-qr-popover::before { content: ""; position: absolute; right: 22px; bottom: -8px; width: 16px; height: 16px; background: #fff; transform: rotate(45deg); box-shadow: 4px 4px 8px rgba(7, 34, 58, 0.08); }
.wa-qr-popover.is-top::before { bottom: auto; top: -8px; box-shadow: -4px -4px 8px rgba(7, 34, 58, 0.08); }
.wa-qr__header { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; }
.wa-qr__header svg { width: 18px; height: 18px; color: #25D366; flex: 0 0 auto; }
.wa-qr__header strong { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #075E54; }
.wa-qr__code { position: relative; width: 188px; height: 188px; margin: 0 auto 12px; background: #fff; border: 2px solid #25D366; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out); }
.wa-qr__code:hover { transform: scale(1.04); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35); }
.wa-qr__code img { width: 100%; height: 100%; display: block; border-radius: 4px; }
.wa-qr__code::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 8px; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px #fff, 0 4px 10px rgba(0,0,0,0.15); }
.wa-qr__code::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; background-position: center; }
.wa-qr__scan { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13.5px; color: #075E54; text-align: center; margin: 0 0 3px; line-height: 1.35; }
.wa-qr__hint { font-family: var(--font-body); font-size: 11.5px; color: #25D366; font-weight: 600; text-align: center; margin: 0; line-height: 1.4; }
@media (max-width: 768px) { .wa-qr-popover { display: none; } }
/* ============================================================
   Floating WhatsApp — green + halo pulse (iteración 2)
   ============================================================ */
.floating-wa { background: #25D366; }
.floating-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--color-accent); opacity: 0; pointer-events: none; animation: waHalo 5s var(--ease-out) infinite; }
@keyframes waHalo {
  0%, 70% { transform: scale(1); opacity: 0; }
  75% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.floating-wa:hover { background: #25D366; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25); }

/* ============================================================
   Border-radius application (iteración 2)
   ============================================================ */
.btn { border-radius: var(--radius-md); }
.btn--sm, .btn-wa--sm { border-radius: var(--radius-sm); }
.btn-wa { border-radius: var(--radius-sm); }
.form-card { border-radius: var(--radius-lg); }
.field input, .field select, .field textarea { border-radius: var(--radius-sm); }
.acard { border-radius: var(--radius-xl); }
.include { border-radius: var(--radius-lg); }
.video-split__visual, .tcard__thumb { border-radius: var(--radius-xl); }
.tcard { border-radius: var(--radius-xl); }
.hero__badge { border-radius: var(--radius-md); }
.eyebrow:not(.intro-pitch .eyebrow):not(.hero__center .eyebrow) { /* keep base eyebrows untouched for now */ }
.faq-item.is-open { background: var(--color-bg-alt); border-radius: var(--radius-md); padding: 0 16px; }
.faq-item.is-open + .faq-item { border-top: 0; }


/* ============================================================
   COMPONENT: Includes — bullet list variant
   ============================================================ */
.includes__grid.includes__grid--bullets { display: block; max-width: 100%; margin: 0; padding: 0 clamp(24px, 5vw, 80px); }
.bullet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.bullet-list li { display: grid; grid-template-columns: 40px 1fr 280px; gap: 48px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--color-border); }
.bullet-list li:last-child { border-bottom: 0; }
.bullet-list__icon { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: rgba(201, 168, 76, 0.12); color: var(--color-accent); margin-top: 2px; box-sizing: border-box; align-self: start; }
.bullet-list li > div { min-width: 0; }
.bullet-list li strong { display: block; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 21px; color: var(--color-primary); margin: 0 0 6px; line-height: 1.25; letter-spacing: -0.01em; }
.bullet-list li span { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--color-fg-muted); display: block; }
.bullet-list li image-slot { width: 280px; height: 160px; align-self: center; justify-self: end; border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 1020px) and (min-width: 769px) {
  .bullet-list li { grid-template-columns: 36px 1fr 220px; gap: 28px; padding: 18px 0; }
  .bullet-list li image-slot { width: 220px; height: 140px; }
}
@media (max-width: 768px) {
  /* Convert to cards on mobile */
  .includes__grid--bullets { max-width: 100%; }
  .bullet-list { gap: 14px; }
  .bullet-list li { display: block; padding: 24px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.03); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
  .bullet-list li:last-child { border-bottom: 1px solid var(--color-border); }
  .bullet-list__icon { width: 36px; height: 36px; padding: 7px; margin: 0 0 14px; flex: none; }
  .bullet-list li strong { font-size: 18px; }
  .bullet-list li span { font-size: 15.5px; }
  .bullet-list li image-slot { width: 100%; height: 200px; margin-top: 16px; display: block; }
}

/* ============================================================
   COMPONENT: Authority strip (numbers)
   ============================================================ */
.authority { background: var(--color-bg-alt); padding: 32px 0; }
.authority__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: stretch; }
.authority__item { padding: 16px 24px; text-align: center; border-right: 1px solid rgba(201, 168, 76, 0.25); display: flex; flex-direction: column; align-items: center; gap: 0; }
.authority__item:last-child { border-right: 0; }
.authority__icon { width: 44px; height: 44px; padding: 8px; box-sizing: border-box; border-radius: 50%; background: rgba(201, 168, 76, 0.12); color: var(--color-accent); margin-bottom: 14px; }
.authority__icon svg { width: 100%; height: 100%; display: block; }
.authority__num { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 56px; line-height: 1; color: var(--color-primary); margin-bottom: 8px; letter-spacing: -0.03em; }
.authority__num .plus { color: var(--color-accent); font-size: 0.6em; vertical-align: top; margin-right: 2px; }
.authority__label { font-family: var(--font-body); font-size: 15px; line-height: 1.4; color: var(--color-fg-muted); max-width: 200px; }
@media (max-width: 800px) {
  .authority__grid { grid-template-columns: repeat(2, 1fr); }
  .authority__item { border-right: 0; border-bottom: 1px solid rgba(201,168,76,0.18); padding: 24px 12px; }
  .authority__item:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.18); }
  .authority__item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   COMPONENT: Video + copy split
   ============================================================ */
.video-split { background: var(--color-bg); }
.video-split__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.video-split__visual { position: relative; aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); cursor: pointer; }
.video-split__visual img { width: 100%; height: 100%; object-fit: cover; }
.video-split__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,34,58,0.1), rgba(7,34,58,0.4)); transition: background var(--dur-base); }
.video-split__visual:hover::after { background: linear-gradient(180deg, rgba(7,34,58,0), rgba(7,34,58,0.2)); }
.play-button { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 84px; height: 84px; border-radius: 50%; background: var(--color-accent); display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 10px 30px rgba(201,168,76,0.45); transition: transform var(--dur-base); }
.play-button::before { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 2px solid rgba(201,168,76,0.3); animation: pulse 2.5s var(--ease-out) infinite; }
.video-split__visual:hover .play-button { transform: translate(-50%, -50%) scale(1.06); }
.play-button svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 0; } }
@media (max-width: 900px) {
  .video-split__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   COMPONENT: Video testimonials grid
   ============================================================ */
.testimonials__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.testimonials__head h2 { color: #fff; }
.testimonials__head .lead { color: rgba(255,255,255,0.78); margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tcard { background: #fff; border-radius: 8px; overflow: hidden; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); color: var(--color-fg); display: flex; flex-direction: column; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tcard__thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, #1A4F6B, #07223A); }
.tcard__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity var(--dur-base); }
.tcard:hover .tcard__thumb img { opacity: 1; }
.tcard__thumb .play-button { width: 56px; height: 56px; box-shadow: 0 8px 18px rgba(201,168,76,0.5); }
.tcard__thumb .play-button svg { width: 18px; height: 18px; }
.tcard__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.tcard__quote { font-family: var(--font-body); font-style: italic; font-size: 15px; line-height: 1.55; color: var(--color-fg); margin: 0 0 18px; flex: 1; }
.tcard__quote::before { content: "“"; display: inline; font-family: 'Georgia', serif; font-style: normal; color: var(--color-accent); font-size: 26px; line-height: 0; margin-right: 4px; vertical-align: -2px; }
.tcard__person { padding-top: 16px; border-top: 1px solid var(--color-border); }
.tcard__person strong { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 15px; color: var(--color-fg); display: block; }
.tcard__person span { font-family: var(--font-secondary); font-size: 13px; color: var(--color-fg-muted); }
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   COMPONENT: Includes (4 blocks with custom icons)
   ============================================================ */
.includes__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.includes__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.include { display: flex; gap: 24px; padding: 32px; background: #fff; border: 1px solid var(--color-border); border-radius: 8px; transition: border-color var(--dur-base), transform var(--dur-base); }
.include:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.include__icon { flex: 0 0 64px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.include__icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.include__body h3 { font-family: var(--font-display); font-size: 22px; font-weight: var(--fw-semibold); color: var(--color-primary); margin: 0 0 10px; }
.include__body p { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--color-fg-muted); margin: 0; }
@media (max-width: 800px) {
  .includes__grid { grid-template-columns: 1fr; }
  .include { padding: 24px; }
}

/* ============================================================
   COMPONENT: Audience cards (¿Es para ti?)
   ============================================================ */
.audience__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.acard { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur-base), box-shadow var(--dur-base); display: flex; flex-direction: column; }
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.acard__photo { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary)); position: relative; overflow: hidden; }
.acard__photo img { width: 100%; height: 100%; object-fit: cover; }
.acard__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(7,34,58,0.35)); }
.acard__photo .tag { position: absolute; left: 16px; bottom: 16px; background: rgba(7,34,58,0.85); backdrop-filter: blur(8px); color: var(--color-accent); font-family: var(--font-display); font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; z-index: 2; }
.acard__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.acard__body h3 { font-family: var(--font-display); font-size: 22px; font-weight: var(--fw-semibold); color: var(--color-primary); margin: 0 0 12px; }
.acard__body p { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--color-fg-muted); margin: 0 0 16px; flex: 1; }
.acard__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--color-fg); }
.acard__list li { padding-left: 22px; position: relative; line-height: 1.5; }
.acard__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 8px; border-left: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent); transform: rotate(-45deg); }
@media (max-width: 900px) {
  .audience__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   COMPONENT: Kapyderm full-bleed band
   ============================================================ */
.kapy-band { position: relative; overflow: hidden; padding: 80px 0; color: #fff; isolation: isolate; }
.kapy-band__bg { position: absolute; inset: 0; z-index: 0; }
.kapy-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(28px) saturate(1.15); transform: scale(1.15); }
.kapy-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7, 34, 58, 0.78) 0%, rgba(26, 79, 107, 0.72) 100%); }
.kapy-band__inner { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.kapy-band__inner .eyebrow { color: var(--color-accent); }
.kapy-band__inner h2 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(32px, 4.2vw, 54px); line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin: 16px 0 24px; }
.kapy-band__inner p { font-family: var(--font-body); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; color: rgba(255, 255, 255, 0.92); max-width: 720px; margin: 0 auto; }
@media (max-width: 768px) {
  .kapy-band { padding: 72px 0; }
  .kapy-band__bg img { filter: blur(20px) saturate(1.15); }
}
/* ============================================================
   COMPONENT: Aval institucional (sello + texto)
   ============================================================ */
.aval { background: var(--color-primary-dark); color: #fff; padding: 64px 0; }
.aval__grid { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: center; }
.seal { width: 320px; height: 320px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; background:
  radial-gradient(circle at center, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.02) 60%, transparent 70%);
  margin: 0 auto;
}
.seal__ring { position: absolute; inset: 20px; border-radius: 50%; border: 2px solid var(--color-accent); }
.seal__ring--outer { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); }
.seal__inner { width: 220px; height: 220px; border-radius: 50%; background: rgba(201,168,76,0.08); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; border: 1px solid rgba(201,168,76,0.3); }
.seal__inner svg { width: 40px; height: 40px; color: var(--color-accent); margin-bottom: 12px; }
.seal__inner strong { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); display: block; margin-bottom: 4px; }
.seal__inner span { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 16px; color: #fff; line-height: 1.25; }
/* Rotating text around seal */
.seal__text { position: absolute; inset: 0; animation: rotateSeal 30s linear infinite; }
.seal__text text { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.34em; fill: var(--color-accent); text-transform: uppercase; }
@keyframes rotateSeal { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.aval__copy h2 { color: #fff; }
.aval__copy p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.7; }
.aval__copy .lead { color: rgba(255,255,255,0.82); }
@media (max-width: 900px) {
  .aval__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .aval__copy .lead { margin: 0 auto 24px; }
}

/* ============================================================
   COMPONENT: Capture form
   ============================================================ */
.capture__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.capture__copy .check-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 16px; }
.capture__copy .check-list li { display: flex; gap: 14px; align-items: flex-start; font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--color-fg); }
.capture__copy .check-list svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--color-accent); margin-top: 2px; }

.form-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); border-top: 4px solid var(--color-accent); }
.form-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: var(--fw-semibold); color: var(--color-primary); margin: 0 0 24px; }

/* Tarjeta del formulario de llamada compartido (scripts/call-form.js) */
.call-form-card { background: #fff; color: var(--color-fg); padding: 40px; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); border-top: 4px solid var(--color-accent); }
.call-form-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: var(--fw-bold); color: var(--color-primary-deep); margin: 0 0 8px; letter-spacing: -0.01em; }
.call-form-card .sub { font-family: var(--font-body); font-size: 15px; color: var(--color-fg-muted); margin: 0 0 24px; }
@media (max-width: 900px) { .call-form-card { padding: 32px 24px; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field > label { font-family: var(--font-display); font-size: 12px; font-weight: var(--fw-semibold); color: var(--color-fg); letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 15px; color: var(--color-fg); padding: 14px 16px; border: 1px solid var(--color-border-strong); border-radius: 4px; background: #fff; outline: none; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(26, 79, 107, 0.12); }
.field-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 22px; cursor: pointer; }
.checkbox input { margin-top: 3px; accent-color: var(--color-primary); flex: 0 0 auto; }
.checkbox span { font-family: var(--font-secondary); font-size: 12.5px; line-height: 1.5; color: var(--color-fg-muted); }
.form-foot { text-align: center; font-family: var(--font-secondary); font-size: 12.5px; color: var(--color-fg-muted); margin-top: 14px; }
@media (max-width: 900px) {
  .capture__grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 32px 24px; }
}

/* ============================================================
   COMPONENT: FAQ accordion
   ============================================================ */
.faq__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.faq__list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__btn { width: 100%; background: transparent; border: 0; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; font-family: var(--font-display); font-size: 18px; font-weight: var(--fw-semibold); color: var(--color-primary); }
.faq-item__btn:hover { color: var(--color-primary-light); }
.faq-item__icon { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: rgba(201,168,76,0.12); color: var(--color-accent); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base); font-weight: var(--fw-light); line-height: 1; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--color-accent); color: #fff; }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-item__answer { padding: 0 0 24px; font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: var(--color-fg); max-width: 760px; }

/* ============================================================
   COMPONENT: Closing CTA
   ============================================================ */
.close-cta { background: linear-gradient(180deg, var(--color-primary-deep), var(--color-primary-dark)); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.close-cta::before { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 60%); pointer-events: none; }
.close-cta__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.close-cta h2 { color: #fff; font-size: clamp(32px, 4vw, 52px); }
.close-cta .lead { color: rgba(255,255,255,0.78); margin: 0 auto 36px; }

/* ============================================================
   COMPONENT: Course program timeline (course pages)
   ============================================================ */
.program__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: module; }
.module { background: #fff; padding: 28px; border-radius: 8px; border: 1px solid var(--color-border); position: relative; transition: transform var(--dur-base), box-shadow var(--dur-base); }
.module:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.module::before { counter-increment: module; content: "0" counter(module); display: block; font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 48px; line-height: 1; color: var(--color-accent); opacity: 0.25; margin-bottom: 12px; letter-spacing: -0.02em; }
.module h3 { font-family: var(--font-display); font-size: 19px; font-weight: var(--fw-semibold); color: var(--color-primary); margin: 0 0 10px; line-height: 1.3; }
.module .meta { font-family: var(--font-secondary); font-size: 12.5px; color: var(--color-fg-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.module p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: var(--color-fg-muted); margin: 0; }
@media (max-width: 900px) {
  .program__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPONENT: Faculty (Profesores)
   ============================================================ */
.faculty__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prof { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur-base), box-shadow var(--dur-base); }
.prof:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prof__photo { aspect-ratio: 1/1; background: linear-gradient(135deg, #1A4F6B, #07223A); position: relative; overflow: hidden; }
.prof__photo img { width: 100%; height: 100%; object-fit: cover; }
.prof__photo .role { position: absolute; left: 12px; top: 12px; background: rgba(7,34,58,0.85); color: var(--color-accent); font-family: var(--font-display); font-size: 10px; font-weight: var(--fw-bold); letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; }
.prof__body { padding: 18px; }
.prof__body h3 { font-family: var(--font-display); font-size: 17px; font-weight: var(--fw-bold); color: var(--color-primary); margin: 0 0 3px; }
.prof__body .specialty { font-family: var(--font-display); font-size: 11px; font-weight: var(--fw-semibold); color: var(--color-accent); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 10px; }
.prof__body p { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: var(--color-fg-muted); margin: 0; }
@media (max-width: 900px) {
  .faculty__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .faculty__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}
.faculty__more { text-align: center; margin-top: 36px; }
.btn--line { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); box-shadow: none; }
.btn--line:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26, 79, 107, 0.25); }
.btn--line .arrow { transition: transform var(--dur-base); }
.btn--line[aria-expanded="true"] .arrow { transform: rotate(180deg); }
.faculty__grid--extra { max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height 0.55s ease, opacity 0.4s ease, margin-top 0.4s ease; }
.faculty__grid--extra.is-expanded { max-height: 1400px; opacity: 1; margin-top: 24px; }

/* ============================================================
   COMPONENT: Pricing card (course pages)
   ============================================================ */
.pricing { display: grid; place-items: center; }
.pricing__card { background: #fff; padding: 56px; border-top: 4px solid var(--color-accent); border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); max-width: 640px; width: 100%; text-align: center; }
.pricing__card .eyebrow { text-align: center; display: block; }
.pricing__price { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 72px; line-height: 1; color: var(--color-primary); margin: 0 0 12px; letter-spacing: -0.03em; }
.pricing__price .currency { color: var(--color-accent); }
.pricing__finance { font-family: var(--font-body); font-size: 16px; color: var(--color-fg-muted); margin: 0 0 32px; }
.pricing__list { list-style: none; padding: 0; margin: 32px 0; text-align: left; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--color-border); padding-top: 32px; }
.pricing__list li { padding-left: 30px; position: relative; font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--color-fg); }
.pricing__list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 14px; height: 10px; border-left: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent); transform: rotate(-45deg); }
.pricing__micro { font-family: var(--font-secondary); font-size: 13px; color: var(--color-fg-muted); margin: 20px 0 8px; }
.pricing__link { font-family: var(--font-display); font-size: 13px; font-weight: var(--fw-semibold); color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.06em; }
.pricing__link:hover { color: var(--color-accent); text-decoration: underline; }
@media (max-width: 600px) {
  .pricing__card { padding: 36px 24px; }
  .pricing__price { font-size: 56px; }
}

/* ============================================================
   COMPONENT: Page hero (interior pages)
   ============================================================ */
.page-hero { background: var(--color-primary-deep); color: #fff; padding: 120px 0 100px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -120px; top: -80px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 60%); pointer-events: none; }
.page-hero h1 { color: #fff; font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 20px; max-width: 880px; }
.page-hero .lead { color: rgba(255,255,255,0.82); max-width: 660px; font-size: 19px; }
.breadcrumbs { font-family: var(--font-secondary); font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; letter-spacing: 0.04em; }
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--color-accent); }

/* ============================================================
   COMPONENT: Generic content (legal pages)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 28px; font-weight: var(--fw-bold); color: var(--color-primary); margin: 48px 0 16px; }
.prose h3 { font-family: var(--font-display); font-size: 20px; font-weight: var(--fw-semibold); color: var(--color-fg); margin: 32px 0 12px; }
.prose p { font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: var(--color-fg); margin: 0 0 16px; }
.prose ul, .prose ol { font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: var(--color-fg); padding-left: 24px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--color-primary); }
