.mland {
  display: block;
  --mc-primary: #2f57ef;
  --mc-primary-light: #6f8dff;
  --mc-primary-dark: #12266b;
  --mc-heading: #0f1f4d;
  --mc-body: #5b6a99;
  --mc-darker: #0b1740;
  --mc-darker-2: #2547d6;
  --mc-extra2: #eef2ff;
  --mc-border: #d7e1ff;
  --mc-white: #ffffff;
  /* Overrides de variables globales del theme para que rbt-btn/theme-gradient/badges
     usen solo azules dentro de esta página (el theme por defecto mete violeta) */
  --color-darker: var(--mc-darker);
  --color-secondary: var(--mc-primary-light);
  background: var(--mc-white);
}

.rbt-badge-2 {
  background: rgba(215, 225, 255, 0.9) !important;
  box-shadow: 0 12px 22px 0 rgba(47, 87, 239, 0.18) !important;
}

.mland h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 800;
  color: var(--mc-heading);
  text-align: center;
  letter-spacing: -0.01em;
}

.mland-section-lead {
  margin: 0 auto 40px;
  max-width: 58ch;
  text-align: center;
  color: var(--mc-body);
  font-size: 15.5px;
  line-height: 1.65;
}

.mland-section {
  padding: 72px 0;
}

.mland-section-tint {
  background: var(--mc-extra2);
}

/* ---------- Scroll progress bar ---------- */
.mland-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 40;
  background: transparent;
  pointer-events: none;
}

.mland-scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--mc-primary), var(--mc-primary-light));
  transition: width 0.12s linear;
}

/* ---------- Scroll reveal ---------- */
.mland-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.mland-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mland-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Top bar ---------- */
.mland-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mc-border);
}

.mland-topbar img {
  height: 26px;
  width: auto;
}

/* ---------- Barra flotante persistente (cupo + CTA) ---------- */
.mland-float-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 18px;
  border-radius: 500px;
  background: var(--mc-white);
  border: 1px solid var(--mc-border);
  box-shadow: 0 20px 44px -14px rgba(15, 31, 77, 0.4);
  max-width: calc(100% - 28px);
  transform: translate(-50%, 130%);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.35s ease;
}

.mland-float-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.mland-float-cta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mc-heading);
  white-space: nowrap;
}

.mland-float-cta-info i {
  color: var(--mc-primary);
}

.mland-float-cta .rbt-btn {
  height: 42px;
  line-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .mland-float-cta-info span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-float-cta {
    transition: none;
  }
}

/* ---------- Hero ---------- */
.mland-hero {
  padding: 64px 0 48px;
  background: linear-gradient(
    115deg,
    var(--mc-darker) 0%,
    var(--mc-primary-dark) 35%,
    var(--mc-darker-2) 70%,
    var(--mc-primary) 100%
  );
  background-size: 200% 200%;
  animation: mland-gradient-shift 14s ease-in-out infinite;
  color: var(--mc-white);
  position: relative;
  overflow: hidden;
}

@keyframes mland-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-hero {
    animation: none;
  }
}

.mland-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% -10%, rgba(255, 255, 255, 0.16), transparent 40%),
    radial-gradient(circle at 100% 15%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.mland-hero > .container {
  position: relative;
}

/* ---------- Blobs SVG animados (decorativos, detrás del contenido) ---------- */
.mland-hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mland-hero-blobs svg {
  position: absolute;
}

.mland-blob-1 {
  top: -60px;
  left: -40px;
  width: 340px;
  height: 340px;
  animation: mland-float-a 9s ease-in-out infinite;
}

.mland-blob-2 {
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  animation: mland-float-b 11s ease-in-out infinite;
}

.mland-blob-3 {
  top: 30%;
  right: 12%;
  width: 120px;
  height: 120px;
  animation: mland-float-a 7s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes mland-float-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(18px, -22px) rotate(8deg);
  }
}

@keyframes mland-float-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, 18px) rotate(-6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-blob-1,
  .mland-blob-2,
  .mland-blob-3 {
    animation: none;
  }
}

.mland-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  margin-bottom: 20px;
  border-radius: 500px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mc-heading);
  background: linear-gradient(135deg, #ffffff, #dfe6ff);
}

.mland-hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mland-hero-photo {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 22px;
  padding: 6px;
  background: linear-gradient(135deg, var(--mc-primary), var(--mc-primary-light));
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.mland-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.mland-hero-photo-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 100px;
  background: var(--mc-white);
  color: var(--mc-heading);
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.35);
}

.mland-hero-photo-badge i {
  color: var(--mc-primary);
}

.mland-hero-pills {
  list-style: none;
  margin: 26px 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mland-hero-pills li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 600;
}

.mland-hero-pills li i {
  color: #ffffff;
}

.mland-free-callout {
  width: fit-content;
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  column-gap: 12px;
  margin: 0 0 24px;
  padding: 10px 18px 10px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.mland-free-callout > span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #0957ff;
  background: #ffffff;
}

.mland-free-callout strong {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.mland-free-callout small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.2;
}

.mland-hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.mland-hero-note i {
  color: #ffffff;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.mland-btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ---------- Audiencia ---------- */
.mland-audience-grid {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mland-audience-col {
  padding: 28px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.mland-audience-col:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.mland-audience-col h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--mc-white);
}

.mland-audience-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mland-audience-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.mland-audience-icon {
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.mland-audience-si .mland-audience-icon {
  background: #ffffff;
  color: var(--mc-primary-dark);
}

.mland-audience-no .mland-audience-icon {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Gancho (frase/promesa justo después del hero) ---------- */
.mland-hook {
  padding: 56px 0;
  background: var(--mc-extra2);
}

.mland-hook .mland-concepto {
  margin-bottom: 0;
  max-width: 68ch;
  padding: 36px 40px 26px;
  font-size: 21px;
  background: var(--mc-white);
  box-shadow: 0 30px 60px -35px rgba(15, 31, 77, 0.28);
}

/* ---------- Temario / pasos ---------- */
.mland-concepto {
  position: relative;
  max-width: 60ch;
  margin: 0 auto 40px;
  padding: 30px 34px 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--mc-heading);
  background: var(--mc-extra2);
  border: 1px solid var(--mc-border);
}

.mland-concepto-quote-icon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mc-primary), var(--mc-primary-light));
  box-shadow: 0 10px 20px -8px rgba(47, 87, 239, 0.5);
  animation: mland-quote-pulse 2.4s ease-in-out infinite;
}

.mland-concepto-quote-icon svg {
  width: 15px;
  height: 15px;
}

@keyframes mland-quote-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-concepto-quote-icon {
    animation: none;
  }
}

.mland-steps-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.mland-steps-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mc-primary);
}

.mland-steps-hint i {
  display: inline-block;
  animation: mland-hint-slide 1.6s ease-in-out infinite;
}

@keyframes mland-hint-slide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-steps-hint i {
    animation: none;
  }
}

.mland-steps-scroll {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--mc-primary) var(--mc-border);
}

.mland-steps-scroll::-webkit-scrollbar {
  height: 6px;
}

.mland-steps-scroll::-webkit-scrollbar-track {
  background: var(--mc-border);
  border-radius: 10px;
}

.mland-steps-scroll::-webkit-scrollbar-thumb {
  background: var(--mc-primary);
  border-radius: 10px;
}

.mland-steps-track {
  position: relative;
  display: flex;
  width: max-content;
  min-width: 100%;
}

.mland-steps-track::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--mc-border) 0,
    var(--mc-border) 8px,
    transparent 8px,
    transparent 14px
  );
  z-index: 0;
}

.mland-step {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 210px;
  padding: 0 14px;
  text-align: center;
  scroll-snap-align: center;
}

.mland-step-circle {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--mc-primary), var(--mc-primary-light));
  box-shadow: 0 12px 24px -10px rgba(47, 87, 239, 0.55);
  border: 4px solid var(--mc-white);
}

.mland-step-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mc-heading);
}

.mland-section-tint .mland-step-circle {
  border-color: var(--mc-extra2);
}

@media (max-width: 640px) {
  .mland-step {
    width: 170px;
  }
}

/* ---------- Instructor ---------- */
.mland-instructor {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: 20px;
  background: var(--mc-extra2);
  border: 1px solid var(--mc-border);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mland-instructor:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -28px rgba(47, 87, 239, 0.4);
}

.mland-instructor-avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--mc-primary), var(--mc-primary-light));
}

.mland-instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  display: block;
  border: 2px solid var(--mc-white);
}

.mland-instructor-name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--mc-heading);
}

.mland-instructor-role {
  margin: 2px 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mc-primary);
}

.mland-instructor-bio {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mc-body);
}

/* ---------- Cupo / urgencia ---------- */
.mland-cupo-card {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 32px 30px;
  border-radius: 22px;
  text-align: center;
  background: var(--mc-white);
  border: 1px solid var(--mc-border);
  box-shadow: 0 20px 44px -30px rgba(15, 31, 77, 0.3);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.mland-cupo-card.mland-cupo-llena {
  background: var(--mc-darker);
  border-color: var(--mc-darker);
}

.mland-cupo-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mc-primary);
}

.mland-cupo-llena .mland-cupo-headline {
  color: #ffffff;
}

.mland-cupo-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mland-cupo-pulse::before,
.mland-cupo-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--mc-primary);
}

.mland-cupo-pulse::before {
  animation: mland-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.5;
}

.mland-cupo-pulse::after {
  width: 8px;
  height: 8px;
  margin: auto;
  position: relative;
}

.mland-cupo-llena .mland-cupo-pulse::before,
.mland-cupo-llena .mland-cupo-pulse::after {
  background: #ffffff;
}

@keyframes mland-ping {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-cupo-pulse::before {
    animation: none;
  }
}

.mland-progress-track {
  height: 10px;
  border-radius: 500px;
  background: var(--mc-border);
  overflow: hidden;
  margin-bottom: 14px;
}

.mland-cupo-llena .mland-progress-track {
  background: rgba(255, 255, 255, 0.18);
}

.mland-progress-fill {
  height: 100%;
  border-radius: 500px;
  background: linear-gradient(90deg, var(--mc-primary), var(--mc-primary-light));
  transition: width 0.4s ease;
}

.mland-cupo-llena .mland-progress-fill {
  background: #ffffff;
}

.mland-cupo-detail {
  margin: 0 0 24px;
  font-size: 13.5px;
  color: var(--mc-body);
}

.mland-cupo-llena .mland-cupo-detail {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Form section ---------- */
.mland-form-grid {
  display: grid;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.mland-form-card,
.mland-success {
  padding: 32px 30px;
  border-radius: 22px;
  background: var(--mc-white);
  border: 1px solid var(--mc-border);
  box-shadow: 0 30px 60px -35px rgba(15, 31, 77, 0.28);
}

.mland-form-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--mc-heading);
}

.mland-form-card > p {
  margin: 0 0 24px;
  font-size: 13.5px;
  color: var(--mc-body);
}

.mland-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mland-input-group input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid var(--mc-border);
  background: var(--mc-extra2);
  color: var(--mc-heading);
  font-size: 15px;
  font-family: inherit;
}

.mland-input-group input::placeholder {
  color: #8a97c4;
}

.mland-input-group input:focus {
  outline: none;
  border-color: var(--mc-primary);
  box-shadow: 0 0 0 4px rgba(47, 87, 239, 0.14);
}

.mland-input-group input.ng-invalid.ng-touched {
  border-color: var(--mc-heading);
  border-width: 1.5px;
  background: #ffffff;
}

.mland-field-error {
  margin: 2px 0 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mc-heading);
}

.mland-checkbox.mland-checkbox-invalid {
  color: var(--mc-heading);
  font-weight: 700;
}

.mland-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mc-heading);
  cursor: pointer;
}

.mland-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--mc-primary);
}

.mland-summary-card {
  padding: 30px 28px;
  border-radius: 22px;
  background: var(--mc-extra2);
  border: 1px solid var(--mc-border);
}

.mland-summary-card h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mc-primary);
}

.mland-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mland-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mc-heading);
}

.mland-summary-list li i {
  color: var(--mc-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- Success ---------- */
.mland-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.mland-success > i.feather-check-circle {
  font-size: 38px;
  color: var(--mc-primary);
}

.mland-success h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--mc-heading);
}

.mland-success p {
  margin: 0;
  font-size: 14px;
  color: var(--mc-body);
}

.mland-success-nota {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mc-heading);
}

.mland-success-wave {
  width: 26px;
  height: 26px;
  display: inline-block;
  transform-origin: 70% 70%;
  animation: mland-wave 1.4s ease-in-out infinite;
}

@keyframes mland-wave {
  0%,
  60%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(16deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mland-success-wave {
    animation: none;
  }
}

/* ---------- Galería ---------- */
.mland-gallery-grid {
  display: grid;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.mland-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px -28px rgba(15, 31, 77, 0.45);
}

.mland-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(15, 31, 77, 0.25), transparent 55%);
}

.mland-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mland-gallery-item:hover img {
  transform: scale(1.06);
}

/* ---------- Footer ---------- */
.mland-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 20px 50px;
  text-align: center;
  background: linear-gradient(160deg, var(--mc-darker) 0%, var(--mc-primary-dark) 100%);
}

.mland-footer img {
  height: 24px;
  opacity: 0.9;
}

.mland-footer p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .mland-hero-media {
    margin-top: 32px;
  }

  .mland-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mland-section {
    padding: 48px 0;
  }

  .mland h2 {
    font-size: 24px;
  }

  .mland-instructor {
    flex-direction: column;
    text-align: center;
  }

  .mland-form-card,
  .mland-success,
  .mland-summary-card {
    padding: 24px 20px;
  }

  .mland-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .mland-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== */
/* Experience redesign · Dentarios Academy / blue & white editorial system   */
/* ========================================================================== */

.mland {
  --mc-primary: #0957ff;
  --mc-primary-light: #70a1ff;
  --mc-primary-dark: #07317f;
  --mc-heading: #071a3d;
  --mc-body: #52637c;
  --mc-darker: #041431;
  --mc-darker-2: #073b98;
  --mc-extra2: #f1f6ff;
  --mc-border: #dbe7fb;
  --mc-white: #ffffff;
  --mc-shadow: 0 24px 70px rgba(8, 41, 105, 0.12);
  --mc-shadow-strong: 0 34px 90px rgba(3, 20, 54, 0.28);
  overflow: hidden;
}

.mland {
  position: relative;
  color: var(--mc-body);
  background: var(--mc-white);
}

.mland::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(9, 87, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 87, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.mland .container {
  width: min(100% - 40px, 1180px);
  max-width: 1180px;
}

.mland h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.mland-section {
  position: relative;
  padding: 110px 0;
}

.mland-section-lead {
  max-width: 650px;
  margin-bottom: 56px;
  font-size: 17px;
  line-height: 1.75;
}

.mland-section-tint {
  background:
    radial-gradient(circle at 10% 10%, rgba(112, 161, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
}

/* Brand bar */
.mland-topbar {
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(219, 231, 251, 0.78);
  box-shadow: 0 8px 30px rgba(7, 26, 61, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
}

.mland-topbar img {
  height: 32px;
}

.mland .rbt-btn.btn-gradient {
  color: #fff !important;
  background: linear-gradient(135deg, #0967ff 0%, #083cc9 100%) !important;
  border: 0 !important;
  box-shadow: 0 14px 30px -12px rgba(9, 87, 255, 0.58);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.mland .rbt-btn.btn-gradient:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
  box-shadow: 0 20px 36px -14px rgba(9, 87, 255, 0.72);
}

.mland .rbt-btn.btn-gradient:focus-visible,
.mland a:focus-visible,
.mland button:focus-visible,
.mland input:focus-visible {
  outline: 3px solid rgba(112, 161, 255, 0.72);
  outline-offset: 4px;
}

.mland .rbt-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

/* Hero */
.mland-hero {
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at 74% 30%, rgba(95, 154, 255, 0.38), transparent 24%),
    radial-gradient(circle at 15% 100%, rgba(35, 105, 255, 0.3), transparent 34%),
    linear-gradient(130deg, #03122c 0%, #052b72 52%, #075bf0 100%);
  animation: none;
}

.mland-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 74%);
}

.mland-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: var(--mc-white);
  clip-path: polygon(0 82%, 100% 0, 100% 100%, 0 100%);
}

.mland-hero .row {
  min-height: 570px;
}

.mland-hero .col-lg-7 {
  position: relative;
  z-index: 2;
}

.mland-hero .rbt-badge-2 {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: #07317f !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: none !important;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mland-hero .rbt-badge-2::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #0957ff;
  box-shadow: 0 0 0 5px rgba(9, 87, 255, 0.12);
}

.mland-hero h1.sub-title {
  max-width: 760px;
  margin: 24px 0 20px !important;
  font-size: clamp(45px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.mland .theme-gradient {
  color: #9cc0ff !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.mland-hero p.description {
  max-width: 680px;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 18px !important;
  line-height: 1.65;
}

.mland-hero-pills {
  margin: 30px 0 30px;
  gap: 9px;
}

.mland-hero-pills li {
  padding: 11px 15px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  backdrop-filter: blur(12px);
}

.mland-hero .rbt-btn {
  min-height: 58px;
  padding-inline: 30px;
  background: #fff !important;
  color: #073b98 !important;
  box-shadow: 0 20px 48px -16px rgba(0, 0, 0, 0.48);
}

.mland-hero-note {
  max-width: 510px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.mland-hero-media {
  perspective: 1200px;
}

.mland-hero-photo {
  max-width: 400px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 170px 170px 28px 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--mc-shadow-strong);
  transform: rotate(2.5deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mland-hero-photo:hover {
  transform: rotate(0deg) translateY(-8px);
}

.mland-hero-photo::before {
  content: 'ACADEMY  /  LIVE';
  position: absolute;
  top: 26px;
  right: -28px;
  z-index: 2;
  padding: 10px 14px;
  color: #fff;
  background: #0957ff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(3, 20, 49, 0.28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mland-hero-photo img {
  aspect-ratio: 4 / 5.15;
  border-radius: inherit;
  filter: saturate(0.84) contrast(1.04);
}

.mland-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 58%, rgba(2, 20, 52, 0.52));
  pointer-events: none;
}

.mland-hero-photo-badge {
  z-index: 3;
  bottom: 24px;
  left: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.mland-blob-1 {
  top: -110px;
  left: 56%;
  width: 440px;
  height: 440px;
  opacity: 0.22;
}

.mland-blob-2 {
  right: -120px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  opacity: 0.18;
}

.mland-blob-3 {
  top: 12%;
  right: 5%;
  width: 150px;
  height: 150px;
  opacity: 0.28;
}

/* Manifesto / hook */
.mland-hook {
  padding: 64px 0 86px;
  background: var(--mc-white);
}

.mland-hook .mland-concepto {
  max-width: 900px;
  padding: 54px 64px 46px;
  border: 0;
  border-radius: 28px;
  color: var(--mc-heading);
  background:
    radial-gradient(circle at 100% 0, rgba(112, 161, 255, 0.2), transparent 38%),
    linear-gradient(135deg, #f6f9ff, #eaf2ff);
  box-shadow: var(--mc-shadow);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
  font-style: normal;
  letter-spacing: -0.03em;
}

.mland-concepto-quote-icon {
  top: -22px;
  width: 48px;
  height: 48px;
  background: #0957ff;
}

/* Audience */
.mland .bg-color-darker {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(9, 87, 255, 0.42), transparent 36%),
    linear-gradient(145deg, #03122c, #06245a) !important;
}

.mland .bg-color-darker::before {
  content: 'DENTARIOS';
  position: absolute;
  right: -20px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(100px, 18vw, 250px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.mland .bg-color-darker .mland-section-lead {
  color: rgba(255, 255, 255, 0.62) !important;
}

.mland-audience-grid {
  max-width: 1050px;
  gap: 22px;
}

.mland-audience-col {
  min-height: 300px;
  padding: 36px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
}

.mland-audience-col:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.mland-audience-si {
  background: #fff;
}

.mland-audience-si:hover {
  background: #fff;
}

.mland-audience-si h3,
.mland-audience-si li {
  color: var(--mc-heading);
}

.mland-audience-col h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.mland-audience-col li {
  font-size: 15px;
  line-height: 1.6;
}

.mland-audience-si .mland-audience-icon {
  color: #fff;
  background: #0957ff;
}

/* Learning journey */
.mland-steps-wrap {
  max-width: 1120px;
}

.mland-steps-hint {
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mland-steps-scroll {
  padding: 12px 6px 28px;
}

.mland-steps-track {
  gap: 14px;
}

.mland-steps-track::before {
  display: none;
}

.mland-step {
  position: relative;
  width: 350px;
  min-height: 330px;
  padding: 36px 32px;
  overflow: hidden;
  border: 1px solid var(--mc-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 49, 127, 0.075);
  text-align: left;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mland-step::after {
  content: '';
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(9, 87, 255, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.mland-step:hover {
  transform: translateY(-7px);
  border-color: #9abbf7;
  box-shadow: 0 22px 50px rgba(7, 49, 127, 0.14);
}

.mland-step-circle {
  width: 48px;
  height: 48px;
  margin: 0 0 32px;
  border: 0;
  border-radius: 14px;
  background: #0957ff;
  box-shadow: 0 12px 25px -9px rgba(9, 87, 255, 0.62);
  font-size: 15px;
}

.mland-step-text {
  position: relative;
  z-index: 1;
  max-width: 270px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

/* Instructor */
.mland-instructor {
  position: relative;
  max-width: 920px;
  padding: 42px 48px;
  gap: 34px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #061a42, #064ac8);
  box-shadow: var(--mc-shadow-strong);
}

.mland-instructor::after {
  content: 'HOST';
  position: absolute;
  right: 24px;
  bottom: -20px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
}

.mland-instructor-avatar {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  padding: 4px;
  background: #fff;
}

.mland-instructor > div:last-child {
  position: relative;
  z-index: 1;
}

.mland-instructor-name {
  color: #fff;
  font-size: 26px;
}

.mland-instructor-role {
  color: #9fc2ff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mland-instructor-bio {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

/* Social proof gallery */
.mland-gallery-grid {
  max-width: 1120px;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.mland-gallery-item {
  aspect-ratio: 0.95 / 1;
  border: 5px solid #fff;
  border-radius: 24px;
  box-shadow: 0 25px 55px -25px rgba(6, 35, 89, 0.34);
}

.mland-gallery-item:first-child {
  aspect-ratio: 1.28 / 1;
}

.mland-gallery-item::after {
  background: linear-gradient(180deg, transparent 50%, rgba(4, 20, 49, 0.48));
}

/* FAQ */
.mland .accordion {
  display: grid;
  gap: 12px;
  margin-top: 48px;
}

.mland .accordion-item.card {
  overflow: hidden;
  border: 1px solid var(--mc-border) !important;
  border-radius: 16px !important;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 49, 127, 0.055);
}

.mland .accordion-header {
  max-width: none;
  margin: 0;
}

.mland .accordion-button {
  padding: 22px 24px;
  color: var(--mc-heading);
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  font-weight: 750;
}

.mland .accordion-button:not(.collapsed) {
  color: #0957ff;
  background: #f5f8ff;
}

.mland .accordion-body {
  padding: 4px 24px 24px;
  color: var(--mc-body);
  background: #f5f8ff;
  font-size: 15px;
  line-height: 1.7;
}

.mland .accordion-body p {
  margin: 0;
}

/* Registration stage */
.mland-section[id='registro'] {
  scroll-margin-top: 76px;
  padding-top: 120px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #03122c 0%, #052765 100%);
  background-size:
    44px 44px,
    44px 44px,
    auto;
}

.mland-section[id='registro'] h2 {
  color: #fff;
}

.mland-section[id='registro'] > .container > .mland-section-lead {
  color: rgba(255, 255, 255, 0.62);
}

.mland-cupo-card {
  max-width: 760px;
  margin-bottom: 52px;
  padding: 26px 32px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.mland-cupo-headline {
  color: #fff;
}

.mland-cupo-detail {
  color: rgba(255, 255, 255, 0.64);
}

.mland-progress-track {
  background: rgba(255, 255, 255, 0.15);
}

.mland-progress-fill {
  background: linear-gradient(90deg, #fff, #76a7ff);
}

.mland-cupo-pulse::before,
.mland-cupo-pulse::after {
  background: #fff;
}

.mland-form-grid {
  max-width: 1060px;
  gap: 22px;
  grid-template-columns: 1.18fr 0.82fr;
}

.mland-form-card,
.mland-success,
.mland-summary-card {
  border: 0;
  border-radius: 26px;
}

.mland-form-card,
.mland-success {
  padding: 42px;
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.2);
}

.mland-form-card h3 {
  font-size: 30px;
}

.mland-form-card h3 .theme-gradient {
  color: #0957ff !important;
}

.mland-form {
  gap: 16px;
}

.mland-input-group input {
  min-height: 58px;
  border-color: #d8e3f5;
  border-radius: 13px;
  background: #f6f9ff;
}

.mland-input-group input:hover {
  border-color: #9abbf7;
}

.mland-summary-card {
  position: sticky;
  top: 100px;
  padding: 34px;
  color: #fff;
  background: #0957ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

.mland-summary-card h4 {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  letter-spacing: 0.12em;
}

.mland-summary-list {
  gap: 20px;
}

.mland-summary-list li {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.mland-summary-list li i {
  color: #fff;
}

/* Floating CTA + footer */
.mland-float-cta {
  bottom: 22px;
  border-color: rgba(9, 87, 255, 0.16);
  box-shadow: 0 24px 70px -18px rgba(3, 20, 49, 0.42);
}

.mland-footer {
  padding: 54px 20px 70px;
  background: #020d21;
}

.mland-footer img {
  height: 27px;
}

@media (max-width: 991px) {
  .mland-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .mland-hero .row {
    min-height: 0;
  }

  .mland-hero h1.sub-title {
    font-size: clamp(44px, 8vw, 68px);
  }

  .mland-hero-media {
    margin-top: 54px;
  }

  .mland-hero-photo {
    max-width: 460px;
  }

  .mland-form-grid {
    grid-template-columns: 1fr;
  }

  .mland-summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .mland .container {
    width: min(100% - 32px, 1180px);
  }

  .mland-topbar {
    min-height: 68px;
    padding: 12px 16px;
  }

  .mland-topbar img {
    height: 27px;
  }

  .mland-topbar .rbt-btn {
    height: 42px;
    padding-inline: 17px;
    line-height: 42px;
    font-size: 12px;
  }

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

  .mland-hero h1.sub-title {
    font-size: clamp(39px, 12vw, 56px);
    line-height: 1;
  }

  .mland-hero p.description {
    font-size: 16px !important;
  }

  .mland-hero-pills {
    display: grid;
  }

  .mland-hero-pills li {
    width: fit-content;
  }

  .mland-hero-photo {
    max-width: calc(100% - 26px);
    transform: rotate(1.5deg);
  }

  .mland-hero-photo::before {
    right: -14px;
  }

  .mland-section {
    padding: 78px 0;
  }

  .mland h2 {
    font-size: 34px;
  }

  .mland-section-lead {
    margin-bottom: 38px;
    font-size: 15.5px;
  }

  .mland-hook {
    padding: 45px 0 64px;
  }

  .mland-hook .mland-concepto {
    padding: 44px 24px 34px;
    border-radius: 22px;
    font-size: 25px;
  }

  .mland-audience-col {
    min-height: 0;
    padding: 28px 24px;
  }

  .mland-step {
    width: min(78vw, 260px);
  }

  .mland-instructor {
    padding: 34px 25px;
  }

  .mland-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mland-gallery-item,
  .mland-gallery-item:first-child {
    aspect-ratio: 1 / 1;
  }

  .mland-gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.6 / 1;
  }

  .mland-form-card,
  .mland-success,
  .mland-summary-card {
    padding: 28px 22px;
  }

  .mland-float-cta {
    bottom: 12px;
  }
}

@media (max-width: 430px) {
  .mland-topbar .btn-icon {
    display: none;
  }

  .mland-topbar .rbt-btn.hover-icon-reverse .btn-text {
    margin-inline-start: 0;
  }

  .mland-hero .rbt-btn {
    width: 100%;
    justify-content: center;
    padding-inline: 20px;
  }

  .mland-gallery-grid {
    grid-template-columns: 1fr;
  }

  .mland-gallery-item:first-child {
    grid-column: auto;
    aspect-ratio: 1.2 / 1;
  }

  .mland-float-cta {
    width: calc(100% - 24px);
    justify-content: space-between;
  }
}

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

/* SVG atmosphere: static by design to keep rendering predictable. */
.mland-orbit-svg {
  position: absolute;
  top: 50%;
  right: -110px;
  width: min(66vw, 860px);
  height: auto;
  transform: translateY(-50%);
  fill: none;
  opacity: 0.78;
}

.mland-orbit-ring {
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1.5;
  stroke-dasharray: 9 16;
}

.mland-orbit-ring-b {
  stroke: rgba(133, 180, 255, 0.24);
  stroke-dasharray: 2 12;
  stroke-width: 3;
}

.mland-orbit-route {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  stroke-linecap: round;
}

.mland-orbit-route-alt {
  stroke: rgba(112, 161, 255, 0.44);
}

.mland-orbit-nodes {
  fill: #ffffff;
  stroke: rgba(9, 87, 255, 0.55);
  stroke-width: 8;
}

/* The previous entrance/keyframe effects could leave content hidden on some
   browsers. These landings now use a stable, fully static presentation. */
.mland *,
.mland *::before,
.mland *::after {
  animation: none !important;
}

.mland-reveal,
.mland-reveal-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Agency value / proof board */
.mland-proof {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(112, 161, 255, 0.18), transparent 26%), #ffffff;
}

.mland-proof::before {
  content: '';
  position: absolute;
  top: 70px;
  right: -110px;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(9, 87, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(9, 87, 255, 0.025),
    0 0 0 84px rgba(9, 87, 255, 0.018);
  pointer-events: none;
}

.mland-proof-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

.mland-proof-heading > div {
  flex: 1 1 720px;
}

.mland-proof-heading h2 {
  max-width: 780px;
  margin: 14px 0 0;
  text-align: left;
}

.mland-proof-heading > p {
  flex: 0 1 360px;
  margin: 0 0 5px;
  color: var(--mc-body);
  font-size: 16px;
  line-height: 1.75;
}

.mland-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0957ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mland-section-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #0957ff;
}

.mland-proof-board {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--mc-border);
  border-bottom: 1px solid var(--mc-border);
}

.mland-proof-card {
  position: relative;
  flex: 0 0 20%;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
  border: 0;
  border-right: 1px solid var(--mc-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mland-proof-card:nth-child(5) {
  border-right: 0;
}

.mland-proof-card-wide,
.mland-proof-card-trust {
  flex: 0 0 50%;
  min-height: 160px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 36px;
  border-top: 1px solid var(--mc-border);
}

.mland-proof-card-trust {
  border-right: 0;
}

.mland-proof-card strong {
  display: block;
  color: var(--mc-heading);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.mland-proof-card span {
  max-width: 310px;
  margin-top: 9px;
  color: var(--mc-body);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.mland-proof-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  fill: none;
  stroke: #0957ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mland-proof-card-wide .mland-proof-icon,
.mland-proof-card-trust .mland-proof-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin: 0 26px 0 0;
}

.mland-proof-card-wide strong,
.mland-proof-card-trust strong {
  flex: 0 0 auto;
}

.mland-proof-card-wide span,
.mland-proof-card-trust span {
  margin: 0 0 0 20px;
  padding-left: 20px;
  border-left: 1px solid var(--mc-border);
}

@media (max-width: 991px) {
  .mland-proof-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .mland-proof-heading > div,
  .mland-proof-heading > p {
    flex-basis: auto;
  }

  .mland-proof-heading > p {
    max-width: 650px;
  }

  .mland-proof-card {
    flex-basis: 33.333%;
  }

  .mland-proof-card:nth-child(3) {
    border-right: 0;
  }

  .mland-proof-card:nth-child(4),
  .mland-proof-card:nth-child(5) {
    flex-basis: 50%;
    border-top: 1px solid var(--mc-border);
  }

  .mland-proof-card:nth-child(4) {
    border-right: 1px solid var(--mc-border);
  }

  .mland-proof-card-wide,
  .mland-proof-card-trust {
    flex-basis: 100%;
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .mland-proof {
    padding: 78px 0;
  }

  .mland-proof-heading {
    margin-bottom: 36px;
  }

  .mland-proof-heading h2 {
    font-size: 34px;
  }

  .mland-proof-card,
  .mland-proof-card-featured,
  .mland-proof-card-wide,
  .mland-proof-card-trust {
    flex: 0 0 100%;
    min-height: 150px;
    border-top: 1px solid var(--mc-border);
    border-right: 0;
  }

  .mland-proof-card-featured {
    border-top: 0;
  }

  .mland-proof-card-wide,
  .mland-proof-card-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .mland-proof-card-wide .mland-proof-icon,
  .mland-proof-card-trust .mland-proof-icon {
    margin: 0 0 22px;
  }

  .mland-proof-card-wide span,
  .mland-proof-card-trust span {
    margin: 10px 0 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .mland-orbit-svg {
    top: 35%;
    right: -240px;
    width: 760px;
    opacity: 0.4;
  }
}

/* Learning icons */
.mland-step-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.mland-step-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #0957ff;
  background: #edf4ff;
  border: 1px solid #d7e5ff;
}

.mland-step-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mland-step-icon i {
  font-size: 42px;
  line-height: 1;
}

.mland-step-head .mland-step-circle {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  color: #0957ff;
  background: #ffffff;
  border: 1px solid #c9dbfb;
  box-shadow: none;
  font-size: 15px;
}

.mland-step:nth-child(4n + 2) .mland-step-icon {
  color: #073b98;
  background: #e5efff;
}

.mland-step:nth-child(4n + 3) .mland-step-icon {
  color: #ffffff;
  background: #0957ff;
  border-color: #0957ff;
}

.mland-step:nth-child(4n + 4) .mland-step-icon {
  color: #0a4bd0;
  background: #f4f7ff;
}

/* The hero image stays clean: no labels over the photography. */
.mland-hero-photo::before {
  display: none;
}

.mland-hero-photo {
  max-width: 460px;
  border-radius: 32px;
  transform: none;
}

.mland-hero-photo img {
  aspect-ratio: auto;
  border-radius: 31px;
}

@media (max-width: 700px) {
  .mland-step {
    width: min(86vw, 350px);
    min-height: 310px;
  }

  .mland-step-icon {
    width: 72px;
    height: 72px;
  }

  .mland-step-icon i {
    font-size: 36px;
  }
}

/* Persistent registration CTA */
.mland-side-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 34;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0872ff, #073ac5);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(9, 87, 255, 0.2),
    0 20px 44px rgba(3, 37, 99, 0.42);
  font-size: 24px;
  text-decoration: none;
}

.mland-side-cta i {
  margin: 0;
  line-height: 1;
}

@media (max-width: 700px) {
  .mland-side-cta {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    font-size: 21px;
  }
}

/* Graphic audience panels */
.mland-audience-col {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.mland-audience-col::after {
  position: absolute;
  right: -10px;
  bottom: -48px;
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.mland-audience-si::after {
  content: 'SÍ';
  color: rgba(9, 87, 255, 0.045);
}

.mland-audience-no::after {
  content: 'NO';
  color: rgba(255, 255, 255, 0.035);
}

.mland-audience-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.mland-audience-visual svg {
  width: 108px;
  height: 108px;
  padding: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mland-audience-visual span {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mland-audience-si .mland-audience-visual svg {
  color: #0957ff;
  background: #edf4ff;
  border: 1px solid #d5e4ff;
  border-radius: 50%;
}

.mland-audience-si .mland-audience-visual span {
  color: #0957ff;
  background: #edf4ff;
}

.mland-audience-no .mland-audience-visual svg {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
}

.mland-audience-no .mland-audience-visual span {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.mland-audience-orbit,
.mland-audience-window {
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.45;
}

.mland-audience-target {
  fill: rgba(9, 87, 255, 0.1);
  stroke: currentColor;
  stroke-width: 2;
}

.mland-audience-arrow,
.mland-audience-check,
.mland-audience-line,
.mland-audience-cross {
  stroke: currentColor;
  stroke-width: 3;
}

.mland-audience-cross {
  opacity: 0.82;
}

.mland-audience-col h3,
.mland-audience-col ul {
  position: relative;
  z-index: 1;
}

/* Compact free-access reminder */
.mland-free-band {
  padding: 26px 0;
  background: #ffffff;
}

.mland-free-band-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% -80%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(110deg, #061c48, #0957ff);
  border-radius: 22px;
  box-shadow: 0 22px 50px -24px rgba(3, 38, 102, 0.48);
}

.mland-free-band-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 9px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
}

.mland-free-band-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.mland-free-band-copy span {
  color: #a9c8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mland-free-band-copy strong {
  color: #ffffff;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.mland-free-band-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 19px;
  color: #073b98 !important;
  background: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 700px) {
  .mland-audience-col {
    min-height: 0;
  }

  .mland-audience-visual svg {
    width: 88px;
    height: 88px;
  }

  .mland-free-band-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 24px;
  }

  .mland-free-band-copy {
    flex: 1 1 calc(100% - 90px);
  }

  .mland-free-band-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Full-width comparison treatment */
.mland-audience-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.mland-audience-section > .container {
  width: min(calc(100% - 64px), 1400px);
  max-width: 1400px;
}

.mland-audience-free-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 18px;
  padding: 9px 14px;
  color: #0757ec;
  background: #ffffff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.mland-audience-section .mland-section-lead {
  max-width: 720px;
}

.mland-audience-section .mland-audience-grid {
  position: relative;
  max-width: none;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 80px -38px rgba(0, 0, 0, 0.7);
}

.mland-audience-section .mland-audience-grid::after {
  content: 'VS';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #0757ec;
  background: #ffffff;
  border: 5px solid #09275b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.mland-audience-section .mland-audience-col {
  min-height: 520px;
  padding: 42px 44px;
  border: 0;
  border-radius: 27px;
}

.mland-audience-section .mland-audience-visual {
  margin-bottom: 20px;
}

.mland-audience-section .mland-audience-visual svg {
  width: 118px;
  height: 118px;
}

.mland-audience-profile {
  stroke: currentColor;
  stroke-width: 3;
}

.mland-audience-status {
  fill: currentColor;
  stroke: #ffffff;
  stroke-width: 3;
}

.mland-audience-si .mland-audience-check {
  stroke: #ffffff;
  stroke-width: 3.5;
}

.mland-audience-no .mland-audience-cross {
  stroke: #0a2a62;
  stroke-width: 3.5;
}

.mland-audience-section .mland-audience-col h3 {
  margin-bottom: 0;
  padding: 0 0 22px;
  font-size: 24px;
}

.mland-audience-section .mland-audience-col ul {
  gap: 0;
}

.mland-audience-section .mland-audience-col li {
  min-height: 86px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid currentColor;
  font-size: 15.5px;
}

.mland-audience-section .mland-audience-si li {
  border-bottom-color: #dce7f8;
}

.mland-audience-section .mland-audience-no li {
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.mland-audience-section .mland-audience-col li:last-child {
  border-bottom: 0;
}

@media (max-width: 800px) {
  .mland-audience-section {
    min-height: 0;
  }

  .mland-audience-section > .container {
    width: min(100% - 28px, 1400px);
  }

  .mland-audience-section .mland-audience-grid {
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mland-audience-section .mland-audience-grid::after {
    display: none;
  }

  .mland-audience-section .mland-audience-col {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .mland-audience-section .mland-audience-col li {
    min-height: 0;
  }
}

/* Clear yes/no symbols */
.mland-audience-symbol-bg {
  stroke: currentColor;
  stroke-width: 2;
}

.mland-audience-si .mland-audience-symbol-bg {
  fill: #0957ff;
}

.mland-audience-no .mland-audience-symbol-bg {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(255, 255, 255, 0.92);
}

.mland-audience-si .mland-audience-check,
.mland-audience-no .mland-audience-cross {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mland-audience-si .mland-audience-check {
  stroke: #ffffff;
}

.mland-audience-no .mland-audience-cross {
  stroke: #0b2b63;
}

/* Video testimonials carousel */
.mland-video-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(112, 161, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #edf4ff 100%);
}

.mland-video-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.mland-video-heading h2 {
  max-width: 760px;
  margin: 12px 0 0;
  text-align: left;
}

.mland-video-controls {
  display: flex;
  gap: 10px;
}

.mland-video-controls button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: #0957ff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 28px -12px rgba(9, 87, 255, 0.55);
  font-size: 18px;
  cursor: pointer;
}

.mland-video-track {
  display: flex;
  gap: 20px;
  margin-right: calc((100vw - min(100vw - 40px, 1180px)) / -2);
  padding: 4px max(24px, calc((100vw - 1180px) / 2)) 26px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #0957ff #d4e2f8;
}

.mland-video-track::-webkit-scrollbar {
  height: 7px;
}

.mland-video-track::-webkit-scrollbar-track {
  background: #d4e2f8;
  border-radius: 999px;
}

.mland-video-track::-webkit-scrollbar-thumb {
  background: #0957ff;
  border-radius: 999px;
}

.mland-video-card {
  flex: 0 0 min(360px, 76vw);
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 55px -26px rgba(5, 42, 108, 0.42);
  scroll-snap-align: start;
}

.mland-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  border-radius: 20px 20px 12px 12px;
  background: #03122c;
}

.mland-video-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 18px 20px;
}

.mland-video-meta span {
  color: #0957ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mland-video-meta strong {
  color: var(--mc-heading);
  font-size: 16px;
}

@media (max-width: 700px) {
  .mland-video-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .mland-video-track {
    margin-right: -16px;
    padding-right: 16px;
  }

  .mland-video-card {
    flex-basis: min(320px, 82vw);
  }
}

/* Editorial speaker profile */
.mland-instructor-section {
  padding-top: 110px !important;
  background: #ffffff;
}

.mland-instructor-section .mland-instructor {
  max-width: 1120px;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, #041633, #0647ba);
  text-align: left;
}

.mland-instructor-section .mland-instructor::after {
  display: none;
}

.mland-instructor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.mland-instructor-kicker {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #0a51e2;
  background: #ffffff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mland-instructor-section .mland-instructor-name {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.mland-instructor-section .mland-instructor-role {
  max-width: 500px;
  margin: 18px 0;
  color: #9fc2ff;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.mland-instructor-section .mland-instructor-bio {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

.mland-instructor-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.mland-instructor-details span,
.mland-instructor-details a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.mland-instructor-section .mland-instructor-avatar {
  width: 100%;
  height: 100%;
  min-height: 540px;
  padding: 0;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  background: transparent;
}

.mland-instructor-section .mland-instructor-avatar img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 28%;
}

/* Refined video carousel */
.mland-video-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(9, 87, 255, 0.34), transparent 29%),
    linear-gradient(145deg, #020f27, #06275f);
}

.mland-video-heading h2 {
  color: #ffffff;
}

.mland-video-heading > div:first-child > p {
  max-width: 610px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.mland-video-section .mland-section-kicker {
  color: #9fc2ff;
}

.mland-video-section .mland-section-kicker::before {
  background: #9fc2ff;
}

.mland-video-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.mland-video-actions > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mland-video-controls button {
  color: #0757ec;
  background: #ffffff;
  box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.52);
}

.mland-video-track {
  scrollbar-color: #72a4ff rgba(255, 255, 255, 0.12);
}

.mland-video-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.mland-video-track::-webkit-scrollbar-thumb {
  background: #72a4ff;
}

.mland-video-card {
  flex-basis: min(380px, 78vw);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.72);
}

@media (max-width: 800px) {
  .mland-instructor-section .mland-instructor {
    grid-template-columns: 1fr;
  }

  .mland-instructor-copy {
    padding: 38px 28px;
  }

  .mland-instructor-section .mland-instructor-avatar,
  .mland-instructor-section .mland-instructor-avatar img {
    min-height: 420px;
    border-radius: 0 0 28px 28px;
  }

  .mland-video-actions {
    align-items: flex-start;
  }
}
