/* /elearning-voiceover/ — dedicated e-learning voiceover page.
   Shares the landing design system used by the home page and
   text-to-speech-modern.css (same blue, ink, paper, radii, and shadows) with an
   `elv-` prefix so learning-page tweaks can never leak into another page. */

.elv-modern {
  --elv-ink: #0a1024;
  --elv-ink-soft: #263552;
  --elv-muted: #5d6b83;
  --elv-blue: #1769ff;
  --elv-blue-dark: #0d55d7;
  --elv-blue-soft: #edf4ff;
  --elv-cyan: #08aabd;
  --elv-cyan-soft: #eafafc;
  --elv-paper: #f6f8fc;
  --elv-line: #dbe3ef;
  --elv-white: #ffffff;
  --elv-shadow: 0 18px 45px rgba(8, 20, 47, 0.08);
  --umx-primary: var(--elv-blue);
  overflow: hidden;
  color: var(--elv-ink);
  background: var(--elv-white);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

.elv-modern,
.elv-modern * {
  box-sizing: border-box;
}

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

.elv-modern h1,
.elv-modern h2,
.elv-modern h3 {
  color: var(--elv-ink);
  font-family: inherit;
}

.elv-modern p {
  color: var(--elv-muted);
}

.elv-modern a {
  text-decoration: none;
}

.elv-shell {
  width: min(1240px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

/* ---------- Hero ---------- */
.elv-hero {
  position: relative;
  padding: 148px 0 84px;
  border-bottom: 1px solid var(--elv-line);
  background-color: var(--elv-paper);
}

.elv-hero::before,
.elv-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.elv-hero::before {
  top: 115px;
  left: 5vw;
  width: 104px;
  height: 104px;
  border: 1px solid #d8e3f4;
  border-radius: 28px;
  opacity: 0.65;
  transform: rotate(18deg);
}

.elv-hero::after {
  right: 5vw;
  bottom: 70px;
  width: 76px;
  height: 76px;
  border: 1px solid #cae5ec;
  border-radius: 50%;
  opacity: 0.75;
}

.elv-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: 62px;
  align-items: start;
}

.elv-hero__intro {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.elv-hero__copy {
  min-width: 0;
}

.elv-eyebrow,
.elv-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--elv-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.elv-eyebrow {
  min-height: 36px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid #d5dfed;
  border-radius: 12px;
  background: var(--elv-white);
  box-shadow: 0 7px 20px rgba(8, 20, 47, 0.04);
}

.elv-eyebrow svg,
.elv-section__eyebrow svg {
  width: 18px;
  height: 18px;
  color: var(--elv-blue);
}

.elv-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 3.7vw, 3.9rem);
  font-weight: 950;
  letter-spacing: -0.048em;
  line-height: 1.03;
}

.elv-hero h1 span {
  display: inline;
  color: var(--elv-blue);
}

.elv-hero__lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--elv-ink-soft) !important;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.elv-hero__description {
  max-width: 620px;
  margin-bottom: 29px;
  font-size: 1.02rem;
  line-height: 1.66;
}

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

.elv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.elv-button svg {
  width: 18px;
  height: 18px;
}

.elv-button:hover {
  transform: translateY(-2px);
}

.elv-button--primary {
  border-color: var(--elv-blue);
  color: var(--elv-white) !important;
  background: var(--elv-blue);
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.22);
}

.elv-button--primary:hover {
  border-color: var(--elv-blue-dark);
  color: var(--elv-white) !important;
  background: var(--elv-blue-dark);
}

.elv-button--secondary {
  border-color: #c8d4e5;
  color: var(--elv-ink) !important;
  background: var(--elv-white);
  box-shadow: 0 8px 20px rgba(8, 20, 47, 0.05);
}

.elv-button--secondary:hover {
  border-color: #9eb0c8;
  color: var(--elv-blue-dark) !important;
  background: #fbfcfe;
}

.elv-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 20px 0 0;
  padding: 0;
  color: #52617c;
  list-style: none;
  font-size: 12.5px;
  font-weight: 800;
}

.elv-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.elv-hero__proof svg {
  width: 16px;
  height: 16px;
  color: var(--elv-blue);
}

/* Hero product frame */
.elv-product {
  overflow: hidden;
  border: 1px solid #d1dbe9;
  border-radius: 24px;
  background: var(--elv-white);
  box-shadow: 0 28px 64px rgba(8, 20, 47, 0.13);
}

.elv-product__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid #e1e7f0;
  color: #33435e;
  background: var(--elv-white);
  font-size: 12px;
  font-weight: 850;
}

.elv-product__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.elv-product__brand svg {
  width: 20px;
  height: 20px;
  color: var(--elv-blue);
}

.elv-product__mode {
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--elv-blue-dark);
  background: var(--elv-blue-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.elv-product__canvas {
  padding: 14px;
  background: #edf2f8;
}

.elv-product__canvas img,
.elv-split__visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d7e0ec;
  border-radius: 14px;
  background: var(--elv-white);
}

.elv-product__canvas img {
  box-shadow: 0 14px 32px rgba(8, 20, 47, 0.11);
}

.elv-product__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid #e1e7f0;
  color: #52617c;
  background: #fbfcfe;
  font-size: 11px;
  font-weight: 800;
}

.elv-product__footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  text-align: center;
}

.elv-product__footer svg {
  width: 17px;
  height: 17px;
  color: var(--elv-blue);
}

/* ---------- Trust strip ---------- */
.elv-trust {
  padding: 22px 0;
  border-bottom: 1px solid var(--elv-line);
  background: var(--elv-white);
}

.elv-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.elv-trust article {
  padding: 11px 25px;
  border-right: 1px solid var(--elv-line);
}

.elv-trust article:first-child {
  padding-left: 0;
}

.elv-trust article:last-child {
  padding-right: 0;
  border-right: 0;
}

.elv-trust strong,
.elv-trust span {
  display: block;
}

.elv-trust strong {
  color: var(--elv-blue);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.elv-trust span {
  margin-top: 5px;
  color: #617089;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
}

/* ---------- Section shell ---------- */
.elv-section {
  padding: 96px 0;
}

.elv-section--white {
  background: var(--elv-white);
}

.elv-section--paper {
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #edf1f6;
  background: var(--elv-paper);
}

.elv-section__heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.elv-section__heading h2,
.elv-split__copy h2,
.elv-band h2,
.elv-final h2 {
  margin: 11px 0 17px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.elv-section__heading p,
.elv-split__copy > p,
.elv-band > div:first-child > p,
.elv-final p {
  max-width: 790px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.65;
}

.elv-section__heading p {
  margin-right: auto;
  margin-left: auto;
}

/* ---------- Steps ---------- */
.elv-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.elv-steps article,
.elv-bento__card,
.elv-paths > a,
.elv-usecases article {
  border: 1px solid var(--elv-line);
  border-radius: 18px;
  background: var(--elv-white);
  box-shadow: 0 12px 32px rgba(8, 20, 47, 0.05);
}

.elv-steps article {
  display: flex;
  min-height: 320px;
  padding: 26px;
  flex-direction: column;
}

.elv-steps__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 11px;
  color: var(--elv-blue-dark);
  background: var(--elv-blue-soft);
  font-size: 13px;
  font-weight: 950;
}

.elv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: var(--elv-blue);
  background: var(--elv-blue-soft);
}

.elv-icon svg {
  width: 23px;
  height: 23px;
}

.elv-steps h3,
.elv-bento__card h3,
.elv-paths h3,
.elv-usecases h3 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.elv-bento__card h3,
.elv-usecases h3 {
  margin-top: 20px;
}

.elv-steps p,
.elv-bento__card p,
.elv-paths p,
.elv-usecases p {
  margin-bottom: 0;
  font-size: 13.5px;
  line-height: 1.65;
}

.elv-steps__result {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--elv-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Feature bento ---------- */
.elv-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.elv-bento__card {
  min-height: 250px;
  padding: 24px;
}

.elv-bento__card:nth-child(3n) .elv-icon {
  color: #087f90;
  background: var(--elv-cyan-soft);
}

/* ---------- Use cases ---------- */
.elv-usecases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.elv-usecases article {
  display: flex;
  min-height: 250px;
  padding: 24px;
  flex-direction: column;
}

.elv-usecases article > span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--elv-blue-dark);
  background: var(--elv-blue-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.elv-usecases__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--elv-blue-dark) !important;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.elv-usecases__link b {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.elv-usecases__link:hover b {
  transform: translateX(3px);
}

/* ---------- Split (image + copy) ---------- */
.elv-split {
  display: grid;
  grid-template-columns: minmax(480px, 1.05fr) minmax(0, 0.95fr);
  gap: 62px;
  align-items: center;
}

.elv-split--reverse .elv-split__visual {
  order: 2;
}

.elv-split__visual {
  padding: 13px;
  border: 1px solid var(--elv-line);
  border-radius: 22px;
  background: #edf2f8;
  box-shadow: var(--elv-shadow);
}

.elv-split__copy > p {
  margin-bottom: 24px;
}

.elv-split__copy ul {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  color: #3d4d67;
  list-style: none;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
}

.elv-split__copy li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.elv-split__copy li svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--elv-blue);
}

.elv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--elv-blue-dark) !important;
  font-size: 13px;
  font-weight: 900;
}

.elv-text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.elv-text-link:hover span {
  transform: translateX(3px);
}

/* ---------- Dark band ---------- */
.elv-section--band {
  padding: 80px 0;
  color: var(--elv-white);
  background: var(--elv-ink);
}

.elv-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.elv-band .elv-section__eyebrow {
  color: #9fc0ff;
}

.elv-band h2 {
  color: var(--elv-white);
}

.elv-band > div:first-child > p {
  color: #b8c3d7;
}

.elv-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.elv-band__chips span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid #34425d;
  border-radius: 10px;
  color: #dbe6f8;
  background: #121e37;
  font-size: 12px;
  font-weight: 800;
}

.elv-band__chips span:nth-child(4n + 2) {
  border-color: #166175;
  color: #d6f7fb;
  background: #102f3c;
}

/* ---------- Related paths ---------- */
.elv-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.elv-paths > a {
  display: flex;
  min-height: 250px;
  padding: 23px;
  color: var(--elv-ink) !important;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.elv-paths > a:hover {
  border-color: #afc8f8;
  box-shadow: 0 18px 38px rgba(8, 20, 47, 0.08);
  transform: translateY(-3px);
}

.elv-paths__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--elv-blue-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.elv-paths__link b {
  font-size: 16px;
}

/* ---------- Final CTA ---------- */
.elv-final {
  padding: 82px 0 90px;
  background: var(--elv-white);
}

.elv-final__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  padding: 46px 48px;
  border: 1px solid #cddcf5;
  border-radius: 22px;
  background: var(--elv-blue-soft);
}

.elv-final__inner > div > span {
  color: var(--elv-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.elv-final h2 {
  max-width: 790px;
  margin-bottom: 13px;
  font-size: clamp(30px, 3.5vw, 44px);
}

.elv-final p {
  max-width: 770px;
}

.elv-final__inner > a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 13px;
  color: var(--elv-white) !important;
  background: var(--elv-blue);
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.22);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.elv-final__inner > a:hover {
  background: var(--elv-blue-dark);
  transform: translateY(-2px);
}

.elv-final__inner > a span {
  font-size: 18px;
}

.elv-modern :focus-visible {
  outline: 3px solid rgba(23, 105, 255, 0.26);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .elv-hero__grid,
  .elv-split,
  .elv-band {
    grid-template-columns: 1fr;
  }

  .elv-split--reverse .elv-split__visual {
    order: 0;
  }

  .elv-hero__copy {
    max-width: 760px;
  }

  .elv-product,
  .elv-split__visual {
    width: 100%;
    max-width: 840px;
  }

  .elv-steps,
  .elv-bento,
  .elv-usecases,
  .elv-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elv-band {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .elv-shell {
    width: min(100% - 30px, 1240px);
  }

  .elv-hero {
    padding: 118px 0 62px;
  }

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

  .elv-hero__grid {
    gap: 42px;
  }

  .elv-hero h1 {
    font-size: clamp(1.8rem, 8.4vw, 3.4rem);
  }

  .elv-hero__lead {
    font-size: 1.08rem;
  }

  .elv-product__footer,
  .elv-steps,
  .elv-usecases,
  .elv-bento {
    grid-template-columns: 1fr;
  }

  .elv-product__footer span {
    justify-content: flex-start;
  }

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

  .elv-trust article {
    padding-right: 15px;
    padding-left: 15px;
  }

  .elv-trust article:first-child {
    padding-left: 0;
  }

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

  .elv-section__heading {
    margin-bottom: 34px;
  }

  .elv-section__heading h2,
  .elv-split__copy h2,
  .elv-band h2,
  .elv-final h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .elv-steps article,
  .elv-usecases article {
    min-height: 0;
  }

  .elv-steps__result {
    margin-top: 18px;
  }

  .elv-final__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 28px;
  }

  .elv-final__inner > a {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .elv-actions {
    display: grid;
  }

  .elv-button {
    width: 100%;
  }

  .elv-product__bar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .elv-product__mode {
    align-self: flex-start;
  }

  .elv-trust__grid,
  .elv-paths {
    grid-template-columns: 1fr;
  }

  .elv-trust article,
  .elv-trust article:first-child,
  .elv-trust article:last-child,
  .elv-trust article:nth-child(n + 3) {
    margin: 0;
    padding: 15px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--elv-line);
  }

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

  .elv-paths > a {
    min-height: 0;
  }

  .elv-split__visual {
    padding: 8px;
    border-radius: 16px;
  }

  .elv-band__chips span {
    flex: 1 1 calc(50% - 9px);
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elv-modern *,
  .elv-modern *::before,
  .elv-modern *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
