.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px var(--container-pad);
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 16px 12px 24px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__logo img { height: 32px; width: auto; }

.site-header__nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.site-header__nav a {
  color: var(--text-dark);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.site-header__nav a:hover { opacity: 1; }

.site-header__cta { padding: 12px 24px; font-size: 14px; }

.site-header__toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.site-header__toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* Scrolled state */
.site-header.is-scrolled {
  padding: 12px var(--container-pad);
}
.site-header.is-scrolled .site-header__inner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-soft);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
}

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__toggle { display: flex; }
}

/* ── Hero ── */
.hero {
  padding-top: 180px;
  padding-bottom: 0;
  background: #fdfdfd;
  text-align: center;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero__title {
  max-width: 1000px;
  color: var(--text-dark);
}

.hero__subtitle {
  max-width: 560px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 0.78;
  line-height: 1.5;
}

.hero__cta { margin-top: 8px; }

.hero__media {
  margin-top: 24px;
  width: 100%;
  max-width: 900px;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .hero { padding-top: 130px; }
  .hero__subtitle { font-size: 16px; }
}

.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.word { display: inline-block; }

.claridad {
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(132, 185, 239, 0.08), transparent 60%),
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}
.claridad__inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.claridad__title { color: var(--text-light); max-width: 700px; }
.claridad__intro { color: var(--text-muted); max-width: 600px; font-size: 18px; line-height: 1.5; }

.claridad__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 32px;
}
.claridad-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.claridad-card__icon { width: 44px; height: 44px; opacity: 0.95; }
.claridad-card__title { font-size: 20px; font-weight: 600; color: var(--text-light); }
.claridad-card__desc { color: var(--text-muted); font-size: 15px; line-height: 1.5; }

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

.caminos {
  background: #ffffff;
  color: var(--text-dark);
}
.caminos__title {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-inline: auto;
}
.caminos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.path-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  isolation: isolate;
}
.path-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.path-card:hover .path-card__bg { transform: scale(1.05); }
.path-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
}
.path-card__content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-light);
}
.path-card__title { color: var(--text-light); }
.path-card__desc { color: var(--text-muted); font-size: 15px; line-height: 1.5; max-width: 420px; }
.path-card__cta { align-self: flex-start; margin-top: 8px; }

@media (max-width: 900px) {
  .caminos__grid { grid-template-columns: 1fr; }
  .path-card__content { left: 24px; right: 24px; bottom: 24px; }
}

.riesgo {
  background:
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
}
.riesgo__title {
  color: var(--text-light);
  max-width: 900px;
  margin-bottom: 32px;
}
.riesgo__copy {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 80px;
}
.riesgo__copy .word { display: inline-block; }

.riesgo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  position: relative;
}
.pillar__dot {
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-light);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}
.pillar__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.02em; color: var(--text-light); }
.pillar__desc { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

@media (max-width: 900px) {
  .riesgo__grid { grid-template-columns: 1fr; gap: 40px; }
}

.cta-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding-block: 140px;
}
.cta-final__bg {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  will-change: transform;
}
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.cta-final__title { color: var(--text-light); max-width: 720px; }

@media (max-width: 700px) {
  .cta-final__inner { align-items: center; text-align: center; }
}

.site-footer {
  background:
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 32px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 280px; }
.site-footer__brand img { width: 100px; height: auto; }
.site-footer__tagline { color: var(--text-muted); font-size: 15px; line-height: 1.5; }

.site-footer__col { display: flex; flex-direction: column; gap: 16px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: var(--text-light); opacity: 0.85; font-size: 15px; transition: opacity 0.2s; }
.site-footer__col a:hover { opacity: 1; }

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.site-footer__social a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.site-footer__social svg { width: 18px; height: 18px; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-gray);
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #ffffff;
  padding: 96px var(--container-pad) 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 24px;
  font-weight: 600;
  width: 100%;
  max-width: 400px;
}
.mobile-drawer__nav .btn { font-size: 16px; margin-top: 16px; }

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

/* ============================
   Page hero (inner page header)
   ============================ */
.page-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: #fdfdfd;
  text-align: center;
  overflow: hidden;
}
.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 980px;
}
.page-hero__eyebrow {
  color: var(--text-dark);
  opacity: 0.55;
  letter-spacing: 0.18em;
}
.page-hero__title {
  max-width: 1000px;
  color: var(--text-dark);
  font-size: clamp(40px, 6.5vw, 76px);
}
.page-hero__subtitle {
  max-width: 640px;
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.72;
  line-height: 1.55;
}
.page-hero__cta { margin-top: 8px; }

@media (max-width: 600px) {
  .page-hero { padding-top: 130px; padding-bottom: 56px; }
  .page-hero__subtitle { font-size: 16px; }
}

/* ============================
   Features section
   ============================ */
.features {
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(132, 185, 239, 0.08), transparent 60%),
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
}
.features__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  text-align: center;
}
.features__head .eyebrow-mono { color: rgba(255, 255, 255, 0.6); }
.features__title { color: var(--text-light); max-width: 800px; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 8px;
  align-items: start;
}
.feature-card--wide { grid-column: 1 / -1; }
.feature-card__check {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-top: 2px;
}
.feature-card__check svg { width: 22px; height: 22px; }
.feature-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
}
.feature-card__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  grid-column: 2;
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: auto; }
}

/* ============================
   Pricing section
   ============================ */
.pricing {
  background: #fdfdfd;
  padding-block: clamp(80px, 12vw, 120px);
}
.pricing__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-dark);
  opacity: 0.5;
}
.pricing__card {
  max-width: 720px;
  margin-inline: auto;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(132, 185, 239, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 200, 130, 0.16), transparent 70%),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 60px -30px rgba(0, 8, 28, 0.18);
}
.pricing__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.pricing__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
.pricing__badge {
  background: rgba(255, 167, 78, 0.18);
  color: #b35d12;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.pricing__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1;
}
.pricing__ideal {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.pricing__ideal strong { font-weight: 600; opacity: 1; color: var(--text-dark); }

.pricing__features { margin-bottom: 32px; }
.pricing__features-label {
  display: block;
  margin-bottom: 14px;
  color: var(--text-dark);
  opacity: 0.55;
}
.pricing__features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pricing__features-list li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--text-dark);
  backdrop-filter: blur(6px);
}

.pricing__cta {
  display: flex;
  margin: 0 auto 24px;
  width: max-content;
}
.pricing__note {
  text-align: center;
  color: var(--text-dark);
  opacity: 0.55;
  font-size: 13px;
  line-height: 1.55;
  max-width: 480px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .pricing__card { padding: 32px 24px; border-radius: 22px; }
  .pricing__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================
   Contact form page
   ============================ */
.contact {
  padding-top: 180px;
  padding-bottom: clamp(80px, 12vw, 120px);
  background: #fdfdfd;
}
.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-inline: auto;
}
.contact__eyebrow { color: var(--text-dark); opacity: 0.5; }
.contact__title {
  color: var(--text-dark);
  font-size: clamp(36px, 5vw, 56px);
  max-width: 720px;
}
.contact__intro {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.55;
  max-width: 640px;
}

.contact-form {
  max-width: 640px;
  margin-inline: auto;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(132, 185, 239, 0.16), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 200, 130, 0.14), transparent 70%),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 24px 60px -30px rgba(0, 8, 28, 0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.78;
}
.field__input {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field__input::placeholder { color: rgba(26, 22, 21, 0.4); }
.field__input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(132, 185, 239, 0.2);
  background: #ffffff;
}
.field__input--textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field__input--select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231a1615' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form__submit {
  align-self: center;
  margin-top: 8px;
  min-width: 200px;
}
.contact-form__feedback {
  text-align: center;
  font-size: 14px;
  margin-top: 4px;
  min-height: 18px;
}
.contact-form__feedback[data-state="success"] { color: #15803d; }
.contact-form__feedback[data-state="error"] { color: #b3261e; }

@media (max-width: 600px) {
  .contact { padding-top: 130px; }
  .contact-form { padding: 28px 22px; border-radius: 22px; }
  .contact-form__row--2 { grid-template-columns: 1fr; }
}

/* ============================
   Crypto Curso Online — landing
   ============================ */

/* Hero */
.course-hero {
  padding-top: 180px;
  padding-bottom: 60px;
  background: #fdfdfd;
  text-align: center;
}
.course-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 1040px;
}
.course-hero__eyebrow { color: var(--text-dark); opacity: 0.55; }
.course-hero__title {
  color: var(--text-dark);
  font-size: clamp(40px, 6.5vw, 76px);
  max-width: 1000px;
}
.course-hero__subtitle {
  max-width: 700px;
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.72;
  line-height: 1.55;
}
.course-hero__video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-dark);
  margin-top: 12px;
  box-shadow: 0 24px 60px -30px rgba(0, 8, 28, 0.35);
}
.course-hero__video video,
.course-hero__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.course-hero__video video { object-fit: cover; }
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  background: radial-gradient(ellipse at center, rgba(132, 185, 239, 0.15), transparent 70%), var(--bg-dark);
}
.video-placeholder svg { width: 72px; height: 72px; }
.video-placeholder__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }

.course-hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.course-hero__trust {
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .course-hero { padding-top: 130px; }
  .course-hero__subtitle { font-size: 16px; }
}

/* Problem */
.problem {
  background:
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}
.problem__title { color: var(--text-light); max-width: 900px; margin: 0 auto 24px; }
.problem__copy {
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.6;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  opacity: 0.85;
}
.problem-card__title { font-size: 20px; font-weight: 600; color: var(--text-light); line-height: 1.3; }
.problem-card__desc { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

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

/* Outcomes */
.outcomes { background: #fdfdfd; }
.outcomes__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 48px; }
.outcomes__head .eyebrow-mono { color: var(--text-dark); opacity: 0.5; }
.outcomes__title { color: var(--text-dark); max-width: 720px; }
.outcomes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  max-width: 920px;
  margin-inline: auto;
}
.outcome-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
}
.outcome-item__check {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(132, 185, 239, 0.18);
  color: #2b5692;
  margin-top: 2px;
}
.outcome-item__check svg { width: 16px; height: 16px; }

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

/* Curriculum */
.curriculum {
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(132, 185, 239, 0.08), transparent 60%),
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
}
.curriculum__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 56px; }
.curriculum__head .eyebrow-mono { color: rgba(255, 255, 255, 0.6); }
.curriculum__title { color: var(--text-light); max-width: 760px; }
.curriculum__list { display: flex; flex-direction: column; gap: 16px; max-width: 880px; margin-inline: auto; }
.module-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  transition: transform 0.3s ease, background 0.3s ease;
}
.module-card:hover { background: rgba(255, 255, 255, 0.06); transform: translateX(4px); }
.module-card__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-blue);
  line-height: 1;
}
.module-card__title { font-size: 22px; font-weight: 600; color: var(--text-light); margin-bottom: 10px; }
.module-card__desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

@media (max-width: 600px) {
  .module-card { padding: 24px; grid-template-columns: 1fr; gap: 8px; }
  .module-card__num { font-size: 24px; }
}

/* For / not for */
.for-not { background: #fdfdfd; }
.for-not__title { color: var(--text-dark); text-align: center; max-width: 720px; margin: 0 auto 56px; }
.for-not__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1040px; margin-inline: auto; }
.for-not__col {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.for-not__col--yes { background: linear-gradient(180deg, rgba(132, 185, 239, 0.1), rgba(255, 255, 255, 0.8)); border-color: rgba(43, 86, 146, 0.18); }
.for-not__col--no { background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.8)); }
.for-not__eyebrow { color: var(--text-dark); opacity: 0.55; letter-spacing: 0.14em; }
.for-not__col--yes .for-not__eyebrow { color: #2b5692; opacity: 1; }
.for-not__list { display: flex; flex-direction: column; gap: 12px; }
.for-not__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dark);
}
.for-not__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(43, 86, 146, 0.15);
}
.for-not__col--yes .for-not__list li::before {
  background: #2b5692;
}
.for-not__col--no .for-not__list li::before {
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 800px) { .for-not__grid { grid-template-columns: 1fr; } }

/* Social proof */
.proof { background: #fdfdfd; }
.proof__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 48px; }
.proof__head .eyebrow-mono { color: var(--text-dark); opacity: 0.5; }
.proof__title { color: var(--text-dark); max-width: 760px; }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin-inline: auto;
}
.proof-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(132, 185, 239, 0.18), rgba(255, 200, 130, 0.12)),
    #f5f3f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-photo--empty::after {
  content: 'Foto';
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(26, 22, 21, 0.35);
  text-transform: uppercase;
}

@media (max-width: 900px) { .proof__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .proof__grid { grid-template-columns: repeat(2, 1fr); } }

/* Course pricing variant */
.pricing__card--course .pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.pricing__price-strike {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.45;
  text-decoration: line-through;
}
.pricing__badge--promo {
  background: rgba(43, 86, 146, 0.14);
  color: #2b5692;
}
.pricing__note a { text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq {
  background:
    url("../assets/images/section-glow.webp") center / cover no-repeat,
    var(--bg-dark);
  color: var(--text-light);
}
.faq__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 48px; }
.faq__head .eyebrow-mono { color: rgba(255, 255, 255, 0.6); }
.faq__title { color: var(--text-light); max-width: 720px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: background 0.25s ease;
}
.faq-item:hover { background: rgba(255, 255, 255, 0.06); }
.faq-item__q {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item__a a { color: var(--accent-blue); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 600px) {
  .faq-item__q { padding: 18px 22px; font-size: 15px; }
  .faq-item__a { padding: 0 22px 22px; }
}

/* ============================
   Legal pages (privacy / terms / legal)
   ============================ */
.legal-page {
  padding-top: 180px;
  padding-bottom: clamp(80px, 12vw, 120px);
  background: #fdfdfd;
}
.legal-page__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.legal-page__head .eyebrow-mono { color: var(--text-dark); opacity: 0.5; }
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.1;
}
.legal-page__updated {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  opacity: 0.45;
  text-transform: uppercase;
}

.legal-page__body {
  max-width: 760px;
  margin-inline: auto;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}
.legal-page__lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.82;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.legal-page__body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-page__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-dark);
  line-height: 1.4;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-page__body p {
  margin-bottom: 16px;
  color: var(--text-dark);
  opacity: 0.85;
}
.legal-page__body p strong { color: var(--text-dark); opacity: 1; font-weight: 600; }
.legal-page__body ul {
  list-style: disc;
  margin: 0 0 20px 22px;
  padding: 0;
}
.legal-page__body ul li {
  margin-bottom: 10px;
  color: var(--text-dark);
  opacity: 0.85;
  list-style: disc;
}
.legal-page__body ul li::marker { color: var(--accent-blue); }
.legal-page__body a {
  color: #2b5692;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.18s ease;
}
.legal-page__body a:hover { opacity: 0.7; }

.legal-page__no-refund {
  display: inline-block;
  background: rgba(179, 38, 30, 0.12);
  color: #b3261e;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92em;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .legal-page { padding-top: 130px; }
  .legal-page__body { font-size: 15.5px; }
  .legal-page__body h2 { font-size: 21px; margin-top: 36px; }
  .legal-page__body h3 { font-size: 17px; margin-top: 22px; }
}
