@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --color-primary: #031f44;
  --color-primary-dark: #123956;
  --color-accent: #c94448;
  --color-accent-dark: #9f3034;
  --color-logo-blue: rgb(24, 88, 128);
  --color-logo-red: rgb(200, 72, 80);
  --color-logo-blue-rgb: 24, 88, 128;
  --color-logo-red-rgb: 200, 72, 80;
  --color-black: #05070a;
  --color-white: #ffffff;
  --color-ink: #17212b;
  --color-muted: #667485;
  --color-border: #dce4ec;
  --color-surface: #f6f9fc;
  --color-surface-strong: #eaf1f7;
  --color-whatsapp: #25d366;
  --button-effect-rgb: 24, 88, 128;
  --button-effect-background: var(--color-logo-blue);
  --button-effect-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 16px 34px rgba(var(--button-effect-rgb), 0.24),
    0 18px 42px rgba(var(--button-effect-rgb), 0.16);
  --button-effect-shadow-hover:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 20px 42px rgba(var(--button-effect-rgb), 0.3),
    0 22px 48px rgba(var(--button-effect-rgb), 0.2);
  --shadow-soft: 0 18px 50px rgba(14, 37, 58, 0.14);
  --shadow-strong: 0 28px 80px rgba(14, 37, 58, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1160px;
  --header-height: 78px;
  --transition: all 0.3s ease;
  --font-main: Inter, Arial, Helvetica, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-heavy: 800;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-main);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.gallery-lightbox-open,
body.review-modal-open,
body.event-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

strong,
b {
  font-weight: var(--weight-semibold);
}

input,
select,
textarea {
  width: 100%;
  color: var(--color-ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(220, 228, 236, 0.72);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgb(255, 255, 255);
  box-shadow: 0 12px 34px rgba(18, 57, 86, 0.1);
}

.navbar {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: min(210px, 58vw);
  height: auto;
}

.brand-cluster {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 1 auto;
}

.partner-logos {
  display: inline-flex;
  order: 2;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.partner-logos img {
  display: block;
  width: auto;
  height: clamp(22px, 2.4vw, 30px);
  max-width: 96px;
  object-fit: contain;
}

.brand-cluster .brand {
  order: 1;
  min-width: 0;
}

.brand-cluster .brand img {
  width: clamp(112px, 36vw, 178px);
}

@media (max-width: 520px) {
  .navbar {
    gap: 8px;
  }

  .brand-cluster {
    gap: 7px;
  }

  .brand-cluster .brand img {
    width: clamp(96px, 28vw, 112px);
  }

  .partner-logos {
    gap: 4px;
  }

  .partner-logos img {
    height: clamp(14px, 3.8vw, 18px);
    max-width: 50px;
  }

}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  border-radius: var(--radius-sm);
  box-shadow: var(--button-effect-shadow);
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background-position: 100% 100%, 0% 0%, 100% 50%;
  box-shadow: var(--button-effect-shadow-hover);
  transform: translateY(-1px);
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-white);
  border-radius: 999px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 360px);
  min-width: 0;
  max-height: calc(100svh - var(--header-height) - 16px);
  margin-inline: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px 22px;
  scroll-padding-bottom: 22px;
  background: var(--color-white);
  border: 1px solid rgba(220, 228, 236, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 46px rgba(18, 57, 86, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scaleY(0.96);
  transform-origin: top center;
  transition: var(--transition);
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  min-width: 0;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  background: transparent;
  color: var(--color-ink);
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: var(--color-accent);
}

.dropdown-icon {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: var(--transition);
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(225deg) translateY(-2px);
}

.dropdown-menu {
  position: static;
  display: none;
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
  overflow: visible;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-item--dropdown.is-open .dropdown-menu {
  display: grid;
  margin-top: 6px;
}

.dropdown-menu > * {
  min-height: 0;
}

.dropdown-menu a {
  display: grid;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  min-height: 50px;
  padding: 7px 10px;
  border-left: 3px solid transparent;
  background: var(--color-surface);
  overflow-wrap: break-word;
  white-space: normal;
  transition: var(--transition);
}

.dropdown-menu a + a {
  border-top: 1px solid var(--color-border);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  border-left-color: var(--color-accent);
  background: var(--color-surface-strong);
  color: var(--color-primary-dark);
}

@media (max-width: 919px) {
  .site-header {
    width: 100%;
    width: 100dvw;
    max-width: 100dvw;
  }

  .navbar.container {
    width: 100%;
    width: 100dvw;
    max-width: 100dvw;
    margin-inline: 0;
    padding-inline: 16px;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--header-height) + 6px);
    left: 16px;
    right: auto;
    width: min(360px, calc(100dvw - 32px));
    max-height: calc(100dvh - var(--header-height) - 18px);
  }

  .nav-panel .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
  }
}

.dropdown-menu span {
  min-width: 0;
  font-weight: var(--weight-semibold);
  overflow-wrap: break-word;
}

.dropdown-menu small {
  min-width: 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  overflow-wrap: break-word;
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: var(--button-effect-shadow);
  font-weight: var(--weight-bold);
  text-align: center;
  transition: var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
  box-shadow: var(--button-effect-shadow-hover);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) 0 46px;
  background:
    linear-gradient(115deg, rgba(3, 31, 68, 0.1), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, var(--color-white), var(--color-surface));
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: var(--color-primary-dark);
  background: rgba(3, 31, 68, 0.1);
  border: 1px solid rgba(3, 31, 68, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__content > .eyebrow {
  max-width: min(760px, calc(100vw - 48px));
  white-space: nowrap;
  font-size: 0.74rem;
}

@media (max-width: 720px) {
  .hero__content > .eyebrow {
    white-space: normal;
    font-size: 0.72rem;
  }
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--color-black);
  font-size: 3.55rem;
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

#hero-title {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: var(--color-logo-red);
  text-shadow: none;
  white-space: nowrap;
}

.hero-title__red,
.hero-title__blue {
  display: inline-block;
  color: inherit;
}

.hero__claim {
  max-width: 650px;
  margin: 20px 0 0;
  color: #2e3b47;
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: var(--weight-medium);
}

.hero__actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  position: relative;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: var(--weight-bold);
  text-align: center;
  transition: var(--transition);
}

.btn--primary {
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--button-effect-shadow-hover);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.26);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #1eb85a;
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.3);
}

.btn--secondary {
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  background-position: 100% 100%, 0% 0%, 100% 50%;
  transform: translateY(-2px);
  box-shadow: var(--button-effect-shadow-hover);
}

.btn--courses-glow {
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
}

.btn--courses-glow:hover,
.btn--courses-glow:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  background-position: 100% 100%, 0% 0%, 100% 50%;
  transform: translateY(-2px);
  box-shadow: var(--button-effect-shadow-hover);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.hero__stats div {
  min-width: 0;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 228, 236, 0.9);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(18, 57, 86, 0.06);
}

.hero__stats dt {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: var(--weight-heavy);
  font-variant-numeric: tabular-nums;
}

.hero__stats dd {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.hero__media {
  width: min(100%, 460px);
  margin-inline: auto;
}

.media-shell {
  position: relative;
  display: grid;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.media-shell::before,
.linkedin-feed__shell::before,
.reel-card--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      160deg,
      rgba(201, 68, 72, 0.98) 0%,
      rgba(201, 68, 72, 0.94) 34%,
      rgba(88, 73, 108, 0.92) 58%,
      rgba(3, 31, 68, 0.94) 78%,
      rgba(3, 31, 68, 0.98) 100%
    ),
    var(--color-black);
  pointer-events: none;
}

.media-shell::after,
.linkedin-feed__shell::after,
.reel-card--video::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 24%),
    radial-gradient(ellipse at 76% 82%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 26%),
    linear-gradient(92deg, rgba(3, 31, 68, 0) 0%, rgba(72, 150, 206, 0.78) 18%, rgba(3, 31, 68, 0) 38%),
    linear-gradient(92deg, rgba(201, 68, 72, 0) 50%, rgba(232, 86, 90, 0.76) 70%, rgba(201, 68, 72, 0) 92%);
  background-repeat: no-repeat;
  background-size: 130% 46%, 132% 52%, 180% 46%, 180% 52%;
  background-position: 0% 0%, 100% 100%, -70% 2%, 170% 100%;
  filter: blur(8px) saturate(1.55);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  animation: logo-color-glow 4.8s ease-in-out infinite;
}

.phone-preview {
  position: relative;
  z-index: 1;
  width: min(100%, 258px);
  margin-inline: auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
}

.phone-preview__screen {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 0;
  background: var(--color-black);
  border-radius: 20px;
}

.phone-preview__video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  background: var(--color-black);
  object-fit: cover;
}

.hero__media .media-shell {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero__media .media-shell::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 26%, rgba(200, 72, 80, 0.46), rgba(200, 72, 80, 0) 56%),
    radial-gradient(ellipse at 78% 74%, rgba(24, 88, 128, 0.54), rgba(24, 88, 128, 0) 58%),
    radial-gradient(ellipse at 50% 50%, rgba(24, 88, 128, 0.16), rgba(24, 88, 128, 0) 66%);
  border-radius: 40px;
  filter: blur(16px) saturate(1.14);
  opacity: 0.84;
  pointer-events: none;
}

.hero__media .media-shell::after {
  content: none;
}

.hero__media .phone-preview {
  background:
    linear-gradient(
      45deg,
      var(--color-logo-blue) 0%,
      var(--color-logo-blue) 49%,
      var(--color-logo-red) 51%,
      var(--color-logo-red) 100%
    );
  border-color: transparent;
  box-shadow:
    0 24px 60px rgba(24, 88, 128, 0.34),
    -18px 18px 44px rgba(200, 72, 80, 0.24),
    18px -14px 46px rgba(24, 88, 128, 0.26);
  transform: translateY(18px);
}

.section-animate {
  animation: fade-slide-up 0.7s ease both;
}

.next-preview {
  background: var(--color-black);
  color: var(--color-white);
}

.next-preview__inner {
  padding: 22px 0;
}

.next-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: var(--weight-medium);
}

.section {
  padding: 68px 0;
}

#catalogo-corsi,
#certificazioni,
#eventi,
#chi-siamo,
#faq,
#contatti {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

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

.section--tint {
  background: var(--color-surface);
}

.faq-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  display: grid;
  gap: 14px;
  align-content: start;
}

#team-orientatori .section-heading {
  margin-bottom: 14px;
}

.section-heading h2,
.cta-band h2,
.form-aside h2 {
  margin: 0;
  color: var(--color-black);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: var(--weight-heavy);
}

.section-heading p:not(.eyebrow),
.page-hero p,
.form-aside p,
.site-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.section-heading--center {
  max-width: 720px;
  margin: 0 auto 28px;
  justify-items: center;
  text-align: center;
}

.split-section,
.faq-layout,
.info-grid,
.form-layout {
  display: grid;
  gap: 34px;
}

.faq-section__social + .faq-layout {
  margin-top: 70px;
}

.orientation-partner-section {
  padding-bottom: 28px;
}

.orientation-partner-section + .faq-section {
  padding-top: 38px;
}

.orientation-partner-content {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 840px;
  text-align: center;
}

.orientation-partner-content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-black);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: var(--weight-heavy);
}

.orientation-partner-content h2 span {
  display: block;
  white-space: nowrap;
}

.orientation-partner-content p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.orientation-partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px 32px;
  width: min(100%, 760px);
  margin-top: 10px;
}

.orientation-partner-logos img {
  display: block;
  width: auto;
  height: clamp(34px, 3.6vw, 56px);
  max-width: min(34vw, 210px);
  object-fit: contain;
}

.orientation-partner-logos img:nth-child(1) {
  justify-self: start;
}

.orientation-partner-logos img:nth-child(2) {
  justify-self: center;
  height: clamp(50px, 5.2vw, 84px);
  max-width: min(42vw, 280px);
}

.orientation-partner-logos img:nth-child(3) {
  justify-self: end;
}

.faq-page-layout {
  display: grid;
  gap: 30px;
  max-width: 940px;
}

.faq-page-section {
  background:
    linear-gradient(180deg, var(--color-white) 0%, rgba(244, 248, 252, 0.76) 100%);
}

.faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-topic-card {
  --faq-topic-color: var(--color-logo-blue);
  --faq-topic-soft: rgba(var(--color-logo-blue-rgb), 0.08);
  --faq-topic-shadow: rgba(var(--color-logo-blue-rgb), 0.16);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 16px;
  background:
    linear-gradient(145deg, var(--faq-topic-soft), rgba(255, 255, 255, 0.98) 62%),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.16);
  border-left: 4px solid var(--faq-topic-color);
  border-radius: var(--radius-sm);
  box-shadow:
    0 14px 32px rgba(14, 37, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: var(--transition);
}

.faq-topic-card:hover,
.faq-topic-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px var(--faq-topic-shadow);
}

.faq-topic-card--red {
  --faq-topic-color: var(--color-logo-red);
  --faq-topic-soft: rgba(var(--color-logo-red-rgb), 0.08);
  --faq-topic-shadow: rgba(var(--color-logo-red-rgb), 0.16);
  border-color: rgba(var(--color-logo-red-rgb), 0.18);
}

.faq-topic-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-white);
  background: var(--faq-topic-color);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 20px var(--faq-topic-shadow);
}

.faq-topic-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-topic-card h3,
.faq-topic-card p {
  margin: 0;
}

.faq-topic-card h3 {
  color: var(--color-black);
  font-size: 0.98rem;
}

.faq-topic-card p {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.faq-page-layout .accordion {
  position: relative;
  width: 100%;
  gap: 10px;
  overflow: hidden;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.92)),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.2);
  border-radius: var(--radius-sm);
  box-shadow:
    0 24px 58px rgba(14, 37, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-page-layout .accordion::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-logo-red));
  pointer-events: none;
}

.faq-page-layout .accordion-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 22px rgba(14, 37, 58, 0.045);
  transition: var(--transition);
}

.faq-page-layout .accordion-item::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-logo-blue), var(--color-logo-red));
  border-radius: 0 999px 999px 0;
  opacity: 0;
  transition: var(--transition);
}

.faq-page-layout .accordion-item + .accordion-item {
  border-top: 1px solid transparent;
}

.faq-page-layout .accordion-item:hover,
.faq-page-layout .accordion-item:focus-within,
.faq-page-layout .accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
  background: var(--color-white);
  border-color: rgba(var(--color-logo-blue-rgb), 0.18);
  box-shadow: 0 16px 34px rgba(14, 37, 58, 0.09);
  transform: translateY(-1px);
}

.faq-page-layout .accordion-item:hover::before,
.faq-page-layout .accordion-item:focus-within::before,
.faq-page-layout .accordion-item:has(.accordion-trigger[aria-expanded="true"])::before {
  opacity: 1;
}

.faq-page-layout .accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(var(--color-logo-red-rgb), 0.2);
}

.faq-page-layout .accordion-trigger {
  min-height: 62px;
  padding: 16px 16px 16px 22px;
  border-radius: var(--radius-sm);
  color: var(--color-black);
}

.faq-page-layout .accordion-trigger:hover,
.faq-page-layout .accordion-trigger:focus-visible {
  background: rgba(var(--color-logo-blue-rgb), 0.06);
}

.faq-page-layout .accordion-trigger[aria-expanded="true"] {
  color: var(--color-logo-blue);
  background: linear-gradient(90deg, rgba(var(--color-logo-blue-rgb), 0.055), rgba(255, 255, 255, 0));
}

.faq-page-layout .accordion-trigger__question {
  font-size: 1.02rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
}

.faq-page-layout .accordion-trigger__icon {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-logo-blue);
  background: rgba(var(--color-logo-blue-rgb), 0.07);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.18);
  border-radius: 50%;
  box-shadow:
    0 8px 16px rgba(14, 37, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: var(--transition);
}

.faq-page-layout .accordion-trigger__icon::before,
.faq-page-layout .accordion-trigger__icon::after {
  top: 13px;
  left: 8px;
  width: 12px;
}

.faq-page-layout .accordion-trigger[aria-expanded="true"] .accordion-trigger__icon {
  color: var(--color-white);
  background: var(--color-logo-blue);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(var(--color-logo-blue-rgb), 0.22);
}

.faq-page-layout .accordion-panel {
  padding: 0 16px 18px 22px;
}

.faq-page-layout .accordion-answer {
  background:
    linear-gradient(135deg, rgba(var(--color-logo-blue-rgb), 0.085), rgba(255, 255, 255, 0.98) 58%),
    var(--color-white);
  border-color: rgba(var(--color-logo-blue-rgb), 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(14, 37, 58, 0.06);
}

.faq-page-layout .accordion-panel p {
  color: #344251;
  font-size: 0.98rem;
}

.linkedin-feed-section {
  position: relative;
}

.social-boss-tiktok,
.linkedin-follow-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 13px;
  color: var(--color-primary-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(18, 57, 86, 0.08);
  font-size: 0.88rem;
  font-weight: var(--weight-bold);
}

.social-boss-tiktok {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 0;
  padding: 9px 20px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, #25f4ee 0 15%, #05070a 15% 84%, #fe2c55 84% 100%);
  border-color: transparent;
  box-shadow:
    0 12px 28px rgba(5, 7, 10, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.social-boss-tiktok span {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 10px rgba(5, 7, 10, 0.28);
}

.social-boss-tiktok svg,
.linkedin-follow-link svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  color: var(--color-white);
  border-radius: 50%;
  fill: currentColor;
}

.social-boss-tiktok svg {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 0;
  width: 54px;
  height: 54px;
  padding: 0;
  color: var(--color-white);
  background: none;
  border-radius: 0;
  opacity: 0.16;
  pointer-events: none;
  transform: translateY(-50%) rotate(-8deg);
}

.linkedin-follow-link svg {
  background: #0a66c2;
}

.social-boss-tiktok:hover,
.social-boss-tiktok:focus-visible,
.linkedin-follow-link:hover,
.linkedin-follow-link:focus-visible {
  color: var(--color-primary-dark);
  border-color: rgba(3, 31, 68, 0.26);
  box-shadow: 0 16px 34px rgba(18, 57, 86, 0.12);
  transform: translateY(-1px);
}

.social-boss-tiktok:hover,
.social-boss-tiktok:focus-visible {
  color: var(--color-white);
  border-color: transparent;
  box-shadow:
    0 16px 34px rgba(5, 7, 10, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    -8px 8px 20px rgba(37, 244, 238, 0.2),
    8px -8px 20px rgba(254, 44, 85, 0.2);
}

.reel-grid {
  --reel-card-mobile-width: min(64vw, 210px);
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-inline: calc((100vw - 100%) / -2);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 44px calc((100vw - var(--reel-card-mobile-width)) / 2) 58px;
  scroll-padding-inline: calc((100vw - var(--reel-card-mobile-width)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reel-grid::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  flex: 0 0 var(--reel-card-mobile-width);
  min-width: 0;
  aspect-ratio: 9 / 16;
  padding: 8px;
  overflow: hidden;
  background: var(--color-black);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: var(--transition);
}

.reel-card--video {
  overflow: visible;
  box-shadow:
    -12px 14px 30px rgba(var(--color-logo-red-rgb), 0.12),
    14px 16px 34px rgba(var(--color-logo-blue-rgb), 0.14),
    0 14px 26px rgba(14, 37, 58, 0.08);
}

.reel-card--video::before {
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(
      45deg,
      var(--color-logo-blue) 0%,
      var(--color-logo-blue) 49%,
      var(--color-logo-red) 51%,
      var(--color-logo-red) 100%
    );
}

.reel-card--video::after {
  inset: -42px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 22% 30%, rgba(var(--color-logo-red-rgb), 0.28), rgba(var(--color-logo-red-rgb), 0) 58%),
    radial-gradient(ellipse at 78% 70%, rgba(var(--color-logo-blue-rgb), 0.34), rgba(var(--color-logo-blue-rgb), 0) 60%);
  border-radius: 32px;
  filter: blur(18px) saturate(1.12);
  mix-blend-mode: normal;
  opacity: 0.82;
  animation: none;
}

.reel-card:hover,
.reel-card:focus-within {
  transform: translateY(-4px);
}

.reel-card--video:hover,
.reel-card--video:focus-within {
  box-shadow:
    -14px 16px 34px rgba(var(--color-logo-red-rgb), 0.14),
    16px 18px 38px rgba(var(--color-logo-blue-rgb), 0.16),
    0 16px 30px rgba(14, 37, 58, 0.1);
}

.reel-card__video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  background: var(--color-black);
  object-fit: cover;
}

.reel-card__screen {
  display: grid;
  height: 100%;
  align-content: end;
  gap: 12px;
  padding: 14px;
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgba(3, 31, 68, 0.12), rgba(5, 7, 10, 0.82)),
    var(--color-primary);
  border-radius: var(--radius-sm);
}

.reel-card__screen strong {
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: var(--weight-bold);
}

.reel-card__tag,
.course-card__type,
.course-card__source,
.course-card__meta span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
}

.linkedin-feed {
  display: grid;
  gap: 34px;
}

.linkedin-feed__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.linkedin-feed__shell {
  position: relative;
  width: min(82vw, 268px);
  justify-self: center;
  padding: 6px;
  overflow: hidden;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
  transform: translateX(-22px);
}

.linkedin-feed__viewport {
  position: relative;
  z-index: 1;
  height: 450px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 21px;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.linkedin-feed__viewport::-webkit-scrollbar {
  display: none;
}

.linkedin-feed__track {
  display: grid;
  gap: 24px;
  padding: 0;
}

.linkedin-post-card {
  height: 432px;
  min-height: 432px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #cfdbe7;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(14, 37, 58, 0.03);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.linkedin-post-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.linkedin-post-card__media {
  position: relative;
  display: grid;
  height: 154px;
  margin: 0;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(3, 31, 68, 0.14), rgba(201, 68, 72, 0.1)),
    var(--color-surface-strong);
}

.linkedin-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedin-post-card__media--cover img {
  object-fit: cover;
}

.linkedin-post-card__media--logo {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(234, 241, 247, 0.72) 42%, rgba(3, 31, 68, 0.12)),
    var(--color-surface-strong);
}

.linkedin-post-card__media--logo img {
  width: min(170px, 64%);
  height: 72px;
  object-fit: contain;
  padding: 12px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(14, 37, 58, 0.16);
}

.linkedin-post-card__icon,
.linkedin-post-card__type {
  position: absolute;
  top: 10px;
  z-index: 1;
}

.linkedin-post-card__icon {
  left: 10px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-white);
  background: #0a66c2;
  border-radius: var(--radius-sm);
  font-size: 1.08rem;
  font-weight: var(--weight-bold);
  line-height: 1;
}

.linkedin-post-card__type {
  right: 10px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  color: var(--color-primary-dark);
  background: var(--color-white);
  border: 1px solid rgba(220, 228, 236, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(14, 37, 58, 0.1);
  font-size: 0.76rem;
  font-weight: var(--weight-bold);
}

.linkedin-post-card__body {
  display: grid;
  gap: 9px;
  padding: 16px 16px 18px;
}

.linkedin-post-card__body time,
.linkedin-post-card__body > span:not(.linkedin-post-card__cta) {
  color: #65778a;
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
}

.linkedin-post-card h3,
.linkedin-post-card p {
  margin: 0;
}

.linkedin-post-card h3 {
  color: var(--color-primary-dark);
  font-size: 1rem;
  line-height: 1.16;
  font-weight: var(--weight-heavy);
}

.linkedin-post-card p {
  color: #4f5f70;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.linkedin-post-card__cta {
  width: fit-content;
  margin-top: 6px;
  color: #0a66c2;
  font-size: 0.84rem;
  font-weight: var(--weight-bold);
}

.linkedin-post-card__cta::after {
  content: ">";
  padding-left: 4px;
}

.linkedin-post-card:hover .linkedin-post-card__cta,
.linkedin-post-card:focus-within .linkedin-post-card__cta {
  color: var(--color-primary-dark);
}

.gallery-showcase-section {
  overflow: hidden;
}

.gallery-showcase {
  --gallery-showcase-width: min(calc(100vw - clamp(32px, 5vw, 96px)), 1780px);
  display: grid;
  gap: 30px;
  width: var(--gallery-showcase-width);
  margin-inline: auto;
}

.gallery-showcase .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.gallery-parallax {
  --gallery-parallax-height: clamp(380px, 42vw, 560px);
  position: relative;
  display: grid;
  gap: 14px;
  height: var(--gallery-parallax-height);
  min-width: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: none;
  isolation: isolate;
}

.gallery-parallax:focus-visible {
  outline: 3px solid rgba(3, 31, 68, 0.34);
  outline-offset: 5px;
}

.gallery-parallax__scroll {
  position: relative;
  display: flex;
  width: 100%;
  height: calc(var(--gallery-parallax-height) - 28px);
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 30px clamp(22px, 4vw, 70px);
  contain: layout paint;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}

.gallery-parallax__scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-parallax__scroll.is-dragging a {
  pointer-events: none;
}

.gallery-parallax__scroll.is-dragging .gallery-parallax__item {
  pointer-events: none;
}

.gallery-parallax__scroll.is-dragging .gallery-parallax__item,
.gallery-parallax__scroll.is-dragging .gallery-parallax__item a,
.gallery-parallax__scroll.is-dragging .gallery-parallax__item img {
  transition: none;
}

.gallery-parallax__scroll::-webkit-scrollbar {
  display: none;
}

.gallery-parallax__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 0 2px;
}

.gallery-parallax__dot {
  display: inline-flex;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(3, 31, 68, 0.4);
  border-radius: 50%;
  background: rgba(3, 31, 68, 0.22);
  box-shadow: 0 6px 16px rgba(3, 31, 68, 0.12);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-parallax__dot:hover,
.gallery-parallax__dot:focus-visible {
  border-color: rgba(3, 31, 68, 0.72);
  background: rgba(3, 31, 68, 0.46);
  transform: scale(1.14);
}

.gallery-parallax__dot:focus-visible {
  outline: 3px solid rgba(3, 31, 68, 0.22);
  outline-offset: 4px;
}

.gallery-parallax__dot.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: 0 8px 20px rgba(3, 31, 68, 0.28);
  transform: scale(1.22);
}

.gallery-parallax__item {
  display: flex;
  flex: 0 0 clamp(250px, 23vw, 420px);
  height: clamp(270px, 33vw, 450px);
  align-items: center;
  justify-content: center;
  margin: 0;
  scroll-snap-align: center;
  transform: translateY(-12px);
  transform-origin: 50% 50%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-parallax__item:hover,
.gallery-parallax__item:focus-within {
  z-index: 3;
  transform: translateY(-24px) scale(1.02);
}

.gallery-parallax__item--slower {
  flex-basis: clamp(230px, 20vw, 360px);
  transform: translateY(20px);
}

.gallery-parallax__item--faster {
  flex-basis: clamp(300px, 29vw, 500px);
  transform: translateY(-18px);
}

.gallery-parallax__item--vertical {
  flex-basis: clamp(230px, 20vw, 340px);
  transform: translateY(4px);
}

.gallery-parallax__item--slower-down {
  flex-basis: clamp(260px, 24vw, 430px);
  transform: translateY(30px);
}

.gallery-parallax__item--faster-soft {
  flex-basis: clamp(280px, 26vw, 470px);
  transform: translateY(-4px);
}

.gallery-parallax__item--slower-deep {
  flex-basis: clamp(240px, 22vw, 390px);
  transform: translateY(24px);
}

.gallery-parallax__item--last {
  margin-inline-end: clamp(14px, 3vw, 56px);
  transform: translateY(-16px);
}

.gallery-parallax__item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  background: var(--color-primary);
  border: 1px solid rgba(3, 31, 68, 0.72);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 44px rgba(14, 37, 58, 0.18);
  color: inherit;
  isolation: isolate;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-parallax__item a::before,
.gallery-parallax__item a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.gallery-parallax__item a::before {
  background:
    linear-gradient(
      160deg,
      rgba(3, 31, 68, 0.98) 0%,
      rgba(3, 31, 68, 0.94) 34%,
      rgba(3, 31, 68, 0.88) 58%,
      rgba(3, 31, 68, 0.94) 78%,
      rgba(3, 31, 68, 0.98) 100%
    ),
    var(--color-primary);
}

.gallery-parallax__item a::after {
  inset: -24%;
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 24%),
    radial-gradient(ellipse at 76% 82%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 26%),
    linear-gradient(92deg, rgba(3, 31, 68, 0) 0%, rgba(83, 151, 204, 0.72) 18%, rgba(3, 31, 68, 0) 38%),
    linear-gradient(92deg, rgba(3, 31, 68, 0) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(3, 31, 68, 0) 92%);
  background-repeat: no-repeat;
  background-size: 130% 46%, 132% 52%, 180% 46%, 180% 52%;
  background-position: 0% 0%, 100% 100%, -70% 2%, 170% 100%;
  filter: blur(6px) saturate(1.35);
  mix-blend-mode: screen;
  opacity: 0.84;
  animation: logo-color-glow 4.8s ease-in-out infinite;
}

.gallery-parallax__item a:focus-visible {
  outline: 3px solid rgba(3, 31, 68, 0.34);
  outline-offset: 5px;
}

.gallery-parallax__item img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 3px);
  filter: saturate(0.46) sepia(0.12) contrast(0.95);
  transition: filter 0.45s ease, transform 0.45s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.gallery-parallax__item:hover a,
.gallery-parallax__item:focus-within a {
  box-shadow: 0 30px 72px rgba(14, 37, 58, 0.28);
  transform: translateY(-4px);
}

.gallery-parallax__item:hover img,
.gallery-parallax__item:focus-within img {
  filter: none;
  transform: scale(1.02);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 31, 68, 0.82);
  backdrop-filter: blur(14px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1120px);
  height: min(84vh, 760px);
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
}

.gallery-lightbox__figure {
  display: grid;
  min-width: 0;
  height: 100%;
  align-content: center;
  justify-items: center;
  gap: 12px;
  margin: 0;
}

.gallery-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(84vh - 70px);
  object-fit: contain;
  background: var(--color-primary);
  border: 10px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: var(--color-white);
  border-color: rgba(255, 255, 255, 0.76);
  transform: translateY(-2px);
}

.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 4px;
}

.gallery-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.gallery-lightbox__nav {
  justify-self: center;
}

.gallery-lightbox__close svg,
.gallery-lightbox__nav svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.4;
}

.gallery-depth {
  position: relative;
  display: flex;
  min-width: 0;
  height: clamp(280px, 34vw, 430px);
  align-items: stretch;
  gap: 8px;
  padding: 12px;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 239, 247, 0.72)),
    var(--color-surface);
  border: 1px solid rgba(178, 199, 216, 0.74);
  border-radius: var(--radius-sm);
  box-shadow: 0 26px 62px rgba(14, 37, 58, 0.14);
  isolation: isolate;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.gallery-depth__item {
  --tilt: 0deg;
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 34px rgba(14, 37, 58, 0.12);
  filter: brightness(0.76) saturate(0.6);
  outline: 0;
  transform: translateZ(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition:
    flex 0.34s ease,
    filter 0.28s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-depth__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.38s ease;
}

.gallery-depth__hover-zone {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.gallery-depth__item:is(:hover, :focus-visible) {
  z-index: 5;
  flex: 4.2 1 0;
  filter: brightness(1.04) saturate(1.05);
  box-shadow: 0 34px 72px rgba(14, 37, 58, 0.24);
  transform: translateZ(86px) translateY(-8px) rotateY(var(--tilt));
}

.gallery-depth__item:focus-visible {
  outline: 3px solid rgba(3, 31, 68, 0.34);
  outline-offset: 5px;
}

.gallery-depth__item:is(:hover, :focus-visible) img {
  transform: scale(1);
}

.gallery-depth:has(.gallery-depth__item:is(:hover, :focus-visible)) .gallery-depth__item:not(:hover):not(:focus-visible) {
  filter: brightness(0.58) saturate(0.28);
  transform: translateZ(-34px);
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(1):hover) {
  --tilt: -18deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(2):hover) {
  --tilt: -13deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(3):hover) {
  --tilt: -8deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(4):hover) {
  --tilt: -4deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(5):hover) {
  --tilt: 0deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(6):hover) {
  --tilt: 4deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(7):hover) {
  --tilt: 8deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(8):hover) {
  --tilt: 13deg;
}

.gallery-depth__item:has(.gallery-depth__hover-zone span:nth-child(9):hover) {
  --tilt: 18deg;
}

.location-layout {
  display: grid;
  gap: 18px;
}

.location-map {
  min-height: 320px;
  overflow: hidden;
  background: var(--color-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  border: 0;
}

.news-orientation-panel {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.news-orientation-panel .detail-actions {
  align-self: center;
  margin-top: auto;
  padding-top: 32px;
}

.proof-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 252, 0.96)),
    var(--color-surface);
}

.proof-section__inner {
  position: relative;
  display: grid;
  gap: 30px;
}

.proof-section__heading {
  max-width: 820px;
  margin: 0 auto;
}

.proof-section__heading h2 {
  max-width: 780px;
  scroll-margin-top: calc(var(--header-height) + 18px);
  text-wrap: balance;
}

.proof-section__heading p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
  color: #506173;
}

.review-slider {
  margin-inline: calc((100vw - 100%) / -2);
  overflow: hidden;
  padding: 12px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 4px 0;
  animation: review-marquee 38s linear infinite;
  will-change: transform;
}

.review-card {
  position: relative;
  isolation: isolate;
  display: grid;
  flex: 0 0 clamp(280px, 26vw, 334px);
  width: clamp(280px, 26vw, 334px);
  min-height: 196px;
  align-content: start;
  grid-template-rows: 1fr auto;
  gap: 24px;
  overflow: hidden;
  margin-right: 16px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(var(--color-logo-blue-rgb), 0.055)),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.16);
  border-radius: var(--radius-sm);
  box-shadow:
    0 16px 38px rgba(14, 37, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-logo-red));
  opacity: 1;
  transition: opacity 0.28s ease;
}

.review-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--color-logo-red), var(--color-logo-blue));
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(var(--color-logo-blue-rgb), 0.32);
  box-shadow: 0 20px 44px rgba(var(--color-logo-blue-rgb), 0.16);
}

.review-card:hover::before,
.review-card:focus-within::before {
  opacity: 1;
}

.review-card p,
.review-card strong,
.review-card__author {
  margin: 0;
}

.review-card p {
  color: #2e3b47;
  font-size: 1rem;
  font-weight: var(--weight-medium);
  line-height: 1.52;
}

.review-card__author {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.review-card__avatar {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: span 2;
  place-items: center;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-logo-blue), #264972);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(var(--color-logo-blue-rgb), 0.18);
  font-size: 0.88rem;
  font-weight: var(--weight-heavy);
}

.review-card:nth-child(even) .review-card__avatar {
  background: linear-gradient(135deg, var(--color-logo-red), #9f3034);
  box-shadow: 0 10px 22px rgba(var(--color-logo-red-rgb), 0.18);
}

.review-card strong {
  color: var(--color-ink);
  font-weight: var(--weight-semibold);
  line-height: 1.15;
}

.review-card__author span:not(.review-card__avatar) {
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: transparent;
  font-weight: var(--weight-semibold);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  color: var(--color-primary);
}

.accordion-trigger__question {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
}

.accordion-trigger__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.accordion-trigger__icon::before,
.accordion-trigger__icon::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: var(--transition);
}

.accordion-trigger__icon::after {
  transform: rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-trigger__icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.accordion-panel {
  padding: 0 16px 18px;
}

.accordion-answer {
  position: relative;
  padding: 16px 18px 16px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9)),
    var(--color-white);
  border: 1px solid rgba(3, 31, 68, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.accordion-answer::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  border-radius: 0 999px 999px 0;
}

.accordion-panel p {
  min-height: 1.5em;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
}

.cta-band {
  padding: 42px 0;
  color: var(--color-ink);
  background: var(--color-white);
}

.cta-band .eyebrow {
  color: var(--color-primary);
  background: var(--color-surface-strong);
  border-color: rgba(3, 31, 68, 0.18);
}

.cta-band h2 {
  color: var(--color-black);
}

.cta-band__inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.cta-band__inner .btn {
  width: min(100%, 360px);
  justify-self: center;
}

.page-hero {
  padding: calc(var(--header-height) + 54px) 0 54px;
  background:
    linear-gradient(115deg, rgba(3, 31, 68, 0.1), rgba(255, 255, 255, 0) 48%),
    var(--color-surface);
}

.page-hero--campus {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #edf4f9;
}

.page-hero--form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #edf4f9;
}

.page-hero--faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  background: #edf4f9;
}

.page-hero--campus::before,
.page-hero--campus::after,
.page-hero--form::before,
.page-hero--form::after,
.page-hero--faq::before,
.page-hero--faq::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero--campus::before,
.page-hero--form::before,
.page-hero--faq::before {
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-hero--campus::before {
  background-image: url("../img/campus-hero-corsi.jpg");
}

.page-hero--form::before {
  background-image: url("../img/corsi/psicologia-del-lavoro-e-delle-organizzazioni-ed95e7098c.jpg");
  background-position: 72% center;
}

.page-hero--faq::before {
  background-image: url("../img/faq-hero-background.png");
  background-position: 68% center;
}

.page-hero--campus::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.78) 0%, rgba(244, 248, 252, 0.58) 48%, rgba(244, 248, 252, 0.24) 100%),
    linear-gradient(180deg, rgba(244, 248, 252, 0.2), rgba(244, 248, 252, 0.36));
}

.page-hero--form::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.86) 0%, rgba(244, 248, 252, 0.68) 46%, rgba(244, 248, 252, 0.32) 100%),
    linear-gradient(180deg, rgba(244, 248, 252, 0.08), rgba(244, 248, 252, 0.46));
}

.page-hero--faq::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.82) 0%, rgba(244, 248, 252, 0.68) 40%, rgba(244, 248, 252, 0.38) 66%, rgba(244, 248, 252, 0.16) 100%),
    linear-gradient(180deg, rgba(244, 248, 252, 0.06), rgba(244, 248, 252, 0.3));
}

.page-hero__inner {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 900px;
}

.page-hero .hero-actions {
  margin-top: 14px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: 3.1rem;
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #2e3b47;
  font-size: 1.12rem;
  font-weight: var(--weight-regular);
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
}

.catalog-stats div {
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(18, 57, 86, 0.06);
}

.page-hero--campus .catalog-stats div {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(178, 199, 216, 0.78);
  box-shadow: 0 16px 36px rgba(18, 57, 86, 0.12);
}

.catalog-stats dt {
  color: var(--color-primary);
  font-size: 1.55rem;
  font-weight: var(--weight-heavy);
  font-variant-numeric: tabular-nums;
}

.catalog-stats dd {
  margin: 3px 0 0;
  color: var(--color-muted);
}

.catalog-section .section-heading {
  justify-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.catalog-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.catalog-summary .eyebrow {
  margin-bottom: 0;
}

.catalog-summary h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 1.36rem;
  line-height: 1.12;
  font-weight: var(--weight-bold);
}

.catalog-summary p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--color-muted);
}

.category-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 12px;
}

.category-pill {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: var(--transition);
}

.category-pill.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.category-pill:not(.is-active):hover,
.category-pill:not(.is-active):focus-visible {
  color: var(--color-primary-dark);
  background: var(--color-white);
  border-color: rgba(3, 31, 68, 0.28);
  box-shadow: 0 10px 24px rgba(18, 57, 86, 0.08);
}

@media (max-width: 599px) {
  #catalogo-corsi {
    overflow-x: hidden;
    overflow-x: clip;
  }

  #catalogo-corsi > .container {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }

  #catalogo-corsi .section-heading,
  #catalogo-corsi .category-pills,
  #catalogo-corsi .catalog-filters,
  #catalogo-corsi .catalog-toolbar {
    width: min(100%, 300px);
    max-width: 300px;
    margin-inline: auto;
  }

  #catalogo-corsi .course-grid,
  #catalogo-corsi .empty-state {
    width: 100%;
  }

  #catalogo-corsi .category-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  #catalogo-corsi .category-pill {
    width: 100%;
    min-width: 0;
    padding: 10px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }
}

.catalog-filters,
.field-grid {
  display: grid;
  gap: 12px;
}

.catalog-filters {
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.catalog-filters label,
.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: var(--weight-semibold);
}

.catalog-filters input,
.catalog-filters select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 48px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: 0;
  transition: var(--transition);
}

.lead-form textarea {
  min-height: 150px;
}

.catalog-filters input:focus,
.catalog-filters select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(3, 31, 68, 0.12);
}

.catalog-filters .btn[type="reset"] {
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
}

.catalog-filters .btn[type="reset"]:hover,
.catalog-filters .btn[type="reset"]:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  background-position: 100% 100%, 0% 0%, 100% 50%;
  transform: translateY(-2px);
  box-shadow: var(--button-effect-shadow-hover);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0;
  color: var(--color-muted);
}

.catalog-toolbar p {
  margin: 0;
}

.catalog-toolbar strong {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

.course-grid {
  display: grid;
  gap: 24px;
}

.course-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
}

.course-pagination[hidden] {
  display: none;
}

.course-pagination__button {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 8px 12px;
  color: var(--color-primary-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: var(--transition);
}

.course-pagination__button:hover,
.course-pagination__button:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 12px 26px rgba(18, 57, 86, 0.14);
  transform: translateY(-2px);
}

.course-pagination__button.is-active {
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
}

.course-pagination__button:disabled {
  color: rgba(46, 59, 71, 0.38);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(178, 199, 216, 0.4);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.course-pagination__button--arrow {
  font-size: 1.1rem;
}

@media (max-width: 599px) {
  #catalogo-corsi .course-pagination {
    width: min(100%, 300px);
    flex-wrap: nowrap;
    gap: 6px;
  }

  #catalogo-corsi .course-pagination__button {
    width: 36px;
    min-width: 36px;
    min-height: 40px;
    padding: 8px 0;
  }
}

.course-group {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.course-group__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.course-group__header p,
.course-group__range {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: var(--weight-regular);
}

.course-group__header h3 {
  margin: 3px 0 0;
  color: var(--color-black);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: var(--weight-bold);
}

.course-group__header span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 9px;
  color: var(--color-primary-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: var(--weight-medium);
}

.course-grid__items {
  display: grid;
  gap: 16px;
}

.course-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 32px rgba(14, 37, 58, 0.08);
  transition: var(--transition);
}

.course-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
}

.course-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.course-card:hover,
.course-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(14, 37, 58, 0.13);
}

.course-card__top,
.course-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.course-card__type {
  color: var(--color-white);
  background: var(--color-primary);
}

.course-card__source {
  color: var(--color-accent-dark);
  background: rgba(201, 68, 72, 0.1);
}

.course-card__source--logo {
  min-height: 28px;
  padding: 4px 7px;
  background: rgba(201, 68, 72, 0.08);
}

.course-card__source-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.course-card__source-logo--pegaso {
  width: 57px;
  height: 17px;
}

.course-card__source-logo--mercatorum {
  width: 52px;
  height: 30px;
}

.course-card__source-logo--san-raffaele {
  width: 72px;
  height: 18px;
}

.course-card h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 1.28rem;
  line-height: 1.16;
  font-weight: var(--weight-bold);
}

.course-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.course-card__meta span {
  color: var(--color-primary-dark);
  background: var(--color-surface);
}

.course-card__actions .btn {
  min-height: 44px;
  padding: 11px 13px;
}

.course-card__actions .btn--primary {
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: transparent;
  box-shadow: var(--button-effect-shadow);
  animation: none;
}

.course-card__actions .btn--primary:hover,
.course-card__actions .btn--primary:focus-visible {
  background-position: 100% 100%, 0% 0%, 100% 50%;
  box-shadow: var(--button-effect-shadow-hover);
}

.empty-state {
  margin: 24px 0 0;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-weight: var(--weight-medium);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list article,
.process-grid article,
.form-aside,
.lead-form {
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(14, 37, 58, 0.07);
}

.process-grid article {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.process-grid article:hover,
.process-grid article:focus-within {
  border-color: rgba(var(--button-effect-rgb), 0.24);
  box-shadow: 0 20px 44px rgba(14, 37, 58, 0.14);
  transform: translateY(-4px);
}

.info-list strong,
.process-grid h3 {
  color: var(--color-black);
  font-weight: var(--weight-semibold);
}

.info-list p,
.process-grid p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

.info-grid--cards-under {
  gap: 26px;
}

.info-grid--cards-under .section-heading {
  max-width: 860px;
}

.about-hero {
  display: flex;
  align-items: center;
  min-height: clamp(420px, 54vh, 560px);
  padding: calc(var(--header-height) + 76px) 0 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.72)),
    url("../img/team-hero-background.png") center / cover no-repeat;
}

.about-hero h1 {
  color: var(--color-black);
  max-width: 800px;
}

.about-hero h1.about-hero__logo-title {
  max-width: 860px;
  color: var(--color-black);
  background: none;
  -webkit-text-fill-color: var(--color-black);
  font-family: var(--font-main);
  font-size: 3.35rem;
  font-weight: var(--weight-heavy);
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
  text-transform: none;
}

.about-hero p:not(.eyebrow) {
  color: var(--color-muted);
  max-width: 720px;
}

.about-hero__inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.about-hero__inner > div {
  display: grid;
  justify-items: center;
}

.orienter-grid {
  display: grid;
  gap: 18px;
}

.orienter-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(14, 37, 58, 0.08);
}

.orienter-card::before {
  content: "";
  display: block;
  min-height: 100%;
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
}

.orienter-card__body {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 18px;
}

.orienter-card h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 1.35rem;
  line-height: 1.16;
}

.orienter-card__role {
  margin: 0;
  color: rgb(38, 73, 114);
  font-size: 0.92rem;
  font-weight: var(--weight-bold);
  line-height: 1.32;
}

.orienter-card__availability {
  margin: -4px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.orienter-carousel-section {
  position: relative;
  overflow: hidden;
}

.orienter-carousel {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.orienter-carousel .section-heading {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.orienter-carousel__label {
  position: relative;
  z-index: 2;
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 38%, var(--color-accent-dark) 56%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  white-space: nowrap;
}

.orienter-carousel__stage {
  position: relative;
  width: min(100%, 1120px);
  height: 430px;
  perspective: 1000px;
}

.orienter-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.orienter-carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  width: 260px;
  height: 340px;
  padding: 22px;
  color: var(--color-primary);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.92)),
    var(--color-white);
  border: 1px solid rgba(178, 199, 216, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 42px rgba(14, 37, 58, 0.14);
  cursor: pointer;
  opacity: 0;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.72) translateZ(-420px);
  transition:
    opacity 0.46s ease,
    transform 0.78s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    filter 0.38s ease;
}

.orienter-carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(38, 73, 114, 0.12), rgba(201, 68, 72, 0.08)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.orienter-carousel-card:focus-visible {
  outline: 3px solid rgba(38, 73, 114, 0.32);
  outline-offset: 5px;
}

.orienter-carousel-card.center {
  z-index: 10;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08) translateZ(0);
}

.orienter-carousel-card.left-1 {
  z-index: 5;
  opacity: 0.88;
  filter: grayscale(0.74);
  transform: translate(calc(-50% - 210px), -50%) scale(0.9) translateZ(-110px);
}

.orienter-carousel-card.right-1 {
  z-index: 5;
  opacity: 0.88;
  filter: grayscale(0.74);
  transform: translate(calc(-50% + 210px), -50%) scale(0.9) translateZ(-110px);
}

.orienter-carousel-card.left-2 {
  z-index: 1;
  opacity: 0.58;
  filter: grayscale(1);
  transform: translate(calc(-50% - 410px), -50%) scale(0.78) translateZ(-320px);
}

.orienter-carousel-card.right-2 {
  z-index: 1;
  opacity: 0.58;
  filter: grayscale(1);
  transform: translate(calc(-50% + 410px), -50%) scale(0.78) translateZ(-320px);
}

.orienter-carousel-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.orienter-carousel-card.center:hover {
  border-color: rgba(38, 73, 114, 0.3);
  box-shadow: 0 28px 60px rgba(14, 37, 58, 0.2);
  transform: translate(-50%, -54%) scale(1.12) translateZ(0);
}

.orienter-carousel-card.center::before {
  opacity: 1;
}

.orienter-carousel-card__avatar {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, rgb(38, 73, 114), var(--color-primary));
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -32px 62px rgba(0, 0, 0, 0.18);
  font-size: 4.2rem;
  font-weight: var(--weight-heavy);
  letter-spacing: 0;
}

.orienter-carousel-card__name {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  color: var(--color-black);
  font-size: 1.08rem;
  font-weight: var(--weight-bold);
  line-height: 1.18;
  text-align: center;
}

.orienter-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-white);
  background: rgba(38, 73, 114, 0.82);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(38, 73, 114, 0.24);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  transform: translateY(-50%);
}

.orienter-carousel__arrow:hover,
.orienter-carousel__arrow:focus-visible {
  background: var(--color-primary);
  box-shadow: 0 16px 34px rgba(38, 73, 114, 0.32);
  transform: translateY(-50%) scale(1.08);
}

.orienter-carousel__arrow--left {
  left: 8px;
}

.orienter-carousel__arrow--right {
  right: 8px;
}

.orienter-carousel__info {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 720px;
  min-height: 156px;
  text-align: center;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.orienter-carousel__info.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.orienter-carousel__name {
  position: relative;
  margin: 0;
  color: var(--color-primary);
  font-size: 2.3rem;
  line-height: 1.06;
}

.orienter-carousel__name::before,
.orienter-carousel__name::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 86px;
  height: 2px;
  background: rgba(38, 73, 114, 0.38);
}

.orienter-carousel__name::before {
  right: calc(100% + 22px);
}

.orienter-carousel__name::after {
  left: calc(100% + 22px);
}

.orienter-carousel__role {
  margin: 0;
  color: rgb(38, 73, 114);
  font-size: 1rem;
  font-weight: var(--weight-bold);
  line-height: 1.35;
}

.orienter-carousel__description {
  margin: 0;
  max-width: 58ch;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.orienter-carousel__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.orienter-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(38, 73, 114, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease;
}

.orienter-carousel__dot.is-active,
.orienter-carousel__dot:hover,
.orienter-carousel__dot:focus-visible {
  background: rgb(38, 73, 114);
  transform: scale(1.2);
}

.about-reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 252, 0.96)),
    var(--color-surface);
}

.container.about-reviews {
  display: grid;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  gap: 30px;
}

.about-reviews .section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-reviews .section-heading h2 {
  max-width: 780px;
  scroll-margin-top: calc(var(--header-height) + 18px);
  text-wrap: balance;
}

.about-reviews .section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
  color: #506173;
}

.about-reviews__slider {
  margin-inline: calc((100vw - 100%) / -2);
  overflow: hidden;
  padding: 12px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.about-reviews__grid {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 4px 0;
  animation: review-marquee 42s linear infinite;
  will-change: transform;
}

.about-review-card {
  position: relative;
  isolation: isolate;
  display: grid;
  width: clamp(300px, 28vw, 360px);
  min-height: 238px;
  flex: 0 0 clamp(300px, 28vw, 360px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  margin-right: 16px;
  padding: 24px;
  overflow: hidden;
  color: var(--color-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(var(--color-logo-blue-rgb), 0.055)),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.16);
  border-radius: var(--radius-sm);
  box-shadow:
    0 16px 38px rgba(14, 37, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.about-review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-logo-red));
  pointer-events: none;
}

.about-review-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--color-logo-red), var(--color-logo-blue));
}

.about-review-card:hover {
  border-color: rgba(var(--color-logo-blue-rgb), 0.32);
  box-shadow: 0 20px 44px rgba(var(--color-logo-blue-rgb), 0.16);
  transform: translateY(-4px);
}

.about-review-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.about-review-card__avatar {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  place-items: center;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-logo-blue), #264972);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(var(--color-logo-blue-rgb), 0.18);
  font-size: 0.9rem;
  font-weight: var(--weight-heavy);
}

.about-review-card:nth-child(even) .about-review-card__avatar {
  background: linear-gradient(135deg, var(--color-logo-red), #9f3034);
  box-shadow: 0 10px 22px rgba(var(--color-logo-red-rgb), 0.18);
}

.about-review-card h3,
.about-review-card p {
  margin: 0;
}

.about-review-card h3 {
  color: var(--color-ink);
  font-size: 0.96rem;
  line-height: 1.15;
}

.about-review-card__header span:not(.about-review-card__avatar) {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.about-review-card__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #2e3b47;
  font-size: 0.96rem;
  font-weight: var(--weight-medium);
  line-height: 1.48;
}

.about-review-card__footer {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.about-review-card__stars,
.review-read-modal__stars {
  color: #f4b400;
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.about-review-card__star-empty,
.review-read-modal__stars .about-review-card__star-empty {
  color: rgba(244, 180, 0, 0.42);
}

.about-review-card__more {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 7px 10px;
  color: var(--color-primary);
  background: rgba(var(--color-logo-blue-rgb), 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.about-review-card__more:hover,
.about-review-card__more:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
  transform: translateY(-1px);
}

.about-review-card__more:focus-visible {
  outline: 2px solid rgba(3, 31, 68, 0.28);
  outline-offset: 4px;
}

.review-read-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.review-read-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.review-read-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 31, 68, 0.62);
  backdrop-filter: blur(10px);
}

.review-read-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 252, 0.96)),
    var(--color-white);
  border: 1px solid rgba(178, 199, 216, 0.82);
  border-radius: var(--radius-sm);
  box-shadow: 0 28px 80px rgba(14, 37, 58, 0.32);
}

.review-read-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(3, 31, 68, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.review-read-modal__close:hover,
.review-read-modal__close:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
}

.review-read-modal h3,
.review-read-modal p {
  margin: 0;
}

.review-read-modal h3 {
  padding-right: 34px;
  color: var(--color-black);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.1;
}

.review-read-modal__meta {
  display: block;
  margin-top: 6px;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: var(--weight-bold);
}

.review-read-modal__stars {
  display: inline-block;
  margin-top: 14px;
  font-size: 1rem;
}

.review-read-modal__text {
  margin-top: 18px;
  color: #2e3b47;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 919px) {
  .orienter-carousel__label {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }

  .orienter-carousel__stage {
    height: 370px;
  }

  .orienter-carousel-card {
    width: 220px;
    height: 300px;
  }

  .orienter-carousel-card.left-1 {
    transform: translate(calc(-50% - 145px), -50%) scale(0.88) translateZ(-100px);
  }

  .orienter-carousel-card.right-1 {
    transform: translate(calc(-50% + 145px), -50%) scale(0.88) translateZ(-100px);
  }

  .orienter-carousel-card.left-2 {
    opacity: 0.18;
    transform: translate(calc(-50% - 270px), -50%) scale(0.72) translateZ(-280px);
  }

  .orienter-carousel-card.right-2 {
    opacity: 0.18;
    transform: translate(calc(-50% + 270px), -50%) scale(0.72) translateZ(-280px);
  }

  .orienter-carousel-card__avatar {
    font-size: 3.4rem;
  }

  .orienter-carousel__name {
    font-size: 2rem;
  }

  .orienter-carousel__name::before,
  .orienter-carousel__name::after {
    width: 48px;
  }
}

@media (max-width: 599px) {
  .orienter-carousel {
    gap: 18px;
  }

  .orienter-carousel__label {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.7rem);
    white-space: normal;
  }

  .orienter-carousel__stage {
    height: 320px;
    width: 100%;
  }

  .orienter-carousel-card {
    width: 186px;
    height: 252px;
    gap: 14px;
    padding: 18px;
  }

  .orienter-carousel-card.left-1 {
    opacity: 0.48;
    transform: translate(calc(-50% - 94px), -50%) scale(0.82) translateZ(-110px);
  }

  .orienter-carousel-card.right-1 {
    opacity: 0.48;
    transform: translate(calc(-50% + 94px), -50%) scale(0.82) translateZ(-110px);
  }

  .orienter-carousel-card.left-2,
  .orienter-carousel-card.right-2 {
    opacity: 0;
    pointer-events: none;
  }

  .orienter-carousel-card__avatar {
    font-size: 2.65rem;
  }

  .orienter-carousel-card__name {
    font-size: 0.95rem;
  }

  .orienter-carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .orienter-carousel__arrow--left {
    left: 0;
  }

  .orienter-carousel__arrow--right {
    right: 0;
  }

  .orienter-carousel__info {
    min-height: 190px;
  }

  .orienter-carousel__name {
    font-size: 1.75rem;
  }

  .orienter-carousel__name::before,
  .orienter-carousel__name::after {
    display: none;
  }
}

@media (max-width: 919px) {
  .about-reviews__grid {
    animation-duration: 38s;
  }

  .about-review-card {
    width: min(82vw, 320px);
    min-height: 250px;
    flex-basis: min(82vw, 320px);
  }
}

.tag-list,
.orienter-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  color: var(--color-primary);
  background: rgba(3, 31, 68, 0.08);
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
}

.orienter-card__contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--color-accent-dark);
  background: rgba(201, 68, 72, 0.08);
  border: 1px solid rgba(201, 68, 72, 0.16);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
}

.orienter-card__contacts a:hover,
.orienter-card__contacts a:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
}

.hours-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92)),
    repeating-linear-gradient(135deg, rgba(var(--color-logo-blue-rgb), 0.06) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(45deg, rgba(var(--color-logo-red-rgb), 0.05) 0 1px, transparent 1px 30px),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(14, 37, 58, 0.11);
  isolation: isolate;
}

.hours-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-logo-blue), rgba(var(--color-logo-blue-rgb), 0.72), var(--color-logo-red));
  z-index: 0;
}

.hours-panel__intro,
.hours-grid {
  position: relative;
  z-index: 1;
}

.hours-panel__intro {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 520px;
}

.hours-panel__intro .eyebrow {
  width: fit-content;
}

.hours-panel__intro h2 {
  margin: 0;
  color: var(--color-black);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: var(--weight-heavy);
}

.hours-panel__intro > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hours-panel__icon {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgba(var(--color-logo-blue-rgb), 0.98) 0%, rgb(13, 61, 94) 76%),
    var(--color-logo-blue);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -10px 18px rgba(0, 0, 0, 0.16),
    0 16px 30px rgba(var(--color-logo-blue-rgb), 0.24);
}

.hours-panel__icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  pointer-events: none;
}

.hours-panel__icon svg,
.hours-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours-panel__icon svg {
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.22));
}

.hours-panel__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.hours-panel__actions .btn,
.hours-panel__link {
  width: 210px;
  min-height: 50px;
  justify-content: center;
  box-sizing: border-box;
}

.hours-panel__link {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: var(--weight-heavy);
}

.hours-panel__actions .btn--courses-glow,
.hours-panel__link {
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-position 0.24s ease;
}

.hours-panel__actions .btn--courses-glow:hover,
.hours-panel__actions .btn--courses-glow:focus-visible,
.hours-panel__link:hover,
.hours-panel__link:focus-visible {
  color: var(--color-white);
  background-position: 100% 100%, 0% 0%, 100% 50%;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: var(--button-effect-shadow-hover);
  transform: translateY(-2px);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hours-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 164px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 254, 0.88)),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(14, 37, 58, 0.075);
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.hours-card::before {
  content: "";
  position: absolute;
  inset: 0 18px auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-logo-blue), rgba(var(--color-logo-blue-rgb), 0.52));
  border-radius: 0 0 999px 999px;
}

.hours-card:hover,
.hours-card:focus-within {
  background: var(--color-white);
  border-color: rgba(var(--color-logo-blue-rgb), 0.4);
  box-shadow: 0 20px 46px rgba(14, 37, 58, 0.13);
  transform: translateY(-4px);
}

.hours-card--primary {
  background:
    linear-gradient(135deg, rgba(var(--color-logo-blue-rgb), 0.1), rgba(var(--color-logo-red-rgb), 0.06)),
    rgba(255, 255, 255, 0.92);
}

.hours-card--closed {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 104px;
}

.hours-card--closed::before {
  background: linear-gradient(90deg, var(--color-logo-red), rgba(var(--color-logo-red-rgb), 0.52));
}

.hours-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--color-logo-blue);
  background: rgba(var(--color-logo-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.16);
  border-radius: var(--radius-sm);
}

.hours-card--closed .hours-card__icon {
  color: var(--color-logo-red);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 246, 247, 0.92)),
    rgba(var(--color-logo-red-rgb), 0.08);
  border-color: rgba(var(--color-logo-red-rgb), 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 18px rgba(var(--color-logo-red-rgb), 0.1);
}

.hours-card--closed .hours-card__icon svg {
  stroke-width: 1.8;
}

.hours-card h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 1.02rem;
  line-height: 1.2;
}

.hours-card p {
  margin: 6px 0 0;
  color: var(--color-muted);
  line-height: 1.4;
}

.hours-card strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-logo-blue);
  font-size: 1.02rem;
  line-height: 1.28;
}

.hours-card--closed strong {
  color: var(--color-logo-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-cta {
  display: grid;
  gap: 14px;
  max-width: 760px;
  justify-items: center;
  text-align: center;
}

.about-cta h2,
.about-cta p {
  margin: 0;
}

.about-cta .btn {
  width: fit-content;
  justify-self: center;
}

.contact-hero {
  display: flex;
  align-items: center;
  min-height: clamp(430px, 56vh, 570px);
  padding: calc(var(--header-height) + 76px) 0 76px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.66) 52%, rgba(255, 255, 255, 0.34) 100%),
    url("../img/contact-hero-background.png") center / cover no-repeat;
}

.contact-hero__inner {
  max-width: 860px;
}

.contact-hero h1,
.contact-location .section-heading h2 {
  overflow-wrap: break-word;
}

.events-hero {
  display: flex;
  min-height: clamp(500px, 64vh, 680px);
  align-items: center;
  padding: calc(var(--header-height) + 78px) 0 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.9) 0%, rgba(244, 248, 252, 0.76) 46%, rgba(244, 248, 252, 0.28) 100%),
    url("../img/events-orientation-hero.jpg?v=events-orientation-1") center 42% / cover no-repeat;
}

.events-hero__inner {
  max-width: 760px;
}

.events-overview {
  background:
    linear-gradient(180deg, var(--color-white) 0%, rgba(246, 249, 252, 0.74) 100%);
}

.events-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.events-overview__copy {
  max-width: 540px;
}

.event-format-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.event-format-card {
  position: relative;
  display: grid;
  grid-column: span 3;
  min-height: 172px;
  align-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 241, 247, 0.64)),
    var(--color-white);
  border: 1px solid rgba(178, 199, 216, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 46px rgba(14, 37, 58, 0.11);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.event-format-card--wide {
  grid-column: span 4;
}

.event-format-card:nth-child(2),
.event-format-card:nth-child(3) {
  grid-column: span 2;
}

.event-format-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.event-format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(3, 31, 68, 0.2);
  box-shadow: 0 26px 62px rgba(14, 37, 58, 0.16);
}

.event-format-card__number {
  color: rgba(3, 31, 68, 0.38);
  font-size: 0.82rem;
  font-weight: var(--weight-heavy);
  letter-spacing: 0;
}

.event-format-card strong {
  color: var(--color-black);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.08;
}

.event-format-card span:not(.event-format-card__number) {
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.events-calendar {
  background:
    radial-gradient(circle at 18% 12%, rgba(3, 31, 68, 0.28), transparent 36%),
    radial-gradient(circle at 78% 12%, rgba(201, 68, 72, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(220, 228, 236, 0.94) 0%, rgba(246, 249, 252, 0.9) 46%, rgba(234, 241, 247, 0.96) 100%);
}

.events-calendar__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.events-calendar__intro {
  max-width: 780px;
  justify-self: center;
  text-align: center;
}

.events-calendar__intro .section-heading {
  justify-items: center;
}

.events-calendar__intro .section-heading h2 {
  max-width: 760px;
  font-size: 3.1rem;
  text-wrap: balance;
}

.events-calendar__intro .section-heading p:not(.eyebrow) {
  max-width: 660px;
}

.event-calendar-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
}

.event-calendar-control {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--color-primary);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(228, 236, 244, 0.82));
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -6px 14px rgba(3, 31, 68, 0.07),
    0 12px 26px rgba(3, 31, 68, 0.14);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: var(--weight-heavy);
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.event-calendar-control::after {
  content: "";
  position: absolute;
  inset: 7px 8px auto 8px;
  height: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
  border-radius: 999px;
  pointer-events: none;
}

.event-calendar-control:hover,
.event-calendar-control:focus-visible {
  color: var(--color-white);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(145deg, #143f70, var(--color-primary));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -7px 16px rgba(0, 0, 0, 0.16),
    0 16px 34px rgba(3, 31, 68, 0.22);
  transform: translateY(-2px);
}

.event-calendar-control:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.event-calendar-arrow {
  position: relative;
  display: block;
  width: 23px;
  height: 16px;
}

.event-calendar-arrow::before,
.event-calendar-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}

.event-calendar-arrow::before {
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.event-calendar-arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.event-calendar-arrow--prev::before {
  left: 4px;
}

.event-calendar-arrow--prev::after {
  left: 3px;
  transform: translateY(-50%) rotate(-135deg);
}

.event-calendar-arrow--next::before {
  right: 4px;
}

.event-calendar-arrow--next::after {
  right: 3px;
  transform: translateY(-50%) rotate(45deg);
}

.event-agenda {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(100%, 1240px);
  min-width: 980px;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.event-agenda-scroll {
  --event-agenda-edge-space: 6px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 var(--event-agenda-edge-space) 8px;
  box-sizing: border-box;
  perspective: 1600px;
  perspective-origin: center 42%;
  scroll-padding-inline: var(--event-agenda-edge-space);
}

.event-agenda::before {
  display: none;
}

.event-agenda::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(3, 31, 68, 0.12)),
    linear-gradient(90deg, rgba(3, 31, 68, 0.12), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18));
  border-radius: 10px;
}

.event-agenda.is-page-turn-out-next {
  animation: calendarPageOutNext 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left center;
}

.event-agenda.is-page-turn-in-next {
  animation: calendarPageInNext 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform-origin: right center;
}

.event-agenda.is-page-turn-out-prev {
  animation: calendarPageOutPrev 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: right center;
}

.event-agenda.is-page-turn-in-prev {
  animation: calendarPageInPrev 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform-origin: left center;
}

.event-agenda.is-page-turn-out-next::after,
.event-agenda.is-page-turn-in-next::after {
  animation: calendarPageSheenNext 0.5s ease both;
}

.event-agenda.is-page-turn-out-prev::after,
.event-agenda.is-page-turn-in-prev::after {
  animation: calendarPageSheenPrev 0.5s ease both;
}

@keyframes calendarPageOutNext {
  0% {
    opacity: 1;
    filter: brightness(1);
    transform: rotateY(0deg) translateX(0) scale(1);
  }

  100% {
    opacity: 0.38;
    filter: brightness(0.93);
    transform: rotateY(-24deg) translateX(-20px) scale(0.985);
  }
}

@keyframes calendarPageInNext {
  0% {
    opacity: 0.36;
    filter: brightness(1.04);
    transform: rotateY(22deg) translateX(24px) scale(0.985);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
    transform: rotateY(0deg) translateX(0) scale(1);
  }
}

@keyframes calendarPageOutPrev {
  0% {
    opacity: 1;
    filter: brightness(1);
    transform: rotateY(0deg) translateX(0) scale(1);
  }

  100% {
    opacity: 0.38;
    filter: brightness(0.93);
    transform: rotateY(24deg) translateX(20px) scale(0.985);
  }
}

@keyframes calendarPageInPrev {
  0% {
    opacity: 0.36;
    filter: brightness(1.04);
    transform: rotateY(-22deg) translateX(-24px) scale(0.985);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
    transform: rotateY(0deg) translateX(0) scale(1);
  }
}

@keyframes calendarPageSheenNext {
  0%, 100% {
    opacity: 0;
    transform: translateX(-18%);
  }

  44% {
    opacity: 0.95;
    transform: translateX(6%);
  }
}

@keyframes calendarPageSheenPrev {
  0%, 100% {
    opacity: 0;
    transform: translateX(18%) scaleX(-1);
  }

  44% {
    opacity: 0.95;
    transform: translateX(-6%) scaleX(-1);
  }
}

.event-agenda-weekday {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: rgba(3, 31, 68, 0.74);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: var(--weight-heavy);
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-agenda-card {
  position: relative;
  display: flex;
  flex-flow: column;
  min-height: 132px;
  gap: 8px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.58), rgba(234, 241, 247, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(3, 31, 68, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.event-agenda-card--event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "date type"
    "summary summary"
    "media media"
    "body body";
  align-content: start;
  min-height: 286px;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(3, 31, 68, 0.18);
}

.event-agenda-card--empty {
  justify-content: flex-start;
}

.event-agenda-card--outside {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.32), rgba(234, 241, 247, 0.18));
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.event-agenda-card--empty .event-agenda-card__date span {
  color: rgba(3, 31, 68, 0.84);
  font-size: 1.45rem;
}

.event-agenda-card--outside .event-agenda-card__date span,
.event-agenda-card--outside .event-agenda-card__date small {
  color: rgba(3, 31, 68, 0.36);
}

.event-agenda-card:nth-child(odd) {
  justify-self: stretch;
}

.event-agenda-card:nth-child(even) {
  justify-self: stretch;
}

.event-agenda-card:hover,
.event-agenda-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 68, 72, 0.34);
  box-shadow: 0 18px 44px rgba(3, 31, 68, 0.2);
}

.event-agenda-card--empty:hover,
.event-agenda-card--empty:focus-within,
.event-agenda-card--outside:hover,
.event-agenda-card--outside:focus-within {
  transform: none;
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(3, 31, 68, 0.16);
}

.event-agenda-card__media {
  grid-area: media;
  order: 3;
  height: 72px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-strong);
}

.event-agenda-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.event-agenda-card:hover .event-agenda-card__media img,
.event-agenda-card:focus-within .event-agenda-card__media img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1);
}

.event-agenda-card__date {
  grid-area: date;
  order: 1;
  z-index: 1;
  display: grid;
  width: auto;
  height: auto;
  place-items: start;
  align-self: stretch;
  justify-self: stretch;
  color: var(--color-primary);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.event-agenda-card__date span {
  display: block;
  font-size: 2rem;
  line-height: 0.95;
  font-weight: var(--weight-heavy);
}

.event-agenda-card__date small {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: var(--weight-heavy);
  text-transform: uppercase;
}

.event-agenda-card__body {
  grid-area: body;
  order: 4;
  display: grid;
  align-content: start;
  flex: 1;
  gap: 6px;
  padding: 0;
}

.event-agenda-card__summary {
  grid-area: summary;
  order: 2;
  display: grid;
  align-content: start;
  min-width: 0;
}

.event-agenda-card__type {
  grid-area: type;
  align-self: start;
  justify-self: start;
  width: fit-content;
  margin-left: 4px;
  padding: 4px 7px;
  color: var(--color-primary);
  background: rgba(234, 241, 247, 0.72);
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.66rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.event-agenda-card h3,
.event-agenda-card p,
.event-agenda-card dl {
  margin: 0;
}

.event-agenda-card h3 {
  color: var(--color-black);
  font-size: 0.92rem;
  line-height: 1.04;
  padding-left: 6px;
}

.event-agenda-card p {
  max-width: none;
  color: #2e3b47;
  font-size: 0.72rem;
  line-height: 1.34;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.event-agenda-card dl {
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
}

.event-agenda-card dl div {
  padding: 7px 8px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
}

.event-agenda-card dt {
  color: var(--color-muted);
  font-size: 0.6rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.event-agenda-card dd {
  margin: 3px 0 0;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
}

.event-agenda-card .btn {
  width: fit-content;
  justify-self: center;
  margin-top: 8px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.74rem;
}

.event-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1260;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.event-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.event-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 31, 68, 0.64);
  backdrop-filter: blur(10px);
}

.event-detail-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 0.56fr);
  width: min(100%, 860px);
  max-height: min(86dvh, 760px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96)),
    var(--color-white);
  border: 1px solid rgba(178, 199, 216, 0.82);
  border-radius: var(--radius-sm);
  box-shadow: 0 28px 80px rgba(14, 37, 58, 0.34);
}

.event-detail-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(3, 31, 68, 0.12);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.event-detail-modal__close:hover,
.event-detail-modal__close:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
}

.event-detail-modal__media {
  display: flex;
  min-height: 0;
  margin: clamp(16px, 2.2vw, 24px);
  overflow: hidden;
  background: var(--color-surface-strong);
}

.event-detail-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.event-detail-modal__content {
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: inherit;
  overflow-y: auto;
  padding: clamp(22px, 4vw, 36px);
}

.event-detail-modal__type {
  width: fit-content;
  padding: 6px 10px;
  color: var(--color-primary);
  background: rgba(234, 241, 247, 0.9);
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.event-detail-modal h3,
.event-detail-modal p,
.event-detail-modal dl {
  margin: 0;
}

.event-detail-modal h3 {
  padding-right: 34px;
  color: var(--color-black);
  font-size: 1.75rem;
  line-height: 1.08;
}

.event-detail-modal__description {
  color: #2e3b47;
  font-size: 1rem;
  line-height: 1.6;
}

.event-detail-modal__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-detail-modal__facts div {
  padding: 12px;
  background: rgba(246, 249, 252, 0.86);
  border: 1px solid rgba(220, 228, 236, 0.95);
  border-radius: var(--radius-sm);
}

.event-detail-modal__facts dt {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.event-detail-modal__facts dd {
  margin: 4px 0 0;
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
  line-height: 1.35;
}

.events-gallery-section {
  background:
    linear-gradient(180deg, var(--color-white) 0%, rgba(246, 249, 252, 0.88) 100%);
}

.events-gallery-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.events-gallery-board__heading {
  max-width: 430px;
}

.events-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, 16vw);
  gap: 14px;
}

.events-mosaic__item {
  position: relative;
  display: block;
  grid-column: span 3;
  overflow: hidden;
  min-height: 0;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 58px rgba(14, 37, 58, 0.16);
  isolation: isolate;
}

.events-mosaic__item--large {
  grid-row: span 2;
}

.events-mosaic__item--wide {
  grid-column: span 3;
}

.events-mosaic__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(3, 31, 68, 0), rgba(3, 31, 68, 0.78));
  z-index: 1;
}

.events-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.95);
  transition: transform 0.34s ease, filter 0.34s ease;
}

.events-mosaic__item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.92rem;
  font-weight: var(--weight-bold);
  line-height: 1.25;
}

.events-mosaic__item:hover img,
.events-mosaic__item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1);
}

.events-mosaic__item:focus-visible {
  outline: 3px solid rgba(201, 68, 72, 0.48);
  outline-offset: 4px;
}

.contact-location {
  display: grid;
  gap: 28px;
}

.contact-location__heading {
  margin-bottom: 0;
}

.contact-location__heading .eyebrow {
  justify-self: center;
  margin-inline: auto;
}

.contact-location__grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.contact-card,
.legal-panel,
.social-channel-card,
.directions-grid article {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(14, 37, 58, 0.08);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px;
}

.contact-card h3,
.contact-card p {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.social-channel-card a {
  --social-card-color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  width: fit-content;
  padding: 8px 11px;
  color: var(--color-primary);
  background: rgba(3, 31, 68, 0.06);
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: var(--weight-semibold);
}

.contact-list a svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-list__whatsapp svg {
  color: var(--color-whatsapp);
}

.contact-list a:hover,
.contact-list a:focus-visible,
.social-channel-card a:hover,
.social-channel-card a:focus-visible {
  color: var(--social-card-color);
  background: rgba(3, 31, 68, 0.06);
  border-color: rgba(3, 31, 68, 0.14);
  box-shadow: 0 10px 22px rgba(14, 37, 58, 0.08);
  transform: translateY(-2px);
}

.social-channel-card a.social-channel-card__icon {
  --social-card-background: var(--social-card-color);
  --social-card-shadow: rgba(14, 37, 58, 0.14);
  justify-self: end;
  width: 58px;
  height: 58px;
  min-height: 58px;
  justify-content: center;
  padding: 0;
  color: var(--color-white);
  background: var(--social-card-background);
  border-color: transparent;
  box-shadow: 0 10px 22px var(--social-card-shadow);
}

.social-channel-card__icon svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.social-channel-card a.social-channel-card__icon--instagram {
  --social-card-color: #c13584;
  --social-card-background: radial-gradient(circle at 30% 110%, #ffdc80 0 19%, #fcaf45 20% 34%, #f77737 35% 47%, #f56040 48% 59%, #c13584 60% 76%, #833ab4 77% 100%);
  --social-card-shadow: rgba(193, 53, 132, 0.22);
}

.social-channel-card__icon--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-channel-card__icon--instagram svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-channel-card a.social-channel-card__icon--linkedin {
  --social-card-color: #0a66c2;
  --social-card-background: linear-gradient(135deg, #004182 0%, #0a66c2 100%);
  --social-card-shadow: rgba(0, 65, 130, 0.24);
}

.social-channel-card a.social-channel-card__icon--facebook {
  --social-card-color: #0866ff;
  --social-card-background: linear-gradient(135deg, #0866ff 0%, #2d88ff 100%);
  --social-card-shadow: rgba(8, 102, 255, 0.24);
}

.social-channel-card a.social-channel-card__icon--tiktok {
  --social-card-color: #05070a;
  --social-card-background: linear-gradient(135deg, #25f4ee 0 18%, #05070a 18% 82%, #fe2c55 82% 100%);
  --social-card-shadow: rgba(5, 7, 10, 0.22);
}

.social-channel-card a.social-channel-card__icon--whatsapp {
  --social-card-color: #25d366;
  --social-card-background: linear-gradient(135deg, #20bd5a 0%, #25d366 100%);
  --social-card-shadow: rgba(37, 211, 102, 0.24);
}

.social-channel-card a.social-channel-card__icon:hover,
.social-channel-card a.social-channel-card__icon:focus-visible {
  color: var(--color-white);
  background: var(--social-card-background);
  border-color: transparent;
  box-shadow: 0 14px 28px var(--social-card-shadow);
}

.contact-map {
  position: relative;
}

.contact-map iframe,
.contact-map__canvas {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 520px);
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 44px rgba(14, 37, 58, 0.12);
}

.contact-map__canvas {
  z-index: 1;
  overflow: hidden;
  background: var(--color-surface-strong);
}

.contact-map__canvas .leaflet-container,
.contact-map__canvas.leaflet-container {
  font-family: var(--font-main);
}

.contact-map__actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-map__actions a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(14, 37, 58, 0.12);
  font-size: 0.78rem;
  font-weight: var(--weight-bold);
}

.contact-map__actions a:hover,
.contact-map__actions a:focus-visible {
  color: var(--color-white);
  background: var(--color-logo-blue);
  outline: none;
}

.contact-map-marker {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.contact-map-marker__pin {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-white);
  background: var(--marker-color, var(--color-logo-red));
  border: 3px solid var(--color-white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 24px rgba(5, 7, 10, 0.22);
  transform: rotate(-45deg);
}

.contact-map-marker__pin span {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--weight-heavy);
  line-height: 1;
  transform: rotate(45deg);
}

.contact-map-marker--paola {
  --marker-color: var(--color-logo-blue);
}

.contact-map-marker--amantea {
  --marker-color: var(--color-logo-red);
}

.contact-map .leaflet-popup-content {
  margin: 10px 12px;
  color: var(--color-ink);
  font-family: var(--font-main);
}

.contact-map .leaflet-popup-content strong {
  display: block;
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

.contact-map__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.contact-map__link:focus-visible {
  outline: 3px solid rgba(201, 68, 72, 0.72);
  outline-offset: 4px;
}

.directions-grid,
.social-channel-grid {
  display: grid;
  gap: 16px;
}

#canali-social {
  background:
    linear-gradient(180deg, var(--color-white) 0%, rgba(246, 249, 252, 0.92) 100%);
}

#canali-social .section-heading {
  max-width: none;
  justify-items: center;
  margin: 0 auto 42px;
  text-align: center;
}

#canali-social .section-heading h2 {
  max-width: none;
  font-size: 2.35rem;
}

@media (min-width: 1160px) {
  #canali-social .section-heading h2 {
    white-space: nowrap;
  }
}

.social-channel-grid {
  gap: clamp(18px, 3vw, 30px);
}

#canali-social .social-channel-grid {
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
}

#canali-social .social-channel-card {
  min-height: 252px;
}

@media (min-width: 1200px) {
  #canali-social .social-channel-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.directions-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (min-width: 920px) {
  .directions-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(8px, 1vw, 12px);
  }

  .directions-grid article.directions-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 16px 14px 15px;
  }

  .directions-card__icon {
    width: 40px;
    height: 40px;
  }

  .directions-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .directions-card .eyebrow {
    padding: 6px 8px;
    font-size: 0.66rem;
  }

  .directions-grid h3 {
    font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  }

  .directions-grid p:not(.eyebrow) {
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    line-height: 1.45;
  }

  .directions-card__note,
  .directions-card__link {
    font-size: clamp(0.7rem, 0.85vw, 0.74rem);
  }
}

.directions-grid article,
.social-channel-card {
  padding: 18px;
}

.directions-grid article.directions-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(145deg, var(--direction-soft, rgba(255, 255, 255, 0.98)), rgba(255, 255, 255, 0.96) 46%, rgba(244, 248, 252, 0.82)),
    var(--color-white);
  transition: var(--transition);
}

.directions-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--direction-color, var(--color-logo-blue));
}

.directions-card:hover,
.directions-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(14, 37, 58, 0.13);
}

.directions-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-white);
  background: var(--direction-color, var(--color-logo-blue));
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px var(--direction-shadow, rgba(3, 31, 68, 0.18));
}

.directions-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directions-card__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.directions-card .eyebrow {
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  color: var(--direction-color, var(--color-logo-blue));
  background: var(--direction-soft, rgba(var(--color-logo-blue-rgb), 0.08));
  border-color: var(--direction-border, rgba(var(--color-logo-blue-rgb), 0.18));
}

.directions-card__note,
.directions-card__link {
  width: fit-content;
  color: var(--direction-color, var(--color-logo-blue));
  font-size: 0.84rem;
  font-weight: var(--weight-semibold);
}

.directions-card__link:hover,
.directions-card__link:focus-visible {
  color: var(--direction-color, var(--color-logo-blue));
  transform: translateX(2px);
}

.directions-card--train {
  --direction-color: var(--color-logo-blue);
  --direction-soft: rgba(var(--color-logo-blue-rgb), 0.085);
  --direction-border: rgba(var(--color-logo-blue-rgb), 0.2);
  --direction-shadow: rgba(var(--color-logo-blue-rgb), 0.22);
}

.directions-card--car {
  --direction-color: var(--color-logo-red);
  --direction-soft: rgba(var(--color-logo-red-rgb), 0.085);
  --direction-border: rgba(var(--color-logo-red-rgb), 0.2);
  --direction-shadow: rgba(var(--color-logo-red-rgb), 0.22);
}

.directions-card--parking {
  --direction-color: var(--color-logo-blue);
  --direction-soft: rgba(var(--color-logo-blue-rgb), 0.085);
  --direction-border: rgba(var(--color-logo-blue-rgb), 0.2);
  --direction-shadow: rgba(var(--color-logo-blue-rgb), 0.22);
}

.directions-card--access {
  --direction-color: var(--color-logo-red);
  --direction-soft: rgba(var(--color-logo-red-rgb), 0.085);
  --direction-border: rgba(var(--color-logo-red-rgb), 0.2);
  --direction-shadow: rgba(var(--color-logo-red-rgb), 0.22);
}

.directions-grid h3,
.directions-grid p,
.social-channel-card h3,
.social-channel-card p {
  margin: 0;
}

.directions-grid h3,
.social-channel-card h3 {
  color: var(--color-black);
  font-size: 1.08rem;
  font-weight: var(--weight-bold);
}

.directions-grid p:not(.eyebrow),
.social-channel-card p {
  color: var(--color-muted);
  line-height: 1.45;
}

.role-layout {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.role-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.role-copy h2 {
  margin: 0;
  max-width: 760px;
  color: var(--color-black);
}

.role-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
}

.role-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.role-proof {
  --role-color: var(--color-logo-blue);
  --role-soft: rgba(var(--color-logo-blue-rgb), 0.08);
  --role-shadow: rgba(var(--color-logo-blue-rgb), 0.16);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding: 14px;
  background:
    linear-gradient(145deg, var(--role-soft), rgba(255, 255, 255, 0.96) 54%),
    var(--color-white);
  border: 1px solid rgba(var(--color-logo-blue-rgb), 0.16);
  border-left: 4px solid var(--role-color);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 28px rgba(14, 37, 58, 0.07);
  transition: var(--transition);
}

.role-proof:hover,
.role-proof:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px var(--role-shadow);
}

.role-proof--red {
  --role-color: var(--color-logo-red);
  --role-soft: rgba(var(--color-logo-red-rgb), 0.08);
  --role-shadow: rgba(var(--color-logo-red-rgb), 0.16);
  border-color: rgba(var(--color-logo-red-rgb), 0.18);
}

.role-proof__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-white);
  background: var(--role-color);
  border-radius: var(--radius-sm);
}

.role-proof__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-proof h3,
.role-proof p {
  margin: 0;
}

.role-proof h3 {
  color: var(--color-black);
  font-size: 0.98rem;
}

.role-proof p {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.legal-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(var(--color-logo-blue-rgb), 0.055)),
    var(--color-white);
  border-color: rgba(var(--color-logo-blue-rgb), 0.18);
}

.legal-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-logo-red));
}

.legal-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  row-gap: 10px;
  align-items: center;
  padding: 20px 22px 0;
}

.legal-panel__header > div {
  display: contents;
}

.legal-panel__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.legal-panel__header h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: var(--color-black);
}

.legal-panel__logo {
  grid-column: 2;
  grid-row: 2;
  width: clamp(92px, 20vw, 132px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
  transform: translateX(-12px);
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 22px 22px;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(var(--color-logo-blue-rgb), 0.14);
}

.legal-list dt {
  color: var(--color-logo-blue);
  font-size: 0.78rem;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: var(--color-black);
  font-weight: var(--weight-semibold);
  overflow-wrap: anywhere;
}

.legal-list__address {
  white-space: nowrap;
}

.social-channel-card {
  --social-card-color: var(--color-primary);
  --social-card-glow: rgba(14, 37, 58, 0.14);
  --social-card-fill: linear-gradient(135deg, #031f44 0%, #264972 100%);
  --social-card-icon: linear-gradient(135deg, #031f44 0%, #264972 100%);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  align-items: center;
  justify-items: center;
  gap: 10px;
  min-height: 252px;
  overflow: hidden;
  padding: 30px 18px 24px;
  color: var(--color-black);
  text-align: center;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.92)),
    var(--color-white);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 42px var(--social-card-glow),
    0 12px 28px rgba(14, 37, 58, 0.08);
  animation: social-card-enter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  transition:
    color 0.28s ease,
    transform 0.34s ease,
    border-color 0.28s ease,
    box-shadow 0.34s ease,
    background 0.28s ease;
}

.social-channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--social-card-fill);
  background-size: 220% 220%;
  animation: social-accent-flow 4.8s ease-in-out infinite;
  pointer-events: none;
  transform: translateY(101%);
  transition: transform 0.42s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.social-channel-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 88%;
  height: 54%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -62%);
  transition: opacity 0.34s ease, transform 0.42s ease;
  z-index: 0;
}

.social-channel-card > * {
  position: relative;
  z-index: 1;
}

.social-channel-card:hover,
.social-channel-card:focus-within {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 26px 58px var(--social-card-glow),
    0 20px 38px rgba(14, 37, 58, 0.12);
  transform: scale(1.025);
}

.social-channel-card:focus-visible {
  outline: 3px solid rgba(38, 73, 114, 0.32);
  outline-offset: 5px;
}

.social-channel-card:hover::before,
.social-channel-card:focus-within::before {
  transform: translateY(0);
}

.social-channel-card:hover::after,
.social-channel-card:focus-within::after {
  opacity: 0.32;
  transform: translate(-50%, -46%);
}

.social-channel-card:nth-child(2) {
  animation-delay: 0.08s;
}

.social-channel-card:nth-child(3) {
  animation-delay: 0.16s;
}

.social-channel-card:nth-child(4) {
  animation-delay: 0.24s;
}

.social-channel-card:nth-child(5) {
  animation-delay: 0.32s;
}

.social-channel-card:nth-child(6) {
  animation-delay: 0.4s;
}

.social-channel-card--instagram {
  --social-card-color: #c13584;
  --social-card-glow: rgba(220, 39, 67, 0.25);
  --social-card-fill: linear-gradient(45deg, #f09433 0%, #e6683c 26%, #dc2743 50%, #cc2366 73%, #bc1888 100%);
  --social-card-icon: radial-gradient(circle at 30% 110%, #ffdc80 0 19%, #fcaf45 20% 34%, #f77737 35% 47%, #f56040 48% 59%, #c13584 60% 76%, #833ab4 77% 100%);
}

.social-channel-card--linkedin {
  --social-card-color: #0a66c2;
  --social-card-glow: rgba(0, 119, 181, 0.27);
  --social-card-fill: linear-gradient(135deg, #004182 0%, #0a66c2 100%);
  --social-card-icon: linear-gradient(135deg, #0077b5 0%, #0a66c2 100%);
}

.social-channel-card--facebook {
  --social-card-color: #1877f2;
  --social-card-glow: rgba(8, 102, 255, 0.26);
  --social-card-fill: linear-gradient(135deg, #0866ff 0%, #2d88ff 100%);
  --social-card-icon: linear-gradient(135deg, #0866ff 0%, #2d88ff 100%);
}

.social-channel-card--tiktok {
  --social-card-color: #05070a;
  --social-card-glow: rgba(37, 244, 238, 0.24);
  --social-card-fill: linear-gradient(135deg, #25f4ee 0%, #05070a 45%, #fe2c55 100%);
  --social-card-icon: linear-gradient(135deg, #25f4ee 0 18%, #05070a 18% 82%, #fe2c55 82% 100%);
}

.social-channel-card--telegram {
  --social-card-color: #229ed9;
  --social-card-glow: rgba(34, 158, 217, 0.24);
  --social-card-fill: linear-gradient(135deg, #1d8fc2 0%, #2aabee 100%);
  --social-card-icon: linear-gradient(135deg, #1d8fc2 0%, #2aabee 100%);
}

.social-channel-card--whatsapp {
  --social-card-color: #25d366;
  --social-card-glow: rgba(37, 211, 102, 0.24);
  --social-card-fill: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  --social-card-icon: linear-gradient(135deg, #20bd5a 0%, #25d366 100%);
}

.social-channel-card__icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: var(--color-white);
  background: var(--social-card-icon);
  border-radius: var(--radius-sm);
  box-shadow:
    0 16px 28px var(--social-card-glow),
    0 0 0 1px rgba(255, 255, 255, 0.42) inset;
  transition:
    transform 0.34s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.social-channel-card__icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

.social-channel-card__icon--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-channel-card__icon--instagram svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-channel-card__label {
  color: var(--social-card-color);
  font-size: 0.76rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.social-channel-card h3 {
  color: currentColor;
  font-size: 1.15rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.28s ease;
}

.social-channel-card p {
  max-width: 100%;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
  transition: color 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.social-channel-card:hover .social-channel-card__icon,
.social-channel-card:focus-within .social-channel-card__icon {
  filter: saturate(1.18);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: translateY(-8px) scale(1.18) rotate(8deg);
}

.social-channel-card:hover .social-channel-card__label,
.social-channel-card:focus-within .social-channel-card__label,
.social-channel-card:hover p,
.social-channel-card:focus-within p {
  color: rgba(255, 255, 255, 0.86);
}

.social-channel-card:hover h3,
.social-channel-card:focus-within h3 {
  transform: translateY(-2px);
}

.form-layout {
  align-items: start;
}

.form-side {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.cfu-side-image {
  display: block;
  margin: 72px 0 0;
  width: min(116%, 430px);
  justify-self: center;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: transparent;
}

.cfu-side-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #2e3b47;
  font-weight: var(--weight-regular);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.privacy-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: var(--weight-regular);
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

.form-status.is-success {
  color: #18764b;
}

.form-status.is-error {
  color: var(--color-accent-dark);
}

.btn--compact {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.78rem;
}

.btn--ghost {
  color: var(--color-accent-dark);
  background: rgba(201, 68, 72, 0.08);
  border-color: transparent;
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
  transform: translateY(-1px);
}

.lead-form--crm .btn--whatsapp {
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--button-effect-shadow);
}

.lead-form--crm .btn--whatsapp:hover,
.lead-form--crm .btn--whatsapp:focus-visible {
  box-shadow: var(--button-effect-shadow-hover);
}

.lead-form--crm {
  gap: 14px;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.lead-form--crm *,
.lead-form--crm *::before,
.lead-form--crm *::after {
  min-width: 0;
}

.nav-cta,
.btn--primary,
.btn--courses-glow,
.lead-form--crm .btn--whatsapp {
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  box-shadow: var(--button-effect-shadow);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn--primary:hover,
.btn--primary:focus-visible,
.btn--courses-glow:hover,
.btn--courses-glow:focus-visible,
.lead-form--crm .btn--whatsapp:hover,
.lead-form--crm .btn--whatsapp:focus-visible {
  box-shadow: var(--button-effect-shadow-hover);
}

.lead-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 10px;
}

.lead-form__header h2,
.lead-form__header p,
.lead-form__section h3,
.interest-card h4 {
  margin: 0;
}

.lead-form__header h2 {
  color: var(--color-black);
  font-size: 1.16rem;
  line-height: 1.15;
  font-weight: var(--weight-bold);
}

.lead-form__header p {
  color: var(--color-muted);
  font-size: 0.76rem;
}

.lead-form__section {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.lead-form__section h3,
.interest-card h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: var(--weight-bold);
}

.lead-form__section h3 span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 0.72rem;
}

.lead-form__section-heading,
.interest-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lead-form--crm label,
.lead-form--crm .consent-box span,
.lead-dialog p {
  font-size: 0.6875rem;
  line-height: 1.45;
}

.lead-form--crm input,
.lead-form--crm select,
.lead-form--crm textarea {
  min-height: 42px;
  padding: 10px 11px;
  font-size: 0.84rem;
}

.lead-form--crm textarea {
  min-height: 108px;
}

.field-grid__wide {
  grid-column: 1 / -1;
}

.interest-list {
  display: grid;
  gap: 12px;
}

.interest-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(14, 37, 58, 0.06);
}

.interest-card__fields {
  align-items: end;
}

.lead-form__section--consents {
  background: var(--color-white);
}

.consent-box {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px;
  color: var(--color-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-regular);
}

.consent-box input {
  width: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--color-primary);
}

.consent-box button {
  display: inline;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  font-size: inherit;
  font-weight: var(--weight-semibold);
  text-decoration: underline;
  cursor: pointer;
}

.lead-dialog {
  width: min(620px, calc(100vw - 24px));
  max-height: min(82dvh, 720px);
  padding: 0;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(3, 31, 68, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-strong);
}

.lead-dialog::backdrop {
  background: rgba(5, 7, 10, 0.46);
}

.lead-dialog__inner {
  display: grid;
  max-height: inherit;
  overflow: hidden;
}

.lead-dialog header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}

.lead-dialog h2 {
  margin: 0;
  color: var(--color-black);
  font-size: 1.05rem;
  line-height: 1.2;
}

.lead-dialog header button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: var(--weight-semibold);
  cursor: pointer;
}

.lead-dialog__body {
  display: grid;
  gap: 10px;
  max-height: calc(82dvh - 68px);
  overflow-y: auto;
  padding: 16px;
}

.lead-dialog p {
  margin: 0;
  color: var(--color-muted);
}

.lead-form-modal .lead-form--crm,
.modal .lead-form--crm,
[role="dialog"] .lead-form--crm {
  width: min(100%, calc(100vw - 0.5rem));
  max-height: 96dvh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.25rem;
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-grid .section-heading {
  margin-bottom: 4px;
}

.process-grid article span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
}

.process-grid h3 {
  margin: 0;
  font-size: 1.18rem;
}

.course-detail-hero .page-hero__inner {
  max-width: 980px;
}

.course-detail-badge {
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 10px;
}

.course-detail-badge__type,
.course-detail-badge__separator {
  line-height: 1;
}

.course-detail-badge__separator {
  color: rgba(18, 57, 86, 0.62);
}

.course-detail-badge__logo {
  display: block;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.course-detail-badge__logo--pegaso {
  height: 18px;
  max-width: 62px;
}

.course-detail-badge__logo--mercatorum {
  width: 54px;
  max-height: 30px;
}

.course-detail-badge__logo--san-raffaele {
  height: 18px;
  max-width: 74px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.detail-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.detail-sidebar {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-facts div,
.source-box,
.detail-panel,
.related-card {
  min-width: 0;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(14, 37, 58, 0.07);
}

.detail-facts dt {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
}

.detail-facts dd {
  margin: 3px 0 0;
  color: var(--color-black);
  font-weight: var(--weight-semibold);
}

.source-box {
  display: grid;
  gap: 8px;
  background: var(--color-surface);
}

.source-box strong,
.detail-panel h2,
.detail-table-block h3,
.related-card strong {
  color: var(--color-black);
  font-weight: var(--weight-semibold);
}

.source-box p,
.detail-panel p,
.muted-text {
  margin: 0;
  color: var(--color-muted);
}

.source-box a {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

.detail-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.detail-panel h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: var(--weight-bold);
}

.detail-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #2e3b47;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-table-block + .detail-table-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.detail-table-block {
  min-width: 0;
}

.detail-table-block h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: var(--weight-semibold);
}

.table-scroll {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.table-scroll table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--color-white);
}

.table-scroll th,
.table-scroll td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.table-scroll th {
  color: var(--color-primary-dark);
  background: var(--color-surface);
  font-size: 0.84rem;
  font-weight: var(--weight-semibold);
}

.table-scroll td {
  color: #2e3b47;
  font-size: 0.92rem;
}

.related-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.related-card {
  display: grid;
  gap: 8px;
  transition: var(--transition);
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(14, 37, 58, 0.13);
}

.related-card span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34);
  font-weight: var(--weight-bold);
  transition: var(--transition);
  animation: whatsapp-pulse 2.4s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
}

.cookie-side-button {
  position: fixed;
  right: 22px;
  bottom: 80px;
  z-index: 1101;
  display: inline-grid;
  width: 52px;
  height: 52px;
  min-height: 52px;
  place-items: center;
  padding: 0;
  color: var(--color-white);
  background: var(--color-logo-blue);
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(var(--color-logo-blue-rgb), 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-side-button:hover,
.cookie-side-button:focus-visible {
  color: var(--color-white);
  background: var(--color-logo-blue);
  background-image: none;
  box-shadow: 0 16px 34px rgba(var(--color-logo-blue-rgb), 0.34);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.cookie-side-button.is-on-blue {
  color: var(--color-logo-blue);
  background: var(--color-white);
  background-image: none;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 30px rgba(5, 7, 10, 0.18);
}

.cookie-side-button.is-on-blue:hover,
.cookie-side-button.is-on-blue:focus-visible {
  color: var(--color-logo-blue);
  background: var(--color-white);
  background-image: none;
}

.cookie-side-button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-side-button svg circle {
  fill: currentColor;
  stroke: none;
}

.cookie-side-button__count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-accent);
  border: 2px solid var(--color-white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(3, 31, 68, 0.22);
  font-size: 0.74rem;
  font-weight: var(--weight-heavy);
  line-height: 1;
}

.cookie-side-button.is-on-blue .cookie-side-button__count {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-logo-blue);
}

.cookie-side-button__label,
.cookie-side-button > span:not(.cookie-side-button__count) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-panel {
  position: fixed;
  right: 22px;
  bottom: 164px;
  z-index: 1100;
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100dvh - 190px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-panel__dialog {
  max-height: inherit;
  overflow-y: auto;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(3, 31, 68, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(5, 7, 10, 0.22);
}

.cookie-panel__header,
.cookie-panel__body {
  padding: 18px;
}

.cookie-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(3, 31, 68, 0.12);
}

.cookie-panel__eyebrow {
  margin: 0 0 4px;
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.cookie-panel h2 {
  margin: 0;
  color: var(--color-brand);
  font-size: 1.1rem;
  line-height: 1.2;
}

.cookie-panel p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-panel__close {
  display: inline-grid;
  width: 34px;
  height: 34px;
  min-width: 34px;
  place-items: center;
  padding: 0;
  color: var(--color-brand);
  background: rgba(3, 31, 68, 0.08);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.cookie-panel__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: 8px;
}

.cookie-option strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-ink);
  font-size: 0.95rem;
}

.cookie-option span {
  display: block;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-switch__track {
  position: absolute;
  inset: 0;
  background: #c8d3dc;
  border-radius: 999px;
  transition: background 160ms ease;
}

.cookie-switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(5, 7, 10, 0.2);
  transition: transform 160ms ease;
}

.cookie-switch input:checked + .cookie-switch__track {
  background: var(--color-accent);
}

.cookie-switch input:checked + .cookie-switch__track::after {
  transform: translateX(20px);
}

.cookie-switch input:disabled + .cookie-switch__track {
  background: var(--color-accent);
}

.cookie-panel__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.cookie-panel__actions button {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  color: var(--color-white);
  background: var(--button-effect-background);
  background-size: 130% 130%, 132% 132%, 180% 180%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: var(--weight-bold);
  transition: var(--transition);
  box-shadow: var(--button-effect-shadow);
}

.cookie-panel__actions [data-cookie-accept] {
  grid-column: 1 / -1;
  color: var(--color-white);
  background: var(--button-effect-background);
}

.cookie-panel__actions button:hover,
.cookie-panel__actions button:focus-visible {
  background-position: 100% 100%, 0% 0%, 100% 50%;
  box-shadow: var(--button-effect-shadow-hover);
  transform: translateY(-1px);
}

.cookie-status {
  min-height: 1.2em;
  margin-top: 10px;
  color: var(--color-brand);
  font-size: 0.84rem;
  font-weight: var(--weight-bold);
}

@media (max-width: 520px) {
  .cookie-side-button {
    right: 14px;
    bottom: 68px;
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .cookie-panel {
    right: 14px;
    bottom: 144px;
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 166px);
  }

  .cookie-panel__actions {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  color: rgb(255, 255, 255);
  background: rgb(23, 88, 127);
}

.site-footer p {
  color: rgb(255, 255, 255);
}

.footer-grid > div:first-child p {
  max-width: 370px;
}

.footer-grid {
  display: grid;
  gap: 28px clamp(18px, 2vw, 28px);
  justify-content: stretch;
  padding: 48px 0;
}

.footer-grid > div:first-child {
  margin-left: 0;
  justify-self: start;
  text-align: left;
}

.footer-grid > div:not(:first-child) {
  justify-self: start;
}

.footer-quick-links {
  min-width: 150px;
}

.footer-logo {
  width: min(260px, 76vw);
  height: auto;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--weight-semibold);
}

.footer-grid > div:nth-child(4) h2 {
  text-align: center;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 0 0 9px;
  color: rgb(255, 255, 255);
  font-weight: var(--weight-semibold);
}

.site-footer .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.42;
}

.site-footer .footer-contact-link span {
  min-width: 0;
}

.site-footer .footer-contact-link--address {
  min-width: 0;
  white-space: normal;
}

.site-footer .footer-contact-link--address span {
  white-space: nowrap;
}

.footer-contact-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-brand {
  display: block;
  width: fit-content;
  margin: 0 0 16px;
  cursor: pointer;
}

.site-footer .footer-brand .footer-logo {
  margin-bottom: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
  transform: translateX(2px);
}

.site-footer .footer-brand:hover,
.site-footer .footer-brand:focus-visible {
  transform: translateY(-1px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-social {
  width: min(100%, 280px);
  min-width: 0;
  justify-self: center;
  text-align: center;
}

.footer-social h2 {
  text-align: center;
}

.footer-social .social-links {
  display: grid;
  width: fit-content;
  margin-inline: auto;
  grid-template-columns: repeat(3, 40px);
  justify-content: center;
  gap: 8px;
}

.footer-map {
  width: min(280px, 100%);
  margin-top: 14px;
  margin-inline: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(5, 7, 10, 0.18);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
}

.site-footer .social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 18px rgba(5, 7, 10, 0.16);
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link svg {
  display: block;
  width: 21px;
  height: 21px;
}

.social-link:not(.social-link--instagram) svg {
  fill: currentColor;
}

.social-link--instagram {
  background: radial-gradient(circle at 30% 110%, #ffdc80 0 19%, #fcaf45 20% 34%, #f77737 35% 47%, #f56040 48% 59%, #c13584 60% 76%, #833ab4 77% 100%);
}

.social-link--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-link--instagram svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-link--tiktok {
  background: linear-gradient(135deg, #25f4ee 0 18%, #05070a 18% 82%, #fe2c55 82% 100%);
}

.social-link--linkedin {
  background: #0a66c2;
}

.social-link--facebook {
  background: #1877f2;
}

.social-link--telegram {
  background: #229ed9;
}

.social-link--whatsapp {
  background: #25d366;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 20px;
  padding: 18px 28px;
  font-size: 0.82rem;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
}

.site-footer .footer-legal a {
  display: inline;
  width: auto;
  margin: 0;
  color: rgb(255, 255, 255);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 599px) {
  .orienter-card {
    grid-template-columns: 1fr;
  }

  .orienter-card::before {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .page-hero {
    padding: calc(var(--header-height) + 36px) 0 42px;
  }

  .page-hero--faq {
    min-height: 520px;
    padding-bottom: 18px;
  }

  .page-hero--faq .page-hero__inner {
    min-height: calc(520px - var(--header-height) - 54px);
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
  }

  .page-hero--faq .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 0;
    align-self: end;
  }

  .page-hero--faq .hero-actions .btn {
    min-height: 46px;
    padding: 10px 8px;
    font-size: 0.82rem;
    line-height: 1.12;
  }

  .contact-hero h1 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .contact-location .section-heading h2 {
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .contact-location__heading,
  .events-gallery-board__heading {
    margin-inline: auto;
    justify-items: center;
  }

  .contact-location__heading h2,
  .events-gallery-board__heading h2 {
    text-align: center;
  }

  .directions-card h3,
  .directions-card p:not(.eyebrow),
  .directions-card__link {
    max-width: 100%;
  }

  .directions-card h3,
  .directions-card p:not(.eyebrow) {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .orientation-partner-section {
    padding: 36px 0 20px;
  }

  .orientation-partner-section + .faq-section {
    padding-top: 28px;
  }

  .orientation-partner-content {
    gap: 14px;
  }

  .orientation-partner-content h2 {
    font-size: 2rem;
  }

  .orientation-partner-content p {
    font-size: 0.94rem;
  }

  .orientation-partner-logos {
    gap: 12px 10px;
    width: 100%;
  }

  .orientation-partner-logos img {
    height: 30px;
    max-width: 27vw;
  }

  .orientation-partner-logos img:nth-child(2) {
    height: 40px;
    max-width: 34vw;
  }

  .about-reviews .section-heading .eyebrow,
  .role-copy > .eyebrow {
    justify-self: center;
  }

  .faq-section__social > .section-heading {
    justify-items: center;
    max-width: 340px;
    margin-inline: auto;
    text-align: center;
  }

  .faq-section__social .section-heading h2,
  .faq-section__social .section-heading p:not(.eyebrow) {
    max-width: 100%;
  }

  .faq-section__social .section-heading h2 {
    text-wrap: balance;
  }

  .page-hero--campus {
    padding-bottom: 112px;
  }

  .page-hero--campus::before {
    background-position: 68% center;
    filter: saturate(1.12) contrast(1.08);
  }

  .page-hero--campus::after {
    background:
      linear-gradient(180deg, rgba(244, 248, 252, 0.72) 0%, rgba(244, 248, 252, 0.56) 52%, rgba(244, 248, 252, 0.2) 100%),
      linear-gradient(90deg, rgba(244, 248, 252, 0.58) 0%, rgba(244, 248, 252, 0.18) 58%, rgba(244, 248, 252, 0) 100%);
  }

  .page-hero--campus .catalog-stats div {
    background: rgba(255, 255, 255, 0.9);
  }

  .course-detail-hero {
    padding-bottom: 34px;
  }

  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
  }

  .course-detail-hero .page-hero__inner {
    gap: 14px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .course-detail-hero p:not(.eyebrow),
  .detail-panel p,
  .detail-list {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .detail-layout {
    gap: 18px;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .detail-facts div,
  .source-box,
  .detail-panel,
  .related-card {
    padding: 14px;
  }

  .detail-facts dt {
    font-size: 0.7rem;
  }

  .detail-facts dd {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .detail-panel h2 {
    font-size: 1.24rem;
  }

  .table-scroll table {
    min-width: 520px;
  }

  .table-scroll th,
  .table-scroll td {
    padding: 9px 10px;
  }

  .table-scroll th {
    font-size: 0.76rem;
  }

  .table-scroll td {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .social-channel-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "label"
      "title"
      "copy";
    justify-items: center;
    min-height: 0;
    text-align: center;
  }

  .social-channel-card a.social-channel-card__icon {
    justify-self: center;
  }

  .footer-grid {
    justify-content: stretch;
    justify-items: center;
    gap: 26px;
    padding: 40px 0;
    text-align: center;
  }

  .footer-grid > div {
    width: min(100%, 290px);
    justify-self: center;
  }

  .footer-grid > div:first-child {
    width: min(100%, 330px);
    max-width: 100%;
    margin-left: 0;
    justify-self: center;
  }

  .footer-grid > div:first-child p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer .footer-brand {
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-social {
    justify-self: center;
    text-align: center;
  }

  .footer-social h2 {
    text-align: center;
  }

  .footer-social .social-links {
    justify-content: center;
  }

  .footer-map {
    width: min(290px, 100%);
    margin-inline: auto;
  }

  .footer-logo {
    width: min(170px, 72vw);
  }

  .site-footer a {
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(4, auto);
    grid-auto-flow: column;
    column-gap: 28px;
    row-gap: 10px;
    width: min(100%, 330px);
  }

  .footer-quick-links h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .footer-quick-links a {
    justify-self: center;
    margin: 0;
    text-align: center;
  }

  .site-footer .footer-contact-link {
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .site-footer .footer-contact-link--address {
    min-width: 0;
    white-space: normal;
  }

  .site-footer .footer-contact-link--address span {
    white-space: normal;
  }

}

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

  .legal-panel__header {
    align-items: end;
  }

  .legal-panel__logo {
    width: clamp(98px, 30vw, 118px);
    transform: translateX(0) translateY(2px);
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-bottom .container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes review-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.36), 0 16px 38px rgba(37, 211, 102, 0.34);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 16px 38px rgba(37, 211, 102, 0.34);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 16px 38px rgba(37, 211, 102, 0.34);
  }
}

@keyframes logo-color-glow {
  0% {
    background-position: 0% 0%, 100% 100%, -70% 2%, 170% 100%;
    opacity: 0.72;
  }

  50% {
    background-position: 95% 0%, 4% 100%, 125% 2%, -45% 100%;
    opacity: 1;
  }

  100% {
    background-position: 0% 0%, 100% 100%, -70% 2%, 170% 100%;
    opacity: 0.72;
  }
}

@keyframes social-card-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes social-accent-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

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

@media (min-width: 600px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .hero__claim {
    font-size: 1.28rem;
  }

  .hero__stats dt {
    font-size: 1.24rem;
  }

  .hero__stats dd {
    font-size: 0.88rem;
  }

  .hero__actions {
    grid-template-columns: repeat(2, max-content);
  }

  .hero__stats {
    max-width: 520px;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .catalog-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .field-grid,
  .catalog-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form__header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .lead-form--crm label,
  .lead-form--crm .consent-box span,
  .lead-dialog p {
    font-size: 0.75rem;
  }

  .lead-form-modal .lead-form--crm,
  .modal .lead-form--crm,
  [role="dialog"] .lead-form--crm {
    padding: 0.5rem;
  }

  .catalog-filters button {
    align-self: end;
  }

  .course-grid__items,
  .orienter-grid,
  .process-grid,
  .related-grid,
  .social-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }

  .reel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: initial;
    margin-inline: 0;
    overflow: visible;
    padding: 22px 0 38px;
    scroll-snap-type: none;
  }

  .reel-card {
    flex: initial;
    min-width: 170px;
  }

  .linkedin-feed__shell {
    width: min(100%, 326px);
    padding: 10px;
    border-radius: 30px;
    transform: none;
  }

  .linkedin-feed__viewport {
    padding: 8px;
    border-radius: 24px;
  }

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

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

@media (min-width: 920px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(100% - 48px, var(--container));
  }

  .navbar.container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-left: 6px;
    padding-right: 18px;
  }

  body.nav-open {
    overflow: auto;
  }

  .brand {
    margin-left: 18px;
  }

  .brand-cluster {
    margin-left: 18px;
    gap: 16px;
  }

  .brand-cluster .brand {
    margin-left: 0;
  }

  .brand img {
    width: 250px;
  }

  .brand-cluster .brand img {
    width: clamp(156px, 14vw, 210px);
  }

  .partner-logos img {
    height: clamp(26px, 2.2vw, 32px);
    max-width: 104px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    display: flex;
    flex: 1;
    width: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    margin-left: auto;
    margin-right: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .nav-link,
  .dropdown-toggle {
    width: auto;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.94rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .dropdown-toggle:hover,
  .dropdown-toggle:focus-visible {
    background: rgba(3, 31, 68, 0.08);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 340px;
    display: grid;
    grid-template-rows: 1fr;
    margin-top: 0;
    padding: 8px;
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 228, 236, 0.95);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    transform: translateY(8px);
    transition: var(--transition);
  }

  .nav-item--dropdown:hover .dropdown-menu,
  .nav-item--dropdown:focus-within .dropdown-menu,
  .nav-item--dropdown.is-open .dropdown-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-menu a {
    border-left: 0;
    border-radius: var(--radius-sm);
  }

  .dropdown-menu a + a {
    border-top: 0;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    border-left-color: transparent;
    transform: translateX(3px);
  }

  .nav-cta {
    min-height: 44px;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .hero {
    min-height: 88svh;
    padding: calc(var(--header-height) + 64px) 0 58px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 56px;
  }

  .hero h1 {
    font-size: 6.25rem;
  }

  .hero__media {
    justify-self: end;
  }

  .media-shell {
    padding: 12px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .cta-band h2,
  .form-aside h2 {
    font-size: 2.8rem;
  }

  .split-section,
  .faq-layout,
  .info-grid,
  .form-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 660px) minmax(280px, 360px);
    align-items: start;
    justify-content: end;
    gap: 48px;
    padding-left: clamp(12px, 3vw, 42px);
  }

  .faq-layout .section-heading {
    order: 2;
    max-width: 360px;
    justify-self: end;
    margin-top: 76px;
    transform: translateX(34px);
    text-align: left;
  }

  .faq-layout .section-heading h2 {
    max-width: 340px;
    text-wrap: balance;
  }

  .faq-layout .section-heading .eyebrow {
    margin-left: 0;
  }

  .faq-layout .accordion {
    order: 1;
    width: 100%;
    max-width: 660px;
  }

  .linkedin-feed {
    grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.78fr);
    align-items: center;
    gap: 58px;
  }

  .linkedin-feed__shell {
    justify-self: end;
    margin-right: clamp(92px, 10vw, 145px);
    transform: none;
  }

  .reel-grid {
    overflow: visible;
  }

  .catalog-filters {
    grid-template-columns: 1.4fr repeat(3, 1fr) auto;
    align-items: end;
  }

  .course-grid__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .course-card {
    align-content: space-between;
  }

  .page-hero {
    padding: calc(var(--header-height) + 70px) 0 70px;
  }

  .page-hero h1 {
    font-size: 5rem;
  }

  .process-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
    gap: 34px;
  }

  .detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns:
      minmax(140px, 190px)
      minmax(120px, 140px)
      minmax(132px, 154px)
      minmax(320px, 344px)
      minmax(220px, 248px);
    justify-content: space-between;
    align-items: start;
  }

  .site-footer .footer-contact-link--address {
    gap: 6px;
    max-width: none;
    font-size: 0.94rem;
  }

  .footer-grid > div:nth-child(4) h2 {
    padding-left: 25px;
    width: 100%;
  }

  .footer-grid > div:nth-child(2),
  .footer-quick-links,
  .footer-grid > div:nth-child(4) {
    transform: translateX(-24px);
  }
}

@media (min-width: 1160px) {
  .footer-grid {
    grid-template-columns:
      minmax(170px, 220px)
      minmax(126px, 146px)
      minmax(140px, 164px)
      minmax(330px, 360px)
      minmax(230px, 252px);
    justify-content: space-between;
  }

  .footer-grid > div:nth-child(2),
  .footer-quick-links,
  .footer-grid > div:nth-child(4) {
    transform: translateX(-32px);
  }

  .hero h1 {
    font-size: 7.1rem;
  }

  .hero__claim {
    font-size: 1.62rem;
  }
}

@media (min-width: 1192px) {
  .footer-grid > div:first-child {
    transform: translateX(calc(((100vw - var(--container)) / -2) + 48px));
  }
}

@media (min-width: 700px) {
  .info-grid--cards-under .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hours-panel {
    grid-template-columns: 1fr;
  }

  .events-overview__grid,
  .events-calendar__layout,
  .events-gallery-board {
    grid-template-columns: 1fr;
  }

  .events-calendar__intro {
    position: static;
  }

  .events-calendar__intro .section-heading h2 {
    font-size: 2.75rem;
  }

  .event-agenda {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 919px) {
  .event-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-format-card,
  .event-format-card--wide,
  .event-format-card:nth-child(2),
  .event-format-card:nth-child(3) {
    grid-column: span 1;
  }

  .event-agenda::before {
    display: none;
  }

  .event-agenda-card {
    gap: 14px;
    min-height: 118px;
    width: 100%;
    justify-self: stretch;
  }

  .event-agenda-card--event {
    min-height: 268px;
  }

  .event-agenda-card__date {
    width: auto;
    height: auto;
  }

  .event-agenda-card__body {
    padding-right: 0;
  }

  .events-mosaic {
    grid-auto-rows: minmax(180px, 28vw);
  }
}

@media (max-width: 720px) {
  .hours-panel {
    padding: 24px;
  }

  .hours-panel__intro h2 {
    font-size: 2.15rem;
  }

  .hours-panel__actions .btn,
  .hours-panel__link {
    height: 68px;
    width: calc((100% - 12px) / 2);
    min-height: 0;
    padding-inline: 10px;
    text-align: center;
    white-space: normal;
  }

  .hours-panel__actions .btn,
  .hours-panel__link {
    align-items: center;
    justify-content: center;
  }

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

  .hours-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hours-card--closed {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .hours-card__icon {
    width: 44px;
    height: 44px;
  }

  .events-hero {
    min-height: 520px;
    align-items: stretch;
    padding: calc(var(--header-height) + 34px) 0 18px;
    background:
      linear-gradient(90deg, rgba(244, 248, 252, 0.92) 0%, rgba(244, 248, 252, 0.82) 100%),
      url("../img/events-orientation-hero.jpg?v=events-orientation-1") center / cover no-repeat;
  }

  .events-hero__inner {
    min-height: calc(520px - var(--header-height) - 52px);
    grid-template-rows: auto auto 1fr;
    align-content: stretch;
  }

  .events-hero .hero-actions {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    align-self: end;
    justify-self: center;
  }

  .event-format-grid,
  .event-agenda-card dl,
  .events-mosaic {
    grid-template-columns: 1fr;
  }

  .event-agenda-scroll {
    overflow: visible;
    padding-inline: 0;
  }

  .event-agenda {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
  }

  .event-agenda-weekday {
    min-height: 30px;
    border-radius: 6px;
    font-size: 0.56rem;
  }

  .events-calendar__intro .section-heading h2 {
    font-size: 2.25rem;
  }

  .event-format-card {
    min-height: 146px;
  }

  .event-agenda-card {
    gap: 3px;
    min-height: 74px;
    padding: 5px;
    border-radius: 6px;
  }

  .event-agenda-card--event {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "date"
      "type"
      "summary"
      "body";
    min-height: 86px;
    overflow: hidden;
  }

  .event-agenda-card__media {
    display: none;
  }

  .event-agenda-card__date {
    position: static;
    background: transparent;
    backdrop-filter: none;
  }

  .event-agenda-card__date span {
    font-size: 1.08rem;
  }

  .event-agenda-card__date small {
    font-size: 0.48rem;
  }

  .event-agenda-card__type {
    max-width: 100%;
    margin-left: 0;
    padding: 2px 3px;
    overflow: hidden;
    font-size: 0.42rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .event-agenda-card h3 {
    padding-left: 0;
    font-size: 0.52rem;
    line-height: 1.05;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .event-agenda-card__body {
    padding: 0;
  }

  .event-agenda-card .btn {
    position: absolute;
    inset: 0;
    z-index: 2;
    height: 100%;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    justify-content: center;
  }

  .event-detail-modal__dialog {
    grid-template-columns: 1fr;
    max-height: min(88dvh, 760px);
  }

  .event-detail-modal__media img {
    min-height: 180px;
    max-height: 240px;
  }

  .event-detail-modal__content {
    padding: 20px;
  }

  .event-detail-modal h3 {
    font-size: 1.42rem;
  }

  .event-detail-modal__facts {
    grid-template-columns: 1fr;
  }

  .events-mosaic {
    grid-auto-rows: 260px;
  }

  .events-mosaic__item,
  .events-mosaic__item--large,
  .events-mosaic__item--wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .event-calendar-controls {
    gap: 8px;
  }

  .event-calendar-control {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .event-calendar-arrow {
    width: 20px;
  }

  .events-calendar__intro .section-heading h2 {
    font-size: 1.85rem;
  }

  .event-agenda {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-agenda.is-page-turn-out-next,
  .event-agenda.is-page-turn-in-next,
  .event-agenda.is-page-turn-out-prev,
  .event-agenda.is-page-turn-in-prev,
  .event-agenda.is-page-turn-out-next::after,
  .event-agenda.is-page-turn-in-next::after,
  .event-agenda.is-page-turn-out-prev::after,
  .event-agenda.is-page-turn-in-prev::after {
    animation: none;
  }
}

@media (min-width: 920px) {
  .info-grid--cards-under {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-grid--cards-under .info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 920px) and (max-width: 1120px) {
  .brand-cluster {
    gap: 7px;
    margin-left: 8px;
  }

  .brand-cluster .brand img {
    width: clamp(112px, 10.5vw, 126px);
  }

  .partner-logos {
    gap: 4px;
  }

  .partner-logos img {
    height: clamp(18px, 2vw, 22px);
    max-width: 70px;
  }

  .nav-panel {
    gap: 8px;
  }

  .nav-link,
  .dropdown-toggle {
    min-height: 38px;
    padding: 8px 5px;
    font-size: 0.78rem;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (min-width: 1121px) and (max-width: 1440px) {
  .brand-cluster {
    gap: 10px;
  }

  .brand-cluster .brand img {
    width: clamp(150px, 13vw, 190px);
  }

  .partner-logos {
    gap: 6px;
  }

  .partner-logos img {
    height: clamp(26px, 2.2vw, 31px);
    max-width: 102px;
  }

  .nav-panel {
    gap: 12px;
  }

  .nav-list {
    gap: 0;
  }

  .nav-link,
  .dropdown-toggle {
    padding-inline: 8px;
    font-size: 0.88rem;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .nav-cta {
    padding-inline: 14px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

@media (max-width: 919px) {
  .role-layout {
    grid-template-columns: 1fr;
  }

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

  .role-proof-grid {
    grid-template-columns: 1fr;
  }
}

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

  .gallery-showcase .section-heading {
    max-width: 720px;
  }

  .gallery-parallax {
    --gallery-parallax-height: 520px;
  }

  .gallery-parallax__scroll {
    height: 100%;
  }

  .gallery-depth {
    height: 340px;
  }
}

@media (max-width: 599px) {
  .gallery-showcase {
    --gallery-showcase-width: calc(100vw - 24px);
    gap: 28px;
    width: var(--gallery-showcase-width);
  }

  .gallery-parallax {
    height: 320px;
    overflow: hidden;
  }

  .gallery-parallax__scroll {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100% - 26px);
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    perspective: none;
    scroll-snap-type: none;
    transform: none;
  }

  .gallery-parallax__dots {
    gap: 8px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox__dialog {
    height: min(82vh, 620px);
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .gallery-lightbox__image {
    max-height: calc(82vh - 64px);
    border-width: 6px;
  }

  .gallery-lightbox__close,
  .gallery-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox__close svg,
  .gallery-lightbox__nav svg {
    width: 20px;
    height: 20px;
  }

  .gallery-parallax__item,
  .gallery-parallax__item--slower,
  .gallery-parallax__item--faster,
  .gallery-parallax__item--vertical,
  .gallery-parallax__item--slower-down,
  .gallery-parallax__item--faster-soft,
  .gallery-parallax__item--slower-deep,
  .gallery-parallax__item--last {
    flex: 0 0 220px;
    height: 100%;
    min-height: 100%;
    scroll-snap-align: center;
    transform: none;
  }

  .gallery-parallax__item:hover,
  .gallery-parallax__item:focus-within {
    min-height: 100%;
    transform: translateY(-4px);
  }

  .gallery-parallax__item a,
  .gallery-parallax__item img {
    width: 100%;
    height: 100%;
  }

  .gallery-parallax__item img {
    max-width: none;
    max-height: none;
    object-fit: cover;
  }

  .gallery-depth {
    height: 270px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-depth__item {
    flex: 0 0 122px;
    scroll-snap-align: center;
    transform: none;
  }

  .gallery-depth__item:is(:hover, :focus-visible) {
    flex-basis: 216px;
    transform: translateY(-4px);
  }

  .gallery-depth:has(.gallery-depth__item:is(:hover, :focus-visible)) .gallery-depth__item:not(:hover):not(:focus-visible) {
    transform: none;
  }
}

@media (min-width: 920px) {
  .about-hero h1.about-hero__logo-title {
    font-size: 4.45rem;
  }
}

@media (max-width: 919px) {
  .about-hero h1.about-hero__logo-title {
    font-size: 3.35rem;
  }
}

@media (max-width: 599px) {
  .about-hero h1.about-hero__logo-title {
    font-size: 2.55rem;
  }
}

.cert-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 62px) 0 74px;
  color: var(--color-white);
  background:
    linear-gradient(118deg, rgba(var(--color-logo-red-rgb), 0.24), rgba(var(--color-logo-red-rgb), 0) 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, rgb(7, 32, 48) 0%, var(--color-logo-blue) 56%, rgb(13, 48, 72) 100%);
}

.cert-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-logo-red));
}

.cert-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 58%;
  height: 72%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0));
  transform: rotate(-12deg);
  pointer-events: none;
}

.cert-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

.cert-hero__content {
  max-width: 760px;
}

.cert-hero h1,
.cert-hero h2 {
  max-width: 900px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  font-weight: var(--weight-heavy);
  line-height: 0.94;
  letter-spacing: 0;
}

.cert-hero__content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  line-height: 1.45;
}

.cert-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cert-hero__panel {
  display: grid;
  gap: 14px;
}

.cert-hero__panel article {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(5, 7, 10, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cert-hero__panel article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-logo-red));
}

.cert-hero__panel article:hover,
.cert-hero__panel article:focus-within {
  transform: scale(1.018);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 68px rgba(5, 7, 10, 0.24);
}

.cert-hero__panel article:first-child {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(118deg, rgba(var(--color-logo-red-rgb), 0.24), rgba(var(--color-logo-red-rgb), 0) 42%),
    linear-gradient(135deg, rgb(7, 32, 48), rgb(23, 88, 127));
}

.cert-hero__panel img {
  justify-self: center;
  width: auto;
  max-width: min(72vw, 220px);
  max-height: 70px;
  object-fit: contain;
}

.cert-hero__panel span {
  color: var(--color-ink);
  font-weight: var(--weight-semibold);
}

.cert-hero__panel article:first-child span {
  color: var(--color-white);
}

.cert-provider__grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.cert-provider--aulab {
  background:
    linear-gradient(180deg, var(--color-white) 0%, rgba(var(--color-logo-blue-rgb), 0.035) 100%);
}

.cert-provider--eipass {
  background:
    linear-gradient(180deg, rgba(var(--color-logo-blue-rgb), 0.055) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.cert-provider__intro {
  display: grid;
  align-content: start;
  gap: 16px;
}

.cert-provider__intro h2,
.cert-cta h2 {
  margin: 0;
  color: var(--color-black);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: var(--weight-heavy);
  line-height: 0.98;
  letter-spacing: 0;
}

.cert-provider__intro p:not(.eyebrow),
.cert-cta p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.cert-provider__logo {
  justify-self: center;
  width: auto;
  height: auto;
  max-width: min(76vw, 260px);
  max-height: 82px;
  object-fit: contain;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.cert-provider__intro:hover .cert-provider__logo,
.cert-provider__intro:focus-within .cert-provider__logo {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.cert-provider__logo--eipass {
  max-width: 148px;
}

.cert-provider__logo--aulab {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 72, 80, 0.22), rgba(200, 72, 80, 0) 38%),
    linear-gradient(135deg, rgb(7, 32, 48), rgb(23, 88, 127));
  box-shadow: 0 14px 32px rgba(14, 37, 58, 0.14);
}

.cert-provider__intro > .eyebrow {
  justify-self: center;
}

@media (min-width: 1100px) {
  .cert-provider--aulab .cert-provider__intro {
    transform: translateX(-18px);
  }

  .cert-provider--aulab .cert-feature-grid {
    transform: translateX(18px);
  }

  .cert-provider--eipass .cert-feature-grid {
    margin-top: 110px;
    transform: translateX(-18px);
  }

  .cert-provider--eipass .cert-provider__intro {
    transform: translateX(18px);
  }
}

.cert-feature-grid {
  display: grid;
  gap: 12px;
}

.cert-feature-grid article,
.cert-compare__grid article {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(220, 228, 236, 0.9);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 16px 34px rgba(14, 37, 58, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.cert-feature-grid article {
  --cert-feature-accent: var(--color-logo-blue);
  --cert-feature-accent-rgb: var(--color-logo-blue-rgb);
}

.cert-provider--eipass .cert-feature-grid article {
  --cert-feature-accent: var(--color-logo-blue);
  --cert-feature-accent-rgb: var(--color-logo-blue-rgb);
}

.cert-feature-grid article:nth-child(even) {
  --cert-feature-accent: var(--color-logo-red);
  --cert-feature-accent-rgb: var(--color-logo-red-rgb);
}

.cert-feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cert-feature-accent), var(--color-logo-red));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cert-feature-grid article:hover,
.cert-feature-grid article:focus-within {
  transform: scale(1.018);
  border-color: rgba(var(--cert-feature-accent-rgb), 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(var(--cert-feature-accent-rgb), 0.06)),
    var(--color-white);
  box-shadow: 0 22px 48px rgba(var(--cert-feature-accent-rgb), 0.16);
}

.cert-feature-grid article:hover::before,
.cert-feature-grid article:focus-within::before {
  opacity: 1;
}

.cert-feature-grid article span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--button-effect-background);
  font-size: 0.76rem;
  font-weight: var(--weight-heavy);
}

.cert-feature-grid h3,
.cert-compare__grid h3 {
  margin: 0;
  color: var(--color-logo-blue);
  font-size: 1.05rem;
  line-height: 1.18;
}

.cert-feature-grid p,
.cert-compare__grid p,
.cert-compare__grid li {
  margin: 0;
  color: #4f5f70;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cert-compare__grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.cert-compare__grid article {
  --cert-compare-accent: var(--color-logo-blue);
  --cert-compare-accent-rgb: var(--color-logo-blue-rgb);
  min-height: 236px;
  padding-bottom: 70px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(var(--cert-compare-accent-rgb), 0.05)),
    var(--color-white);
  border-color: rgba(var(--cert-compare-accent-rgb), 0.18);
}

.cert-compare__grid article:nth-child(2) {
  --cert-compare-accent: var(--color-logo-red);
  --cert-compare-accent-rgb: var(--color-logo-red-rgb);
}

.cert-compare__grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cert-compare-accent), rgba(var(--cert-compare-accent-rgb), 0.42));
}

.cert-compare__grid article:hover,
.cert-compare__grid article:focus-within {
  transform: scale(1.012);
  border-color: rgba(var(--cert-compare-accent-rgb), 0.32);
  box-shadow: 0 22px 48px rgba(var(--cert-compare-accent-rgb), 0.14);
}

.cert-compare__grid ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding-left: 18px;
}

.cert-compare__grid li::marker {
  color: var(--cert-compare-accent);
}

.cert-compare__logo {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  width: auto;
  max-width: 128px;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.92;
  pointer-events: none;
}

.cert-compare__logo--aulab {
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgb(7, 32, 48), rgb(23, 88, 127));
  box-shadow: 0 10px 22px rgba(var(--color-logo-blue-rgb), 0.13);
}

.cert-compare__logo--eipass {
  max-width: 96px;
  max-height: 54px;
}

.cert-cta {
  color: var(--color-white);
  background:
    radial-gradient(circle at 18% 28%, rgba(200, 72, 80, 0.36), rgba(200, 72, 80, 0) 34%),
    linear-gradient(135deg, rgb(23, 88, 127), rgb(7, 32, 48));
}

.cert-cta__inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

.cert-cta h2,
.cert-cta p,
.cert-cta .eyebrow {
  color: var(--color-white);
}

@media (min-width: 760px) {
  .cert-hero__inner,
  .cert-provider__grid,
  .cert-provider__grid--reverse,
  .cert-cta__inner {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  }

  .cert-provider__grid--reverse .cert-provider__intro {
    order: 2;
  }

  .cert-provider__grid--reverse .cert-feature-grid {
    order: 1;
  }

  .cert-feature-grid,
  .cert-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1280px) {
  .cert-hero__content {
    transform: translateX(calc(-1 * min(160px, max(0px, (100vw - 1280px) * 0.35))));
  }
}

@media (min-width: 920px) {
  .cert-hero__panel {
    transform: translateX(min(120px, max(24px, (100vw - 920px) * 0.16)));
  }
}

@media (max-width: 599px) {
  .cert-hero {
    padding: calc(var(--header-height) + 34px) 0 48px;
  }

  .cert-provider--eipass .cert-provider__intro {
    justify-items: center;
    text-align: center;
  }

  .cert-hero__actions {
    display: grid;
  }

  .cert-hero__panel article,
  .cert-feature-grid article,
  .cert-compare__grid article {
    padding: 16px;
  }

  .cert-compare__grid article {
    min-height: 0;
    padding-bottom: 16px;
  }

  .cert-compare__logo {
    display: none;
  }
}

@media (max-width: 759px) {
  .cert-provider--aulab .cert-provider__intro,
  .events-gallery-board__heading,
  .contact-location__heading {
    margin-inline: auto;
    justify-items: center;
  }

  #aulab-title,
  #gallery-title,
  #events-gallery-title,
  #sede-title {
    width: 100%;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
  }
}

.brand-cluster--single {
  gap: 0;
}

.brand-cluster--single .brand--combined img {
  width: auto;
  height: clamp(48px, 6vw, 64px);
  max-width: min(58vw, 320px);
}

@media (max-width: 520px) {
  .brand-cluster--single .brand--combined img {
    height: clamp(40px, 11vw, 48px);
    max-width: calc(100vw - 112px);
  }
}

@media (min-width: 920px) {
  .brand-cluster--single .brand--combined img {
    height: clamp(58px, 5.6vw, 74px);
    max-width: 340px;
  }
}

@media (min-width: 920px) and (max-width: 1120px) {
  .brand-cluster--single .brand--combined img {
    height: clamp(44px, 4.8vw, 54px);
    max-width: 190px;
  }
}

@media (min-width: 1121px) and (max-width: 1440px) {
  .brand-cluster--single .brand--combined img {
    height: clamp(60px, 5vw, 76px);
    max-width: 320px;
  }
}

@media (max-width: 919px) {
  .site-footer .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .site-footer .footer-grid > div,
  .site-footer .footer-grid > div:first-child,
  .site-footer .footer-grid > div:not(:first-child) {
    justify-self: center;
    text-align: center;
  }

  .site-footer .footer-grid > div:first-child p {
    margin-inline: auto;
    text-align: center;
  }

  .site-footer .footer-brand,
  .site-footer .footer-logo,
  .site-footer a,
  .site-footer .footer-contact-link,
  .site-footer .footer-social,
  .site-footer .social-links,
  .site-footer .footer-map {
    margin-inline: auto;
  }

  .site-footer .footer-grid > div:not(.footer-social):not(.footer-quick-links) {
    display: grid;
    justify-items: center;
  }

  .site-footer .footer-contact-link {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-footer .footer-grid > div.footer-quick-links {
    display: none;
  }
}

:is(
  button:not([data-dialog-open]),
  .btn,
  .btn--whatsapp,
  .nav-cta,
  .nav-toggle,
  .category-pill,
  .course-pagination__button,
  .event-calendar-control,
  .accordion-trigger,
  .cookie-side-button,
  .cookie-panel__actions button,
  .whatsapp-float,
  .site-footer .social-link,
  .orienter-carousel__arrow,
  .orienter-carousel-card,
  .orienter-carousel__dot,
  .about-review-card__more,
  .lead-dialog header button
) {
  animation: none !important;
  background-size: auto !important;
  color: var(--color-white) !important;
  background: var(--color-logo-blue) !important;
  background-position: center !important;
  border-color: var(--color-logo-blue) !important;
}

:is(
  button:not([data-dialog-open]),
  .btn,
  .btn--primary,
  .btn--secondary,
  .btn--courses-glow,
  .btn--whatsapp,
  .nav-cta,
  .nav-toggle,
  .category-pill,
  .catalog-filters .btn[type="reset"],
  .course-card__actions .btn--primary,
  .course-pagination__button,
  .event-calendar-control,
  .accordion-trigger,
  .hours-panel__actions .btn--courses-glow,
  .lead-form--crm .btn--whatsapp,
  .cookie-side-button:not(.is-on-blue),
  .cookie-panel__actions button,
  .whatsapp-float,
  .site-footer .social-link,
  .orienter-carousel__arrow,
  .orienter-carousel-card,
  .orienter-carousel__dot,
  .about-review-card__more,
  .lead-dialog header button
) {
  background: var(--color-logo-blue) !important;
  background-position: center !important;
}

:is(
  button:not([data-dialog-open]),
  .btn,
  .btn--primary,
  .btn--secondary,
  .btn--courses-glow,
  .btn--whatsapp,
  .nav-cta,
  .nav-toggle,
  .category-pill,
  .catalog-filters .btn[type="reset"],
  .course-card__actions .btn--primary,
  .course-pagination__button,
  .event-calendar-control,
  .accordion-trigger,
  .hours-panel__actions .btn--courses-glow,
  .lead-form--crm .btn--whatsapp,
  .cookie-side-button:not(.is-on-blue),
  .cookie-panel__actions button,
  .whatsapp-float,
  .site-footer .social-link,
  .orienter-carousel__arrow,
  .orienter-carousel-card,
  .orienter-carousel__dot,
  .about-review-card__more,
  .lead-dialog header button
):hover,
:is(
  button:not([data-dialog-open]),
  .btn,
  .btn--primary,
  .btn--secondary,
  .btn--courses-glow,
  .btn--whatsapp,
  .nav-cta,
  .nav-toggle,
  .category-pill,
  .catalog-filters .btn[type="reset"],
  .course-card__actions .btn--primary,
  .course-pagination__button,
  .event-calendar-control,
  .accordion-trigger,
  .hours-panel__actions .btn--courses-glow,
  .lead-form--crm .btn--whatsapp,
  .cookie-side-button:not(.is-on-blue),
  .cookie-panel__actions button,
  .whatsapp-float,
  .site-footer .social-link,
  .orienter-carousel__arrow,
  .orienter-carousel-card,
  .orienter-carousel__dot,
  .about-review-card__more,
  .lead-dialog header button
):focus-visible {
  background: var(--color-logo-blue) !important;
  background-position: center !important;
}

.nav-toggle__line,
.faq-page-layout .accordion-trigger__icon::before,
.faq-page-layout .accordion-trigger__icon::after,
.accordion-trigger__icon::before,
.accordion-trigger__icon::after {
  background: var(--color-white) !important;
}

.event-calendar-arrow,
.event-calendar-arrow::before,
.event-calendar-arrow::after {
  border-color: var(--color-white) !important;
}

.course-pagination__button:disabled,
.event-calendar-control:disabled {
  color: rgba(255, 255, 255, 0.55) !important;
  background: rgba(var(--color-logo-blue-rgb), 0.62) !important;
  border-color: rgba(var(--color-logo-blue-rgb), 0.62) !important;
}

.faq-page-layout .accordion-trigger {
  color: var(--color-black) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.faq-page-layout .accordion-trigger:hover,
.faq-page-layout .accordion-trigger:focus-visible {
  color: var(--color-black) !important;
  background: rgba(var(--color-logo-blue-rgb), 0.06) !important;
}

.faq-page-layout .accordion-trigger[aria-expanded="true"] {
  color: var(--color-logo-blue) !important;
  background: linear-gradient(90deg, rgba(var(--color-logo-blue-rgb), 0.055), rgba(255, 255, 255, 0)) !important;
}

.faq-page-layout .accordion-trigger__icon {
  color: var(--color-logo-blue) !important;
  background: rgba(var(--color-logo-blue-rgb), 0.07) !important;
  border-color: rgba(var(--color-logo-blue-rgb), 0.18) !important;
}

.faq-page-layout .accordion-trigger__icon::before,
.faq-page-layout .accordion-trigger__icon::after {
  background: currentColor !important;
}

#faq .faq-page-layout .accordion-trigger {
  color: var(--color-black) !important;
  background: transparent !important;
  border-color: transparent !important;
}

#faq .faq-page-layout .accordion-trigger:hover,
#faq .faq-page-layout .accordion-trigger:focus-visible {
  color: var(--color-black) !important;
  background: rgba(var(--color-logo-blue-rgb), 0.06) !important;
}

#faq .faq-page-layout .accordion-trigger[aria-expanded="true"] {
  color: var(--color-logo-blue) !important;
  background: linear-gradient(90deg, rgba(var(--color-logo-blue-rgb), 0.055), rgba(255, 255, 255, 0)) !important;
}

#faq .faq-page-layout .accordion-trigger__icon {
  color: var(--color-logo-blue) !important;
  background: rgba(var(--color-logo-blue-rgb), 0.07) !important;
  border-color: rgba(var(--color-logo-blue-rgb), 0.18) !important;
}

#faq .faq-page-layout .accordion-trigger__icon::before,
#faq .faq-page-layout .accordion-trigger__icon::after {
  background: currentColor !important;
}

.site-footer .social-link {
  color: var(--color-white) !important;
  border-color: transparent !important;
}

.site-footer .social-link--instagram {
  background: radial-gradient(circle at 30% 110%, #ffdc80 0 19%, #fcaf45 20% 34%, #f77737 35% 47%, #f56040 48% 59%, #c13584 60% 76%, #833ab4 77% 100%) !important;
}

.site-footer .social-link--tiktok {
  background: linear-gradient(135deg, #25f4ee 0 18%, #05070a 18% 82%, #fe2c55 82% 100%) !important;
}

.site-footer .social-link--linkedin {
  background: #0a66c2 !important;
}

.site-footer .social-link--facebook {
  background: #1877f2 !important;
}

.site-footer .social-link--telegram {
  background: #229ed9 !important;
}

.site-footer .social-link--whatsapp {
  background: #25d366 !important;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  color: var(--color-white) !important;
}

html body .site-footer .social-links a.social-link.social-link--instagram {
  background: radial-gradient(circle at 30% 110%, #ffdc80 0 19%, #fcaf45 20% 34%, #f77737 35% 47%, #f56040 48% 59%, #c13584 60% 76%, #833ab4 77% 100%) !important;
}

html body .site-footer .social-links a.social-link.social-link--tiktok {
  background: linear-gradient(135deg, #25f4ee 0 18%, #05070a 18% 82%, #fe2c55 82% 100%) !important;
}

html body .site-footer .social-links a.social-link.social-link--linkedin {
  background: #0a66c2 !important;
}

html body .site-footer .social-links a.social-link.social-link--facebook {
  background: #1877f2 !important;
}

html body .site-footer .social-links a.social-link.social-link--telegram {
  background: #229ed9 !important;
}

html body .site-footer .social-links a.social-link.social-link--whatsapp {
  background: #25d366 !important;
}

html body button.cookie-side-button.cookie-side-button.cookie-side-button {
  color: var(--color-white) !important;
  background: var(--color-logo-blue) !important;
  background-image: none !important;
  border-color: var(--color-logo-blue) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

html body button.cookie-side-button.cookie-side-button.cookie-side-button:hover,
html body button.cookie-side-button.cookie-side-button.cookie-side-button:focus-visible {
  color: var(--color-white) !important;
  background: var(--color-logo-blue) !important;
  background-image: none !important;
  border-color: var(--color-logo-blue) !important;
}

html body button.cookie-side-button.cookie-side-button.cookie-side-button.is-on-blue {
  color: var(--color-logo-blue) !important;
  background: var(--color-white) !important;
  background-image: none !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
}

html body button.cookie-side-button.cookie-side-button.cookie-side-button.is-on-blue:hover,
html body button.cookie-side-button.cookie-side-button.cookie-side-button.is-on-blue:focus-visible {
  color: var(--color-logo-blue) !important;
  background: var(--color-white) !important;
  background-image: none !important;
  border-color: rgba(255, 255, 255, 0.82) !important;
}

html body .lead-form--crm .consent-box button,
html body .lead-form--crm .consent-box button:hover,
html body .lead-form--crm .consent-box button:focus-visible {
  all: unset !important;
  appearance: none !important;
  display: inline !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--color-logo-blue) !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: var(--weight-semibold) !important;
  line-height: inherit !important;
  text-decoration: underline !important;
  transform: none !important;
  vertical-align: baseline !important;
  cursor: pointer !important;
}
