:root {
  --font-display: "RundDisplay", "Trebuchet MS", Helvetica, sans-serif;
  --text-secondary: #536174;
  --bg: #ffffff;
  --nav: rgb(255, 255, 255);
  --cloud-dancer: #f7f9fc;
  --angora: #eef2ff;
  --ether: #dfe6f1;
  --primary: #4f46e5;
  --link: #0f766e;
  --highlight: #f6b04d;
  --danger: #dc2626;
  --muted: var(--text-secondary);
  --brand-primary: var(--primary);
  --brand-primary-strong: color-mix(in srgb, var(--brand-primary) 86%, #000);
  --brand-primary-soft: color-mix(in srgb, var(--brand-primary) 12%, #fff);
  --brand-link: var(--link);
  --brand-focus-ring: color-mix(in srgb, var(--brand-primary) 30%, #fff);
  --brand-success: #166534;
  --brand-success-soft: #eafff2;
  --brand-success-border: #c7f5da;
  --brand-danger: #dc2626;
  --brand-danger-soft: #fee2e2;
  --brand-danger-border: #fecaca;
  --header-offset: 147px;

  --text-main: #111827;
  --nav-text: #111827;

  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text-main);
  --bs-primary: var(--primary);
  --bs-primary-rgb: 79, 70, 229;
  --bs-link-color: var(--link);
  --bs-link-hover-color: var(--primary);
  --bs-border-color: var(--ether);
  --bs-secondary-bg: var(--cloud-dancer);
  --bs-secondary-color: var(--text-main);
  --bs-danger: var(--danger);
  --bs-danger-rgb: 220, 38, 38;
}

@font-face {
  font-family: "RundDisplay";
  src: local("RundDisplay");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

*,
*::before,
*::after { box-sizing: border-box; }

html,
body { max-width: 100%; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

h1,
.h1 {
  font-size: clamp(2.25rem, 3.4vw, 56px);
  line-height: 1.08;
}

img,
svg { max-width: 100%; height: auto; }

.loading-dots {
  display: inline-block;
  animation: academyLoadingBlink 1.2s infinite;
}

@keyframes academyLoadingBlink {
  0% { opacity: .25; }
  50% { opacity: 1; }
  100% { opacity: .25; }
}

a { color: var(--link); }
a:hover { color: var(--primary); text-decoration: underline; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 2000;
  transform: translateY(-160%);
  padding: .65rem .9rem;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
  color: #fff;
}

[id] {
  scroll-margin-top: calc(var(--header-offset, 147px) + 1rem);
}

main.py-4.py-lg-5 {
  padding-top: calc(var(--header-offset, 147px) + 1.2rem) !important;
}

@font-face {
  font-family: "bootstrap-icons";
  font-display: swap;
  src: url("../../vendor/bootstrap-icons/fonts/bootstrap-icons.woff2?e34853135f9e39acf64315236852cd5a") format("woff2"),
       url("../../vendor/bootstrap-icons/fonts/bootstrap-icons.woff?e34853135f9e39acf64315236852cd5a") format("woff");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  transition: box-shadow .2s ease, background-color .2s ease, backdrop-filter .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(19, 12, 56, .1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .78);
}

.glass-nav {
  background: var(--nav);
  border-color: color-mix(in srgb, var(--ether) 80%, #fff) !important;
  color: var(--nav-text);
}

.brand-it {
  background: var(--primary);
  padding: .1rem .35rem;
  border-radius: 4px;
  color: #fff;
}

.brand-logo,
.auth-brand-logo {
  aspect-ratio: 459 / 283;
  display: block;
  object-fit: contain;
}

.brand-logo { width: 110px; height: 68px; }

.auth-brand-logo {
  width: 132px;
  height: auto;
  margin-inline: auto;
}

.navbar-toggler {
  border-color: color-mix(in srgb, var(--ether) 90%, #fff);
  min-width: 44px;
  min-height: 44px;
  padding: .45rem;
}

.navbar-toggler:focus-visible,
.nav-link:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 45%, #fff);
  outline-offset: 2px;
}

.navbar-toggler-icon { filter: none; }

@media (max-width: 576px) { .brand-logo { width: 90px; height: 56px; } }

.nav-link {
  color: var(--text-secondary);
  padding: .5rem .75rem;
  border-radius: 8px;
  transition: color .3s ease, background-color .3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, #fff);
}

.btn-primary,
.btn-danger {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: color-mix(in srgb, var(--primary) 86%, #000);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--primary) 86%, #000);
  --bs-btn-active-bg: color-mix(in srgb, var(--primary) 82%, #000);
  --bs-btn-active-border-color: color-mix(in srgb, var(--primary) 82%, #000);
  --bs-btn-color: #fff;
  --bs-btn-border-radius: 8px;
  --bs-btn-padding-y: .62rem;
  --bs-btn-padding-x: 1.25rem;
  transition: all .3s ease;
}

.btn-outline-secondary,
.btn-outline-light,
.btn-secondary {
  --bs-btn-bg: transparent;
  --bs-btn-color: var(--text-main);
  --bs-btn-border-color: var(--text-main);
  --bs-btn-hover-bg: color-mix(in srgb, var(--primary) 8%, #fff);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-border-radius: 8px;
  --bs-btn-padding-y: .62rem;
  --bs-btn-padding-x: 1.25rem;
  transition: all .3s ease;
}

.btn-warning {
  --bs-btn-bg: var(--highlight);
  --bs-btn-border-color: var(--highlight);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: color-mix(in srgb, var(--highlight) 88%, #000);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--highlight) 88%, #000);
}


main .card,
.mini-card,
.quiz-option,
.ai-home .card,
.ai-card,
.ai-calendar-month,
.ai-calendar-panel,
.ai-calendar-full,
.ai-calendar-latam,
.ai-calendar-session-item,
.course-anchor-nav,
.wizard-cta-section {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ether) 65%, #fff);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.esm-hero,
.page-hero,
.ai-home-hero__wrap,
.course-main-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 249, 252, .94)),
    repeating-linear-gradient(90deg, rgba(79, 70, 229, .055) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(15, 118, 110, .045) 0 1px, transparent 1px 44px);
  border: 1px solid color-mix(in srgb, var(--ether) 65%, #fff);
  border-radius: 16px;
}

.academy-hero,
.subscription-cta {
  background: linear-gradient(135deg, #111827 0%, var(--primary) 62%, #0f766e 100%);
  color: #fff;
}

.calendar-weekdays span,
.course-price-old,
.ai-home-lead,
.ai-home-legend,
.ai-calendar-weekdays span,
.ai-home .muted,
.muted,
.text-secondary {
  color: var(--text-secondary) !important;
}

.dropdown-menu {
  border: 1px solid color-mix(in srgb, var(--ether) 70%, #fff);
  border-radius: 8px;
  padding: .55rem;
  box-shadow: 0 14px 35px rgba(26, 18, 70, .08);
  opacity: 0;
  transform: translateY(.35rem);
  display: block;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-item {
  color: var(--text-secondary);
  font-size: 18px;
  border-radius: 8px;
  padding: .45rem .75rem;
  transition: color .3s ease, background-color .3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary);
  background: rgba(80, 69, 200, .08);
}

.hero-main-image,
video,
iframe {
  border-radius: 24px;
}

.calendar-day {
  min-height: 70px;
  border: 1px solid var(--ether);
  border-radius: 8px;
  padding: .35rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.calendar-day.empty { background: var(--cloud-dancer); border-style: dashed; }
.calendar-day-number { color: #3b3b3b; }

.badge,
.text-bg-warning {
  background: var(--highlight) !important;
  color: #111 !important;
}

.alert-danger {
  --bs-alert-color: var(--danger);
  --bs-alert-bg: rgba(154, 43, 46, .08);
  --bs-alert-border-color: rgba(154, 43, 46, .35);
}

.alert-success {
  --bs-alert-color: var(--primary);
  --bs-alert-bg: rgba(0, 102, 108, .08);
  --bs-alert-border-color: rgba(0, 102, 108, .35);
}

.form-control,
.form-select,
.form-check-input,
.input-group-text {
  border-color: var(--ether);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(0, 102, 108, .18);
}

.footer-bootcamp {
  background: #000;
  color: #fff;
  margin-bottom: 88px;
}

.footer-bootcamp__container {
  max-width: 1200px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-bootcamp__grid {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(190px, 1fr) minmax(220px, 1.1fr) minmax(220px, .95fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.footer-bootcamp__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-bootcamp a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
}

.footer-bootcamp a:hover { color: #fff; text-decoration: underline; }
.footer-bootcamp a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-bootcamp__links,
.footer-bootcamp__contact {
  display: grid;
  gap: .75rem;
}

.footer-bootcamp__contact li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}

.footer-bootcamp__contact i { font-size: 1rem; line-height: 1.4; }

.footer-bootcamp__brand {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: flex-start;
  max-width: 280px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
}

.footer-brand-logo {
  width: clamp(168px, 14vw, 220px);
  height: auto;
  aspect-ratio: 220 / 136;
  object-fit: contain;
  display: block;
  filter: invert(1) brightness(2);
}

.footer-bootcamp__tagline {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  line-height: 1.45;
  max-width: 26ch;
}

.footer-bootcamp__socials {
  display: flex;
  gap: .85rem;
  align-items: center;
}

.footer-bootcamp__social-link {
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.carousel-control-next-icon,
.carousel-control-prev-icon { filter: invert(1); }

.hero-main-image { object-fit: cover; aspect-ratio: 16/10; max-height: 320px; width: 100%; }
.section-image { object-fit: cover; aspect-ratio: 16/10; width: 100%; box-shadow: 0 10px 24px rgba(11, 11, 11, .12); }
.course-thumb { object-fit: cover; aspect-ratio: 16/10; width: 100%; }
.course-hero-media { background: linear-gradient(135deg, var(--cloud-dancer), var(--angora)); border-radius: 18px; overflow: hidden; min-height: 320px; }
.course-hero-img { object-fit: cover; min-height: 320px; width: 100%; }
.course-price { font-size: clamp(1.15rem, 3vw, 1.5rem); display: flex; gap: .65rem; align-items: center; flex-wrap: wrap; }
.course-anchor-nav { position: sticky; top: 1rem; z-index: 20; display: flex; gap: .5rem; flex-wrap: wrap; border-radius: 999px; padding: .5rem .75rem; }
.course-anchor-nav a { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: .92rem; padding: .4rem .65rem; border-radius: 999px; min-height: 44px; display: inline-flex; align-items: center; }
.course-anchor-nav a:hover { background: #fff; color: var(--primary); }

.quiz-score { background: color-mix(in srgb, var(--cloud-dancer) 80%, #fff); border: 1px solid var(--ether); border-radius: 12px; padding: 1rem; }
#wizard-root .btn { text-wrap: balance; }
#wizard-root .progress { height: .6rem; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { min-width: 640px; }

.ai-home,
.ai-home .ai-home-eyebrow,
.ai-home .card,
.ai-calendar-day-number,
.blog-content,
.blog-post-header .lede { color: var(--text-main); }

.ai-home .btn-primary,
.ai-btn-primary,
.ai-dot--course,
.ai-calendar-marker--curso { background: var(--primary); border-color: var(--primary); }

.ai-btn-outline,
.ai-home .btn-outline { border-color: var(--ether); color: var(--text-main); background: #fff; }

.ai-btn-outline:hover,
.ai-home .btn-outline:hover { background: var(--cloud-dancer); color: var(--text-main); }

.ai-dot--bootcamp,
.ai-calendar-marker--bootcamp { background: var(--link); }

.ai-calendar-day { border: 1px solid var(--ether); background: #fff; }
.ai-calendar-panel-item { border-top: 1px solid color-mix(in srgb, var(--ether) 55%, #fff); }

@media (max-width: 1199px) {
  main > .container,
  header .navbar,
  footer .container { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 991px) {
  .navbar { padding-top: .9rem !important; padding-bottom: .9rem !important; }
  #navMain .btn { min-height: 44px; }
  .calendar-filter { max-width: none; }
  .course-anchor-nav { position: static; border-radius: 12px; }
  .footer-bootcamp__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .footer-bootcamp__brand {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 767px) {
  :root { --header-offset: 149px; }
  main.py-4.py-lg-5 { padding-top: calc(var(--header-offset, 149px) + .9rem) !important; padding-bottom: 1.25rem !important; }
  .academy-hero .btn { width: 100%; margin-right: 0 !important; }
  .academy-hero .btn + .btn { margin-top: .65rem; }
  .wizard-cta-section .btn-lg { width: 100%; font-size: 1rem; padding: .75rem 1rem; }
  .footer-bootcamp__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bootcamp__brand {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 575px) {
  .footer-bootcamp__container { padding-top: 54px; padding-bottom: 54px; }
  .footer-bootcamp__brand { align-items: center; text-align: center; width: 100%; }
  .footer-bootcamp__tagline { max-width: 100%; }

  h1, .h1 { font-size: clamp(1.55rem, 7vw, 2rem); }
  h2, .h2 { font-size: clamp(1.25rem, 5.3vw, 1.55rem); }
  .lead { font-size: 1rem; }
  .table { min-width: 560px; }
}

.site-header .navbar {
  padding-top: .55rem;
  padding-bottom: .55rem;
}

.ai-nav {
  --ai-nav-height: 40px;
}

.ai-nav__shell {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.ai-nav__brand {
  flex-shrink: 0;
  margin-right: .35rem;
}

.ai-nav__mobile-tools {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

.ai-nav__mobile-tools .btn {
  min-height: var(--ai-nav-height);
  padding-inline: .65rem;
}

.ai-nav__quick-cart .badge {
  margin-left: .3rem;
}

.ai-nav__toggler {
  padding: .42rem .56rem;
  border-color: color-mix(in srgb, var(--ether) 60%, #fff);
}

.ai-nav__toggler:focus-visible {
  box-shadow: 0 0 0 .18rem color-mix(in srgb, var(--primary) 25%, transparent);
}

.ai-nav__layout {
  width: 100%;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 1rem;
}

.ai-nav__main {
  flex: 1 1 auto;
  min-width: 0;
}

.ai-nav__secondary {
  flex: 0 0 auto;
}

.ai-nav__panel-header,
.ai-nav__backdrop,
.ai-nav__close {
  display: none;
}

.ai-nav__menu {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .32rem;
  margin: 0;
  flex-wrap: nowrap;
}

.ai-nav__menu .nav-link {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  padding: .4rem .52rem;
  border-radius: .6rem;
}

.ai-nav__services {
  position: relative;
}

.ai-nav__services-menu {
  z-index: 1205;
  min-width: 360px;
  max-width: 420px;
  padding: .45rem;
  border: 1px solid color-mix(in srgb, var(--ether) 52%, #fff);
  border-radius: 14px;
  background: color-mix(in srgb, #fff 96%, var(--ether));
  box-shadow: 0 18px 38px rgba(15, 23, 42, .16);
}

.ai-nav__services-menu .dropdown-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: .62rem;
  align-items: start;
  border-radius: 8px;
  padding: .68rem;
  color: #172033;
  white-space: normal;
}

.ai-nav__services-menu .dropdown-item i {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--primary) 9%, #fff);
  color: var(--primary);
}

.ai-nav__services-menu .dropdown-item:hover,
.ai-nav__services-menu .dropdown-item:focus,
.ai-nav__services-menu .dropdown-item.active {
  background: color-mix(in srgb, var(--primary) 8%, #fff);
  color: #0f172a;
}

.ai-nav__services-title {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #0f172a;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
}

.ai-nav__services-copy small {
  display: block;
  margin-top: .18rem;
  color: var(--text-secondary);
  font-size: .78rem;
  line-height: 1.35;
}

.ai-nav__services-badge {
  border: 1px solid color-mix(in srgb, var(--highlight) 48%, #fff);
  border-radius: 999px;
  background: #fff8eb;
  color: #6b4700;
  padding: .08rem .42rem;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.ai-nav__actions {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.ai-nav__group {
  display: inline-flex;
  align-items: center;
  gap: .36rem;
  padding: .28rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ether) 76%, #fff);
  background: color-mix(in srgb, #fff 84%, var(--ether));
  max-width: 100%;
}

.ai-nav__group .btn,
.ai-nav__group form,
.ai-nav__group .dropdown {
  flex: 0 0 auto;
  white-space: nowrap;
}

.ai-nav__group .btn {
  min-height: var(--ai-nav-height);
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  padding-inline: .68rem;
}

.ai-nav__group--contact {
  border-color: color-mix(in srgb, var(--primary) 20%, #fff);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
}

.ai-nav__cta {
  font-weight: 600;
}

.ai-nav__group--account {
  border-color: color-mix(in srgb, var(--ether) 68%, #fff);
}

.ai-country-selector__trigger {
  border-radius: 999px;
  border-color: color-mix(in srgb, var(--ether) 65%, #fff);
  background: color-mix(in srgb, #fff 92%, var(--ether));
  color: #111827;
  min-height: var(--ai-nav-height);
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding-inline: .55rem .5rem;
}

.ai-country-selector__trigger:hover,
.ai-country-selector__trigger:focus-visible {
  background: #fff;
  color: #111827;
  border-color: color-mix(in srgb, var(--primary) 26%, #fff);
}

.ai-country-selector__trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 60%, #fff);
  outline-offset: 2px;
}

.ai-country-selector__flag {
  font-size: .95rem;
  line-height: 1;
}

.ai-country-selector__label,
.ai-country-selector__code {
  font-size: .8rem;
  font-weight: 600;
}

.ai-country-selector__code {
  display: none;
}

.ai-country-selector__menu {
  min-width: 210px;
  padding: .35rem;
}

.ai-country-selector__form {
  margin: 0;
}

.ai-country-selector__menu .dropdown-item {
  border-radius: .55rem;
  font-size: .9rem;
}

.ai-country-selector__menu .dropdown-item.active,
.ai-country-selector__menu .dropdown-item:active {
  background-color: color-mix(in srgb, var(--primary) 88%, #fff);
  color: #fff;
}

.ai-global-presence {
  border-top: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  background: #fff;
}

.ai-global-presence--contrast {
  border-bottom: 1px solid color-mix(in srgb, #111 14%, #fff);
}

.ai-global-presence__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .45rem;
  padding-block: .34rem;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1f2937;
  flex-wrap: nowrap;
}

.ai-global-presence__time {
  font-variant-numeric: tabular-nums;
  color: #111;
  font-weight: 700;
  min-width: 7ch;
}

.ai-global-presence__separator {
  color: #6b7280;
  line-height: 1;
}

.ai-country-selector--topbar .ai-country-selector__trigger {
  min-height: 30px;
  padding-inline: .5rem .45rem;
  border-color: transparent;
  background: transparent;
  font-size: .82rem;
  gap: .2rem;
  line-height: 1;
}

.ai-country-selector--topbar .ai-country-selector__trigger:hover,
.ai-country-selector--topbar .ai-country-selector__trigger:focus-visible {
  border-color: color-mix(in srgb, var(--ether) 72%, #fff);
  background: #fff;
}

.ai-country-selector__flag--topbar {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .ai-global-presence__inner {
    flex-direction: row;
    gap: .28rem;
    padding-block: .35rem;
    font-size: .81rem;
  }

  .ai-global-presence__time {
    min-width: 6.6ch;
  }
}

@media (max-width: 1399px) {
  .ai-nav__menu {
    gap: .2rem;
  }

  .ai-nav__menu .nav-link {
    font-size: .77rem;
    padding-inline: .44rem;
  }

  .ai-nav__actions {
    gap: .48rem;
  }

  .ai-nav__group .btn {
    padding-inline: .56rem;
  }
}

@media (max-width: 1199px) {
  :root { --header-offset: 160px; }

  .ai-nav__mobile-tools {
    display: inline-flex;
  }

  .ai-nav {
    position: static;
  }

  .ai-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: color-mix(in srgb, #020617 72%, transparent);
    z-index: 1035;
    opacity: 0;
    pointer-events: none;
    border: 0;
    padding: 0;
    transition: opacity .24s ease;
  }

  .ai-nav.is-mobile-open .ai-nav__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .ai-nav .navbar-collapse {
    position: fixed;
    top: calc(var(--header-offset, 80px) - 1px);
    left: .75rem;
    right: .75rem;
    max-height: calc(100dvh - var(--header-offset, 80px) - 1rem);
    margin-top: 0;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--ether) 34%, #fff);
    border-radius: 20px;
    padding: 1rem;
    z-index: 1040;
    overflow: hidden auto;
    overscroll-behavior: contain;
    box-shadow: 0 28px 46px rgba(2, 6, 23, .25);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: transform .24s ease, opacity .24s ease, visibility .24s ease;
  }

  .ai-nav .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .ai-nav__layout {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
    min-height: 0;
  }

  .ai-nav__panel-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: .1rem;
  }

  .ai-nav__close {
    display: inline-flex;
    min-height: 40px;
    min-width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .35rem .6rem;
  }

  .ai-nav__main {
    border-bottom: 1px solid color-mix(in srgb, var(--ether) 45%, #fff);
    padding-bottom: .75rem;
    min-height: 0;
  }

  .ai-nav__menu {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    row-gap: .12rem;
    flex: 0 1 auto;
    width: 100%;
  }

  .ai-nav__menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .015em;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
    padding: .58rem .55rem;
    border-radius: .8rem;
  }

  .ai-nav .navbar-collapse .dropdown-menu:not(.show) {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: none;
  }

  .ai-nav .navbar-collapse .dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .ai-nav__services-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: min(52dvh, 430px);
    margin: .1rem 0 .45rem;
    padding: .35rem;
    border-radius: 12px;
    overflow: hidden auto;
    overscroll-behavior: contain;
    box-shadow: none;
  }

  .ai-nav__services-menu .dropdown-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: .5rem;
    padding: .56rem;
  }

  .ai-nav__services-menu .dropdown-item i {
    width: 28px;
    height: 28px;
  }

  .ai-nav__services-title {
    flex-wrap: wrap;
    font-size: .86rem;
  }

  .ai-nav__services-copy small {
    font-size: .74rem;
    line-height: 1.25;
  }

  .ai-nav .navbar-collapse .ai-nav__services-menu .dropdown-item,
  .ai-nav .navbar-collapse .ai-nav__services-menu .dropdown-item small,
  .ai-nav .navbar-collapse .ai-nav__services-title {
    text-transform: none;
    letter-spacing: 0;
  }

  .ai-nav .navbar-collapse .btn,
  .ai-nav .navbar-collapse .dropdown-item,
  .ai-nav .navbar-collapse .ai-country-selector__label,
  .ai-nav .navbar-collapse .ai-country-selector__code,
  .ai-nav .navbar-collapse .nav-link {
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.25;
  }

  .ai-nav__secondary {
    margin-top: auto;
  }

  .ai-nav__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .ai-nav__group {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
    overflow: visible;
    flex-wrap: wrap;
    padding: .5rem;
    gap: .5rem;
  }

  .ai-nav__group .btn {
    min-height: 42px;
  }

  .ai-nav__group--account > .btn,
  .ai-nav__group--account > .dropdown,
  .ai-nav__group--account > form,
  .ai-nav__group--account > a,
  .ai-nav__group--contact > .btn,
  .ai-nav__group--contact > .dropdown,
  .ai-nav__group--contact > form,
  .ai-nav__group--contact > a {
    flex: 1 1 calc(50% - .45rem);
  }

  .ai-nav__group .dropdown,
  .ai-nav__group .dropdown .btn,
  .ai-nav__group form {
    width: 100%;
  }

  .ai-nav__group .dropdown .btn,
  .ai-nav__group .btn,
  .ai-nav__group form .btn {
    justify-content: center;
  }

  body.ai-nav-open {
    overflow: hidden;
  }

  body.ai-nav-open .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.ai-nav-open .cookie-consent-banner {
    z-index: 1030;
  }

  .ai-global-presence__inner {
    justify-content: center;
    gap: .3rem;
    font-size: .74rem;
    padding: .38rem .25rem;
  }

  .ai-global-presence__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: .24rem;
    text-align: center;
    line-height: 1.4;
  }
}

@media (max-width: 991px) {
  .ai-nav__group--contact .btn span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 767px) {
  .ai-nav__mobile-tools {
    gap: .35rem;
  }

  .ai-nav__quick-cta,
  .ai-nav__quick-access {
    display: none !important;
  }

  .ai-nav__toggler {
    margin-left: 0;
  }

  .ai-nav .navbar-collapse {
    left: .5rem;
    right: .5rem;
    top: max(.5rem, env(safe-area-inset-top));
    bottom: max(.5rem, env(safe-area-inset-bottom));
    max-height: none;
    border-radius: 18px;
    padding: .85rem;
  }

  .ai-nav__menu .nav-link {
    font-size: .98rem;
    padding-block: .65rem;
  }

  .ai-nav__group--account > .btn,
  .ai-nav__group--account > .dropdown,
  .ai-nav__group--account > form,
  .ai-nav__group--account > a,
  .ai-nav__group--contact > .btn,
  .ai-nav__group--contact > .dropdown,
  .ai-nav__group--contact > form,
  .ai-nav__group--contact > a {
    flex-basis: 100%;
  }

  .ai-global-presence__inner {
    padding-inline: .38rem;
    font-size: .72rem;
  }
}

@media (max-width: 575.98px) {
  .ai-country-selector__label {
    display: none;
  }

  .ai-country-selector__code {
    display: inline;
  }

  .ai-global-presence__inner {
    gap: .2rem;
    line-height: 1.42;
    max-width: 34rem;
    padding-block: .42rem;
  }
}

.catalog-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 11, 11, .12);
}

.catalog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.store-hero,
.catalog-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 16px;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 249, 252, .95)),
    repeating-linear-gradient(90deg, rgba(79, 70, 229, .05) 0 1px, transparent 1px 42px);
}

.store-hero__eyebrow {
  display: inline-flex;
  margin-bottom: .55rem;
  color: var(--link);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-toolbar,
.catalog-filter-panel {
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.store-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: .9rem;
  align-items: center;
}

.store-toolbar__providers,
.store-toolbar__search,
.store-results-head,
.catalog-filter-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}

.store-toolbar__search {
  justify-content: flex-end;
}

.store-toolbar__search .form-control {
  min-width: min(100%, 240px);
}

.store-results-head,
.catalog-filter-panel__head {
  justify-content: space-between;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.store-product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.store-product-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--cloud-dancer);
  overflow: hidden;
}

.store-product-card__media img,
.store-product-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-product-card__body,
.store-product-card__footer {
  padding: 1rem;
}

.store-product-card__meta {
  margin: 0 0 .35rem;
  color: var(--text-secondary);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.store-product-card h2 a {
  color: var(--text-main);
  text-decoration: none;
}

.store-product-card h2 a:hover {
  color: var(--primary);
}

.store-product-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border-top: 1px solid color-mix(in srgb, var(--ether) 65%, #fff);
}

.store-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: stretch;
}

.store-product-hero__media,
.store-product-hero__content,
.store-detail-section,
.store-empty {
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.store-product-hero__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.store-product-hero__content,
.store-detail-section {
  padding: clamp(1rem, 2.2vw, 1.45rem);
}

.store-product-hero__price {
  color: var(--text-main);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 850;
  margin-bottom: 1rem;
}

.store-includes {
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 8px;
  background: var(--cloud-dancer);
  padding: 1rem;
  margin-bottom: 1rem;
}

.catalog-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  align-items: end;
}

.catalog-filter-grid > div:first-child,
.catalog-filter-grid__actions {
  grid-column: span 2;
}

.catalog-filter-grid__actions {
  display: flex;
  gap: .5rem;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.store-actions .btn,
.store-btn {
  min-height: 38px;
  padding: .42rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.2;
}

.store-btn--compact {
  min-height: 34px;
  padding: .35rem .72rem;
  font-size: .82rem;
}

.store-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
}

@media (max-width: 575.98px) {
  .store-hero,
  .catalog-page-hero,
  .store-toolbar,
  .store-product-hero,
  .catalog-filter-grid {
    grid-template-columns: 1fr;
  }

  .store-toolbar__search {
    justify-content: stretch;
  }

  .store-toolbar__search .form-control,
  .store-toolbar__search .btn,
  .catalog-filter-grid__actions,
  .catalog-filter-grid__actions .btn,
  .store-product-card__footer .btn {
    width: 100%;
  }

  .store-product-grid {
    grid-template-columns: 1fr;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .store-actions .btn,
  .store-card-actions .btn {
    width: 100%;
  }

  .store-card-actions {
    justify-content: stretch;
    width: 100%;
  }
}

@media (max-width: 1280px) {
  .navbar-expand-xl .navbar-collapse {
    gap: .6rem;
  }
}

@media (max-width: 991.98px) {
  .store-hero,
  .catalog-page-hero,
  .store-toolbar,
  .store-product-hero,
  .catalog-filter-grid {
    grid-template-columns: 1fr;
  }

  .store-toolbar__search {
    justify-content: stretch;
  }

  .store-toolbar__search .form-control {
    flex: 1 1 220px;
  }

  .catalog-filter-grid > div:first-child,
  .catalog-filter-grid__actions {
    grid-column: auto;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cookie-consent-banner {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid color-mix(in srgb, var(--ether) 84%, #fff);
  border-radius: 8px;
  padding: .85rem;
  width: min(520px, calc(100vw - 2rem));
  box-shadow: 0 18px 48px rgba(15, 23, 42, .14);
}
.cookie-consent-banner__content {
  display: grid;
  gap: .75rem;
}
.cookie-consent-banner__content p {
  font-size: .86rem;
  line-height: 1.35;
}
.cookie-consent-banner__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}
.cookie-modal[hidden],
.cookie-consent-banner[hidden] { display: none !important; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
}
.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}
.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  margin: 5vh auto;
  width: min(92vw, 720px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
}
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding: .75rem 0;
}
.footer-cookie-link { color: #fff; text-decoration: underline; }
@media (max-width: 767.98px) {
  .cookie-consent-banner { left: .5rem; right: .5rem; bottom: .5rem; padding: .7rem; width: auto; }
  .cookie-consent-banner__content { gap: .55rem; }
  .cookie-consent-banner__content p { font-size: .8rem; line-height: 1.3; }
  .cookie-consent-banner__actions { width: 100%; display: grid; grid-template-columns: 1.15fr .85fr .9fr; }
  .cookie-consent-banner__actions .btn { width: 100%; min-height: 44px; padding: .45rem; font-size: .8rem; line-height: 1.2; }
  .cookie-consent-banner__actions .btn[data-cookie-action="accept-all"] { grid-column: auto; }
  .cookie-consent-banner__content + .small { font-size: .8rem; }
}

.price-main { font-weight: 700; }
.price-fx {
  font-size: 12px;
  opacity: .85;
  margin-top: 4px;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.price-fx span { white-space: nowrap; }
.price-fx.price-disclaimer { display: block; }
.price-block .price-main.d-inline,
.price-block .price-main.display-6,
.price-block .price-main.fw-bold,
.price-block .price-main.fw-semibold { font-weight: inherit; }

.dual-home { position: relative; }
.home-mode-floating {
  position: fixed;
  top: calc(var(--header-offset, 0px) + .35rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1095;
  width: auto;
  max-width: calc(100vw - 1.25rem);
}
.home-mode-spacer {
  height: 86px;
}
.dual-home-toggle-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .45rem;
  min-height: 72px;
  border: 2px solid #000;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(23, 20, 52, .09);
  transition: border-color .32s ease, box-shadow .32s ease, background-color .32s ease;
}
.dual-home-toggle-wrap > * {
  position: relative;
  z-index: 1;
}
.dual-home-toggle-wrap::before,
.dual-home-toggle-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.dual-home-toggle-wrap::before {
  border: 2px dashed rgba(0, 0, 0, .92);
  opacity: 0;
}
.dual-home-toggle-wrap::after {
  border: 2px solid #000;
  opacity: 1;
}
.dual-home-toggle-wrap.is-switching::before {
  animation: dual-home-border-dash-out .36s cubic-bezier(.22, .61, .36, 1) both;
}
.dual-home-toggle-wrap.is-switching::after {
  animation: dual-home-border-solid-in .36s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes dual-home-border-dash-out {
  0% { opacity: 1; }
  70% { opacity: .4; }
  100% { opacity: 0; }
}
@keyframes dual-home-border-solid-in {
  0% { opacity: .58; }
  100% { opacity: 1; }
}
.dual-home-toggle {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1e2240;
  padding: .95rem 1.65rem;
  min-height: 62px;
  min-width: 200px;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.15;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.dual-home-toggle:hover,
.dual-home-toggle:focus-visible {
  color: var(--text-main);
  background: rgba(80, 69, 200, .1);
  outline: none;
  transform: translateY(-1px);
}
.dual-home-toggle.is-active {
  background: linear-gradient(135deg, var(--nav), var(--primary));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(56, 45, 145, .28);
}
.dual-home-panels { position: relative; }
.dual-home-panel {
  opacity: 0;
  transform: translateY(8px);
  transition: none;
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.dual-home.is-ready .dual-home-panel { transition: opacity .28s ease, transform .28s ease; }
.dual-home-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
#home-panel-resources > section:not(.ai-home-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.dual-home-kicker { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--primary); font-weight: 700; margin-bottom: .5rem; }
.dual-home-block {
  border: 1px solid color-mix(in srgb, var(--ether) 65%, #fff);
  border-radius: 28px;
  padding: 1.45rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr .8fr;
  background: linear-gradient(140deg, rgba(255,255,255,.95), rgba(244, 246, 255, .78));
}
.dual-home-metrics { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.dual-home-metrics li { display: grid; gap: .2rem; }
.dual-home-metrics strong { font-size: 1.4rem; color: var(--nav); line-height: 1; }
.dual-home-metrics span { color: var(--text-secondary); font-size: .93rem; }
.dual-home-grid { display: grid; gap: .9rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dual-home-card {
  border: 1px solid color-mix(in srgb, var(--ether) 65%, #fff);
  border-radius: 20px;
  padding: 1rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  display: block;
}
.dual-home-card--summary {
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}
.dual-home-card--summary:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary) 35%, #fff);
  box-shadow: 0 12px 24px rgba(22, 24, 55, .08);
}
.dual-home-grid--summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dual-home-block--services-summary {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 24px;
  padding: 1.45rem;
}
.dual-home-summary-head { max-width: 78ch; }
.dual-home-usecases {
  border: 1px solid color-mix(in srgb, var(--ether) 65%, #fff);
  border-radius: 24px;
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dual-home-usecases > a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.dual-home-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: .5rem; }
.ai-home-hero__wrap--services {
  background:
    radial-gradient(circle at 10% 12%, rgba(20, 163, 199, .25), transparent 38%),
    radial-gradient(circle at 83% 22%, rgba(80, 69, 200, .2), transparent 45%),
    radial-gradient(circle at 60% 84%, rgba(29, 76, 169, .16), transparent 38%),
    #fff;
}

.ai-quiz-home {
  border: 1px solid color-mix(in srgb, var(--ether) 68%, #fff);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(20, 19, 42, .04);
  padding: 1.25rem;
}
.ai-quiz-progress {
  height: 8px;
  background: color-mix(in srgb, var(--ether) 52%, #fff);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .75rem;
}
.ai-quiz-progress__bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--primary), var(--nav));
  transition: transform .2s ease;
  will-change: transform;
}
.ai-quiz-step { font-size: .9rem; margin-bottom: .9rem; }
.ai-quiz-question h3 { font-size: 1.06rem; margin-bottom: .7rem; }
.ai-quiz-options {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ai-quiz-option {
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 14px;
  padding: .8rem .85rem;
  background: #fff;
  text-align: left;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .18s ease;
}
.ai-quiz-option:hover,
.ai-quiz-option:focus-visible {
  border-color: color-mix(in srgb, var(--primary) 40%, #fff);
  box-shadow: 0 8px 18px rgba(48, 40, 127, .1);
  transform: translateY(-2px);
  outline: none;
}
.ai-quiz-option.is-selected {
  border-color: color-mix(in srgb, var(--primary) 50%, #fff);
  background: color-mix(in srgb, var(--cloud-dancer) 35%, #fff);
}
.ai-quiz-actions { display: flex; gap: .6rem; margin-top: 1rem; }
.ai-quiz-actions .ai-btn-primary[disabled] {
  opacity: .5;
  cursor: not-allowed;
}
.ai-quiz-result {
  margin-top: 1.1rem;
  border: 1px solid color-mix(in srgb, var(--ether) 66%, #fff);
  border-radius: 18px;
  padding: 1rem;
  background: color-mix(in srgb, var(--cloud-dancer) 25%, #fff);
}
.ai-quiz-result .ai-btn-outline { margin-left: .6rem; }
.ai-quiz-home--services .ai-quiz-question h3 { font-size: 1.08rem; }
.ai-quiz-result--services {
  background: linear-gradient(140deg, rgba(255,255,255,.96), rgba(244, 246, 255, .82));
}
.ai-services-quiz-recommendations {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  display: grid;
  gap: .45rem;
}
.store-sample-quiz__card {
  border: 1px solid color-mix(in srgb, var(--ether) 64%, #fff);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}
.store-sample-quiz__options {
  display: grid;
  gap: .65rem;
  border: 0;
  margin: 0;
  padding: 0;
}
.store-sample-quiz__option {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  border-radius: 12px;
  padding: .7rem .8rem;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.store-sample-quiz__option:focus-within,
.store-sample-quiz__option:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, #fff);
  box-shadow: 0 8px 18px rgba(48, 40, 127, .08);
}
.store-sample-quiz__option.is-correct {
  border-color: #198754;
  background: color-mix(in srgb, #198754 12%, #fff);
}
.store-sample-quiz__option.is-incorrect {
  border-color: #dc3545;
  background: color-mix(in srgb, #dc3545 12%, #fff);
}
.store-sample-quiz__feedback {
  margin-top: .85rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--ether) 72%, #fff);
  background: color-mix(in srgb, var(--cloud-dancer) 18%, #fff);
  padding: .75rem .85rem;
}
.store-sample-quiz__result {
  border-style: dashed;
}

@media (max-width: 991.98px) {
  .home-mode-floating { top: calc(var(--header-offset, 0px) + .25rem); }
  .home-mode-spacer { height: 80px; }
  .dual-home-toggle-wrap { display: flex; }
  .dual-home-grid,
  .dual-home-grid--summary,
  .dual-home-usecases,
  .dual-home-block { grid-template-columns: 1fr; }
  .ai-quiz-options { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .home-mode-floating { top: calc(var(--header-offset, 0px) + .2rem); width: min(100%, 372px); }
  .home-mode-spacer { height: 74px; }
  .dual-home-toggle-wrap {
    width: 100%;
    min-height: 60px;
    padding: .3rem;
    gap: .35rem;
  }
  .dual-home-toggle {
    flex: 1 1 0;
    min-width: 0;
    min-height: 52px;
    padding: .75rem .65rem;
    font-size: 1rem;
    font-weight: 600;
  }
  .dual-home-block--services-summary,
  .ai-quiz-home { padding: 1rem; }
  .ai-quiz-actions { flex-direction: column; }
  .ai-quiz-result .ai-btn-outline { margin-left: 0; margin-top: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dual-home-toggle-wrap,
  .dual-home-toggle {
    transition: none;
  }
  .dual-home-toggle-wrap.is-switching::after {
    animation: none;
  }
  .dual-home-toggle-wrap.is-switching::before {
    animation: none;
  }
}

.course-detail-hero {
  border: 1px solid #e8eaf2;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}
.course-detail-hero__meta {
  color: #3e496d;
  font-size: 1.03rem;
  font-weight: 600;
}
.course-detail-hero__chips .badge { font-weight: 600; }
.course-editions {
  background: #fff;
  border: 1px solid #e7ebf4;
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 18px 36px rgba(24, 33, 64, 0.08);
}
.course-editions__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 1rem;
  align-items: start;
  margin-bottom: .85rem;
}
.course-editions__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .6rem;
}
.course-editions__pill {
  border-radius: 999px;
  border: 1px solid #dee4f3;
  color: #2e385a;
  background: #f7f9ff;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .55rem;
}
.course-editions__title {
  font-size: 1.5rem;
  margin-bottom: .35rem;
  font-weight: 800;
  color: #161f3f;
}
.course-editions__subtitle { color: #4f5b80; font-size: .95rem; }
.course-editions__summary {
  color: #435072;
  font-size: .9rem;
  line-height: 1.55;
}
.course-editions__local-highlight {
  border: 1px solid #dae6ff;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf3ff 100%);
  border-radius: 14px;
  padding: .78rem .85rem;
  margin-bottom: .95rem;
}
.course-editions__local-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #36509d;
  font-weight: 800;
}
.course-editions__local-country {
  color: #182959;
  font-size: .88rem;
  font-weight: 700;
}
.course-editions__local-time {
  color: #182959;
  font-size: .94rem;
  font-weight: 700;
}
.course-editions__local-foot {
  color: #4d5d8d;
  font-size: .82rem;
}
.course-editions__session-list {
  list-style: none;
  margin: .2rem 0 0;
  padding: 0;
  color: #314777;
  font-size: .8rem;
  display: grid;
  gap: .24rem;
}
.course-editions__session-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: .32rem;
  line-height: 1.4;
}
.course-editions__session-list i {
  color: #4e63a6;
  margin-top: .08rem;
}
.course-editions__session-list__empty {
  color: #42558e;
  font-size: .8rem;
}
.course-edition-item__meta--sessions {
  color: #43517a;
  line-height: 1.45;
}
.course-edition-item__session-lines {
  margin-top: .08rem;
}
.course-edition-item__session-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .18rem;
  max-height: 122px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.course-edition-item__session-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: .28rem;
  color: #384773;
  font-size: .76rem;
  line-height: 1.35;
}
.course-edition-item__session-list i {
  color: #4d5e9c;
  margin-top: .05rem;
}
.course-edition-item__session-list__empty {
  color: #4a5884;
  font-size: .76rem;
  margin: 0;
}
.course-editions__next-meta {
  display: grid;
  gap: .25rem;
  color: #3f4968;
  font-size: .86rem;
}
.course-editions__price-card {
  border: 1px solid #e3e8f5;
  border-radius: 14px;
  background: #fff;
  padding: .9rem;
}
.course-editions__price-eyebrow {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #667399;
  font-size: .7rem;
  font-weight: 800;
}
.course-editions__price-base {
  font-size: 1.35rem;
  color: #111938;
  font-weight: 800;
}
.course-editions__price-note {
  color: #5d6788;
  font-size: .82rem;
}
.course-editions__picker {
  display: grid;
  gap: .75rem;
}
.course-editions__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: .8rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: thin;
}
.course-editions__picker-title {
  color: #1b2546;
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}
.course-edition-item {
  border: 1px solid #e8ecf6;
  border-radius: 14px;
  background: #fbfcff;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  min-height: 100%;
}
.course-edition-item:hover {
  border-color: #d9def0;
  box-shadow: 0 8px 18px rgba(28, 40, 81, 0.07);
}
.course-edition-item.is-active {
  border-color: #4c44c9;
  background: #f8f7ff;
  box-shadow: 0 10px 22px rgba(76, 68, 201, 0.16);
}
.course-edition-item__summary {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: .85rem 2.2rem .85rem .85rem;
  display: grid;
  gap: .35rem;
  position: relative;
}
.course-edition-item__summary:focus-visible {
  outline: 2px solid #5f65dd;
  outline-offset: 2px;
  border-radius: 12px;
}
.course-edition-item__badge {
  display: inline-flex;
  align-items: center;
  background: #eef1fb;
  color: #2d3b72;
  border-radius: 999px;
  padding: .22rem .65rem;
  font-size: .76rem;
  font-weight: 700;
  width: auto;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: .12rem;
}
.course-edition-item__badge.is-nearest {
  background: #e7e2ff;
  color: #4730be;
}
.course-edition-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  padding-right: .35rem;
}
.course-edition-item__name {
  color: #162044;
  font-weight: 700;
  font-size: .92rem;
  min-width: 0;
}
.course-edition-item__meta {
  color: #596384;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.course-edition-item__meta--date {
  font-weight: 600;
}
.course-edition-item__price {
  color: #101938;
  font-size: .98rem;
  font-weight: 800;
  margin-top: .2rem;
}
.course-edition-item__check {
  position: absolute;
  top: .65rem;
  right: .6rem;
  color: #c2c7da;
  font-size: .95rem;
}
.course-edition-item.is-active .course-edition-item__check { color: #4c44c9; }
.course-edition-item__session-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .35rem;
  margin-top: .05rem;
}
.course-edition-item__session-chip,
.course-edition-item__session-more {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.course-edition-item__session-chip {
  color: #3e4a72;
}
.course-edition-item__session-chip:not(:last-child)::after {
  content: " ·";
  margin-left: .2rem;
  color: #6b7393;
}
.course-edition-item__session-more {
  color: #3f4d79;
  font-weight: 700;
}
.course-edition-item__panel {
  border-top: 1px solid #e8ebf5;
  margin: 0 .85rem .85rem;
  padding-top: .7rem;
}
.course-edition-item__cta {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  background: #1f2f6f;
  border: 1px solid #1f2f6f;
  color: #fff;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease;
}
.course-edition-item__cta:hover {
  background: #19265b;
  border-color: #19265b;
}
.course-edition-item__cta:focus-visible {
  outline: 3px solid rgba(89, 98, 231, .35);
  outline-offset: 2px;
}
.course-edition-item__session-tools summary {
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  color: #2d3b72;
}
.course-edition-item__session-check {
  display: block;
  font-size: .8rem;
  color: #3a4468;
  margin-bottom: .35rem;
}
.upcoming-course-card__edition-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.upcoming-course-card__edition-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #dde3f3;
  color: #273866;
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
  padding: .2rem .55rem;
  transition: border-color .2s ease, background-color .2s ease;
}
.upcoming-course-card__edition-link:hover {
  border-color: #aeb9df;
  background: #f5f8ff;
}
.checkout-item-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.checkout-item-card__main { min-width: 0; }
.checkout-item-card__actions { flex-shrink: 0; }
.checkout-edition-block {
  border: 1px solid #e6e9f4;
  border-radius: 12px;
  background: linear-gradient(180deg, #fcfcff 0%, #f8f9ff 100%);
  padding: .75rem .85rem;
}
.checkout-edition-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: .76rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #556083;
  font-weight: 700;
}
.checkout-edition-block__badge {
  border-radius: 999px;
  background: #e7f9ef;
  color: #157347;
  padding: .15rem .5rem;
}
.checkout-edition-block__title {
  color: #1b2343;
  font-weight: 700;
  font-size: .95rem;
}
.checkout-edition-block__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: .25rem .8rem;
  color: #3f4766;
  font-size: .82rem;
}
.checkout-summary-line__meta {
  font-size: .73rem;
  color: #5d6684;
}
.checkout-local-schedule {
  border: 1px solid #dfe6ff;
  background: linear-gradient(180deg, #f4f7ff 0%, #eef3ff 100%);
  border-radius: 10px;
  padding: .65rem .7rem;
}
.checkout-local-schedule__head {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #1f336f;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.checkout-local-schedule__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .2rem;
  color: #2f3f72;
  font-size: .82rem;
}
.checkout-local-schedule__single {
  color: #2f3f72;
  font-size: .82rem;
}
.checkout-summary-line__schedule {
  margin-top: .25rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .45rem;
  border-radius: 999px;
  background: #eef3ff;
  border: 1px solid #dbe3ff;
  color: #243b7a;
  font-size: .72rem;
  font-weight: 600;
}
.upcoming-course-card {
  border-radius: 18px;
  overflow: hidden;
}
.upcoming-course-card--vertical .upcoming-course-card__img {
  height: 210px;
}
.upcoming-course-card__img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}
.upcoming-course-card__sessions {
  display: grid;
  gap: .25rem;
  font-size: .86rem;
  color: #29304f;
  background: #f8faff;
  border: 1px solid #e8ebf5;
  border-radius: 10px;
  padding: .55rem .65rem;
}
.training-catalog__filters {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .65rem;
  margin-bottom: 1rem;
}
.training-catalog__grid {
  display: grid;
  gap: 1rem;
}
.training-parent-card {
  border: 1px solid color-mix(in srgb, var(--ether) 76%, #fff);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1rem;
}
.training-pill {
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ether) 78%, #fff);
  background: var(--cloud-dancer);
  color: #29344d;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .58rem;
}
.training-pill--type {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.training-parent-card__title { font-size: 1.2rem; margin: 0 0 .3rem; color: var(--text-main); }
.training-parent-card__subtitle { color: var(--text-secondary); font-size: .95rem; }
.training-parent-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  color: #344054;
  font-size: .86rem;
}
.training-parent-card__editions-scroll {
  list-style: none;
  margin: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: .7rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: thin;
}
.training-parent-card__cta { display: grid; gap: .55rem; align-content: start; }
.training-parent-card__price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-main);
  text-align: right;
}
.training-edition-mini-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: .45rem;
  border: 1px solid color-mix(in srgb, var(--ether) 76%, #fff);
  border-radius: 8px;
  padding: .7rem;
  background: var(--cloud-dancer);
  min-height: 175px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background-color .16s ease;
}
.training-edition-mini-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 30%, #fff);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.training-edition-mini-card h4 { font-size: .92rem; margin: 0 0 .2rem; }
.training-edition-mini-card__facts {
  display: grid;
  gap: .28rem;
  color: #5a6280;
  font-size: .79rem;
}
.training-edition-mini-card__facts span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.training-edition-mini-card__sessions {
  border-top: 1px dashed #dbe3fa;
  padding-top: .45rem;
}
.training-edition-mini-card__session-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .24rem;
  max-height: 122px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.training-edition-mini-card__session-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: .28rem;
  color: #404b72;
  font-size: .75rem;
  line-height: 1.35;
}
.training-edition-mini-card__session-list i {
  color: #5969a8;
  margin-top: .05rem;
}
.training-edition-mini-card__session-list__empty {
  color: #556287;
  font-size: .74rem;
}
.training-edition-mini-card__cta {
  margin-top: auto;
  font-weight: 700;
  color: var(--link);
  display: inline-flex;
  align-items: center;
  gap: .2rem;
}
.training-state {
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  padding: .18rem .45rem;
  border: 1px solid transparent;
}
.training-state--open { background: #e8f8ee; color: #1f7a49; border-color: #bfe6d0; }
.training-state--last_spots { background: #fff3dd; color: #9f5f00; border-color: #ffd58a; }
.training-state--full { background: #ffe9eb; color: #b02a37; border-color: #ffc4c9; }
.training-state--soon { background: #eaf0ff; color: #3047a0; border-color: #cad7ff; }

@media (min-width: 992px) {
  .course-editions { padding: 1.15rem; }
}

@media (max-width: 991.98px) {
  .course-detail-hero { border-radius: 16px; }
  .course-editions__head {
    grid-template-columns: 1fr;
  }
  .course-editions__cards {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    overflow: visible;
    padding-bottom: 0;
  }
  .training-catalog__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .training-parent-card {
    grid-template-columns: 1fr;
  }
  .training-parent-card__editions-scroll {
  list-style: none;
  margin: 0;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    overflow: visible;
    padding-bottom: 0;
  }
  .training-parent-card__price {
    text-align: left;
  }
  .checkout-item-card {
    grid-template-columns: 1fr;
  }
  .checkout-item-card__actions {
    width: 100%;
    justify-content: space-between;
  }
  .checkout-edition-block__facts {
    grid-template-columns: 1fr;
  }
  .upcoming-course-card__img {
    min-height: 180px;
  }
  .upcoming-course-card--vertical .upcoming-course-card__img {
    height: 185px;
  }
}
@media (max-width: 575.98px) {
  .course-editions__title {
    font-size: 1.22rem;
  }
  .course-editions {
    padding: 1rem;
  }
  .course-editions__cards {
    gap: .7rem;
  }
  .training-catalog__filters {
    grid-template-columns: 1fr;
  }
  .training-parent-card__editions-scroll {
  list-style: none;
  margin: 0;
    gap: .6rem;
  }
}

@media (max-width: 1199.98px) {
  .checkout-item-card {
    grid-template-columns: 1fr;
  }
  .checkout-item-card__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.account-shell .account-hero {
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(248,250,255,0.95));
  border-radius: 20px;
}

.account-hero-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.account-hero-main {
  min-width: 0;
}

.account-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .55rem;
  min-width: 220px;
}

.account-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .45rem .8rem;
  background: #e9f9ee;
  color: #12623a;
  font-weight: 600;
  border: 1px solid #cdeed8;
}

.account-hero-actions .btn {
  min-height: 40px;
  border-radius: 12px;
  font-weight: 600;
}

.account-cta-primary {
  box-shadow: 0 8px 18px rgba(185, 28, 28, 0.18);
}

.account-cta-secondary {
  border-color: #d8dce5;
  background: #fff;
}

.account-tabs .nav-link {
  border-radius: 999px;
  color: #4a4f5c;
  white-space: nowrap;
}

.account-tabs .nav-link.active {
  background: #111;
  color: #fff;
}

.account-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.account-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23, 25, 35, 0.09);
}

@media (max-width: 767.98px) {
  .account-hero-grid {
    flex-direction: column;
  }
  .account-hero-actions {
    width: 100%;
    min-width: 0;
  }
  .account-hero-actions .btn {
    width: 100%;
  }
}

/* Auth premium */
.auth-shell {
  min-height: calc(100vh - 220px);
  align-items: center;
  padding: clamp(.5rem, 2vw, 1.25rem) 0;
}

.auth-card {
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .08);
}

.auth-title {
  color: #111827;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.auth-subtitle {
  color: #6b7280;
  line-height: 1.55;
}

.auth-card .form-label {
  color: #374151;
  font-weight: 600;
  margin-bottom: .45rem;
}

.auth-card .form-control,
.auth-card .form-check-input,
.auth-card .btn-outline-secondary {
  border-color: #d1d5db;
  background-color: #ffffff;
  color: #111827;
}

.auth-card .form-control {
  min-height: 54px;
  border-radius: 14px;
}

.auth-card .form-control::placeholder { color: #9ca3af; }
.auth-card .form-check-label { color: #374151; }
.auth-card .text-secondary { color: #6b7280 !important; }
.auth-card .small.text-secondary { color: #6b7280 !important; }

.auth-card .form-control:hover,
.auth-card .btn-outline-secondary:hover {
  border-color: #9ca3af;
}

.auth-card .form-control:focus,
.auth-card .form-check-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .15);
}

.auth-card .form-control:disabled,
.auth-card .form-check-input:disabled,
.auth-card .btn:disabled {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
  opacity: 1;
}

.auth-card .form-control.is-invalid {
  border-color: #dc2626;
}

.auth-card .invalid-feedback {
  color: #dc2626;
  font-weight: 500;
}

.auth-card .is-valid {
  border-color: #16a34a;
}

.auth-card .btn-accent {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  min-height: 54px;
  border-radius: 14px;
  font-weight: 600;
}

.auth-card .btn-accent:hover,
.auth-card .btn-accent:focus,
.auth-card .btn-accent:active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.auth-card .btn-outline-secondary {
  color: #374151;
  border-radius: 0 14px 14px 0;
  min-width: 54px;
}

.auth-card .input-group .form-control {
  border-radius: 14px 0 0 14px;
}

.auth-card .input-group .btn-outline-secondary:focus {
  box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .15);
  border-color: #2563eb;
}

.auth-card .form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.auth-card .form-check-input {
  margin-top: 0;
}

.auth-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover,
.auth-link:focus {
  color: #1d4ed8;
  text-decoration: underline;
}

.auth-card .form-control:-webkit-autofill,
.auth-card .form-control:-webkit-autofill:hover,
.auth-card .form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #111827;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 9999s ease-in-out 0s;
  border: 1px solid #d1d5db;
}

#temario {
  scroll-margin-top: 110px;
}

/* Premium checkout redesign */
.checkout-premium-hero {
  background: linear-gradient(180deg, #f8f9ff 0%, #fdfdff 100%);
  border: 1px solid #e6e9f7;
  border-radius: 18px;
  padding: 1rem 1.2rem;
}
.checkout-premium-hero__eyebrow {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #58628a;
  font-weight: 700;
}
.checkout-premium-hero__steps {
  color: #5d6788;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
  gap: 1.1rem;
  align-items: start;
}
.checkout-main-column {
  min-width: 0;
  display: grid;
  gap: 1rem;
}
.checkout-panel {
  border-radius: 16px;
  border-color: #e8ebf6;
  background: #fff;
  box-shadow: 0 8px 28px rgba(24, 33, 61, .06);
}
.checkout-course-card {
  border: 1px solid #e9ecf8;
  border-radius: 14px;
  background: #fff;
  padding: .95rem;
  display: grid;
  gap: .75rem;
}
.checkout-course-card,
.checkout-course-card * {
  min-width: 0;
}
.checkout-course-card__head {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.checkout-course-card__title {
  font-size: 1rem;
  color: #1c2442;
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.checkout-course-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.checkout-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #cad4fb;
  background: #edf1ff;
  color: #2f458d;
  font-size: .72rem;
  font-weight: 700;
  padding: .18rem .58rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.checkout-chip--soft {
  background: #f2f4fb;
  border-color: #e0e5f6;
  color: #485578;
}
.checkout-chip--country {
  background: #eef6ff;
  border-color: #d4e7ff;
  color: #30598f;
}
.checkout-course-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .8rem;
  font-size: .85rem;
  color: #4d5674;
}
.checkout-course-card__facts span {
  overflow-wrap: anywhere;
}
.checkout-course-card__selection {
  border: 1px solid #dce4ff;
  background: #f5f7ff;
  border-radius: 10px;
  padding: .62rem .7rem;
}
.checkout-course-card__selection-head {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #4e5981;
  margin-bottom: .35rem;
}
.checkout-state-badge {
  border-radius: 999px;
  border: 1px solid #bfe8d1;
  background: #eaf8f0;
  color: #1e7a4c;
  font-size: .68rem;
  padding: .15rem .45rem;
  line-height: 1.2;
}
.checkout-course-card__edition {
  font-weight: 700;
  color: #232e55;
  overflow-wrap: anywhere;
}
.checkout-course-card__sessions {
  border: 1px solid #e3e9fb;
  background: #f8faff;
  border-radius: 10px;
  padding: .62rem .7rem;
  color: #3f4a71;
  font-size: .82rem;
}
.checkout-course-card__sessions-head {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  margin-bottom: .38rem;
}
.checkout-course-card__sessions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .3rem;
}
.checkout-course-card__sessions-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .45rem;
  align-items: start;
}
.checkout-course-card__sessions-list li span { overflow-wrap: anywhere; }
.checkout-course-card__actions {
  display: flex;
  justify-content: space-between;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
}
.checkout-qty-pill {
  border-radius: 999px;
  border: 1px solid #e2e8fa;
  background: #f7f9ff;
  color: #4d5a85;
  font-size: .76rem;
  font-weight: 700;
  padding: .16rem .55rem;
}
.checkout-remove-btn {
  color: #667295;
  text-decoration: none;
  font-size: .82rem;
  padding: 0;
}
.checkout-remove-btn:hover { color: #31406d; }

.checkout-form-grid .form-label {
  font-weight: 600;
  font-size: .84rem;
  color: #434d70;
  margin-bottom: .28rem;
}
.checkout-input {
  min-height: 44px;
  border-radius: 10px;
  border-color: #dce2f3;
  background: #fff;
}
.checkout-input:focus {
  border-color: #8f9ef3;
  box-shadow: 0 0 0 .2rem rgba(92, 110, 224, .14);
}
.checkout-payment-copy {
  color: #546186;
  margin-bottom: .45rem;
}
.checkout-trust-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .26rem .7rem;
  border: 1px solid #d4e4ff;
  background: #eef5ff;
  color: #2f568d;
  font-size: .82rem;
}
.checkout-pay-btn {
  min-height: 46px;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  font-weight: 700;
  background: linear-gradient(135deg, #4b4ce0 0%, #345fc8 100%);
  border: none;
}
.checkout-pay-btn:hover { filter: brightness(.98); }

.checkout-summary-card {
  position: sticky;
  top: 1.1rem;
  border-radius: 16px;
  border-color: #e7eaf7;
  box-shadow: 0 8px 28px rgba(25, 34, 60, .07);
}
.checkout-summary-card__line {
  border: 1px solid #edf0fa;
  border-radius: 10px;
  padding: .55rem .6rem;
}
.checkout-summary-card__course {
  font-size: .88rem;
  font-weight: 600;
  color: #232d4f;
  overflow-wrap: anywhere;
}
.checkout-summary-card__meta {
  font-size: .76rem;
  color: #5d6788;
  margin-top: .2rem;
  overflow-wrap: anywhere;
}
.checkout-summary-card__currency {
  font-size: .84rem;
  color: #4e587b;
}
.checkout-summary-card__total-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}
.checkout-summary-card__total {
  font-size: 1.35rem;
  line-height: 1.1;
  color: #1b2340;
  white-space: nowrap;
}
.checkout-summary-card__trust {
  border: 1px solid #e1e6f7;
  background: #f8faff;
  border-radius: 10px;
  padding: .65rem;
  color: #536082;
  font-size: .8rem;
}
.checkout-summary-card__trust i { margin-right: .3rem; }

.checkout-empty-state {
  border: 1px solid #e6eaf8;
  border-radius: 18px;
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(20, 29, 57, .06);
}
.checkout-empty-state__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #edf2ff;
  color: #4360b5;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .7rem;
}

@media (max-width: 1199.98px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-card { position: static; }
}

@media (max-width: 767.98px) {
  .checkout-course-card__facts {
    grid-template-columns: 1fr;
  }
  .checkout-pay-btn {
    max-width: 100%;
  }
}
