﻿:root {
      --blue: #19218B;
      --blue-dark: #070A24;
      --blue-mid: #0B103A;
      --magenta: #E7278F;
      --pink: #F825A7;
      --white: #FFFFFF;
      --muted: #B8BEDD;
      --soft: rgba(255, 255, 255, 0.08);
      --line: rgba(255, 255, 255, 0.14);
      --card: rgba(10, 16, 55, 0.78);
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
      --radius: 26px;
      /* Superficies y acentos (misma familia cromática) */
      --bg-void: #050718;
      --bg-rise: #090d2e;
      --border-faint: rgba(255, 255, 255, 0.09);
      --border-card: rgba(255, 255, 255, 0.12);
      --accent-soft: rgba(231, 39, 143, 0.14);
      --accent-mid: rgba(231, 39, 143, 0.22);
      --accent-border: rgba(248, 37, 167, 0.38);
      --glow-pink: 0 22px 50px rgba(231, 39, 143, 0.14);
      --overlay-base: rgba(5, 7, 24, 0.92);
      --overlay-mid: rgba(7, 10, 36, 0.78);
      --text-body: rgba(255, 255, 255, 0.78);
      --text-kicker: rgba(184, 190, 221, 0.72);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 15% 8%, var(--accent-mid), transparent 30%),
        radial-gradient(circle at 82% 4%, var(--accent-soft), transparent 32%),
        linear-gradient(180deg, var(--bg-void) 0%, var(--blue-dark) 38%, var(--bg-rise) 100%);
      color: var(--white);
      line-height: 1.55;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
      z-index: -1;
    }

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

    .page {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(18px);
      background: rgba(5, 7, 24, 0.78);
      border-bottom: 1px solid var(--border-faint);
    }

    .nav-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
    }

    .logo img {
      display: block;
      width: auto;
      height: 44px;
      max-width: 240px;
      object-fit: contain;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      color: var(--text-body);
      font-size: 14px;
      font-weight: 650;
    }

    .menu a:hover {
      color: white;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 16px;
      padding: 15px 22px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: .25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--magenta), var(--pink));
      box-shadow: 0 16px 36px rgba(231,39,143,.32);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 46px rgba(231,39,143,.42);
    }

    .btn-secondary {
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.20);
      color: white;
    }

    .btn-secondary:hover {
      border-color: rgba(248,37,167,.8);
      background: rgba(248,37,167,.08);
    }

    .form-registro {
      display: grid;
      gap: 12px;
      margin: 20px 0 8px;
      text-align: left;
    }

    .form-registro label {
      font-size: 12px;
      font-weight: 750;
      color: var(--muted);
    }

    .form-registro input,
    .form-registro textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(0,0,0,.28);
      color: var(--white);
      font-size: 14px;
      font-family: inherit;
    }

    .form-registro input::placeholder,
    .form-registro textarea::placeholder {
      color: rgba(255,255,255,.35);
    }

    .form-registro textarea {
      min-height: 72px;
      resize: vertical;
    }

    .registro-banner {
      display: none;
      margin-bottom: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.4;
    }

    .registro-banner.is-visible {
      display: block;
    }

    .registro-banner--ok {
      border: 1px solid rgba(34, 197, 94, .45);
      background: rgba(34, 197, 94, .12);
      color: #bbf7d0;
    }

    .registro-banner--err {
      border: 1px solid rgba(248, 113, 113, .5);
      background: rgba(248, 113, 113, .1);
      color: #fecaca;
    }

    .hero {
      min-height: calc(100vh - 82px);
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 48px;
      align-items: center;
      padding: 62px 0 42px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(248,37,167,.55);
      background: rgba(231,39,143,.08);
      color: #FFD5EF;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 750;
      font-size: 13px;
      margin-bottom: 26px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: var(--pink);
      box-shadow: 0 0 18px var(--pink);
    }

    h1 {
      font-size: clamp(42px, 5.4vw, 72px);
      line-height: .96;
      letter-spacing: -.06em;
      margin-bottom: 24px;
    }

    .accent {
      color: var(--pink);
    }

    .accent-blue {
      color: #6A7BFF;
    }

    .lead {
      color: rgba(255,255,255,.78);
      font-size: 18px;
      max-width: 620px;
      margin-bottom: 28px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.055);
      border-radius: 14px;
      padding: 10px 13px;
      color: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 750;
    }

    .chip b {
      color: var(--pink);
      font-size: 16px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .countdown-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      width: min(100%, 560px);
      padding: 20px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.13);
      background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
      box-shadow: var(--shadow);
    }

    .countdown-card h3 {
      font-size: 17px;
      margin-bottom: 4px;
    }

    .countdown-card p {
      color: var(--muted);
      font-size: 12px;
    }

    .timer {
      display: flex;
      gap: 13px;
      align-items: center;
    }

    .timer div {
      text-align: center;
      min-width: 50px;
    }

    .timer strong {
      display: block;
      color: var(--pink);
      font-size: 26px;
      letter-spacing: .02em;
      line-height: 1;
    }

    .timer span {
      color: rgba(255,255,255,.7);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .video-wrap {
      position: relative;
      padding: 14px;
      border: 1px solid rgba(231,39,143,.55);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(231,39,143,.13), transparent 35%),
        rgba(255,255,255,.055);
      box-shadow: 0 36px 100px rgba(0,0,0,.50);
    }

    .video {
      position: relative;
      min-height: 470px;
      border-radius: 22px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,10,36,.72) 0%, rgba(7,10,36,.18) 45%, rgba(7,10,36,.78) 100%),
        radial-gradient(circle at 58% 38%, rgba(231,39,143,.24), transparent 35%),
        linear-gradient(135deg, #0A0F35, #040617 70%);
      border: 1px solid rgba(255,255,255,.10);
    }

    .video::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 77% 29%, rgba(248,37,167,.16), transparent 28%),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: auto, 80px 80px, 80px 80px;
      opacity: .62;
    }

    .lawyer-visual {
      position: absolute;
      right: 36px;
      bottom: 0;
      width: min(45%, 350px);
      height: 88%;
      border-radius: 170px 170px 0 0;
      background:
        radial-gradient(circle at 50% 18%, #F2D4C8 0 8%, transparent 8.4%),
        linear-gradient(90deg, transparent 0 38%, #111832 38% 62%, transparent 62%),
        radial-gradient(ellipse at 50% 28%, #151D4D 0 25%, transparent 26%),
        linear-gradient(145deg, transparent 0 42%, #101629 42% 65%, transparent 65%);
      opacity: .98;
    }

    .lawyer-visual::before {
      content: "";
      position: absolute;
      left: 28%;
      top: 10%;
      width: 44%;
      height: 18%;
      border-radius: 50% 50% 42% 42%;
      background: #15111F;
      box-shadow: 0 10px 0 rgba(0,0,0,.25);
    }

    .lawyer-visual::after {
      content: "";
      position: absolute;
      left: 23%;
      bottom: 11%;
      width: 57%;
      height: 44%;
      background: linear-gradient(135deg, #0D153D, #02030D);
      clip-path: polygon(8% 100%, 26% 18%, 50% 0, 76% 18%, 92% 100%);
      border: 1px solid rgba(255,255,255,.10);
    }

    .video-content {
      position: relative;
      z-index: 2;
      min-height: 470px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .live {
      width: fit-content;
      border-radius: 999px;
      background: rgba(231,39,143,.92);
      color: white;
      font-weight: 900;
      font-size: 12px;
      padding: 8px 12px;
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .play {
      position: absolute;
      left: 48%;
      top: 47%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      border-radius: 50%;
      border: 0;
      background: linear-gradient(135deg, var(--magenta), var(--pink));
      box-shadow: 0 18px 60px rgba(231,39,143,.55);
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 4;
    }

    .play::before {
      content: "";
      margin-left: 7px;
      width: 0;
      height: 0;
      border-top: 17px solid transparent;
      border-bottom: 17px solid transparent;
      border-left: 25px solid white;
    }

    .video.is-playing .play {
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, -50%) scale(0.85);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .video.is-playing .live {
      background: rgba(34, 197, 94, 0.92);
    }

    .video-title {
      max-width: 280px;
      margin-top: auto;
    }

    .video-title h3 {
      font-size: 28px;
      line-height: 1.05;
      letter-spacing: -.04em;
      margin-bottom: 9px;
    }

    .video-title p {
      color: var(--muted);
      font-size: 14px;
    }

    .controls {
      position: relative;
      z-index: 4;
      margin-top: 20px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(0,0,0,.34);
      display: grid;
      grid-template-columns: auto 1fr auto auto auto;
      gap: 13px;
      align-items: center;
      color: rgba(255,255,255,.85);
      font-size: 12px;
      backdrop-filter: blur(12px);
    }

    .progress {
      height: 5px;
      border-radius: 20px;
      background: rgba(255,255,255,.18);
      position: relative;
    }

    .progress::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: var(--progress-pct, 42%);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--magenta), var(--pink));
      transition: width 0.4s linear;
    }

    .under-video {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
    }

    .mini-card {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      background: rgba(255,255,255,.055);
      padding: 18px;
    }

    .mini-card h4 {
      margin-bottom: 2px;
      font-size: 15px;
    }

    .mini-card p {
      color: var(--muted);
      font-size: 13px;
    }

    .avatars {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      margin-left: -8px;
      border: 2px solid var(--blue-dark);
      background: linear-gradient(135deg, #D7B49E, #111832);
    }

    .avatar:first-child {
      margin-left: 0;
    }

    section {
      padding: 58px 0;
    }

    .section-title {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 30px;
    }

    .section-title h2 {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -.045em;
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--muted);
      font-size: 17px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .card {
      border: 1px solid rgba(255,255,255,.13);
      background:
        linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.025));
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 22px 54px rgba(0,0,0,.24);
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: auto -30px -70px auto;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(231,39,143,.13);
      filter: blur(26px);
      pointer-events: none;
    }

    .icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(231,39,143,.12);
      border: 1px solid rgba(231,39,143,.35);
      color: var(--pink);
      font-size: 23px;
      margin-bottom: 18px;
    }

    .card h3 {
      font-size: 20px;
      margin-bottom: 8px;
      letter-spacing: -.02em;
    }

    .card p, .card li {
      color: var(--muted);
      font-size: 14px;
    }

    .check-list {
      display: grid;
      gap: 14px;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 25px 1fr;
      gap: 8px;
      align-items: start;
    }

    .check-list li::before {
      content: "\2713";
      color: var(--pink);
      font-weight: 900;
      margin-top: 1px;
    }

    .audience-card {
      min-height: 390px;
    }

    .authority {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 26px;
      align-items: stretch;
    }

    .portrait {
      min-height: 330px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(circle at 45% 24%, #E6C5B5 0 8%, transparent 8.3%),
        linear-gradient(130deg, transparent 0 40%, #111832 40% 62%, transparent 62%),
        radial-gradient(ellipse at 45% 30%, #151D4D 0 21%, transparent 21.5%),
        linear-gradient(145deg, #090D2F, #02030D);
      position: relative;
      overflow: hidden;
    }

    .portrait::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 47%;
      background: linear-gradient(135deg, #101637, #02030D);
      clip-path: polygon(18% 100%, 34% 18%, 50% 0, 67% 18%, 83% 100%);
      opacity: .94;
    }

    .portrait.portrait--photo {
      padding: 0;
      background: var(--blue-dark);
    }

    .portrait.portrait--photo::after {
      display: none;
    }

    .portrait.portrait--photo img {
      width: 100%;
      height: 100%;
      min-height: 330px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .stat {
      padding: 16px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.045);
    }

    .stat strong {
      display: block;
      color: white;
      font-size: 22px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat span {
      color: var(--muted);
      font-size: 12px;
    }

    .roadmap {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      position: relative;
    }

    .step {
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.045);
      border-radius: 22px;
      padding: 22px;
      min-height: 210px;
      position: relative;
    }

    .step-number {
      width: 35px;
      height: 35px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--magenta), var(--pink));
      color: white;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .step h3 {
      font-size: 18px;
      margin-bottom: 9px;
    }

    .offer {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .offer--single {
      grid-template-columns: 1fr;
      max-width: min(920px, 100%);
      margin-left: auto;
      margin-right: auto;
    }

    .price-card {
      border: 1px solid rgba(231,39,143,.65);
      background:
        radial-gradient(circle at 20% 10%, rgba(231,39,143,.2), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: 0 28px 80px rgba(231,39,143,.12);
    }

    .price-card__title {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .price-card__lead {
      color: rgba(255, 255, 255, 0.8);
      font-size: 15px;
      margin-bottom: 14px;
    }

    .price-card--offer {
      position: relative;
      overflow: visible;
      border-color: rgba(255, 255, 255, 0.12);
      background:
        radial-gradient(circle at 50% -20%, rgba(248, 37, 167, 0.12), transparent 42%),
        linear-gradient(160deg, #070a24, #040617 70%);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    }

    .price-card--offer::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }

    .price-card--offer > * {
      position: relative;
      z-index: 1;
    }

    .price {
      font-size: clamp(46px, 6vw, 70px);
      line-height: 1;
      color: var(--pink);
      font-weight: 950;
      letter-spacing: -.06em;
      margin: 18px 0 10px;
    }

    .price-head {
      margin-bottom: 18px;
      padding: 8px 0 20px;
      border-radius: 0;
      border: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      background: transparent;
      text-align: center;
    }

    .price-kicker {
      margin: 0 0 10px;
      color: #ff7fcf;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-weight: 900;
    }

    .price-currency {
      margin: 0 0 10px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .price-note {
      color: rgba(255, 255, 255, 0.88);
      font-size: clamp(17px, 1.6vw, 24px);
      font-weight: 800;
      margin: 0;
    }

    .price-card--offer .price {
      color: #ffffff;
      font-size: clamp(50px, 5.6vw, 78px);
      margin: 0 0 6px;
      text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    }

    .price-card__lead--bar {
      margin: 0 0 22px;
      padding-left: 14px;
      border-left: 3px solid var(--magenta);
      text-align: left;
      max-width: 520px;
    }

    .price-compare {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(16px, 4vw, 36px);
      margin: 0 0 22px;
      padding: 18px 12px;
    }

    .price-compare__divider {
      width: 1px;
      align-self: stretch;
      min-height: 72px;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    }

    .price-was,
    .price-now {
      flex: 1 1 0;
      min-width: 0;
      text-align: center;
    }

    .price-was {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .price-was__label {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #ff6b9d;
    }

    .price-was__amount {
      position: relative;
      display: inline-block;
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 900;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: -0.04em;
    }

    .price-was__amount::after {
      content: "";
      position: absolute;
      left: -6%;
      right: -6%;
      top: 50%;
      height: 4px;
      border-radius: 3px;
      background: linear-gradient(90deg, transparent, #ff2d88 15%, #ff5c9a 50%, #ff2d88 85%, transparent);
      transform: rotate(-3deg);
      box-shadow: 0 0 16px rgba(255, 45, 136, 0.55);
    }

    .price-now {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .price-now__label {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #8ec5ff;
    }

    .price-now__amount {
      margin: 0;
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.04em;
      color: #fff;
      text-shadow: 0 0 40px rgba(231, 39, 143, 0.4);
    }

    .price-now__cur {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
    }

    .diplomado-schedule {
      margin: 0 0 22px;
      padding: 20px 18px;
      border-radius: 20px;
      border: 1px solid rgba(248, 37, 167, 0.45);
      background:
        radial-gradient(circle at 90% 10%, rgba(248, 37, 167, 0.12), transparent 40%),
        linear-gradient(165deg, rgba(12, 14, 48, 0.92), rgba(4, 6, 22, 0.96));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .diplomado-schedule__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .diplomado-schedule__list li {
      display: grid;
      grid-template-columns: minmax(120px, 150px) 1fr;
      gap: 12px;
      align-items: start;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .diplomado-schedule__list li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .diplomado-schedule__label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1a0624;
      background: linear-gradient(135deg, #ffe8f6, #ff7fcf);
      white-space: nowrap;
    }

    .diplomado-schedule__text {
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1.45;
      font-weight: 650;
      color: rgba(255, 255, 255, 0.9);
      padding-top: 3px;
    }

    .diplomado-highlights {
      margin: 0 0 18px;
      padding: 18px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(6, 9, 34, 0.65);
      text-align: center;
    }

    .diplomado-highlights__hours {
      margin: 0 0 12px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .diplomado-highlights__badge {
      display: inline-flex;
      align-items: center;
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.04em;
      color: #fff;
      background: linear-gradient(135deg, #e7278f, #f825a7);
      box-shadow: 0 8px 22px rgba(231, 39, 143, 0.35);
    }

    .diplomado-highlights__hours-text {
      font-size: 14px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.82);
    }

    .diplomado-highlights__cert {
      margin: 0;
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.88);
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .diplomado-highlights__cert strong {
      color: #ff9fd3;
      font-weight: 800;
    }

    .price-hero {
      position: relative;
      margin: 0 0 22px;
      padding: 28px 22px 24px;
      border-radius: 22px;
      text-align: center;
      border: 2px solid rgba(248, 37, 167, 0.75);
      background:
        radial-gradient(circle at 88% 12%, rgba(248, 37, 167, 0.18), transparent 42%),
        radial-gradient(circle at 12% 88%, rgba(25, 33, 139, 0.35), transparent 45%),
        linear-gradient(165deg, rgba(12, 14, 48, 0.95), rgba(4, 6, 22, 0.98));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 48px rgba(231, 39, 143, 0.35),
        0 24px 60px rgba(0, 0, 0, 0.45);
      overflow: hidden;
    }

    .price-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.35;
      background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
      background-size: 14px 14px;
      mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 65%);
    }

    .price-hero > * {
      position: relative;
      z-index: 1;
    }

    .price-hero__badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 18px;
    }

    .price-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #1a0624;
      background: linear-gradient(135deg, #ffe8f6, #ff7fcf);
      box-shadow: 0 4px 14px rgba(231, 39, 143, 0.35);
    }

    .price-hero__icon {
      font-size: 12px;
      line-height: 1;
    }

    .price-hero__amount {
      margin: 0;
      font-size: clamp(52px, 9vw, 88px);
      line-height: 0.95;
      font-weight: 950;
      letter-spacing: -0.05em;
      color: #fff;
      text-shadow:
        0 0 40px rgba(255, 255, 255, 0.25),
        0 0 60px rgba(231, 39, 143, 0.45);
    }

    .price-hero__cur {
      margin: 6px 0 16px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #ff7fcf;
    }

    .price-hero__wa {
      margin: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 14px;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 600;
    }

    .price-hero__wa strong {
      color: #ff9fd3;
      font-weight: 800;
    }

    .price-hero__wa-dot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-size: 13px;
      font-weight: 900;
      color: #fff;
      background: linear-gradient(135deg, #25d366, #128c7e);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    }

    .price-card__small--feat {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      border-top: none;
      padding-top: 4px;
      color: rgba(255, 255, 255, 0.78);
    }

    .price-card__feat-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 900;
      color: #fff;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    }

    .price-card__actions--invest {
      gap: 12px;
      margin-top: 8px;
    }

    .btn-invest-primary,
    .btn-invest-secondary {
      width: min(100%, 380px) !important;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 24px !important;
      font-size: 15px !important;
      border-radius: 999px !important;
    }

    .btn-invest-primary {
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 12px 36px rgba(231, 39, 143, 0.45);
    }

    .btn-invest-secondary {
      border: 1px solid rgba(142, 197, 255, 0.45) !important;
      background: rgba(8, 12, 42, 0.85) !important;
      color: #fff !important;
    }

    .discount-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: 14px;
      margin: 20px 0 16px;
    }

    .discount-card {
      min-width: 0;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 16px;
      padding: 16px;
      background: rgba(6, 9, 34, 0.7);
    }

    .discount-card--top {
      border-color: rgba(248, 37, 167, 0.65);
      background:
        radial-gradient(circle at 20% 0%, rgba(248,37,167,.15), transparent 50%),
        linear-gradient(145deg, rgba(231,39,143,.16), rgba(15,20,64,.9));
    }

    .discount-card__tag {
      display: inline-block;
      margin-bottom: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #15072c;
      background: linear-gradient(135deg, #ffd9ef, #ff9fd3);
    }

    .discount-card__badge {
      color: #ffffff;
      font-size: clamp(22px, 2.4vw, 34px);
      font-weight: 900;
      margin-bottom: 8px;
      letter-spacing: -0.035em;
      text-transform: none;
      overflow-wrap: anywhere;
    }

    .discount-card__price {
      display: block;
      color: #ffffff;
      font-size: clamp(28px, 2.6vw, 40px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-top: 12px;
      font-weight: 900;
      border-top: 1px solid rgba(255,255,255,.14);
      padding-top: 12px;
    }

    .discount-card__date {
      color: rgba(255, 255, 255, 0.84);
      font-size: 15px;
      font-weight: 650;
      margin: 0;
      line-height: 1.35;
    }

    .price-card__small {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.45;
      text-align: center;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .price-card__actions {
      display: grid;
      gap: 10px;
      justify-items: center;
    }

    .price-card__actions .btn {
      width: auto !important;
      min-width: min(100%, 320px);
      padding-left: 28px;
      padding-right: 28px;
    }

    .form-card {
      padding: 34px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    }

    .form-card h3 {
      font-size: clamp(24px, 2.4vw, 30px);
      letter-spacing: -0.03em;
      margin: 4px 0 8px;
    }

    .form-card__lead {
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      margin-bottom: 14px;
    }

    .form-card__small {
      color: var(--muted);
      font-size: 12px;
      margin-top: 12px;
      text-align: center;
    }

    .faq {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 18px;
    }

    details {
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.045);
      border-radius: 16px;
      padding: 18px 20px;
    }

    summary {
      cursor: pointer;
      font-weight: 750;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 14px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "\2304";
      color: var(--pink);
      font-size: 18px;
    }

    details p {
      color: var(--muted);
      font-size: 14px;
      margin-top: 12px;
    }

    .final {
      margin: 62px 0 48px;
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid rgba(231,39,143,.45);
      background:
        radial-gradient(circle at 6% 60%, rgba(231,39,143,.20), transparent 30%),
        linear-gradient(135deg, rgba(25,33,139,.9), rgba(7,10,36,.92));
      padding: 46px;
      display: grid;
      grid-template-columns: 1.1fr auto;
      gap: 30px;
      align-items: center;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: var(--shadow);
    }

    .final h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -.04em;
      margin-bottom: 12px;
    }

    .final p {
      color: rgba(255,255,255,.76);
      max-width: 620px;
    }

    .footer {
      color: rgba(255,255,255,.45);
      text-align: center;
      padding: 30px 0 50px;
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .menu {
        display: none;
      }

      .authority, .offer, .grid-2, .final {
        grid-template-columns: 1fr;
      }

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

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

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

      .video {
        min-height: 420px;
      }
    }

    @media (max-width: 640px) {
      .page, .nav-inner {
        width: min(100% - 24px, 1180px);
      }

      .nav-inner {
        height: 72px;
      }

      .nav .btn {
        display: none;
      }

      .immerse-hero {
        padding-top: 36px;
      }

      .grid-4, .roadmap, .stats {
        grid-template-columns: 1fr;
      }

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

      .countdown-card, .under-video {
        grid-template-columns: 1fr;
      }

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

      .price-card--offer .price {
        font-size: clamp(42px, 13vw, 64px);
      }

      .price-compare {
        flex-direction: column;
        gap: 14px;
        padding: 14px 8px;
      }

      .price-compare__divider {
        width: min(200px, 80%);
        height: 1px;
        min-height: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
      }

      .diplomado-schedule__list li {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .diplomado-schedule__label {
        justify-self: start;
      }

      .price-hero {
        padding: 22px 16px 20px;
      }

      .price-hero__amount {
        font-size: clamp(44px, 14vw, 64px);
      }

      .price-now__amount {
        font-size: clamp(32px, 10vw, 48px);
      }

      .price-note {
        font-size: 18px;
      }

      .discount-card__badge {
        font-size: clamp(24px, 8vw, 34px);
      }

      .discount-card__price {
        font-size: clamp(23px, 9vw, 32px);
      }

      .schedule-city {
        font-size: 20px;
      }

      .date-pill {
        width: 100%;
        min-width: 0;
      }

      .date-pill__day {
        font-size: 18px;
      }

      .date-pill__time {
        font-size: 20px;
      }

      .video {
        min-height: 380px;
      }

      .lawyer-visual {
        width: 56%;
        right: 0;
        opacity: .65;
      }

      .play {
        left: 50%;
      }

      .final {
        padding: 32px 24px;
      }

      .btn {
        width: 100%;
      }
    }

    /* === Estructura tipo inmersivo (hero centrado, franjas, CTAs) === */

    .immerse-hero {
      padding: 16px 0 28px;
    }

    .immerse-hero-inner {
      text-align: center;
      max-width: 880px;
      margin: 0 auto;
      padding-top: 28px;
    }

    .eyebrow {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 11px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 18px;
    }

    .immerse-title {
      font-size: clamp(30px, 4.2vw, 50px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }

    .immerse-lead {
      font-size: clamp(16px, 1.7vw, 24px);
      color: rgba(255, 255, 255, 0.78);
      max-width: 760px;
      margin: 0 auto 22px;
    }

    .chips--center {
      justify-content: center;
    }

    .hero-actions--center {
      justify-content: center;
    }

    .btn-lg {
      padding: 17px 28px;
      font-size: 15px;
      border-radius: 18px;
    }

    .countdown-card--hero {
      margin: 28px auto 0;
      max-width: 520px;
      grid-template-columns: 1fr;
      text-align: center;
    }

    .video-stage {
      margin-top: 36px;
      max-width: 1020px;
      margin-left: auto;
      margin-right: auto;
    }

    .video-stage--first {
      margin-top: 0;
      padding-top: 28px;
    }

    .immerse-band {
      margin: 56px 0;
      padding: 48px 0;
      border-top: 1px solid var(--border-faint);
      border-bottom: 1px solid var(--border-faint);
      background: rgba(5, 7, 24, 0.35);
    }

    .immerse-band--dark {
      background:
        radial-gradient(circle at 12% 20%, var(--accent-soft), transparent 38%),
        linear-gradient(180deg, rgba(5, 7, 24, 0.55) 0%, rgba(0, 0, 0, 0.22) 100%);
    }

    .section-title--left {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
      max-width: none;
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      margin-top: 28px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    .schedule-card {
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 24px;
      padding: 28px 30px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    }

    .schedule-city {
      font-size: 23px;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
      text-align: center;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

    .date-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 250px;
      padding: 14px 20px;
      border-radius: 16px;
      border: 1px solid rgba(248, 37, 167, 0.52);
      background: linear-gradient(145deg, rgba(231, 39, 143, 0.16), rgba(84, 25, 114, 0.16));
      color: #ffffff;
      transition: 0.2s ease;
    }

    .date-pill:hover {
      background: linear-gradient(145deg, rgba(248, 37, 167, 0.24), rgba(99, 31, 140, 0.24));
      transform: translateY(-2px);
      border-color: rgba(248, 37, 167, 0.8);
    }

    .date-pill__day {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: capitalize;
    }

    .date-pill__time {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #ffd5ef;
      border-left: 1px solid rgba(255, 255, 255, 0.22);
      padding-left: 10px;
    }

    .schedule-note {
      margin-top: 16px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
    }

    .band-cta {
      padding: 40px 0;
      text-align: center;
      border-top: 1px solid var(--border-faint);
      border-bottom: 1px solid var(--border-faint);
    }

    .band-cta--soft {
      background: rgba(255, 255, 255, 0.03);
    }

    .band-cta-inner {
      display: flex;
      justify-content: center;
    }

    .section-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
    }

    .authority .section-cta {
      margin-top: 22px;
    }

    .whatsapp-card .section-cta {
      margin-top: 20px;
    }

    @media (max-width: 520px) {
      .whatsapp-card .section-cta {
        flex-direction: column;
      }

      .whatsapp-card .section-cta .btn {
        width: 100%;
      }
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 8px;
    }

    .quote-card {
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(255, 255, 255, 0.045);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    }

    .quote-card p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 15px;
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .quote-card footer {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .speaker-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 8px;
    }

    .speaker-card {
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 22px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.04);
    }

    .speaker-card h3 {
      font-size: 17px;
      margin: 14px 0 8px;
      letter-spacing: -0.02em;
    }

    .speaker-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .speaker-av {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 14px;
      background: linear-gradient(135deg, rgba(231, 39, 143, 0.25), rgba(25, 33, 139, 0.45));
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .program-stack {
      display: grid;
      gap: 28px;
      margin-top: 28px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .modules-grid {
      list-style: none;
      margin: 28px auto 0;
      padding: 0;
      max-width: 980px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px 22px;
    }

    .module-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px 16px;
      align-items: start;
      margin: 0;
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      border-left: 4px solid var(--pink);
    }

    .module-card__num {
      font-weight: 950;
      font-size: 17px;
      line-height: 1.25;
      color: var(--pink);
      letter-spacing: -0.02em;
      min-width: 1.35em;
    }

    .module-card__title {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.92);
      letter-spacing: -0.02em;
    }

    .program-stack + .section-cta,
    .modules-grid + .section-cta {
      margin-top: 32px;
    }

    .program-day {
      border-left: 4px solid var(--pink);
      padding-left: 24px;
    }

    .program-kicker {
      display: inline-block;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 8px;
    }

    .program-day h3 {
      font-size: clamp(22px, 3vw, 28px);
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .program-lead {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 14px;
      font-size: 16px;
    }

    .check-list--compact {
      gap: 10px;
    }

    .big-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 28px;
    }

    .big-stat {
      text-align: center;
      padding: 28px 18px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
    }

    .big-stat strong {
      display: block;
      font-size: clamp(32px, 5vw, 46px);
      font-weight: 950;
      letter-spacing: -0.04em;
      color: var(--pink);
      margin-bottom: 10px;
    }

    .big-stat span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .whatsapp-help {
      margin: 48px auto 20px;
    }

    .whatsapp-card {
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
      padding: 40px 28px;
      border-radius: 28px;
      border: 1px solid rgba(231, 39, 143, 0.4);
      background:
        radial-gradient(circle at 20% 0%, rgba(231, 39, 143, 0.15), transparent 40%),
        rgba(255, 255, 255, 0.04);
    }

    .whatsapp-card h2 {
      font-size: clamp(26px, 3.5vw, 36px);
      margin-bottom: 12px;
      letter-spacing: -0.03em;
    }

    .whatsapp-card p {
      color: var(--muted);
      margin-bottom: 22px;
      font-size: 16px;
    }

    @media (max-width: 980px) {
      .schedule-grid,
      .testimonial-grid,
      .speaker-grid,
      .big-stats {
        grid-template-columns: 1fr;
      }
    }

    /* === Sección 3×3 profesores (tokens LexGO) === */

    .faculty-section {
      position: relative;
      margin: 0;
      padding: 72px 0 80px;
      border-top: 1px solid var(--border-faint);
      border-bottom: 1px solid var(--border-faint);
      background:
        radial-gradient(ellipse 85% 50% at 50% 0%, var(--accent-soft), transparent 50%),
        radial-gradient(circle at 100% 35%, rgba(25, 33, 139, 0.28), transparent 45%),
        radial-gradient(circle at 0% 65%, var(--accent-soft), transparent 40%),
        linear-gradient(180deg, var(--blue-dark) 0%, var(--bg-void) 45%, var(--blue-mid) 100%);
      overflow: hidden;
    }

    .faculty-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 50% 100%, var(--accent-soft), transparent 50%);
      opacity: 0.65;
    }

    .faculty-section-inner {
      position: relative;
      z-index: 1;
      max-width: min(1180px, calc(100% - 40px));
    }

    .faculty-head {
      text-align: center;
      margin: 0 auto 48px;
      max-width: 720px;
    }

    .faculty-eyebrow {
      display: inline-block;
      margin: 0 0 14px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-kicker);
    }

    .faculty-head__title {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 900;
      letter-spacing: -0.045em;
      line-height: 1.06;
      color: var(--white);
      margin: 0 0 20px;
    }

    .faculty-head__line {
      display: block;
    }

    .faculty-head__accent {
      background: linear-gradient(115deg, var(--magenta), var(--pink));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    .faculty-head__sub {
      margin: 0 auto;
      max-width: 520px;
      font-size: 16px;
      line-height: 1.6;
      color: var(--muted);
      font-weight: 450;
    }

    .faculty-head__sub::before {
      content: "";
      display: block;
      width: 56px;
      height: 2px;
      margin: 0 auto 20px;
      border-radius: 99px;
      background: linear-gradient(90deg, transparent, var(--magenta), var(--pink), transparent);
      opacity: 0.9;
    }

    .faculty-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .faculty-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      aspect-ratio: 1 / 1.18;
      background: var(--blue-dark);
      border: 1px solid var(--border-card);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), var(--glow-pink);
      transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .faculty-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent-border);
      box-shadow:
        0 26px 56px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(231, 39, 143, 0.12),
        0 20px 48px rgba(231, 39, 143, 0.16);
    }

    .faculty-card__media {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(160deg, var(--overlay-mid) 0%, transparent 44%),
        linear-gradient(to bottom, rgba(25, 33, 139, 0.2) 0%, transparent 38%),
        var(--faculty-photo),
        linear-gradient(160deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
      background-size: cover;
      background-position: center top;
      filter: saturate(0.9) contrast(1.03) brightness(0.91);
      transform: scale(1.02);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    }

    .faculty-card:hover .faculty-card__media {
      transform: scale(1.06);
      filter: saturate(1) contrast(1.02) brightness(0.95);
    }

    .faculty-card__shade {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(
        to top,
        var(--overlay-base) 0%,
        var(--overlay-mid) 32%,
        rgba(25, 33, 139, 0.12) 55%,
        transparent 76%
      );
    }

    .faculty-card__content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 22px 22px 24px;
    }

    .faculty-card__brand {
      display: inline-flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .faculty-card__brand img {
      width: 80px;
      height: 24px;
      object-fit: contain;
      display: block;
    }

    .faculty-card__name {
      margin: 0 0 10px;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.18;
      color: var(--white);
    }

    .faculty-card__bio {
      margin: 0;
      font-size: 13px;
      line-height: 1.52;
      color: var(--muted);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

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

      .faculty-card:nth-child(9) {
        grid-column: 1 / -1;
        max-width: min(100%, 400px);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
      }
    }

    @media (max-width: 640px) {
      .faculty-section {
        padding: 52px 0 60px;
      }

      .faculty-head {
        margin-bottom: 36px;
      }

      .faculty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .faculty-card:nth-child(9) {
        grid-column: auto;
        max-width: none;
      }

      .faculty-card {
        aspect-ratio: 1 / 1.12;
      }

      .faculty-card:hover {
        transform: translateY(-3px);
      }
    }
