:root {
  --navy: #071f43;
  --navy-2: #102c54;
  --navy-3: #173b68;
  --ink: #151922;
  --graphite: #272c35;
  --muted: #667085;
  --line: #dbe2ea;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --warm: #fbfaf7;
  --gold: #b88a2e;
  --gold-2: #d7b66a;
  --gold-soft: #fff6df;
  --green: #14765f;
  --green-dark: #0d5d4b;
  --danger: #9d3343;
  --shadow: 0 22px 60px rgba(7, 31, 67, 0.13);
  --shadow-strong: 0 30px 90px rgba(3, 13, 30, 0.28);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 252, 0.95)),
    repeating-linear-gradient(90deg, rgba(7, 31, 67, 0.025) 0 1px, transparent 1px 96px);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5.6vw, 3.85rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.28;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(219, 226, 234, 0.82);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(7, 31, 67, 0.055);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: clamp(168px, 29vw, 236px);
  height: auto;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding-left: 10px;
  border-left: 1px solid rgba(184, 138, 46, 0.42);
}

.brand-text {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.brand-context {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  justify-self: end;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 99px;
  background: var(--navy);
}

.site-nav {
  position: fixed;
  top: 70px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 6px;
}

.site-nav a {
  padding: 11px 10px;
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover {
  background: var(--soft);
}

.header-cta {
  display: none !important;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(180deg, #18886e, var(--green));
  box-shadow: 0 14px 30px rgba(20, 118, 95, 0.24);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-accent {
  color: #211707;
  border-color: rgba(184, 138, 46, 0.48);
  background: linear-gradient(180deg, #f1d48f, var(--gold-2));
  box-shadow: 0 14px 30px rgba(184, 138, 46, 0.22);
}

.btn-accent:hover {
  background: linear-gradient(180deg, #e7c476, #cda34c);
}

.btn-secondary-light {
  color: var(--navy);
  border-color: var(--line);
  background: #ffffff;
}

.btn-secondary-light:hover {
  background: var(--soft);
  border-color: rgba(184, 138, 46, 0.42);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 64px 0 54px;
  background:
    linear-gradient(104deg, rgba(3, 13, 30, 0.96) 0%, rgba(7, 31, 67, 0.94) 49%, rgba(19, 48, 86, 0.86) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 90px),
    linear-gradient(180deg, #071f43, #0f2d50);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(184, 138, 46, 0.16) 45% 46%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(0deg, transparent 0 72px, rgba(255, 255, 255, 0.035) 72px 73px);
  content: "";
  opacity: 0.95;
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 148px;
  background: linear-gradient(180deg, transparent, rgba(251, 250, 247, 0.96));
  content: "";
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-atmosphere span {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 182, 106, 0.46), transparent);
  transform: rotate(-13deg);
}

.hero-atmosphere span:nth-child(1) {
  top: 22%;
  right: -8%;
  width: 56%;
}

.hero-atmosphere span:nth-child(2) {
  top: 48%;
  right: 8%;
  width: 38%;
}

.hero-atmosphere span:nth-child(3) {
  bottom: 26%;
  left: -10%;
  width: 46%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.eyebrow,
.section-label {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  color: #dce6f2;
  font-size: clamp(1.02rem, 1.7vw, 1.12rem);
}

.hero-badge {
  display: inline-flex;
  margin: 6px 0 12px;
  padding: 9px 13px;
  border: 1px solid rgba(215, 182, 106, 0.42);
  border-radius: var(--radius);
  color: #fff8e4;
  background: rgba(184, 138, 46, 0.18);
  font-weight: 900;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-proof span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #e8eef7;
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.microcopy,
.message-suggestion {
  margin: 16px 0 0;
  color: #dce6f2;
  font-size: 0.94rem;
}

.course-visual {
  align-self: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 16px;
}

.visual-header img {
  width: 50px;
  height: 50px;
}

.visual-header span {
  display: block;
  color: #b9c7d8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-header strong {
  color: #ffffff;
}

.mockup-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
}

.mockup-topbar {
  display: flex;
  gap: 7px;
  padding: 12px;
  border-bottom: 1px solid rgba(7, 31, 67, 0.08);
  background: linear-gradient(180deg, #fbfaf7, #eef3f8);
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a9b4c2;
}

.mockup-body {
  display: grid;
  grid-template-columns: 0.78fr 1.55fr;
  min-height: 320px;
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px 16px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 31, 67, 0.96), rgba(16, 44, 84, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.05) 34px 35px);
}

.mockup-sidebar strong {
  color: #fff8e4;
}

.mockup-sidebar span {
  padding: 8px 9px;
  border-radius: var(--radius);
  color: #d9e4f2;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.mockup-content {
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f6f8fb),
    repeating-linear-gradient(90deg, rgba(7, 31, 67, 0.035) 0 1px, transparent 1px 80px);
}

.mockup-kicker {
  width: max-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: var(--radius);
  color: var(--green-dark);
  background: #dff4ee;
  font-size: 0.78rem;
  font-weight: 800;
}

.mockup-content h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.mockup-subtitle {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.module-strip span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(7, 31, 67, 0.08);
  border-radius: var(--radius);
  color: var(--navy);
  background: #eaf0f7;
  font-weight: 800;
}

.mockup-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #ffffff;
}

.mockup-card p {
  margin-bottom: 4px;
  font-size: 0.86rem;
}

.mockup-card strong {
  color: var(--navy);
}

.mockup-progress {
  overflow: hidden;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--line);
}

.mockup-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.visual-note {
  margin: 12px 4px 0;
  color: #dce6f0;
  font-size: 0.9rem;
}

.trust-bar {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
  margin-top: -52px;
  background: transparent;
}

.trust-grid {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(219, 226, 234, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.trust-grid article {
  padding: 16px;
  border-left: 3px solid rgba(184, 138, 46, 0.58);
  background: #ffffff;
}

.trust-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--navy);
  line-height: 1.25;
}

.section {
  padding: 76px 0;
}

.problem-section,
.audience-section,
.mode-section,
.faq-section {
  background: var(--soft);
}

.promise-section,
.modules-section,
.demo-route-section,
.authority-section {
  background: #ffffff;
}

.learning-section,
.certificate-section {
  background: var(--warm);
}

.two-column,
.authority-grid,
.certificate-grid,
.pricing-grid {
  display: grid;
  gap: 30px;
}

.rich-copy p {
  font-size: 1.06rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 660px;
}

.promise-grid,
.audience-grid,
.learning-grid,
.certificate-cards {
  display: grid;
  gap: 16px;
}

.feature-card,
.audience-card,
.profile-card,
.note-card,
.certificate-cards article,
.price-card,
.accordion-item,
.learning-grid article,
.hero-panel,
.panel-card,
.role-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-card,
.audience-card,
.profile-card,
.note-card,
.certificate-cards article,
.price-card {
  padding: 24px;
}

.feature-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
}

.feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.card-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.audience-card.positive {
  border-top: 4px solid var(--green);
}

.audience-card.caution {
  border-top: 4px solid var(--gold);
}

.learning-grid {
  grid-template-columns: 1fr;
}

.learning-grid article {
  padding: 18px;
  color: var(--navy);
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7, 31, 67, 0.055);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(184, 138, 46, 0.42);
  outline-offset: 3px;
}

.accordion-icon {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--gold);
  font-size: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::before {
  font-size: 1rem;
  content: "-";
}

.accordion-panel {
  padding: 0 20px 20px;
}

.accordion-panel p {
  margin-bottom: 0;
}

.flow {
  display: grid;
  gap: 12px;
}

.flow article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.flow article span,
.demo-step span,
.flow-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.flow strong,
.demo-step strong {
  color: var(--navy);
}

.demo-route-grid {
  display: grid;
  gap: 12px;
}

.demo-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.demo-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.section-note {
  margin: 24px 0 0;
  padding: 16px;
  border: 1px solid rgba(184, 138, 46, 0.26);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #ffffff;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.profile-avatar {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.muted {
  color: var(--muted);
  font-size: 0.94rem;
}

.small-note {
  margin: 10px 0 0;
  font-size: 0.88rem;
}

.note-card {
  background: var(--gold-soft);
}

.warning-card {
  border-color: rgba(184, 138, 46, 0.45) !important;
  background: #fffaf0 !important;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 13, 30, 0.96), rgba(7, 31, 67, 0.95)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 88px);
}

.pricing-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 58%, rgba(184, 138, 46, 0.14) 58% 59%, transparent 59%);
  content: "";
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-section h2,
.pricing-section .section-label {
  color: #ffffff;
}

.pricing-section p {
  color: #d7e2ef;
}

.price-card {
  box-shadow: var(--shadow-strong);
}

.price-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.price-header span {
  color: var(--muted);
  font-weight: 800;
}

.price-header strong {
  color: var(--navy);
  font-size: clamp(2.4rem, 10vw, 4.6rem);
  line-height: 0.9;
}

.price-card ul {
  margin-bottom: 22px;
  color: var(--ink);
}

.price-card .microcopy {
  color: var(--muted);
  text-align: center;
}

.price-card .btn + .btn {
  margin-top: 10px;
}

.final-cta {
  padding: 84px 0;
  background:
    linear-gradient(135deg, rgba(251, 250, 247, 0.98), rgba(238, 242, 247, 0.98)),
    repeating-linear-gradient(90deg, rgba(7, 31, 67, 0.035) 0 1px, transparent 1px 90px);
}

.final-cta-box {
  max-width: 900px;
  text-align: center;
}

.final-cta h2 {
  color: var(--navy);
}

.final-cta p {
  color: var(--muted);
}

.final-cta .btn {
  margin-top: 8px;
}

.site-footer {
  padding: 30px 0;
  background: #06162e;
}

.footer-grid {
  display: grid;
  gap: 14px;
  color: #ffffff;
}

.footer-grid p {
  margin-bottom: 0;
  color: #b9c7d8;
}

.footer-grid a {
  color: #e1c06f;
  font-weight: 800;
}

/* Portal demo por roles */
.portal-page {
  background:
    linear-gradient(180deg, #f7f9fc, #eef3f8),
    repeating-linear-gradient(90deg, rgba(7, 31, 67, 0.03) 0 1px, transparent 1px 90px);
}

.page-hero,
.dashboard-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  background:
    linear-gradient(110deg, rgba(3, 13, 30, 0.96), rgba(7, 31, 67, 0.94), rgba(18, 55, 94, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 88px);
}

.page-hero::before,
.dashboard-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 60%, rgba(184, 138, 46, 0.16) 60% 61%, transparent 61%);
  content: "";
}

.page-hero .container,
.dashboard-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.dashboard-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
}

.page-hero.centered {
  text-align: center;
}

.narrow {
  max-width: 820px;
}

.page-hero-grid,
.dashboard-title-row,
.form-layout,
.dashboard-layout {
  display: grid;
  gap: 24px;
}

.hero-panel {
  align-self: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-panel p {
  margin: 12px 0 0;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
}

.badge-success {
  color: #0f5a47;
  border-color: rgba(20, 118, 95, 0.28);
  background: #dff4ee;
}

.badge-warning {
  color: #6f4a04;
  border-color: rgba(184, 138, 46, 0.3);
  background: var(--gold-soft);
}

.badge-info {
  color: var(--navy);
  border-color: rgba(23, 56, 92, 0.22);
  background: #e8eff8;
}

.badge-danger {
  color: var(--danger);
  border-color: rgba(157, 51, 67, 0.24);
  background: #fde8eb;
}

.demo-form,
.panel-card,
.role-card,
.stat-card {
  padding: 22px;
  box-shadow: 0 18px 48px rgba(7, 31, 67, 0.08);
}

.demo-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--navy);
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(184, 138, 46, 0.75);
  outline: 3px solid rgba(184, 138, 46, 0.2);
}

.notice {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(184, 138, 46, 0.32);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffaf0;
}

.notice strong {
  color: var(--navy);
}

.notice-spaced {
  margin-top: 24px;
}

.role-grid,
.stats-grid,
.dashboard-grid,
.portal-card-grid {
  display: grid;
  gap: 16px;
}

.role-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
}

.role-card h2,
.panel-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.role-card p {
  margin-bottom: 8px;
}

.role-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.dashboard-section {
  padding-top: 34px;
}

.stats-grid {
  margin-bottom: 18px;
}

.stat-card {
  min-height: 128px;
}

.stat-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.2rem, 4vw, 1.95rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.panel-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-card-header h2,
.panel-card-header h3 {
  margin-bottom: 0;
}

.course-row {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.course-row h3 {
  margin-bottom: 4px;
}

.status-line {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}

.clean-list {
  padding-left: 18px;
}

.module-pills,
.status-stack,
.dashboard-actions,
.aula-actions,
.url-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-pills {
  margin-top: 16px;
}

.module-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(7, 31, 67, 0.08);
  border-radius: var(--radius);
  color: var(--navy);
  background: #e8eff8;
  font-weight: 800;
}

.dashboard-actions,
.aula-actions {
  margin-top: 22px;
}

.mvp-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.mvp-list li {
  margin-top: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: #e8eff8;
  font-weight: 800;
}

.aula-card {
  margin-bottom: 18px;
}

.url-inline {
  display: inline-block;
  color: var(--navy);
  overflow-wrap: anywhere;
}

.url-card {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.url-actions {
  margin-top: 14px;
}

.aula-support-grid {
  margin-top: 18px;
}

.alert-card {
  border-color: rgba(184, 138, 46, 0.4);
  background: #fffaf0;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-row {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.summary-row dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.summary-row dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.empty-state {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.table-wrap {
  overflow-x: auto;
}

.simple-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.simple-table th,
.simple-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.simple-table th {
  color: var(--navy);
  background: var(--soft);
  font-size: 0.86rem;
}

.simple-table td {
  color: var(--ink);
}

.step-list {
  margin: 0;
  padding-left: 20px;
}

/* Landing pública */
.public-landing {
  color: var(--graphite);
  background: #ffffff;
}

.public-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(7, 31, 67, 0.06);
}

.public-header .site-nav a {
  color: var(--graphite);
}

.public-header .site-nav a:hover {
  color: var(--navy);
  background: #f2f5f8;
}

.institutional-intro {
  padding: 20px 0;
  border-bottom: 1px solid rgba(219, 226, 234, 0.9);
  background: #fbfaf7;
}

.institutional-intro p {
  max-width: 980px;
  margin: 0;
  color: var(--graphite);
  font-size: 1rem;
}

.institutional-intro strong {
  color: var(--navy);
}

.public-landing .hero {
  min-height: auto;
  padding: 56px 0 62px;
  background:
    linear-gradient(135deg, rgba(5, 19, 41, 0.98), rgba(7, 31, 67, 0.96) 56%, rgba(18, 45, 79, 0.94)),
    linear-gradient(180deg, #071f43, #102c54);
}

.public-landing .hero::before,
.public-landing .hero::after {
  display: none;
}

.public-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.public-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 9vw, 4.4rem);
  line-height: 1.02;
}

.public-hero .hero-lead {
  max-width: 760px;
  margin-bottom: 26px;
  color: #e3ebf5;
  font-size: clamp(1.04rem, 2.4vw, 1.22rem);
}

.hero-context {
  max-width: 760px;
  margin: -8px 0 20px;
  color: #d7e2ef;
  font-size: 1rem;
  line-height: 1.7;
}

.urgency-note {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 10px 13px;
  border: 1px solid rgba(215, 182, 106, 0.42);
  border-radius: var(--radius);
  color: #fff7df;
  background: rgba(215, 182, 106, 0.1);
  font-weight: 800;
  line-height: 1.35;
}

.urgency-note strong {
  margin-left: 4px;
  color: #ffffff;
}

.public-landing .hero-actions {
  margin-bottom: 24px;
}

.quick-facts {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.quick-facts article {
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.quick-facts span {
  display: block;
  margin-bottom: 4px;
  color: #d7b66a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts strong {
  display: block;
  color: #ffffff;
  line-height: 1.32;
}

.faculty-feature {
  align-self: start;
  padding: 26px;
  border: 1px solid rgba(215, 182, 106, 0.42);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(3, 13, 30, 0.2);
}

.faculty-feature .section-label {
  color: var(--gold);
}

.faculty-feature h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
}

.faculty-seal {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 10px;
  border: 1px solid rgba(184, 138, 46, 0.35);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 900;
}

.faculty-metrics {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faculty-metrics span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fbfaf7;
  font-weight: 900;
  line-height: 1.35;
}

.authority-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  margin-top: 18px;
  list-style: none;
}

.authority-list li {
  margin-top: 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--graphite);
  font-weight: 700;
}

.public-landing .trust-bar {
  padding: 22px 0;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.public-landing .trust-grid {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.public-landing .trust-grid article {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.public-landing .section {
  padding: 72px 0;
}

.public-landing .section-heading p:not(.section-label) {
  font-size: 1.02rem;
}

.why-course-section {
  background: #ffffff;
}

.why-course-grid {
  display: grid;
  gap: 22px;
}

.why-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.why-card p {
  margin: 0;
  color: var(--graphite);
  font-size: 1.08rem;
  line-height: 1.7;
}

.public-learning-grid article {
  min-height: 112px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: #ffffff;
}

.class-program {
  display: grid;
  gap: 14px;
}

.class-program article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.class-program span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.class-program h3 {
  margin-bottom: 0;
  color: var(--graphite);
}

.modality-grid {
  display: grid;
  gap: 12px;
}

.modality-grid article {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.modality-grid strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
}

.modality-grid span {
  color: var(--graphite);
  font-weight: 700;
}

.recording-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--graphite);
  background: #ffffff;
  font-weight: 800;
  line-height: 1.55;
}

.faculty-section-grid {
  display: grid;
  gap: 26px;
}

.faculty-portrait {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(184, 138, 46, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #071f43, #122d4f),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.faculty-portrait span {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(215, 182, 106, 0.58);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  font-weight: 900;
}

.faculty-copy {
  align-self: center;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.credential-grid span {
  padding: 9px 11px;
  border: 1px solid rgba(184, 138, 46, 0.28);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 900;
  line-height: 1.25;
}

.faculty-copy p:last-child {
  font-size: 1.08rem;
}

.public-landing .pricing-section {
  background:
    linear-gradient(135deg, #071f43, #102c54),
    linear-gradient(180deg, #071f43, #102c54);
}

.public-landing .pricing-section::after {
  display: none;
}

.pricing-heading {
  color: #ffffff;
}

.price-grid {
  display: grid;
  gap: 16px;
}

.public-landing .price-card {
  position: relative;
  max-width: none;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(3, 13, 30, 0.16);
}

.public-landing .price-header {
  display: grid;
  align-items: start;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.public-landing .price-header strong {
  font-size: clamp(2.2rem, 12vw, 3.8rem);
  line-height: 0.95;
}

.price-badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #211707;
  background: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.featured-price {
  border-color: rgba(215, 182, 106, 0.82);
}

.payment-flow-section {
  background: var(--warm);
}

.payment-flow {
  display: grid;
  gap: 12px;
}

.payment-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.payment-flow span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.payment-flow strong {
  color: var(--graphite);
}

.public-landing .final-cta {
  background: #fbfaf7;
}

.final-price-note {
  color: var(--navy) !important;
  font-weight: 900;
}

.public-footer .footer-grid {
  align-items: start;
}

@media (min-width: 620px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .form-grid,
  .stats-grid,
  .portal-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-wide {
    grid-column: 1 / -1;
  }

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

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

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

  .mvp-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-facts,
  .price-grid,
  .payment-flow {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 12px 28px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-self: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .hero {
    min-height: 660px;
    padding: 42px 0 52px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.78fr);
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-hero,
  .dashboard-hero {
    padding: 84px 0 64px;
  }

  .page-hero-grid,
  .dashboard-title-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    align-items: center;
  }

  .form-layout,
  .dashboard-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }

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

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

  .admin-stats {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .panel-card-wide {
    grid-column: span 2;
  }

  .admin-grid .panel-card-wide {
    grid-column: span 2;
  }

  .course-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .portal-card-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .two-column,
  .authority-grid,
  .certificate-grid,
  .pricing-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .promise-grid,
  .certificate-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .flow {
    grid-template-columns: repeat(7, 1fr);
  }

  .demo-route-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .demo-step {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .flow article {
    min-height: 126px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .flow article:not(:last-child)::after {
    position: absolute;
    top: 31px;
    right: -9px;
    width: 18px;
    height: 2px;
    background: var(--gold);
    content: "";
  }

  .profile-card {
    grid-column: 2;
  }

  .note-card {
    grid-column: 2;
  }

  .price-card {
    max-width: 520px;
    justify-self: end;
  }

  .public-landing .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .public-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    align-items: center;
  }

  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-landing .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .why-course-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: center;
  }

  .public-learning-grid,
  .class-program {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .faculty-section-grid {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .payment-flow article {
    align-content: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 154px;
  }

  .dashboard-header .brand-logo {
    width: 132px;
  }

  .brand-copy {
    max-width: 120px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 58px;
  }

  .course-visual {
    display: none;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-sidebar strong {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Landing pública editorial */
.public-landing {
  --landing-bg: #f6f8fb;
  --landing-panel: #ffffff;
  --landing-cream: #fbfaf7;
  --landing-line: rgba(7, 31, 67, 0.12);
  --landing-shadow: 0 22px 56px rgba(7, 31, 67, 0.1);
  --landing-shadow-soft: 0 14px 34px rgba(7, 31, 67, 0.07);
  color: var(--graphite);
  background: var(--landing-bg);
}

.public-landing p {
  color: #5d6673;
}

.public-landing h1,
.public-landing h2,
.public-landing h3 {
  letter-spacing: 0;
}

.top-urgency {
  border-bottom: 1px solid rgba(215, 182, 106, 0.24);
  color: #fff4d4;
  background: #06162e;
}

.top-urgency-inner {
  display: grid;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.top-urgency strong {
  color: #ffffff;
}

.top-urgency a {
  width: max-content;
  color: #e1c06f;
  font-weight: 900;
}

.public-header {
  border-bottom: 1px solid rgba(7, 31, 67, 0.1);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(7, 31, 67, 0.045);
}

.public-landing .site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 16px;
  left: 16px;
}

.public-header .site-nav a {
  color: var(--graphite);
}

.public-header .site-nav a:hover {
  color: var(--navy);
  background: #eef2f7;
}

.public-landing .btn {
  border-radius: 7px;
}

.public-landing .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.institutional-intro {
  padding: 28px 0;
  border-bottom: 0;
  background: #ffffff;
}

.institutional-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(184, 138, 46, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--landing-cream);
}

.institutional-panel p {
  max-width: 980px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.institutional-panel .section-label {
  color: var(--gold);
  font-size: 0.75rem;
}

.institutional-panel strong {
  color: var(--navy);
}

.public-landing .hero {
  overflow: hidden;
  padding: 58px 0 70px;
  background:
    linear-gradient(140deg, rgba(3, 13, 30, 0.98), rgba(7, 31, 67, 0.97) 52%, rgba(16, 44, 84, 0.94)),
    linear-gradient(180deg, #071f43, #102c54);
}

.public-landing .hero::before,
.public-landing .hero::after {
  display: none;
}

.public-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.public-hero .eyebrow {
  color: #e1c06f;
}

.public-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.55rem, 11vw, 5rem);
  line-height: 0.98;
}

.public-hero .hero-lead {
  max-width: 790px;
  margin-bottom: 18px;
  color: #eaf0f7;
  font-size: clamp(1.08rem, 2.6vw, 1.32rem);
  line-height: 1.65;
}

.hero-context {
  max-width: 760px;
  margin: 0 0 20px;
  color: #cdd8e6;
  font-size: 1.02rem;
  line-height: 1.72;
}

.urgency-note {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 11px 14px;
  border: 1px solid rgba(215, 182, 106, 0.46);
  border-radius: var(--radius);
  color: #fff2cc;
  background: rgba(215, 182, 106, 0.11);
  font-weight: 900;
  line-height: 1.35;
}

.urgency-note strong {
  color: #ffffff;
}

.public-landing .hero-actions {
  gap: 12px;
  margin-bottom: 10px;
}

.hero-microcopy {
  margin: 0 0 24px;
  color: #bcc9d9;
  font-size: 0.94rem;
}

.quick-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.quick-facts article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
}

.quick-facts span {
  display: block;
  margin-bottom: 4px;
  color: #d7b66a;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts strong {
  display: block;
  color: #ffffff;
  line-height: 1.3;
}

.faculty-feature {
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(215, 182, 106, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
  box-shadow: 0 28px 72px rgba(3, 13, 30, 0.2);
}

.faculty-photo {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(184, 138, 46, 0.32);
  border-radius: 50%;
  background:
    linear-gradient(135deg, #071f43, #173b68);
  background-position: center;
  background-size: cover;
}

.faculty-photo.has-photo {
  background-image:
    linear-gradient(180deg, rgba(7, 31, 67, 0.08), rgba(7, 31, 67, 0.16)),
    url("assets/brand/dr-juan-jose-pino.jpg");
}

.faculty-photo.has-photo span {
  display: none;
}

.faculty-photo span,
.faculty-portrait span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(215, 182, 106, 0.52);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.8rem;
  font-weight: 900;
}

.faculty-feature .section-label {
  color: var(--gold);
}

.faculty-feature h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.9rem, 7vw, 2.85rem);
}

.faculty-seal {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(184, 138, 46, 0.34);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 900;
}

.faculty-metrics {
  display: grid;
  gap: 10px;
}

.faculty-metrics span {
  padding: 12px;
  border: 1px solid rgba(7, 31, 67, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  background: #ffffff;
  font-weight: 900;
  line-height: 1.35;
}

.public-landing .trust-bar {
  padding: 0;
  margin-top: 0;
  border-bottom: 1px solid var(--landing-line);
  background: #ffffff;
}

.public-landing .trust-grid {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.public-landing .trust-grid article {
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--landing-line);
  background: transparent;
}

.public-landing .trust-grid span {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.public-landing .trust-grid strong {
  display: block;
  max-width: 240px;
  color: var(--navy);
  font-size: 1rem;
}

.public-landing .section {
  padding: 78px 0;
}

.public-landing .section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.public-landing .section-heading p:not(.section-label) {
  max-width: 760px;
  color: #5d6673;
  font-size: 1.06rem;
}

.public-landing .section-label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.public-landing h2 {
  font-size: clamp(1.85rem, 4.6vw, 3rem);
}

.split-section,
.mode-layout,
.faculty-section-grid,
.faq-layout {
  display: grid;
  gap: 30px;
}

.problem-section,
.learning-section,
.payment-flow-section {
  background: var(--landing-cream);
}

.modules-section,
.why-course-section,
.faq-section {
  background: #ffffff;
}

.editorial-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--landing-line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #ffffff;
}

.editorial-copy p {
  margin: 0;
  color: var(--graphite);
  font-size: 1.08rem;
  line-height: 1.72;
}

.why-grid {
  display: grid;
  gap: 14px;
}

.why-grid article,
.public-learning-grid article,
.class-program article,
.modality-grid article,
.payment-flow article,
.public-landing .price-card {
  border: 1px solid var(--landing-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--landing-shadow-soft);
}

.why-grid article {
  padding: 24px;
}

.why-grid span,
.class-program span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-grid h3,
.public-learning-grid h3,
.class-program h3 {
  color: var(--navy);
}

.why-grid p,
.public-learning-grid p,
.class-program li {
  color: #5d6673;
}

.public-learning-grid {
  display: grid;
  gap: 16px;
}

.public-learning-grid article {
  min-height: auto;
  padding: 26px;
  border-left: 4px solid var(--gold);
}

.public-learning-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.public-learning-grid p {
  margin: 0;
  font-weight: 500;
}

.class-program {
  display: grid;
  gap: 18px;
}

.class-program article {
  padding: 26px;
}

.class-program h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.class-program ul {
  padding-left: 18px;
}

.class-program li + li {
  margin-top: 8px;
}

.mode-copy {
  align-self: center;
}

.mode-copy p:not(.section-label) {
  font-size: 1.08rem;
}

.recording-note {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(184, 138, 46, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy) !important;
  background: #ffffff;
  font-weight: 900;
  line-height: 1.55;
}

.modality-grid {
  display: grid;
  gap: 12px;
}

.modality-grid article {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.modality-grid strong {
  color: var(--navy);
  font-size: 1.36rem;
  line-height: 1;
}

.modality-grid span {
  color: var(--graphite);
  font-weight: 800;
}

.authority-section {
  background:
    linear-gradient(145deg, #071f43, #102c54);
}

.authority-section h2,
.authority-section .section-label {
  color: #ffffff;
}

.authority-section p {
  color: #dbe6f2;
}

.faculty-section-grid {
  align-items: center;
}

.faculty-portrait {
  display: grid;
  min-height: 320px;
  place-items: center;
  border: 1px solid rgba(215, 182, 106, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.faculty-portrait span {
  width: 124px;
  height: 124px;
  font-size: 2.15rem;
}

.faculty-lead {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 1.12rem;
  line-height: 1.72;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.credential-grid span {
  padding: 9px 11px;
  border: 1px solid rgba(215, 182, 106, 0.34);
  border-radius: var(--radius);
  color: #fff7df;
  background: rgba(215, 182, 106, 0.1);
  font-weight: 900;
  line-height: 1.3;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #06162e, #071f43 54%, #102c54);
}

.pricing-section::after {
  display: none;
}

.pricing-heading h2,
.pricing-heading .section-label {
  color: #ffffff;
}

.pricing-heading p {
  color: #dbe6f2 !important;
}

.price-grid {
  display: grid;
  gap: 16px;
}

.public-landing .price-card {
  max-width: none;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(3, 13, 30, 0.2);
}

.public-landing .featured-price {
  border-color: rgba(215, 182, 106, 0.78);
  box-shadow: 0 24px 62px rgba(3, 13, 30, 0.26);
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #231804;
  background: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.muted-badge {
  color: var(--navy);
  background: #eef2f7;
}

.public-landing .price-header {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.public-landing .price-header span {
  color: var(--muted);
  font-weight: 900;
}

.public-landing .price-header strong {
  color: var(--navy);
  font-size: clamp(2.5rem, 12vw, 4.4rem);
  line-height: 0.95;
}

.public-landing .price-card p {
  margin: 0;
}

.pricing-decision {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(215, 182, 106, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-decision p {
  margin: 0;
  color: #dbe6f2;
}

.payment-flow {
  display: grid;
  gap: 12px;
}

.payment-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.payment-flow span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.payment-flow strong {
  color: var(--graphite);
  line-height: 1.35;
}

.faq-layout {
  align-items: start;
}

.public-landing .accordion {
  gap: 12px;
}

.public-landing .accordion-item {
  border: 1px solid var(--landing-line);
  border-radius: var(--radius);
  box-shadow: var(--landing-shadow-soft);
}

.public-landing .accordion-trigger {
  min-height: 64px;
  color: var(--navy);
  background: #ffffff;
}

.public-landing .accordion-panel p {
  color: #5d6673;
}

.public-landing .final-cta {
  padding: 84px 0;
  background: #ffffff;
}

.public-landing .final-cta-box {
  display: grid;
  justify-items: center;
  max-width: 930px;
  padding: 34px 22px;
  border: 1px solid rgba(184, 138, 46, 0.24);
  border-radius: var(--radius);
  background: var(--landing-cream);
  text-align: center;
}

.public-landing .final-cta h2 {
  color: var(--navy);
}

.public-landing .final-cta p {
  max-width: 720px;
}

.final-price-note {
  color: var(--navy) !important;
  font-weight: 900;
}

.public-footer {
  padding: 34px 0;
  background: #06162e;
}

.public-footer .footer-grid {
  align-items: start;
  color: #ffffff;
}

.public-footer strong {
  color: #ffffff;
}

.public-footer p {
  color: #b9c7d8;
}

.public-footer a {
  color: #e1c06f;
  font-weight: 900;
}

@media (min-width: 620px) {
  .top-urgency-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .quick-facts,
  .why-grid,
  .public-learning-grid,
  .modality-grid,
  .payment-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .class-program,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .public-landing .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .public-landing .site-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-self: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .public-landing .header-cta {
    display: inline-flex !important;
  }

  .institutional-panel {
    grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
    align-items: center;
    padding: 26px 30px;
  }

  .public-landing .hero {
    padding: 78px 0 88px;
  }

  .public-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.44fr);
    align-items: center;
    gap: 54px;
  }

  .quick-facts {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .public-landing .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .public-landing .trust-grid article {
    padding: 24px 18px;
    border-right: 1px solid var(--landing-line);
    border-bottom: 0;
  }

  .public-landing .trust-grid article:last-child {
    border-right: 0;
  }

  .split-section,
  .mode-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }

  .why-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .public-learning-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .class-program {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faculty-section-grid {
    grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-decision {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .payment-flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .payment-flow article {
    grid-template-columns: 1fr;
    align-content: start;
  }
}

@media (max-width: 520px) {
  .public-landing .brand-logo {
    width: 154px;
  }

  .public-landing .hero {
    padding: 48px 0 62px;
  }

  .public-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }

  .public-landing .hero-actions .btn,
  .pricing-decision .btn,
  .final-cta .btn {
    width: 100%;
  }

  .faculty-feature,
  .institutional-panel,
  .editorial-copy,
  .public-learning-grid article,
  .class-program article,
  .public-landing .price-card,
  .public-landing .final-cta-box {
    padding: 22px;
  }
}

/* Tercera pasada premium */
.public-landing {
  --premium-navy: #06162e;
  --premium-navy-2: #0a2348;
  --premium-gold: #b88a2e;
  --premium-gold-soft: #f7efd8;
  --premium-paper: #ffffff;
  --premium-ivory: #fbfaf7;
  --premium-mist: #f3f6fa;
  --premium-line: rgba(6, 22, 46, 0.11);
  --premium-text: #242a33;
  --premium-muted: #687282;
  background: #ffffff;
}

.public-landing h1,
.public-landing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.public-landing h3,
.public-landing .btn,
.public-landing .section-label,
.public-landing strong {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.top-urgency {
  border-bottom: 1px solid rgba(184, 138, 46, 0.28);
  background: var(--premium-navy);
}

.top-urgency-inner {
  padding: 8px 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.top-urgency a {
  color: #e4c77b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.public-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
}

.public-header .site-nav a {
  font-size: 0.9rem;
  font-weight: 750;
}

.public-landing .btn {
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 6px;
}

.public-landing .btn-whatsapp {
  background: linear-gradient(180deg, #157e66, #116b58);
  box-shadow: 0 16px 34px rgba(17, 107, 88, 0.2);
}

.institutional-intro {
  padding: 34px 0;
  background:
    linear-gradient(90deg, #ffffff 0 54%, #fbfaf7 54% 100%);
}

.institutional-panel {
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.institutional-mark {
  display: grid;
  width: 148px;
  min-height: 116px;
  align-content: center;
  justify-items: start;
  padding: 18px 20px;
  border-left: 4px solid var(--premium-gold);
  background: var(--premium-navy);
}

.institutional-mark span {
  color: #d7b66a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.institutional-mark strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.institutional-copy {
  max-width: 920px;
}

.institutional-copy p:not(.section-label) {
  color: var(--premium-text);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.45;
}

.public-landing .hero {
  padding: 72px 0 84px;
  background:
    linear-gradient(150deg, rgba(3, 13, 30, 0.99), rgba(6, 22, 46, 0.98) 52%, rgba(13, 42, 78, 0.96));
}

.public-hero-grid {
  gap: 42px;
}

.public-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 10vw, 5.6rem);
  line-height: 0.96;
}

.public-hero .hero-lead {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(1.12rem, 2.4vw, 1.38rem);
  line-height: 1.66;
}

.hero-context {
  max-width: 710px;
  margin-bottom: 28px;
  color: #c7d2e0;
  font-size: 1rem;
}

.urgency-note {
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #e7d09b;
  background: transparent;
  font-size: 0.96rem;
}

.urgency-note::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--premium-gold);
  content: "";
}

.public-landing .hero-actions {
  margin-bottom: 12px;
}

.hero-microcopy {
  margin-bottom: 34px;
  color: #aebdce;
}

.hero-facts {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts div:last-child {
  border-bottom: 0;
}

.hero-facts span {
  color: #d7b66a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.faculty-feature {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(215, 182, 106, 0.32);
  background: #fbfaf7;
  box-shadow: 0 34px 90px rgba(3, 13, 30, 0.24);
}

.faculty-visual {
  position: relative;
  min-height: 220px;
  border-bottom: 1px solid rgba(184, 138, 46, 0.24);
  background:
    linear-gradient(135deg, #071f43, #102c54);
}

.faculty-photo {
  position: absolute;
  inset: 26px 26px auto;
  display: grid;
  width: auto;
  height: 150px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(215, 182, 106, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 31, 67, 0.15), rgba(7, 31, 67, 0.28)),
    linear-gradient(135deg, #0b2a55, #071f43);
  background-position: center;
  background-size: cover;
}

.faculty-photo.has-photo {
  background-image:
    linear-gradient(180deg, rgba(7, 31, 67, 0.05), rgba(7, 31, 67, 0.24)),
    url("assets/brand/dr-juan-jose-pino.jpg");
}

.faculty-photo span {
  width: 88px;
  height: 88px;
  border-color: rgba(215, 182, 106, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.faculty-monogram {
  position: absolute;
  right: 24px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.11);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 1;
}

.faculty-feature-content {
  padding: 26px;
}

.faculty-feature-compact {
  position: relative;
  padding-top: 30px;
}

.faculty-mini-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(184, 138, 46, 0.38);
  color: #ffffff;
  background: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.faculty-card-photo {
  position: relative;
  overflow: hidden;
  width: min(150px, 46vw);
  aspect-ratio: 4 / 5;
  margin: 0 0 20px;
  border: 1px solid rgba(184, 138, 46, 0.36);
  background: linear-gradient(135deg, #0d2a52, #06162e);
  box-shadow: 0 18px 36px rgba(3, 13, 30, 0.16);
}

.faculty-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.faculty-card-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(6, 22, 46, 0), rgba(6, 22, 46, 0.32));
  content: "";
  pointer-events: none;
}

.faculty-feature-lead {
  margin-bottom: 18px;
  color: #4f5967 !important;
}

.faculty-metrics {
  gap: 0;
  border-top: 1px solid var(--premium-line);
}

.faculty-metrics span {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
}

.public-landing .trust-bar {
  border-bottom: 0;
  background: var(--premium-ivory);
}

.public-landing .trust-grid {
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

.public-landing .trust-grid article {
  padding: 22px 0;
  border-bottom: 1px solid var(--premium-line);
}

.public-landing .trust-grid span {
  color: var(--premium-muted);
}

.public-landing .trust-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.public-landing .section {
  padding: 96px 0;
}

.public-landing .section-heading {
  margin-bottom: 42px;
}

.public-landing .section-heading p:not(.section-label),
.editorial-copy p,
.mode-copy p:not(.section-label),
.faculty-lead {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.problem-section,
.learning-section,
.payment-flow-section {
  background: var(--premium-ivory);
}

.editorial-copy {
  padding: 0 0 0 24px;
  border: 0;
  border-left: 3px solid var(--premium-gold);
  border-radius: 0;
  background: transparent;
}

.why-editorial {
  display: grid;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

.why-statement {
  max-width: 620px;
}

.why-statement span {
  display: block;
  margin-bottom: 12px;
  color: var(--premium-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-statement p {
  margin: 0;
  color: var(--premium-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  line-height: 1.25;
}

.why-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--premium-line);
  color: var(--premium-text);
  font-weight: 750;
}

.why-list li:first-child {
  border-top: 1px solid var(--premium-line);
}

.public-learning-grid article {
  padding: 28px 0 0;
  border: 0;
  border-top: 3px solid var(--premium-gold);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.public-learning-grid article span {
  display: block;
  margin-bottom: 18px;
  color: var(--premium-gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.public-learning-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  line-height: 1.18;
}

.class-program {
  gap: 0;
  border-top: 1px solid var(--premium-line);
}

.class-program article {
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.class-program h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}

.class-program li {
  color: var(--premium-muted);
}

.modality-experience {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

.modality-experience article {
  padding: 24px 0;
  border-bottom: 1px solid var(--premium-line);
}

.modality-experience article:last-child {
  border-bottom: 0;
}

.modality-experience span {
  display: block;
  margin-bottom: 8px;
  color: var(--premium-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modality-experience strong {
  display: block;
  margin-bottom: 8px;
  color: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.18;
}

.modality-experience p {
  max-width: 620px;
  margin: 0;
}

.recording-note {
  padding: 18px 0 0;
  border: 0;
  border-top: 2px solid var(--premium-gold);
  border-radius: 0;
  background: transparent;
}

.authority-section {
  padding: 110px 0 !important;
  background:
    linear-gradient(145deg, #06162e, #071f43 58%, #102c54);
}

.faculty-section-grid {
  gap: 42px;
}

.faculty-portrait {
  min-height: 440px;
  align-content: end;
  justify-items: start;
  padding: 28px;
  border-color: rgba(215, 182, 106, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08));
}

.portrait-frame {
  display: grid;
  overflow: hidden;
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  place-items: center;
  border: 1px solid rgba(215, 182, 106, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #0d2a52, #06162e);
}

.portrait-frame span {
  width: 128px;
  height: 128px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.portrait-caption {
  display: grid;
  gap: 3px;
  margin-top: 18px;
}

.portrait-caption strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.portrait-caption span {
  color: #d7b66a;
  font-size: 0.86rem;
  font-weight: 800;
}

.faculty-copy h2 {
  max-width: 760px;
  color: #ffffff;
}

.credential-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.credential-grid span {
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}

.credential-grid span:last-child {
  border-bottom: 0;
}

.price-layout {
  display: grid;
  gap: 18px;
}

.price-secondary {
  display: grid;
  gap: 18px;
}

.public-landing .price-card {
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.public-landing .featured-price {
  border-color: rgba(215, 182, 106, 0.72);
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.featured-price .price-badge {
  background: var(--premium-gold);
}

.public-landing .featured-price .price-header strong {
  font-size: clamp(3rem, 14vw, 5.25rem);
}

.price-secondary .price-card {
  background: rgba(255, 255, 255, 0.96);
}

.pricing-decision {
  margin-top: 28px;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(215, 182, 106, 0.26);
  border-radius: 0;
  background: transparent;
}

.payment-flow {
  gap: 0;
  border-top: 1px solid var(--premium-line);
}

.payment-flow article {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.payment-flow span {
  width: 34px;
  height: 34px;
  background: var(--premium-navy);
}

.public-landing .accordion-item {
  border-color: var(--premium-line);
  box-shadow: none;
}

.public-landing .final-cta {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.public-landing .final-cta-box {
  padding: 44px 24px;
  border: 0;
  border-top: 4px solid var(--premium-gold);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(6, 22, 46, 0.08);
}

@media (min-width: 620px) {
  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts div {
    padding-right: 16px;
  }

  .public-learning-grid {
    gap: 28px;
  }

  .price-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 900px) {
  .institutional-panel {
    grid-template-columns: auto 1fr;
    gap: 34px;
  }

  .public-landing .hero {
    padding: 96px 0 108px;
  }

  .public-hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.48fr);
    gap: 70px;
  }

  .hero-facts {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-facts div {
    min-height: 76px;
    padding: 16px 14px 14px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .hero-facts div:last-child {
    border-right: 0;
  }

  .faculty-visual {
    min-height: 260px;
  }

  .faculty-photo {
    height: 184px;
  }

  .public-landing .trust-grid article {
    padding: 28px 24px;
  }

  .public-landing .section {
    padding: 112px 0;
  }

  .split-section,
  .mode-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 70px;
  }

  .why-editorial {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
    align-items: start;
    gap: 70px;
    padding: 42px 0;
  }

  .class-program article {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 42px;
  }

  .class-program article > span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .class-program h3,
  .class-program ul {
    grid-column: 2;
  }

  .modality-experience article {
    display: grid;
    grid-template-columns: 160px minmax(220px, 0.55fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .modality-experience span,
  .modality-experience strong {
    margin-bottom: 0;
  }

  .faculty-section-grid {
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
    gap: 76px;
  }

  .price-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
    align-items: stretch;
    gap: 22px;
  }

  .price-secondary {
    grid-template-rows: 1fr 1fr;
  }

  .payment-flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border-bottom: 1px solid var(--premium-line);
  }

  .payment-flow article {
    padding: 22px 16px 22px 0;
    border-right: 1px solid var(--premium-line);
    border-bottom: 0;
  }

  .payment-flow article:last-child {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .institutional-mark {
    width: 132px;
    min-height: 98px;
  }

  .institutional-copy p:not(.section-label) {
    font-size: 1.18rem;
  }

  .public-landing .hero {
    padding: 58px 0 70px;
  }

  .public-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .faculty-feature-content,
  .public-landing .price-card {
    padding: 24px;
  }

  .faculty-visual {
    min-height: 210px;
  }

  .public-landing .section {
    padding: 78px 0;
  }
}

/* Home AME Academia */
.btn-secondary-dark {
  color: var(--premium-navy);
  border-color: rgba(6, 22, 46, 0.18);
  background: #ffffff;
}

.btn-secondary-dark:hover {
  border-color: rgba(184, 138, 46, 0.42);
  background: var(--premium-ivory);
}

.btn-primary-dark {
  color: #ffffff;
  border-color: var(--premium-navy);
  background: var(--premium-navy);
  box-shadow: 0 16px 34px rgba(6, 22, 46, 0.18);
}

.btn-primary-dark:hover {
  background: var(--premium-navy-2);
}

.academy-home .public-header {
  position: sticky;
}

.home-hero {
  padding: 70px 0 82px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(3, 13, 30, 0.98), rgba(7, 31, 67, 0.97) 58%, rgba(13, 42, 78, 0.94));
}

.home-hero-grid {
  display: grid;
  gap: 42px;
}

.home-hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.55rem, 9vw, 4.75rem);
  line-height: 1;
}

.home-hero p {
  max-width: 760px;
  color: #cdd8e6;
}

.home-hero-lead {
  color: #eff5fb !important;
  font-size: clamp(1.16rem, 2.5vw, 1.42rem);
  line-height: 1.62;
}

.home-hero-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(215, 182, 106, 0.32);
  border-top: 4px solid var(--premium-gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.home-hero-panel span {
  display: block;
  margin-bottom: 18px;
  color: #d7b66a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero-panel strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
}

.home-hero-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.home-hero-panel li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.18;
}

.home-hero-panel p {
  margin: 0;
}

.active-course-link {
  margin: 24px 0 0;
  color: #cdd8e6 !important;
  font-size: 0.98rem;
  font-weight: 800;
}

.active-course-link a {
  color: #e4c77b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-intro {
  background: #ffffff;
}

.home-trust {
  background: var(--premium-ivory);
}

.home-trust-grid {
  display: grid;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

.home-trust-grid article {
  padding: 22px 0;
  border-bottom: 1px solid var(--premium-line);
}

.home-trust-grid article:last-child {
  border-bottom: 0;
}

.home-trust-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--premium-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-trust-grid strong {
  display: block;
  color: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.courses-section {
  background: #ffffff;
}

.course-catalog {
  display: grid;
  gap: 18px;
}

.catalog-course {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--premium-line);
  border-top: 3px solid rgba(184, 138, 46, 0.38);
  background: #ffffff;
}

.catalog-course-featured {
  border-top-color: var(--premium-gold);
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
  box-shadow: 0 22px 60px rgba(6, 22, 46, 0.08);
  gap: 16px;
}

.course-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.course-teacher-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0;
  padding: 14px 0;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

.course-teacher-badge img {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(184, 138, 46, 0.36);
  background: var(--premium-navy);
  object-fit: cover;
  object-position: 50% 28%;
}

.course-teacher-badge span {
  display: block;
  margin-bottom: 3px;
  color: var(--premium-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-teacher-badge strong {
  display: block;
  color: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.15;
}

.course-area,
.course-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-area {
  color: var(--premium-gold);
  background: var(--premium-gold-soft);
}

.course-status {
  color: #ffffff;
  background: var(--premium-navy);
}

.course-status-muted {
  color: var(--premium-navy);
  background: #eef2f7;
}

.catalog-course h3 {
  max-width: 760px;
  margin: 0;
  color: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.08;
}

.catalog-course p {
  max-width: 760px;
  margin: 0;
}

.course-data {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  border-top: 1px solid var(--premium-line);
}

.course-data div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--premium-line);
}

.course-data dt {
  color: var(--premium-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-data dd {
  margin: 0;
  color: var(--premium-text);
  font-weight: 800;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-note {
  padding-top: 14px;
  border-top: 1px solid var(--premium-line);
  color: var(--premium-text) !important;
  font-weight: 800;
}

.areas-section {
  background: var(--premium-ivory);
}

.area-grid {
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--premium-line);
}

.area-grid article {
  padding-top: 26px;
}

.area-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--premium-gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.area-grid h3 {
  color: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.how-section {
  background: #ffffff;
}

.home-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--premium-line);
}

.home-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--premium-line);
}

.home-flow span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--premium-navy);
  font-weight: 900;
}

.home-flow strong {
  color: var(--premium-text);
}

.trajectory-section {
  color: #ffffff;
  background:
    linear-gradient(145deg, #06162e, #102c54);
}

.trajectory-panel {
  max-width: 900px;
}

.trajectory-panel h2 {
  color: #ffffff;
}

.trajectory-panel p:not(.section-label) {
  color: #dbe6f2;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.home-footer-grid {
  gap: 16px;
}

.course-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 22px;
  color: var(--premium-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.course-breadcrumb a {
  color: var(--premium-navy);
}

.public-hero .course-breadcrumb {
  color: #aebdce;
}

.public-hero .course-breadcrumb a {
  color: #e4c77b;
}

/* Página de interés */
.interest-page {
  background: #ffffff;
}

.interest-hero {
  padding: 72px 0 84px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.interest-layout {
  display: grid;
  gap: 34px;
}

.interest-copy h1 {
  max-width: 760px;
  color: var(--premium-navy);
  font-size: clamp(2.55rem, 10vw, 4.8rem);
  line-height: 0.98;
}

.interest-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.08rem;
}

.interest-course-card {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--premium-gold);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(6, 22, 46, 0.08);
}

.interest-course-card span {
  color: var(--premium-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interest-course-card strong {
  color: var(--premium-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1.12;
}

.interest-course-card p {
  margin: 4px 0 0;
  color: var(--premium-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.interest-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--premium-line);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(6, 22, 46, 0.08);
}

.interest-form .form-field {
  display: grid;
  gap: 7px;
}

.interest-form label {
  color: var(--premium-navy);
  font-weight: 900;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--premium-line);
  border-radius: 6px;
  color: var(--premium-text);
  background: #ffffff;
  font: inherit;
}

.interest-form textarea {
  resize: vertical;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  outline: 3px solid rgba(184, 138, 46, 0.25);
  outline-offset: 2px;
}

.form-microcopy {
  margin: 0;
  color: var(--premium-muted);
  font-size: 0.9rem;
}

@media (min-width: 620px) {
  .course-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-data div {
    padding-right: 18px;
  }

  .area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-flow article {
    padding-right: 18px;
  }
}

@media (min-width: 900px) {
  .home-hero {
    padding: 88px 0 100px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.42fr);
    align-items: end;
    gap: 76px;
  }

  .home-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-trust-grid article {
    min-height: 128px;
    padding: 26px 22px;
    border-right: 1px solid var(--premium-line);
    border-bottom: 0;
  }

  .home-trust-grid article:last-child {
    border-right: 0;
  }

  .course-catalog {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    align-items: stretch;
  }

  .catalog-course-featured {
    grid-row: span 2;
  }

  .catalog-course-featured .course-data {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--premium-line);
  }

  .home-flow article {
    min-height: 132px;
    align-content: start;
    align-items: start;
    grid-template-columns: 1fr;
    padding: 22px 16px 22px 0;
    border-right: 1px solid var(--premium-line);
    border-bottom: 0;
  }

  .home-flow article:nth-child(4),
  .home-flow article:last-child {
    border-right: 0;
  }

  .interest-hero {
    padding: 96px 0 110px;
  }

  .interest-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.52fr);
    align-items: start;
    gap: 72px;
  }
}

@media (max-width: 520px) {
  .academy-home .hero-actions,
  .course-actions,
  .final-cta .hero-actions {
    display: grid;
  }

  .academy-home .hero-actions .btn,
  .course-actions .btn,
  .interest-form .btn {
    width: 100%;
  }

  .home-hero {
    padding: 66px 0 78px;
  }

  .catalog-course,
  .interest-form,
  .interest-course-card {
    padding: 22px;
  }
}

/* Premium visual refinement */
.course-landing .public-hero {
  padding: 56px 0 68px;
}

.course-landing .public-hero-grid {
  gap: 32px;
}

.course-landing .public-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 10vw, 4.6rem);
}

.course-landing .public-hero .hero-lead {
  margin-bottom: 14px;
}

.course-landing .hero-context {
  margin-bottom: 20px;
}

.course-landing .urgency-note {
  margin-bottom: 20px;
}

.course-landing .hero-microcopy {
  margin-bottom: 24px;
}

.course-landing .hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-landing .hero-facts div {
  padding: 12px 12px 12px 0;
}

.course-landing .faculty-feature {
  max-width: 520px;
  margin: 0;
}

.course-landing .faculty-feature-content {
  padding: 24px;
}

.course-landing .faculty-feature-compact {
  padding-top: 24px;
}

.course-landing .faculty-card-photo {
  width: min(142px, 42vw);
  margin-bottom: 18px;
}

.course-landing .faculty-mini-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.course-landing .faculty-feature h2 {
  font-size: clamp(1.7rem, 5vw, 2.35rem);
}

.course-landing .faculty-feature-lead {
  margin-bottom: 14px;
}

.course-landing .faculty-seal {
  margin-bottom: 12px;
  padding: 12px 14px;
}

.course-landing .faculty-metrics span {
  padding: 10px 0;
}

.interest-hero {
  padding: 58px 0 70px;
}

.interest-copy h1 {
  font-size: clamp(2.3rem, 9vw, 4.25rem);
}

.interest-copy p:not(.eyebrow) {
  font-size: 1.02rem;
}

@media (min-width: 900px) {
  .course-landing .public-hero {
    padding: 72px 0 82px;
  }

  .course-landing .public-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.4fr);
    gap: 54px;
    align-items: center;
  }

  .course-landing .hero-facts {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .course-landing .hero-facts div {
    min-height: 66px;
    padding: 14px 12px 12px 0;
  }

  .course-landing .hero-facts div:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .course-landing .faculty-feature-content {
    padding: 28px;
  }

  .course-landing .faculty-card-photo {
    width: 168px;
  }

  .interest-hero {
    padding: 76px 0 88px;
  }
}

@media (max-width: 520px) {
  .course-landing .public-hero {
    padding: 48px 0 58px;
  }

  .course-landing .public-hero-grid {
    gap: 26px;
  }

  .course-landing .course-breadcrumb {
    padding-bottom: 16px;
  }

  .course-landing .hero-facts strong {
    font-size: 0.9rem;
  }

  .course-landing .faculty-feature-content {
    padding: 22px;
  }

  .course-landing .faculty-card-photo {
    width: min(130px, 48vw);
  }

  .interest-hero {
    padding: 48px 0 58px;
  }
}

@media (min-width: 521px) and (max-width: 760px) {
  .home-hero {
    padding: 58px 0 68px;
  }

  .home-hero-grid {
    gap: 28px;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 8vw, 3.8rem);
  }

  .home-hero-panel {
    padding: 22px;
  }

  .course-landing .public-hero {
    padding: 48px 0 58px;
  }

  .course-landing .public-hero-grid {
    gap: 24px;
  }

  .course-landing .course-breadcrumb {
    padding-bottom: 14px;
  }

  .course-landing .public-hero h1 {
    font-size: clamp(2.45rem, 8vw, 3.8rem);
  }

  .course-landing .faculty-feature-content {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    padding: 22px;
  }

  .course-landing .faculty-card-photo {
    grid-row: 1 / span 3;
    width: 92px;
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
  }

  .course-landing .faculty-mini-mark {
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }

  .course-landing .faculty-feature-content .section-label,
  .course-landing .faculty-feature-content h2,
  .course-landing .faculty-feature-lead {
    grid-column: 2;
  }

  .course-landing .faculty-seal,
  .course-landing .faculty-metrics {
    grid-column: 1 / -1;
  }

  .course-landing .faculty-feature-lead {
    margin-bottom: 12px;
  }

  .course-landing .faculty-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .course-landing .faculty-metrics span {
    padding: 10px 10px 0 0;
    border-right: 1px solid var(--premium-line);
    border-bottom: 0;
    font-size: 0.86rem;
  }

  .course-landing .faculty-metrics span:last-child {
    border-right: 0;
  }
}

/* Publication polish pass */
.public-landing .section {
  padding: 72px 0;
}

.public-landing .section-heading {
  margin-bottom: 30px;
}

.public-landing .section h2,
.public-landing .final-cta h2 {
  font-size: clamp(1.65rem, 3.7vw, 2.55rem);
  line-height: 1.12;
}

.home-intro.section {
  padding: 48px 0;
}

.home-intro .split-section {
  gap: 32px;
}

.home-intro h2 {
  max-width: 560px;
}

.home-intro .editorial-copy {
  padding-left: 18px;
}

.home-intro .editorial-copy p {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.home-trust,
.public-landing .trust-bar {
  padding: 20px 0;
}

.home-trust-grid,
.public-landing .trust-grid {
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: #ffffff;
}

.home-trust-grid article,
.public-landing .trust-grid article {
  min-height: 0;
  padding: 18px 20px;
}

.home-trust-grid strong,
.public-landing .trust-grid strong {
  font-size: 1.02rem;
}

.catalog-course {
  gap: 14px;
  padding: 24px;
}

.catalog-course-featured {
  gap: 14px;
}

.catalog-course h3 {
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
}

.catalog-course:not(.catalog-course-featured) h3 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.course-teacher-badge {
  padding: 12px 0;
}

.course-data div {
  padding: 10px 0;
}

.course-actions .btn {
  flex: 1 1 210px;
}

.course-landing .public-hero {
  padding: 58px 0 64px;
}

.course-landing .faculty-feature {
  max-width: 440px;
}

.course-landing .faculty-feature-content {
  padding: 22px;
}

.course-landing .faculty-card-photo {
  width: min(124px, 40vw);
}

.course-landing .faculty-seal {
  padding: 10px 12px;
}

.authority-section {
  padding: 74px 0 !important;
}

.faculty-section-grid {
  align-items: center;
  gap: 34px;
}

.faculty-portrait {
  min-height: 0;
  max-width: 280px;
  padding: 18px;
  align-content: start;
}

.portrait-frame {
  width: min(100%, 220px);
  aspect-ratio: 4 / 5;
}

.portrait-caption {
  margin-top: 14px;
}

.portrait-caption span {
  display: none;
}

.credential-grid span {
  padding: 11px 0;
}

.price-layout,
.price-secondary {
  gap: 16px;
}

.price-layout {
  align-items: start;
}

.public-landing .price-card {
  min-height: 0;
  padding: 24px;
}

.public-landing .featured-price .price-header strong {
  font-size: clamp(2.45rem, 8vw, 3.55rem);
}

.pricing-decision {
  margin-top: 22px;
  padding-top: 20px;
}

.payment-flow article {
  padding: 15px 0;
}

.public-landing .final-cta {
  padding: 72px 0;
}

.public-landing .final-cta-box {
  padding: 34px 24px;
}

.interest-hero {
  padding: 50px 0 60px;
}

.interest-layout {
  gap: 28px;
}

.interest-copy h1 {
  font-size: clamp(2rem, 6.5vw, 3.35rem);
  line-height: 1.03;
}

.interest-course-card {
  margin-top: 22px;
  padding: 20px;
}

.interest-form {
  gap: 12px;
  padding: 22px;
}

@media (min-width: 900px) {
  .public-landing .section {
    padding: 84px 0;
  }

  .home-intro.section {
    padding: 56px 0;
  }

  .home-intro .split-section {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.78fr);
    gap: 42px;
    align-items: center;
  }

  .home-trust-grid article,
  .public-landing .trust-grid article {
    padding: 20px 22px;
    border-right-color: rgba(208, 216, 226, 0.72);
  }

  .catalog-course-featured .course-data {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .course-landing .public-hero {
    padding: 66px 0 74px;
  }

  .course-landing .public-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
    gap: 48px;
  }

  .course-landing .faculty-card-photo {
    width: 136px;
  }

  .faculty-section-grid {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
    gap: 48px;
  }

  .price-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .price-secondary {
    display: contents;
  }

  .public-landing .price-card {
    height: auto;
    align-self: start;
  }

  .interest-hero {
    padding: 68px 0 78px;
  }

  .interest-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.5fr);
    gap: 54px;
  }
}

@media (max-width: 520px) {
  .public-landing .section {
    padding: 56px 0;
  }

  .home-intro.section,
  .public-landing .final-cta {
    padding: 46px 0;
  }

  .home-trust,
  .public-landing .trust-bar {
    padding: 16px 0;
  }

  .catalog-course,
  .interest-form,
  .interest-course-card,
  .public-landing .price-card {
    padding: 20px;
  }

  .course-landing .public-hero {
    padding: 44px 0 52px;
  }

  .course-landing .faculty-card-photo {
    width: min(118px, 46vw);
  }

  .authority-section {
    padding: 56px 0 !important;
  }

  .faculty-portrait {
    max-width: 100%;
    padding: 16px;
  }

  .portrait-frame {
    width: min(100%, 190px);
  }

  .interest-hero {
    padding: 42px 0 52px;
  }
}

/* Institutional compaction and responsive polish */
html,
body {
  overflow-x: clip;
}

.public-landing h1 {
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 1.02;
}

.public-landing h2,
.public-landing .final-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.public-landing h3 {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.public-landing .section-label,
.public-landing .eyebrow {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.public-landing .section {
  padding: 62px 0;
}

.public-landing .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.public-landing .section-heading p:not(.section-label),
.mode-copy p:not(.section-label),
.faculty-lead,
.interest-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.course-landing .problem-section {
  padding-bottom: 36px;
}

.course-landing .why-course-section {
  padding-top: 36px;
}

.course-landing .learning-section,
.course-landing .modules-section,
.course-landing .mode-section,
.course-landing .payment-flow-section,
.course-landing .faq-section {
  padding: 58px 0;
}

.home-intro.section,
.trajectory-section,
.public-landing .final-cta {
  padding: 50px 0;
}

.home-intro .split-section,
.split-section,
.mode-layout,
.faculty-section-grid,
.interest-layout {
  gap: clamp(24px, 4vw, 44px);
}

.home-trust,
.public-landing .trust-bar {
  padding: 14px 0;
}

.home-trust-grid,
.public-landing .trust-grid {
  border: 1px solid rgba(208, 216, 226, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(7, 31, 67, 0.07);
}

.home-trust-grid article,
.public-landing .trust-grid article {
  min-height: 0;
  padding: 16px 18px;
}

.home-trust-grid strong,
.public-landing .trust-grid strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.home-hero {
  padding: 56px 0 64px;
}

.home-hero-grid {
  gap: clamp(26px, 4vw, 52px);
}

.home-hero h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.2rem);
}

.home-hero-panel,
.catalog-course-featured,
.catalog-course,
.interest-form,
.interest-course-card {
  min-height: 0;
}

.catalog-course-featured {
  padding: clamp(22px, 3vw, 30px);
}

.catalog-course-featured .course-data,
.home-flow,
.modality-experience,
.payment-flow {
  gap: 10px;
}

.catalog-course-featured .course-data div,
.home-flow article,
.modality-experience article,
.payment-flow article {
  min-height: 0;
  padding: 14px 16px;
}

.catalog-course h3 {
  margin-bottom: 8px;
}

.course-landing .top-urgency {
  font-size: 0.9rem;
}

.course-landing .top-urgency-inner {
  min-height: 42px;
}

.course-landing .public-hero {
  padding: 50px 0 56px;
}

.course-landing .public-hero-grid {
  gap: clamp(28px, 4.8vw, 52px);
  align-items: center;
}

.course-landing .public-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5.1vw, 4.35rem);
}

.course-landing .public-hero .hero-lead,
.course-landing .hero-context {
  max-width: 720px;
  margin-bottom: 16px;
}

.course-landing .hero-context {
  padding-left: 16px;
}

.course-landing .hero-actions {
  margin-top: 18px;
}

.course-landing .hero-microcopy {
  margin-top: 12px;
}

.course-landing .hero-facts {
  margin-top: 22px;
}

.course-landing .hero-facts div {
  min-height: 0;
  padding: 12px 12px 12px 0;
}

.course-landing .faculty-feature {
  min-height: 0;
  padding: 0;
}

.course-landing .faculty-feature-content {
  padding: 22px;
}

.course-landing .faculty-card-photo {
  width: min(132px, 44vw);
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
}

.course-landing .faculty-card-photo img,
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.faculty-mini-mark,
.portrait-caption span {
  display: none !important;
}

.authority-section {
  padding: 64px 0 !important;
}

.faculty-portrait {
  min-height: 0;
  max-width: 300px;
  padding: 18px;
}

.portrait-frame {
  width: min(100%, 210px);
  aspect-ratio: 4 / 5;
}

.portrait-caption {
  margin-top: 12px;
}

.faculty-copy h2 {
  margin-bottom: 14px;
}

.credential-grid {
  gap: 8px;
}

.credential-grid span {
  padding: 10px 11px;
}

.price-layout,
.price-secondary {
  gap: 14px;
  align-items: start;
}

.public-landing .price-card,
.public-landing .featured-price,
.price-secondary .price-card {
  min-height: 0 !important;
  height: auto;
  align-self: start;
  padding: 24px;
}

.public-landing .featured-price {
  border-color: rgba(184, 138, 46, 0.62);
  box-shadow: 0 18px 48px rgba(7, 31, 67, 0.12);
  transform: none;
}

.public-landing .price-header {
  gap: 8px;
  padding-bottom: 14px;
}

.public-landing .price-header strong,
.public-landing .featured-price .price-header strong {
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.pricing-decision {
  margin-top: 22px;
  padding: 18px 0 0;
}

.payment-flow-section .section-heading {
  margin-bottom: 18px;
}

.faq-layout {
  gap: clamp(22px, 4vw, 42px);
}

.accordion-item {
  padding: 14px 0;
}

.final-cta-box {
  padding: clamp(28px, 4vw, 42px) clamp(22px, 4vw, 34px);
}

.interest-hero {
  padding: 48px 0 58px;
}

.interest-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.interest-course-card {
  margin-top: 18px;
  padding: 18px;
}

.interest-form {
  gap: 12px;
  padding: 22px;
}

@media (max-width: 1024px) {
  .public-landing .section {
    padding: 56px 0;
  }

  .course-landing .problem-section,
  .course-landing .why-course-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .course-landing .public-hero {
    padding: 46px 0 52px;
  }

  .course-landing .public-hero-grid,
  .home-hero-grid,
  .interest-layout {
    gap: 30px;
  }

  .course-landing .faculty-feature-content {
    padding: 20px;
  }

  .public-landing .price-card {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: clamp(148px, 45vw, 190px);
  }

  .header-cta {
    display: none;
  }

  .public-landing h1,
  .home-hero h1,
  .course-landing .public-hero h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.04;
  }

  .public-landing h2,
  .public-landing .final-cta h2 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
  }

  .home-hero,
  .course-landing .public-hero,
  .interest-hero {
    padding: 42px 0 48px;
  }

  .public-landing .section,
  .course-landing .learning-section,
  .course-landing .modules-section,
  .course-landing .mode-section,
  .course-landing .payment-flow-section,
  .course-landing .faq-section,
  .authority-section {
    padding: 46px 0 !important;
  }

  .split-section,
  .mode-layout,
  .faculty-section-grid,
  .interest-layout,
  .course-landing .public-hero-grid {
    grid-template-columns: 1fr;
  }

  .course-landing .hero-context {
    padding-left: 14px;
  }

  .hero-actions,
  .course-landing .hero-actions,
  .academy-home .hero-actions,
  .final-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn,
  .course-landing .hero-actions .btn,
  .pricing-decision .btn,
  .interest-form .btn,
  .final-cta .btn {
    width: 100%;
  }

  .course-landing .hero-facts,
  .catalog-course-featured .course-data,
  .home-flow,
  .payment-flow,
  .modality-experience,
  .price-layout,
  .price-secondary {
    grid-template-columns: 1fr;
  }

  .faculty-portrait {
    justify-self: center;
    max-width: 280px;
  }

  .portrait-frame {
    width: min(100%, 200px);
  }

  .pricing-decision {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .public-landing .section,
  .course-landing .learning-section,
  .course-landing .modules-section,
  .course-landing .mode-section,
  .course-landing .payment-flow-section,
  .course-landing .faq-section,
  .authority-section {
    padding: 40px 0 !important;
  }

  .home-intro.section,
  .trajectory-section,
  .public-landing .final-cta {
    padding: 38px 0 !important;
  }

  .course-landing .problem-section {
    padding-bottom: 30px !important;
  }

  .course-landing .why-course-section {
    padding-top: 30px !important;
  }

  .home-trust,
  .public-landing .trust-bar {
    padding: 10px 0;
  }

  .home-trust-grid article,
  .public-landing .trust-grid article,
  .catalog-course-featured .course-data div,
  .home-flow article,
  .modality-experience article,
  .payment-flow article {
    padding: 13px 14px;
  }

  .catalog-course-featured,
  .catalog-course,
  .interest-form,
  .interest-course-card,
  .public-landing .price-card,
  .course-landing .faculty-feature-content {
    padding: 18px;
  }

  .course-landing .faculty-card-photo {
    width: min(116px, 42vw);
    margin-bottom: 14px;
  }

  .faculty-metrics {
    gap: 0;
  }

  .public-landing .price-header strong,
  .public-landing .featured-price .price-header strong {
    font-size: clamp(2rem, 12vw, 2.55rem);
  }

  .interest-hero {
    padding: 36px 0 42px;
  }

  .interest-form textarea {
    min-height: 88px;
  }
}
