:root {
  --background: rgba(255, 242, 245, 0.63);
  --header: #ffffff;
  --ink: #0d161b;
  --muted: rgba(13, 22, 27, 0.72);
  --line: rgba(0, 0, 0, 0.1);
  --pink: #ff4480;
  --pink-hover: #ff2b6f;
  --soft-pink: #ffe6ef;
  --page-pink-solid: #fff7f9;
  --shadow: 0 18px 50px rgba(13, 22, 27, 0.08);
  --shadow-md:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  --button-radius: 14px;
  --anchor-offset: 132px;
}

@font-face {
  font-family: "Michland Script";
  src: url("michland/Michland%20Script.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Marchila";
  src: url("Marchila.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calendas Plus";
  src: url("Calendas-Plus-Regular/Webfont/Calendas-Plus-Regular-Webfont/calendas_plus-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("recoleta-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

#videos,
#guides,
#formations {
  scroll-margin-top: var(--anchor-offset);
}

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  animation: pageIn 520ms ease forwards;
  user-select: none;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
}

input,
textarea {
  user-select: text;
  -webkit-user-select: text;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0px);
}

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

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

img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

a *,
button *,
[role="button"],
[role="button"] *,
summary,
summary *,
.logo,
.logo *,
.formation-tab,
.formation-tab *,
.guide-button,
.guide-button *,
.formation-button,
.formation-button *,
.teaser-control-button,
.teaser-control-button * {
  user-select: none;
  -webkit-user-select: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 24px;
  z-index: 900;
  display: grid;
  width: min(1056px, calc(100% - 40px));
  min-height: 76px;
  margin: 24px auto 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--header);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: headerIn 520ms ease 160ms forwards;
  transition:
    width 260ms ease,
    min-height 260ms ease,
    gap 260ms ease,
    border-radius 260ms ease,
    padding 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-compact {
  width: min(960px, calc(100% - 56px));
  min-height: 58px;
  gap: 18px;
  border-radius: 18px;
  padding: 8px 12px;
  box-shadow: var(--shadow-md);
}

.course-template .site-header {
  position: relative;
  top: auto;
}

.course-template .site-header.is-compact {
  width: min(1056px, calc(100% - 40px));
  min-height: 76px;
  gap: 26px;
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
}

.site-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  height: 27px;
  object-fit: contain;
  transition: height 260ms ease;
}

.site-header.is-compact .site-logo img {
  height: 22px;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: gap 260ms ease;
}

.mobile-menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--button-radius);
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms ease, transform 160ms ease;
}

.mobile-menu-toggle:hover {
  background: rgba(13, 22, 27, 0.1);
  transform: translateY(-1px);
}

.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 5px));
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 5px));
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translate(calc(-50% - 5px), -50%) rotate(90deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translate(calc(-50% + 5px), -50%) rotate(90deg);
}

.site-header.is-menu-open .mobile-menu-toggle {
  background: rgba(13, 22, 27, 0.1);
}

.site-header.is-compact .main-nav {
  gap: 16px;
}

.main-nav a,
.login-link {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease, font-size 260ms ease, padding 260ms ease;
}

.main-nav a {
  position: relative;
  border-radius: var(--button-radius);
  padding: 10px 16px;
}

.mobile-nav-only {
  display: none;
}

.site-header.is-compact .main-nav a {
  padding: 8px 12px;
  font-size: 14px;
}

.main-nav a:hover,
.login-link:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.main-nav a:not(.nav-formations-link):hover {
  background: rgba(13, 22, 27, 0.06);
}

.main-nav a.is-active:not(.nav-formations-link) {
  background: rgba(13, 22, 27, 0.06);
}

.main-nav .nav-formations-link {
  position: relative;
  border: 0;
  border-radius: var(--button-radius);
  background: rgba(255, 207, 64, 0.42);
  color: var(--ink);
}

.main-nav .nav-formations-link::after {
  content: "";
  position: absolute;
  top: -9px;
  right: 2px;
  width: 21px;
  height: 21px;
  background: #d6a400;
  mask: url("graduation-cap.svg") center / contain no-repeat;
  -webkit-mask: url("graduation-cap.svg") center / contain no-repeat;
  transition: width 260ms ease, height 260ms ease, top 260ms ease;
}

.site-header.is-compact .main-nav .nav-formations-link::after {
  top: -8px;
  width: 18px;
  height: 18px;
}

.main-nav .nav-formations-link:hover {
  color: var(--ink);
  background: rgba(255, 207, 64, 0.54);
}

.header-actions {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
  transition: gap 260ms ease;
}

.site-header.is-compact .header-actions {
  gap: 12px;
}

.join-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0 24px;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, min-height 260ms ease, padding 260ms ease, font-size 260ms ease;
}

.site-header.is-compact .login-link {
  font-size: 14px;
}

.site-header.is-compact .join-button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.join-button:hover {
  background: #1b252b;
  transform: translateY(-1px) scale(1.02);
}

.videos-page {
  min-height: calc(100vh - 100px);
  padding: 74px 0 96px;
}

.videos-hero {
  width: min(1056px, calc(100% - 40px));
  margin: 0 auto 42px;
  text-align: center;
}

.videos-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 4.35vw, 4.35rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.videos-hero p {
  width: min(620px, 100%);
  margin: 16px auto 0;
  color: rgba(13, 22, 27, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
}

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

.video-search {
  position: relative;
  display: block;
  width: min(560px, 100%);
  margin: 0 auto 34px;
}

.video-search input {
  display: block;
  width: 100%;
  border: 1px solid rgba(13, 22, 27, 0.08);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 16px 20px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.video-search input::placeholder {
  color: rgba(13, 22, 27, 0.46);
}

.video-search input:focus {
  border-color: rgba(13, 22, 27, 0.18);
  background: #ffffff;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.videos-status {
  border: 1px solid rgba(255, 68, 128, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 28px;
  text-align: center;
  color: rgba(13, 22, 27, 0.7);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(13, 22, 27, 0.05);
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 68, 128, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.18, 0.84, 0.28, 1),
    box-shadow 180ms ease;
  transition-delay: var(--video-delay, 0ms), var(--video-delay, 0ms), 0ms;
}

.video-card.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.video-card.is-loaded:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.video-card-link {
  display: grid;
  height: 100%;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

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

.video-card-content {
  padding: 18px;
}

.video-card-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.video-card-content p {
  margin: 10px 0 0;
  color: rgba(13, 22, 27, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.video-meta span:last-child {
  flex: 0 0 auto;
  text-align: right;
}

.videos-more {
  display: flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 42px auto 0;
  border: 1px solid rgba(13, 22, 27, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 24px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  cursor: pointer;
  transition: background-color 220ms ease, transform 180ms ease, box-shadow 220ms ease;
}

.videos-more:not([hidden]) {
  display: flex;
}

.videos-more[hidden] {
  display: none;
}

.videos-more:hover {
  background: rgba(13, 22, 27, 0.06);
  transform: translateY(-1px);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.videos-more span {
  font-size: 18px;
  line-height: 1;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 27, 0.72);
}

.video-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
}

.video-modal.is-open .video-modal-panel {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(13, 22, 27, 0.16);
  cursor: pointer;
}

.video-modal-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 80px;
}

.legal-hero {
  margin-bottom: 34px;
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 4.35vw, 4.35rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.legal-content {
  border-radius: 18px;
  background: #ffffff;
  padding: 44px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 44px rgba(13, 22, 27, 0.08);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 14px;
  color: rgba(13, 22, 27, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.legal-content a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(1056px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  gap: 16px 24px;
  color: rgba(13, 22, 27, 0.62);
  font-size: 13px;
  font-weight: 500;
}

.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-footer a:hover {
  color: var(--ink);
}

.course-page {
  width: 100%;
  padding: 36px 0 96px;
}

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

.course-hero {
  display: grid;
  justify-items: center;
  gap: 48px;
  padding: 22px 0 48px;
  text-align: center;
}

.course-hero-copy {
  display: grid;
  justify-items: center;
}

.course-hero h1,
.course-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.course-hero h1 {
  font-size: clamp(2.45rem, 4.35vw, 4.35rem);
}

.course-hero h1 em {
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
  color: var(--ink);
  font-style: normal;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.course-hero h1 em.formation-accent-first {
  margin-right: 0.08em;
  margin-left: 0;
}

.course-hero h1 em::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.course-inline-title {
  display: inline-block;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.course-inline-title em {
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
  color: var(--ink);
  font-style: normal;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.course-inline-title em.formation-accent-first {
  margin-right: 0.08em;
  margin-left: 0;
}

.course-inline-title em::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.course-subtitle {
  max-width: 640px;
  margin: 27px auto 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.16;
}

.course-students {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--ink);
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  font-weight: 700;
  line-height: 1;
}

.course-author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.12vw, 1.08rem);
  font-weight: 500;
  line-height: 1;
}

.course-author img {
  display: block;
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(13, 22, 27, 0.12);
}

.course-hero-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 30px;
}

.course-hero-cta {
  position: relative;
  grid-column: 2;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0 32px;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.course-hero-cta::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 44%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.34) 44%,
    rgba(219, 224, 230, 0.86) 50%,
    rgba(255, 255, 255, 0.36) 56%,
    rgba(255, 255, 255, 0) 80%,
    transparent 100%
  );
  transform: translateX(0) skewX(-18deg);
  animation: courseCtaShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.course-hero-cta:hover {
  background: #1b252b;
  transform: translateY(-1px) scale(1.02);
}

.course-hero-price {
  grid-column: 3;
  justify-self: start;
  color: #30132b;
  font-family: "Recoleta", Georgia, serif;
  font-size: 1.3em;
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.course-student-avatars {
  display: flex;
  align-items: center;
}

.course-student-avatars img {
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(13, 22, 27, 0.12);
}

.course-student-avatars img + img {
  margin-left: -12px;
}

.course-primary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0 24px;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.course-primary-button:hover {
  background: #1b252b;
  transform: translateY(-1px) scale(1.02);
}

.course-hero-media {
  position: relative;
  width: min(1120px, 100%);
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: var(--shadow-md);
}

.course-hero .teaser-wrap {
  margin-top: 0;
}

.course-mux-player {
  margin-top: 0;
}

.course-hero-media iframe,
.course-teaser-iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  cursor: auto;
}

.course-video-poster {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.course-video-level {
  position: absolute;
  right: 24px;
  top: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.course-level-stars {
  display: inline-flex;
  gap: 3px;
  color: rgba(13, 22, 27, 0.18);
  font-size: 1.08em;
  line-height: 1;
}

.course-level-stars .is-filled {
  color: var(--ink);
}

.course-section {
  padding: 74px 0;
}

.course-record-section {
  padding-top: 26px;
}

.course-testimonials {
  padding: 86px 0 23px;
}

.course-testimonials .testimonials-heading {
  margin-bottom: 46px;
}

.course-testimonials-proof {
  margin: 0 0 52px;
}

.course-techniques {
  padding-top: 0;
}

.course-section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.course-techniques .course-record-heading {
  margin-bottom: 46px;
}

.course-section h2 {
  font-size: clamp(2.2rem, 4.9vw, 4.35rem);
}

.course-section-heading h2 {
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.course-section-heading p,
.course-split-copy p,
.course-note span,
.course-certificate-copy p {
  color: rgba(13, 22, 27, 0.74);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.course-section-heading p {
  margin: 12px auto 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.course-record-heading .course-record-body,
.course-record-heading .course-record-copy {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.course-record-heading .course-record-body {
  display: inline-block;
  width: fit-content;
  max-width: 720px;
  margin-top: 30px;
  border-radius: var(--button-radius);
  background: rgba(13, 22, 27, 0.06);
  padding: 12px 16px;
}

.course-method-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  padding: 0;
  box-shadow: var(--shadow-md);
}

.course-method-media {
  min-height: 620px;
  background: #f8c0d4;
}

.course-method-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.course-method-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(36px, 5vw, 76px);
  text-align: center;
}

.course-method-copy h2 {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.36rem, 2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.course-method-copy .course-students {
  margin: 0 0 34px;
}

.course-method-copy h2 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--ink);
  font-style: normal;
  white-space: nowrap;
}

.course-method-copy h2 em::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.course-method-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.course-method-copy p + p {
  margin-top: 16px;
}

.course-method-copy .course-method-highlight {
  display: inline-block;
  width: fit-content;
  max-width: 720px;
  border-radius: var(--button-radius);
  background: rgba(13, 22, 27, 0.06);
  padding: 12px 16px;
}

.course-method-copy strong {
  font-weight: 700;
}

.course-method-copy hr {
  width: min(640px, 100%);
  height: 1px;
  margin: 38px 0 28px;
  border: 0;
  background: rgba(13, 22, 27, 0.22);
}

.course-method-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.course-method-copy li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.strategy-problem-card {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(
    to bottom,
    var(--page-pink-solid) 0,
    #ffffff clamp(70px, 8vw, 120px),
    #ffffff calc(100% - clamp(70px, 8vw, 120px)),
    var(--page-pink-solid) 100%
  );
  box-shadow: none;
  padding-right: clamp(18px, 3vw, 34px);
  padding-left: clamp(18px, 3vw, 34px);
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.strategy-problem-card .course-method-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: auto;
  background: transparent;
  padding: 0;
  text-align: center;
}

.strategy-problem-card .course-method-copy h2,
.strategy-problem-card .course-method-copy p {
  margin-right: auto;
  margin-left: auto;
}

.strategy-problem-card .strategy-section-title {
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.strategy-problem-card .strategy-section-title em {
  transform: rotate(-3deg);
}

.strategy-youtube-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
  margin-top: clamp(28px, 4vw, 46px);
  margin-bottom: 48px;
}

.strategy-youtube-views {
  width: 100%;
  margin: 0;
}

.strategy-youtube-views img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: none;
}

.strategy-youtube-views figcaption {
  margin-top: 14px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.strategy-youtube-copy {
  margin-top: 0;
  text-align: center;
}

.strategy-social-icon {
  display: block;
  width: clamp(34px, 3.2vw, 46px);
  height: clamp(34px, 3.2vw, 46px);
  margin: 0 auto 18px;
  object-fit: contain;
}

.strategy-youtube-copy h2 {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
}

.strategy-youtube-copy p {
  max-width: 440px;
  margin-right: auto;
  margin-left: auto;
}

.strategy-instagram-card {
  margin-top: 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0,
    #ffffff calc(100% - clamp(120px, 14vw, 220px)),
    var(--page-pink-solid) 100%
  );
  padding-top: 0;
}

.strategy-problem-card:not(.strategy-instagram-card) {
  background: linear-gradient(
    to bottom,
    var(--page-pink-solid) 0,
    #ffffff clamp(70px, 8vw, 120px),
    #ffffff 100%
  );
  padding-bottom: 0;
}

.strategy-instagram-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  margin-top: 0;
}

.strategy-instagram-copy h2 {
  max-width: 540px;
}

.strategy-instagram-copy p {
  max-width: 520px;
}

.strategy-inline-highlight {
  border-radius: 16px;
  background: rgba(13, 22, 27, 0.06);
  padding: 12px 18px;
}

.strategy-award-method-card .formation-students {
  margin: 0 0 34px;
}

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

.strategy-award-method-card .strategy-check-list {
  margin-top: 24px;
}

.strategy-award-method-card .strategy-check-list + p {
  margin-top: 24px;
}

.strategy-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.strategy-check-list img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.strategy-action-plan {
  width: 100%;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 48px);
  background: var(--page-pink-solid);
}

.strategy-action-plan-card {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.strategy-action-plan-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.strategy-action-plan-media img {
  width: 75%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.strategy-action-plan-copy {
  padding: clamp(36px, 5vw, 76px);
}

.strategy-action-plan-copy h2 {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.36rem, 2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.strategy-action-plan-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.strategy-action-plan-inner h2 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.strategy-action-subtitle,
.strategy-action-intro,
.strategy-action-outro {
  max-width: 720px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: var(--ink);
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.strategy-action-intro {
  border-radius: 16px;
  background: rgba(13, 22, 27, 0.06);
  padding: 12px 22px;
}

.strategy-action-list {
  width: min(620px, 100%);
  gap: 12px;
  margin-top: clamp(30px, 3.5vw, 42px);
  justify-items: center;
  text-align: center;
}

.strategy-action-list + .strategy-action-outro {
  margin-top: clamp(34px, 4vw, 48px);
}

.strategy-action-list li {
  justify-content: center;
  align-items: flex-start;
  font-weight: 500;
}

.strategy-action-list img {
  margin-top: 3px;
}

.strategy-milestone-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  padding: clamp(28px, 4.5vw, 62px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 44px rgba(13, 22, 27, 0.1);
}

.strategy-milestone-media {
  display: grid;
  justify-items: center;
}

.strategy-milestone-media img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(13, 22, 27, 0.14);
}

.strategy-milestone-copy {
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.strategy-milestone-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(1.9rem, 3.4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.strategy-milestone-copy p {
  margin: 0;
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  font-weight: 600;
  line-height: 1.5;
}

.strategy-milestone-copy p + p {
  margin-top: 14px;
}

.strategy-milestone-copy .strategy-milestone-highlight {
  display: inline-block;
  margin-top: 24px;
  border-radius: var(--button-radius);
  background: rgba(13, 22, 27, 0.06);
  padding: 12px 16px;
  font-weight: 700;
}

.strategy-award-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  padding: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 44px rgba(13, 22, 27, 0.1);
}

.strategy-award-media {
  min-height: 100%;
}

.strategy-award-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.strategy-award-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: clamp(34px, 5vw, 74px);
  text-align: center;
}

.strategy-award-copy .course-students {
  margin: 0 0 42px;
  font-size: clamp(0.98rem, 1.16vw, 1.12rem);
}

.strategy-award-copy h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.strategy-award-copy p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.5;
}

.strategy-award-copy p + p {
  margin-top: 14px;
}

.strategy-award-copy .strategy-award-subtitle {
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 500;
}

.course-method-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--ink);
}

.course-method-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.course-method-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.course-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.course-benefits article,
.course-note,
.course-program-list article {
  border: 1px solid rgba(255, 68, 128, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.course-benefits article {
  padding: 26px;
}

.course-benefits span {
  color: #ff4480;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.course-benefits h3,
.course-technique-card h3,
.course-program-list h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.course-benefits p,
.course-technique-card p,
.course-program-list p {
  margin: 12px 0 0;
  color: rgba(13, 22, 27, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.52;
}

.course-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 32px;
}

.course-split-copy h2,
.course-certificate-copy h2 {
  max-width: 760px;
}

.course-split-copy p {
  max-width: 710px;
  margin: 18px 0 0;
}

.course-note {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.course-note strong {
  color: #ff4480;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.course-technique-list {
  display: grid;
  gap: 35px;
}

.course-technique-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.course-technique-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
}

.course-technique-card:nth-child(even) img {
  grid-column: 2;
}

.course-technique-card:nth-child(even) div {
  grid-column: 1;
  grid-row: 1;
}

.course-technique-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.course-technique-card div {
  padding: 36px;
  text-align: center;
}

.course-technique-card h3 {
  margin-top: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.42rem, 2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
}

.course-technique-card p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.course-program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.course-program-cta {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  justify-content: center;
  margin: 24px auto -22px;
}

.course-program-list article {
  padding: 24px;
}

.course-program-list h3 {
  margin-top: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.38rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.course-program-list p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}

.course-program-list p::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  background: url("FORMATIONS/video.svg?v=3") center / contain no-repeat;
}

.course-certificate {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  gap: 0;
  border-radius: 22px;
  background: #ffffff;
  padding: 0;
  box-shadow: var(--shadow-md);
}

.course-certificate-media {
  overflow: hidden;
  height: 100%;
  min-height: 620px;
  background: #f8c0d4;
}

.course-certificate-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.course-certificate-copy p {
  max-width: 640px;
  margin: 18px auto 0;
}

.course-certificate-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 4.6vw, 64px);
  text-align: center;
}

.course-certificate-copy h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.36rem, 2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.course-certificate-copy p {
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.course-certificate-signature {
  display: block;
  width: min(260px, 68%);
  height: auto;
  margin-top: 28px;
}

.course-certificate-highlight {
  display: inline-block;
  width: fit-content;
  max-width: 640px;
  border-radius: var(--button-radius);
  background: rgba(13, 22, 27, 0.06);
  padding: 12px 16px;
}

.course-faq {
  padding-top: 96px;
  text-align: center;
}

.course-faq h2 {
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.course-faq-list {
  display: grid;
  gap: 18px;
  margin-top: 70px;
}

.course-faq-item {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: margin-bottom 360ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.course-faq-item[open] {
  margin-bottom: 22px;
  box-shadow: none;
}

.course-faq-item.is-closing {
  margin-bottom: 0;
}

.course-faq-question {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 26px 30px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.course-faq-question::-webkit-details-marker {
  display: none;
}

.course-faq-title {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.38rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
}

.course-faq-toggle {
  position: relative;
  grid-column: 3;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--ink);
  user-select: none;
  -webkit-user-select: none;
}

.course-faq-toggle::before,
.course-faq-toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.course-faq-toggle::after {
  transform: translateY(-50%) rotate(90deg);
}

.course-faq-item[open] .course-faq-toggle::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.course-faq-item.is-closing .course-faq-toggle::after {
  opacity: 1;
  transform: translateY(-50%) rotate(90deg);
}

.course-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 30px;
  opacity: 0;
  transition:
    grid-template-rows 420ms cubic-bezier(0.18, 0.84, 0.28, 1),
    opacity 260ms ease,
    padding 420ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.course-faq-item[open] .course-faq-answer {
  grid-template-rows: 1fr;
  padding: 2px 30px 42px;
  opacity: 1;
}

.course-faq-item.is-closing .course-faq-answer {
  grid-template-rows: 0fr;
  padding: 0 30px;
  opacity: 0;
}

.course-faq-answer-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 0;
  overflow: hidden;
  animation: faqReveal 420ms cubic-bezier(0.18, 0.84, 0.28, 1) both;
}

.course-faq-item.is-closing .course-faq-answer-inner {
  animation: faqRevealOut 360ms cubic-bezier(0.18, 0.84, 0.28, 1) both;
}

.course-faq-list p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.105rem, 1.24vw, 1.205rem);
  font-weight: 500;
  line-height: 1.5;
}

.course-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(900px, calc(100% - 40px));
  margin: 14px auto 0;
  padding: 10px 16px 0;
}

.course-signature h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 1.85vw, 2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.course-signature h2 em {
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
  color: var(--ink);
  font-style: normal;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.course-signature h2 em.formation-accent-first {
  margin-right: 0.08em;
  margin-left: 0;
}

.course-signature h2 em::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.course-signature-author {
  margin-top: 0;
  font-size: clamp(0.95rem, 1.12vw, 1.08rem);
}

.course-signature-author img {
  width: 38px;
  height: 38px;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqRevealOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@starting-style {
  .course-faq-item[open] {
    margin-bottom: 0;
  }

  .course-faq-item[open] .course-faq-answer {
    grid-template-rows: 0fr;
    padding-bottom: 0;
    opacity: 0;
  }
}

.hero-section {
  width: min(1840px, calc(100% - 120px));
  margin: 0 auto;
  padding: 58px 0 12px;
}

.hero-heading {
  margin-bottom: 86px;
  text-align: center;
}

.hero-heading h1 {
  margin: 18px 0 42px;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 4.35vw, 4.35rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.headline-accent {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0.08em 0 0;
  transform: rotate(-3deg);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .headline-accent {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

.headline-accent::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
  animation: underlineDraw 900ms cubic-bezier(0.18, 0.84, 0.28, 1) 520ms forwards;
}

.upnail-title-wrap {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.06em;
  margin-top: 0.08em;
  white-space: nowrap;
}

.upnail-title-wrap img {
  display: inline-block;
  width: min(2.8em, 58vw);
  height: auto;
  transform: translateY(0.06em);
}

.upnail-question {
  display: inline-block;
  line-height: 0.86;
  transform: translateY(0.03em);
}

.upnail-video-logo {
  position: absolute;
  top: clamp(12px, 1.8vw, 22px);
  right: clamp(12px, 1.8vw, 22px);
  z-index: 2;
  display: block;
  width: clamp(34px, 4.5vw, 58px);
  height: clamp(34px, 4.5vw, 58px);
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(13, 22, 27, 0.12);
  pointer-events: none;
}

.upnail-page .site-header {
  display: none;
}

.upnail-page .hero-heading {
  margin-bottom: 48px;
}

.upnail-page .hero-heading h1 {
  line-height: 1.12;
}

.upnail-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}

.upnail-page .upnail-cta-wrap {
  margin-top: 68px;
}

.hero-byline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(158, 179, 198, 0.34);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-weight: 500;
  line-height: 1.25;
  padding: 8px 12px 8px 16px;
  box-shadow: var(--shadow-md);
}

.hero-byline strong {
  color: var(--pink);
  font-weight: 700;
}

.hero-byline img {
  width: 43px;
  height: 43px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(13, 22, 27, 0.1);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 13px;
  margin-top: 16px;
  color: rgba(13, 22, 27, 0.76);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.35;
}

.hero-stats a,
.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-stats a {
  border-radius: var(--button-radius);
  padding: 8px 12px;
  color: inherit;
  transition: background-color 180ms ease, color 160ms ease, transform 160ms ease;
}

.hero-stats a:hover {
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero-stats a + a::before {
  content: none;
}

.stat-icon {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
}

.stat-icon.youtube {
  border-radius: 5px;
  background: #ff0033;
}

.stat-icon.youtube::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #ffffff;
}

.stat-icon.instagram {
  border-radius: 6px;
  background: radial-gradient(circle at 30% 100%, #ffd86f 0 20%, transparent 38%),
    linear-gradient(135deg, #7b2cff 0%, #ff2f8f 52%, #ffb22e 100%);
}

.stat-icon.instagram::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.stat-icon.instagram::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
}

.stat-icon.member {
  border-radius: 50%;
  background: var(--pink);
}

.stat-icon.member::before,
.stat-icon.member::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.stat-icon.member::before {
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.stat-icon.member::after {
  bottom: 4px;
  width: 10px;
  height: 5px;
  border-radius: 999px 999px 4px 4px;
}

@keyframes underlineDraw {
  to {
    transform: scaleX(1);
  }
}

@keyframes pageIn {
  to {
    opacity: 1;
  }
}

@keyframes headerIn {
  to {
    opacity: 1;
  }
}

@keyframes badgeShimmer {
  0% {
    background-position: 100% 50%;
  }

  44%,
  100% {
    background-position: 0% 50%;
  }
}

@keyframes courseCtaShimmer {
  0%,
  72% {
    transform: translateX(0) skewX(-18deg);
  }

  90%,
  100% {
    transform: translateX(370%) skewX(-18deg);
  }
}

@keyframes advisorGradientMove {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

[data-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(32px);
  transition:
    opacity 820ms ease,
    filter 820ms ease,
    transform 820ms cubic-bezier(0.18, 0.84, 0.28, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-reveal="scale"] {
  transform: translateY(28px) scale(0.965);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

[data-reveal="scale"].is-visible {
  transform: translateY(0) scale(1);
}

[data-reveal].reveal-complete,
[data-reveal="scale"].reveal-complete {
  filter: none;
  transform: none;
  transition-delay: 0ms;
  will-change: auto;
}

.mux-home-player[data-reveal],
.course-mux-player[data-reveal] {
  filter: none;
  transform: none;
  transition: opacity 420ms ease;
  will-change: opacity;
}

.mux-home-player[data-reveal="scale"],
.course-mux-player[data-reveal="scale"],
.mux-home-player[data-reveal].is-visible,
.course-mux-player[data-reveal].is-visible,
.mux-home-player[data-reveal="scale"].is-visible,
.course-mux-player[data-reveal="scale"].is-visible {
  filter: none;
  transform: none;
}

.mux-home-player,
.course-mux-player {
  isolation: isolate;
}

.mux-home-iframe,
.course-mux-iframe {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-intro {
  width: min(760px, 100%);
  margin: 86px auto 0;
  color: var(--ink);
  text-align: center;
}

.hero-intro h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.52vw, 1.42rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-intro h3 span {
  display: block;
  margin-top: 12px;
}

.hero-intro em {
  position: relative;
  display: inline-block;
  font-style: normal;
  white-space: nowrap;
}

.hero-intro em::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  z-index: -1;
  height: 0.22em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.teaser-wrap {
  position: relative;
  width: min(1120px, 100%);
  margin: 52px auto 0;
  overflow: hidden;
  border-radius: 30px;
  background: transparent;
  clip-path: inset(0 round 30px);
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(#ffffff, #000000);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    0 14px 34px rgba(255, 68, 128, 0.1),
    0 8px 22px rgba(13, 22, 27, 0.06);
}

.teaser-wrap:fullscreen {
  border-radius: 0;
  background: #000000;
  clip-path: none;
  -webkit-mask-image: none;
}

.teaser-wrap:-webkit-full-screen {
  border-radius: 0;
  background: #000000;
  clip-path: none;
  -webkit-mask-image: none;
}

.teaser-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: inherit;
  background: transparent;
  clip-path: inset(0 round 30px);
  object-fit: cover;
  cursor: pointer;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mux-home-iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: inherit;
}

.teaser-wrap:fullscreen .teaser-video {
  border-radius: 0;
  clip-path: none;
  object-fit: contain;
}

.teaser-wrap:-webkit-full-screen .teaser-video {
  border-radius: 0;
  clip-path: none;
  object-fit: contain;
}

.teaser-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease;
}

.teaser-play span {
  display: grid;
  width: clamp(92px, 8.2vw, 140px);
  height: clamp(92px, 8.2vw, 140px);
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 22, 27, 0.22);
  box-shadow:
    0 18px 45px rgba(13, 22, 27, 0.18),
    0 0 0 16px rgba(255, 255, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.teaser-play span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 9px;
  border-top: clamp(18px, 1.8vw, 28px) solid transparent;
  border-bottom: clamp(18px, 1.8vw, 28px) solid transparent;
  border-left: clamp(28px, 2.6vw, 44px) solid #ffffff;
  transition: transform 180ms ease;
}

.teaser-play:hover {
  background: transparent;
}

.teaser-play:hover span {
  background: rgba(13, 22, 27, 0.28);
  box-shadow:
    0 22px 54px rgba(13, 22, 27, 0.22),
    0 0 0 19px rgba(255, 255, 255, 0.18);
  transform: scale(1.04);
}

.teaser-play:hover span::before {
  transform: scale(1.12);
}

.teaser-wrap.is-playing .teaser-play {
  opacity: 0;
  pointer-events: none;
}

.teaser-controls {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px auto 1fr auto 34px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 14px 34px rgba(13, 22, 27, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.teaser-wrap.has-controls-visible .teaser-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.teaser-control-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.teaser-control-button:hover {
  background: rgba(13, 22, 27, 0.11);
  transform: translateY(-1px);
}

.teaser-toggle span {
  width: 11px;
  height: 14px;
  border-right: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.teaser-toggle:not(.is-paused) span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  border-right: 0;
}

.teaser-fullscreen span {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.teaser-progress {
  width: 100%;
  accent-color: var(--ink);
  cursor: pointer;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 70px;
}

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

.avatar {
  display: block;
  width: 43px;
  height: 43px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.avatar + .avatar {
  margin-left: -10px;
}

.proof-rating {
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
}

.stars {
  color: #ffd400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(13, 22, 27, 0.04);
}

.proof-rating p {
  margin: 0;
  color: #303545;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.86rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.1;
}

.testimonials-section {
  padding: 22px 0 86px;
  overflow: hidden;
}

.testimonials-section.course-testimonials {
  padding-bottom: 48px;
}

.strategy-testimonials-section {
  margin-bottom: 0;
  background: var(--page-pink-solid);
}

.testimonials-heading {
  width: min(1056px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
}

.testimonials-heading p {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.guides-section {
  padding: 14px 0 92px;
}

.guides-heading {
  width: min(1056px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.guides-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.guides-heading p {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.guides-carousel {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 0;
}

.guides-list {
  display: grid;
  grid-auto-columns: calc((100% - 56px) / 3);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 28px;
  padding: 2px 2px 38px;
  margin: -2px -2px -38px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.guides-list::-webkit-scrollbar {
  display: none;
}

.guide-card {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 68, 128, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
}

.guides-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(13, 22, 27, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.guides-arrow:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.guides-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: translateY(-50%);
}

.guides-arrow-prev {
  left: -56px;
}

.guides-arrow-next {
  right: -56px;
}

.guide-image {
  aspect-ratio: 1;
  background: var(--soft-pink);
}

.guide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.guides-list.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.guides-list.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
}

.guide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  text-align: center;
}

.guide-content h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.16rem, 1.42vw, 1.42rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.guide-content p {
  margin: 0;
  color: rgba(13, 22, 27, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.guide-content p + p {
  margin-top: 10px;
}

.guide-button {
  position: relative;
  z-index: 5;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  margin-top: 22px;
  margin-bottom: 20px;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0 24px;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 160ms ease, transform 160ms ease;
}

.guide-button:hover {
  background: #1b252b;
  transform: translateY(-1px);
}

.guide-downloads {
  margin: 56px 0 0;
  padding-top: 0;
  color: rgba(13, 22, 27, 0.68);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.guide-downloads span {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.guide-downloads span::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.02em;
  z-index: -1;
  height: 0.24em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.formations-section {
  padding: 8px 0 92px;
}

.formations-heading {
  width: min(1056px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.formations-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.formations-heading p {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.formation-advisor {
  display: grid;
  width: min(900px, 70vw);
  margin: 34px auto 0;
  gap: 16px;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
}

.formation-advisor[hidden] {
  display: none;
}

.formation-advisor.is-open {
  animation: advisorPanelIn 520ms cubic-bezier(0.18, 0.84, 0.28, 1) forwards;
}

.formation-advisor-callout {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 13px;
  width: min(560px, 100%);
  margin: 0 auto;
}

.advisor-avatar-wrap {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
}

.advisor-avatar-wrap::before,
.advisor-avatar-wrap::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.advisor-avatar-wrap::before {
  inset: 3px;
  background:
    conic-gradient(
      from 0deg,
      rgba(255, 68, 128, 0.92),
      rgba(255, 138, 184, 0.88),
      rgba(176, 122, 255, 0.62),
      rgba(255, 82, 151, 0.9),
      rgba(255, 188, 210, 0.76),
      rgba(255, 68, 128, 0.92)
    );
  filter: blur(0.2px);
  animation: advisorAvatarSpin 1.35s linear infinite;
}

.advisor-avatar-wrap::after {
  inset: -2px;
  background:
    conic-gradient(
      from 180deg,
      rgba(255, 68, 128, 0),
      rgba(255, 68, 128, 0.32),
      rgba(255, 138, 184, 0.3),
      rgba(176, 122, 255, 0.18),
      rgba(255, 188, 210, 0.16),
      rgba(255, 68, 128, 0)
    );
  filter: blur(4px);
  animation: advisorAvatarSpin 2.4s linear infinite reverse, advisorAvatarPulse 1.2s ease-in-out infinite alternate;
}

.formation-advisor.is-searching .advisor-avatar-wrap::before,
.formation-advisor.is-searching .advisor-avatar-wrap::after {
  opacity: 0.82;
}

.formation-advisor-callout img {
  position: relative;
  z-index: 1;
  display: block;
  width: 48px;
  height: 48px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(13, 22, 27, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.formation-advisor.is-searching .formation-advisor-callout img {
  transform: scale(0.94);
  box-shadow:
    0 10px 24px rgba(13, 22, 27, 0.1),
    0 0 0 4px rgba(255, 255, 255, 0.88);
}

.formation-advisor-callout p {
  margin: 0;
  color: rgba(13, 22, 27, 0.76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.formation-advisor-input-wrap {
  position: relative;
  width: min(560px, 100%);
  margin: 0 auto 20px;
}

.formation-advisor input {
  display: block;
  width: min(560px, 100%);
  margin: 0;
  min-width: 0;
  border: 1px solid rgba(13, 22, 27, 0.08);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 16px 64px 16px 20px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  box-shadow: var(--shadow-md);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.formation-advisor input::placeholder {
  color: rgba(13, 22, 27, 0.46);
}

.formation-advisor input:focus {
  border-color: rgba(13, 22, 27, 0.18);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.formation-advisor-submit {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  width: 44px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.formation-advisor-submit span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.formation-advisor-submit:hover {
  background: #000000;
  transform: translateY(-50%) scale(1.02);
}

.formation-advisor-submit:focus-visible {
  outline: 3px solid rgba(255, 100, 154, 0.34);
  outline-offset: 3px;
}

.mystery-formations {
  position: relative;
  display: grid;
  width: min(860px, 100%);
  min-height: 390px;
  margin: 22px auto 0;
  pointer-events: none;
}

.mystery-formations[hidden] {
  display: none;
}

.mystery-formation-card {
  position: absolute;
  display: grid;
  grid-template-columns: 142px 1fr;
  align-items: center;
  gap: 18px;
  width: min(510px, 82vw);
  min-height: 152px;
  overflow: hidden;
  border: 1px solid rgba(255, 68, 128, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  box-shadow:
    0 18px 42px rgba(13, 22, 27, 0.08),
    0 10px 30px rgba(255, 68, 128, 0.08);
  filter: blur(7px);
  opacity: 0.58;
  transform: translate3d(0, 0, 0);
  user-select: none;
  animation: mysteryFloat 5.8s ease-in-out infinite;
}

.mystery-formation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 100%),
    rgba(255, 242, 245, 0.2);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: mysteryShine 2.8s ease-in-out infinite;
}

.mystery-card-one {
  top: 0;
  left: 0;
  animation-name: mysteryFloatOne;
}

.mystery-card-two {
  top: 124px;
  right: 0;
  animation-name: mysteryFloatTwo;
  animation-delay: -1.4s;
}

.mystery-card-three {
  top: 248px;
  left: 8%;
  animation-name: mysteryFloatThree;
  animation-delay: -2.5s;
}

.mystery-thumb {
  width: 142px;
  height: 112px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 68, 128, 0.12);
}

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

.mystery-copy {
  display: grid;
  gap: 12px;
}

.mystery-copy span,
.mystery-copy strong,
.mystery-copy p {
  display: block;
  border-radius: 999px;
  background: rgba(13, 22, 27, 0.12);
}

.mystery-copy span {
  width: 44%;
  height: 14px;
  background: rgba(255, 68, 128, 0.2);
}

.mystery-copy strong {
  width: 82%;
  height: 20px;
}

.mystery-copy p {
  width: 64%;
  height: 14px;
  margin: 0;
}

.formation-advisor.is-searching .mystery-formation-card {
  filter: blur(8px);
  opacity: 0.68;
}

@keyframes mysteryFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }

  50% {
    transform: translate3d(26px, -10px, 0) rotate(1deg);
  }
}

@keyframes mysteryFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1.1deg);
  }

  50% {
    transform: translate3d(-28px, 12px, 0) rotate(-1deg);
  }
}

@keyframes mysteryFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.7deg);
  }

  50% {
    transform: translate3d(20px, 10px, 0) rotate(1.4deg);
  }
}

@keyframes mysteryShine {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

.formation-advisor-result {
  display: grid;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2px;
  opacity: 0;
  transform: translateY(10px);
}

.formation-advisor-result.is-ready {
  animation: advisorResultIn 520ms cubic-bezier(0.18, 0.84, 0.28, 1) forwards;
}

.formation-advisor-result.is-exiting {
  animation: advisorResultOut 280ms ease forwards;
}

.formation-advisor-result p {
  margin: 0;
  color: rgba(13, 22, 27, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.formation-advisor-result p a {
  color: #d97694;
  font-weight: 700;
  text-decoration: none;
}

.formation-advisor-result p a:hover {
  text-decoration: underline;
}

.formation-advisor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.formation-advisor-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(13, 22, 27, 0.04);
  padding: 14px;
  text-align: left;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

.formation-advisor-result.is-ready .formation-advisor-card {
  animation: advisorCardIn 480ms cubic-bezier(0.18, 0.84, 0.28, 1) forwards;
}

.formation-advisor-result.is-exiting .formation-advisor-card {
  animation: advisorCardOut 240ms ease forwards;
}

.formation-advisor-result.is-ready .formation-advisor-card:nth-child(2) {
  animation-delay: 70ms;
}

.formation-advisor-result.is-ready .formation-advisor-card:nth-child(3) {
  animation-delay: 140ms;
}

.formation-advisor-card::before {
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 46%;
  content: "";
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.74) 48%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.formation-advisor-result.is-ready .formation-advisor-card::before {
  animation: advisorCardShine 900ms ease 180ms forwards;
}

.formation-advisor-card strong {
  color: var(--ink);
  font-size: 15px;
}

.formation-advisor-card .advisor-formation-name {
  display: block;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.formation-advisor-card .advisor-formation-name span {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.formation-advisor-card .advisor-formation-name span::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.formation-advisor-card .advisor-reason {
  display: block;
  margin-top: 15px;
  color: rgba(13, 22, 27, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.formation-advisor-card .advisor-module-reference {
  color: #d97694;
  font: inherit;
  font-weight: inherit;
}

.formation-advisor-card .advisor-sentence-break {
  display: block;
  height: 0.72em;
}

@keyframes advisorResultIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes advisorResultOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes advisorPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes advisorAvatarSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes advisorAvatarPulse {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes advisorCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes advisorCardOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
}

@keyframes advisorCardShine {
  from {
    left: -70%;
  }

  to {
    left: 128%;
  }
}

.formations-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(1056px, calc(100% - 40px));
  margin: 34px auto 0;
  gap: 14px;
}

.formation-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--button-radius);
  background: #ffffff;
  color: var(--ink);
  padding: 10px 16px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 180ms ease;
}

.formation-tab:hover,
.formation-tab.is-active {
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.formation-tab:hover {
  transform: translateY(-1px);
}

.formation-tab-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
}

.formation-tab-bestseller::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 1px;
  width: 25px;
  height: 25px;
  background: linear-gradient(110deg, #d6a400 0%, #d6a400 42%, #fff4b8 49%, #f7c72f 55%, #d6a400 62%, #d6a400 100%);
  background-size: 320% 100%;
  mask: url("crown-svgrepo-com.svg") center / contain no-repeat;
  -webkit-mask: url("crown-svgrepo-com.svg") center / contain no-repeat;
}

.formation-tab-free::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 1px;
  width: 25px;
  height: 25px;
  background: #74b88a;
  mask: url("free.svg") center / contain no-repeat;
  -webkit-mask: url("free.svg") center / contain no-repeat;
}

.formation-tab-bestseller:hover,
.formation-tab-bestseller.is-active {
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.formation-tab-free:hover,
.formation-tab-free.is-active {
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.formation-tab-advisor {
  margin-top: 10px;
  background: linear-gradient(110deg, rgba(255, 68, 128, 0.42), #ff4480, #ff7aaa, rgba(255, 68, 128, 0.42));
  background-size: 240% 100%;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  animation: advisorGradientMove 4.8s ease-in-out infinite alternate;
}

.formation-tab-advisor::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 1px;
  width: 25px;
  height: 25px;
  background: #ff4480;
  filter:
    drop-shadow(0 0 1px #ffffff)
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85));
  mask: url("sparkle.svg") center / contain no-repeat;
  -webkit-mask: url("sparkle.svg") center / contain no-repeat;
}

.formation-tab-advisor:hover,
.formation-tab-advisor.is-active {
  background: linear-gradient(110deg, rgba(255, 68, 128, 0.52), #ff4480, #ff85b1, rgba(255, 68, 128, 0.52));
  background-size: 240% 100%;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.formations-list {
  display: grid;
  align-content: start;
  width: min(1280px, calc(100% - 64px));
  margin: 52px auto 0;
  gap: 72px;
}

.formation-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  align-items: stretch;
  overflow: visible;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.18, 0.84, 0.28, 1);
  transition-delay: var(--formation-reveal-delay, 0ms);
}

.formation-card.is-filtered-out {
  display: none;
}

.formation-card.is-filter-enter {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

.formation-card.is-filter-enter.is-filter-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.formation-card.is-filter-exiting,
.formation-card.is-filter-enter.is-filter-visible.is-filter-exiting {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
}

.formation-thumb {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background: rgba(13, 22, 27, 0.04);
}

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

.formation-level {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 9px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(13, 22, 27, 0.14);
  backdrop-filter: blur(10px);
}

.level-stars {
  display: inline-flex;
  gap: 2px;
  color: rgba(139, 149, 158, 0.48);
  font-size: 14px;
  letter-spacing: 0;
}

.level-stars .is-filled {
  color: var(--ink);
}

.formation-card-content {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 18px 18px 0;
  background: #ffffff;
  padding: 34px;
  text-align: center;
}

.formation-card.is-bestseller::after {
  content: "";
  position: absolute;
  top: -36px;
  right: 28px;
  z-index: 2;
  width: 57px;
  height: 57px;
  background: linear-gradient(110deg, #d6a400 0%, #d6a400 42%, #fff4b8 49%, #f7c72f 55%, #d6a400 62%, #d6a400 100%);
  background-size: 320% 100%;
  mask: url("crown-svgrepo-com.svg") center / contain no-repeat;
  -webkit-mask: url("crown-svgrepo-com.svg") center / contain no-repeat;
}

.formations-section.is-shimmering .formation-tab-bestseller::after,
.formations-section.is-shimmering .formation-card.is-bestseller::after {
  animation: badgeShimmer 5.6s linear 1s infinite;
}

.formation-card.is-free::before {
  content: "";
  position: absolute;
  top: -36px;
  right: 28px;
  z-index: 2;
  width: 57px;
  height: 57px;
  background: #2fb36d;
  mask: url("free.svg") center / contain no-repeat;
  -webkit-mask: url("free.svg") center / contain no-repeat;
}

.formation-card-content h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.58rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.formation-card-content h3 .formation-name {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Calendas Plus", "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.formation-card-content h3 em {
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
  color: var(--ink);
  font-style: normal;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.formation-card-content h3 em.formation-accent-first {
  margin-right: 0.08em;
  margin-left: 0;
}

.formation-card-content h3 em::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.08em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 68, 128, 0.42);
}

.formation-card-content p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.formation-button {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  align-self: center;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0 22px;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.formation-button:hover {
  background: #1b252b;
  transform: translateY(-1px);
}

.formation-students {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

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

.formation-avatars img {
  width: 34px;
  height: 34px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(13, 22, 27, 0.12);
}

.formation-avatars img + img {
  margin-left: -10px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.68), rgba(255, 242, 245, 0.62) 42%, rgba(255, 242, 245, 0.58)),
    rgba(255, 242, 245, 0.6);
}

.lead-modal-panel {
  position: relative;
  width: min(460px, 100%);
  border: 1px solid rgba(158, 179, 198, 0.36);
  border-radius: 22px;
  background: #ffffff;
  padding: 34px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(13, 22, 27, 0.18);
  transform: translateY(12px) scale(0.98);
  transition: transform 260ms cubic-bezier(0.18, 0.84, 0.28, 1);
  perspective: 1200px;
}

.lead-modal.is-open .lead-modal-panel {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 22, 27, 0.06);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lead-flip-card {
  position: relative;
  min-height: 205px;
  transform-style: preserve-3d;
  transition: transform 680ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.lead-modal.is-success .lead-flip-card {
  transform: rotateY(180deg);
}

.lead-face {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  min-height: 205px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 180ms ease;
}

.lead-face-front {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.lead-face-back {
  place-items: center;
  align-content: center;
  transform: rotateY(180deg);
  opacity: 0;
  pointer-events: none;
}

.lead-modal.is-success .lead-face-front {
  opacity: 0;
  pointer-events: none;
}

.lead-modal.is-success .lead-face-back {
  opacity: 1;
  pointer-events: auto;
}

.lead-form {
  margin-top: 12px;
  gap: 10px;
}

.lead-form-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.lead-form label {
  text-align: left;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(13, 22, 27, 0.14);
  border-radius: 14px;
  background: rgba(255, 242, 245, 0.42);
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form input:focus {
  border-color: rgba(255, 68, 128, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 68, 128, 0.12);
}

.lead-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border: 0;
  justify-self: center;
  border-radius: var(--button-radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0 18px;
  font-family: Alexandria, "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lead-submit:hover {
  background: #1b252b;
  transform: translateY(-1px);
}

.lead-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.lead-message {
  min-height: 0;
  margin: 0;
  color: #d92d20;
  font-size: 13px;
  font-weight: 500;
}

.lead-success {
  padding: 18px 8px 8px;
}

.lead-success p {
  max-width: 310px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.success-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
}

.success-icon img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.78);
  animation: successIconIn 420ms cubic-bezier(0.18, 0.84, 0.28, 1) 260ms forwards;
}

@keyframes successIconIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonials-marquee {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  touch-action: pan-y;
  user-select: none;
}

.testimonials-track {
  display: flex;
  width: max-content;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 18px 20px;
  will-change: transform;
}

.testimonial-card {
  display: flex;
  width: 390px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 68, 128, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: var(--shadow-md);
  user-select: none;
}

.testimonial-copy {
  display: grid;
  gap: 12px;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.testimonials-marquee.is-dragging {
  cursor: grabbing;
}

.testimonials-marquee.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 900px) {
  :root {
    --anchor-offset: 96px;
  }

  .site-header {
    position: relative;
    top: auto;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-compact {
    width: min(1056px, calc(100% - 40px));
    min-height: 76px;
    gap: 26px;
    border-radius: 22px;
    padding: 14px 16px;
  }

  .site-header.is-compact .site-logo img {
    height: 27px;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    padding: 22px 14px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav a,
  .site-header.is-compact .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 13px 14px;
    font-size: 15px;
  }

  .main-nav .mobile-nav-only {
    display: inline-flex;
  }

  .main-nav .mobile-nav-join {
    background: var(--ink);
    color: #ffffff;
    font-weight: 700;
  }

  .main-nav .mobile-nav-join:hover {
    background: #1b252b;
    color: #ffffff;
  }

  .main-nav .nav-formations-link::after,
  .site-header.is-compact .main-nav .nav-formations-link::after {
    top: -7px;
    right: 3px;
    width: 18px;
    height: 18px;
  }

  .hero-section {
    width: min(720px, calc(100% - 32px));
    padding-top: 48px;
  }

  .hero-heading {
    margin-bottom: 58px;
  }

  .upnail-page .hero-heading {
    margin-bottom: 32px;
  }

  .upnail-page .upnail-cta-wrap {
    margin-top: 32px;
  }

  .social-proof {
    gap: 12px;
  }

  .teaser-wrap {
    margin-top: 38px;
    border-radius: 24px;
  }

  .hero-intro {
    margin-top: 58px;
  }

  .guides-list {
    grid-template-columns: none;
  }

  .formation-card {
    grid-template-columns: 1fr;
  }

  .formation-thumb {
    height: auto;
    min-height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px 16px 0 0;
  }

  .formation-card-content {
    min-height: auto;
    border-radius: 0 0 16px 16px;
  }

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

  .testimonial-card {
    width: 340px;
  }

  .course-page {
    padding-top: 24px;
  }

  .course-hero,
  .course-split,
  .course-certificate {
    grid-template-columns: 1fr;
  }

  .course-hero {
    gap: 34px;
    padding-top: 14px;
  }

  .course-benefits,
  .course-program-list {
    grid-template-columns: 1fr;
  }

  .course-method-card,
  .course-certificate {
    display: block;
  }

  .course-method-media,
  .course-certificate-media {
    display: block;
    aspect-ratio: 800 / 1055;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    background: transparent;
    line-height: 0;
  }

  .course-method-media img,
  .course-certificate-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    vertical-align: top;
  }

  .strategy-award-method-card .strategy-award-method-media {
    aspect-ratio: auto;
  }

  .strategy-award-method-card .strategy-award-method-media img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .course-split {
    gap: 22px;
  }

  .course-note {
    width: min(520px, 100%);
  }

  .course-technique-card,
  .course-technique-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .course-technique-card:nth-child(even) img,
  .course-technique-card:nth-child(even) div {
    grid-column: auto;
    grid-row: auto;
  }

  .course-technique-card img {
    height: auto;
    min-height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (max-width: 620px) {
  :root {
    --anchor-offset: 82px;
  }

  .site-header {
    top: auto;
    width: calc(100% - 24px);
    min-height: 68px;
    margin-top: 14px;
    gap: 12px;
    border-radius: 18px;
    padding: 10px;
  }

  .site-header.is-compact {
    width: calc(100% - 24px);
    min-height: 68px;
    gap: 12px;
    border-radius: 18px;
    padding: 10px;
  }

  .site-logo img {
    height: 23px;
  }

  .site-header.is-compact .site-logo img {
    height: 23px;
  }

  .header-actions {
    gap: 10px;
  }

  .login-link {
    display: none;
  }

  .join-button {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
  }

  .hero-section {
    width: calc(100% - 24px);
    padding-top: 38px;
    padding-bottom: 28px;
  }

  .teaser-controls {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 30px 1fr 30px;
    gap: 8px;
    padding: 7px 9px;
  }

  .teaser-time,
  .teaser-duration {
    display: none;
  }

  .teaser-control-button {
    width: 30px;
    height: 30px;
  }

  .videos-page {
    padding: 48px 0 72px;
  }

  .videos-hero,
  .videos-library {
    width: calc(100% - 24px);
  }

  .videos-hero {
    margin-bottom: 30px;
  }

  .video-search {
    margin-bottom: 24px;
  }

  .video-search input {
    padding: 14px 16px;
    font-size: 16px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .legal-page {
    width: calc(100% - 24px);
    padding: 54px 0 46px;
  }

  .legal-content {
    border-radius: 16px;
    padding: 26px 20px;
  }

  .legal-content p {
    font-size: 15px;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal-close {
    top: -14px;
    right: -6px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .video-modal-frame {
    border-radius: 18px;
  }

  .lead-flip-card,
  .lead-modal.is-success .lead-flip-card {
    min-height: 190px;
    transform: none;
    transform-style: flat;
  }

  .lead-face {
    min-height: 190px;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .lead-face-front {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .lead-face-back {
    position: absolute;
    inset: 0;
    transform: none;
  }

  .lead-modal.is-success .lead-face-front {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  .lead-modal.is-success .lead-face-back {
    position: relative;
    opacity: 1;
  }

  .hero-heading h1 {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: clamp(1.75rem, 8.4vw, 2.42rem);
  }

  .headline-mobile-line {
    display: block;
    white-space: nowrap;
  }

  .headline-accent {
    display: inline-block;
    margin-top: 0;
    transform: rotate(-3deg);
  }

  .hero-byline {
    gap: 8px;
    padding: 6px 9px 6px 12px;
    font-size: 0.94rem;
  }

  .hero-byline img {
    width: 32px;
    height: 32px;
  }

  .social-proof {
    flex-direction: column;
    gap: 7px;
    margin-top: 42px;
  }

  .avatar {
    width: 35px;
    height: 35px;
  }

  .hero-stats {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 5px;
    font-size: clamp(0.68rem, 3.25vw, 0.8rem);
  }

  .hero-stats a + a::before {
    display: none;
  }

  .hero-stats a {
    padding: 7px 8px;
  }

  .hero-stats span {
    gap: 5px;
    white-space: nowrap;
  }

  .avatar + .avatar {
    margin-left: -8px;
  }

  .proof-rating {
    text-align: center;
  }

  .stars {
    font-size: 19px;
    letter-spacing: 1px;
  }

  .proof-rating p {
    font-size: 0.77rem;
  }

  .teaser-wrap {
    margin-top: 42px;
    border-radius: 18px;
  }

  .hero-intro {
    margin-top: 58px;
  }

  .testimonials-section {
    padding: 18px 0 0;
  }

  .guides-section {
    padding: 10px 0 72px;
  }

  .formations-section {
    padding: 8px 0 72px;
  }

  .testimonials-heading {
    width: calc(100% - 24px);
    margin-bottom: 24px;
  }

  .guides-heading {
    width: calc(100% - 24px);
  }

  .formations-heading {
    width: calc(100% - 24px);
  }

  .formation-advisor {
    width: calc(100% - 24px);
    margin-top: 28px;
  }

  .formation-advisor-callout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .formation-advisor input {
    font-size: 16px;
  }

  .formation-advisor-result {
    width: 100%;
  }

  .formations-tabs {
    width: calc(100% - 24px);
    margin-top: 26px;
    gap: 10px;
  }

  .formation-tab {
    border-radius: var(--button-radius);
    padding: 10px 16px;
    font-size: 13px;
  }

  .formations-list {
    width: 100%;
    margin-top: 8px;
    align-items: start;
    grid-auto-columns: min(86vw, 380px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    padding: 34px calc((100vw - min(86vw, 380px)) / 2) 18px;
    scroll-padding-inline: calc((100vw - min(86vw, 380px)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .formations-list::-webkit-scrollbar {
    display: none;
  }

  .formation-card {
    align-self: start;
    grid-template-rows: 232px auto;
    border-radius: 16px;
    overflow: visible;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .formation-thumb,
  .formation-card-content {
    width: 100%;
    min-width: 0;
  }

  .formation-thumb {
    height: 232px;
    aspect-ratio: auto;
  }

  .formation-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .formation-card-content {
    justify-content: flex-start;
    padding: 24px 20px 26px;
  }

  .formation-card.is-bestseller::after {
    top: -29px;
    right: 18px;
    width: 45px;
    height: 45px;
  }

  .formation-card.is-free::before {
    top: -29px;
    right: 18px;
    width: 45px;
    height: 45px;
  }

  .formation-card-content h3 {
    font-size: 1.18rem;
  }

  .formation-card-content h3 .formation-name {
    font-size: 1.55rem;
  }

  .formation-card-content p {
    font-size: 15px;
  }

  .guides-list {
    display: grid;
    width: 100%;
    margin-top: 0;
    grid-auto-columns: min(82vw, 360px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-padding-inline: calc((100vw - min(82vw, 360px)) / 2);
    scroll-snap-type: x mandatory;
  }

  .guide-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .guides-carousel {
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
  }

  .guides-carousel .guides-list {
    width: 100%;
    margin: 0;
    padding: 0 calc((100vw - min(82vw, 360px)) / 2) 12px;
  }

  .guides-arrow {
    display: none;
  }

  .guide-image {
    min-height: auto;
    aspect-ratio: auto;
    background: transparent;
  }

  .guide-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .guide-content {
    padding: 24px;
  }

  .guide-content h3 {
    font-size: clamp(1.18rem, 6vw, 1.45rem);
  }

  .guide-content p {
    font-size: 15px;
  }

  .guide-button {
    width: 100%;
  }

  .testimonials-track {
    gap: 12px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .testimonials-marquee {
    mask-image: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    width: min(320px, calc(100vw - 48px));
    border-radius: 18px;
    padding: 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .course-page {
    padding: 18px 0 72px;
  }

  .course-hero,
  .course-section {
    width: calc(100% - 24px);
  }

  .course-hero {
    gap: 48px;
    padding: 14px 0 48px;
  }

  .course-hero h1 {
    font-size: clamp(1.75rem, 8.4vw, 2.42rem);
  }

  .course-subtitle {
    font-size: clamp(1.1rem, 6vw, 1.48rem);
  }

  .course-students {
    gap: 10px;
    margin-top: 24px;
    font-size: 13px;
  }

  .course-author {
    margin-top: 22px;
    font-size: 14px;
  }

  .course-author img {
    width: 34px;
    height: 34px;
  }

  .course-hero-offer {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .course-hero-cta {
    grid-column: 1;
    min-height: 50px;
    padding: 0 26px;
    font-size: 14px;
  }

  .course-hero-price {
    grid-column: 1;
    justify-self: center;
    margin-top: 10px;
    font-size: 1.3em;
  }

  .course-student-avatars img {
    width: 34px;
    height: 34px;
    border-width: 2px;
  }

  .course-student-avatars img + img {
    margin-left: -10px;
  }

  .course-video-level {
    right: 12px;
    top: 12px;
    gap: 7px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .course-section-heading p,
  .course-split-copy p,
  .course-note span,
  .course-certificate-copy p {
    font-size: 16px;
  }

  .course-primary-button {
    width: auto;
  }

  .course-section {
    padding: 52px 0;
  }

  .course-record-section {
    padding-top: 18px;
  }

  .course-testimonials {
    padding: 58px 0 15px;
  }

  .course-testimonials .testimonials-heading {
    margin-bottom: 30px;
  }

  .course-testimonials-proof {
    margin-bottom: 34px;
  }

  .course-techniques {
    padding-top: 0;
  }

  .course-section h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .course-record-heading h2,
  .course-program .course-section-heading h2 {
    font-size: clamp(1.85rem, 3.1vw, 3rem);
  }

  .course-benefits article,
  .course-note,
  .course-program-list article {
    border-radius: 16px;
    padding: 22px;
  }

  .course-method-card {
    display: block;
    border-radius: 16px;
    background: #ffffff;
    padding: 0;
  }

  .course-certificate {
    display: block;
    padding: 0;
  }

  .course-method-media,
  .course-certificate-media {
    display: block;
    aspect-ratio: 800 / 1055;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: hidden;
    background: transparent;
    line-height: 0;
  }

  .course-method-media img,
  .course-certificate-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .strategy-award-method-card .strategy-award-method-media {
    aspect-ratio: auto;
  }

  .strategy-award-method-card .strategy-award-method-media img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .course-method-copy {
    background: #ffffff;
    padding: 30px 22px 34px;
  }

  .course-method-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(1.32rem, 6vw, 1.78rem);
  }

  .course-method-copy .course-students {
    margin-bottom: 26px;
  }

  .course-method-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .course-method-copy p + p {
    margin-top: 14px;
  }

  .course-method-copy hr {
    margin: 28px 0 22px;
  }

  .course-method-copy ul {
    gap: 10px;
    font-size: 14px;
  }

  .strategy-problem-card .course-method-copy {
    background: transparent;
    padding: 0;
  }

  .strategy-youtube-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strategy-instagram-layout {
    grid-template-columns: 1fr;
  }

  .strategy-instagram-copy {
    order: 2;
  }

  .strategy-instagram-views {
    order: 1;
  }

  .strategy-youtube-copy {
    text-align: center;
  }

  .strategy-youtube-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .strategy-milestone-card {
    display: block;
    border-radius: 16px;
    padding: 22px;
  }

  .strategy-milestone-media img {
    width: min(100%, 330px);
    margin: 0 auto 24px;
    border-radius: 16px;
  }

  .strategy-milestone-copy {
    text-align: left;
  }

  .strategy-milestone-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .strategy-milestone-copy p {
    font-size: 16.5px;
  }

  .strategy-award-card {
    display: block;
    border-radius: 16px;
    padding: 0;
  }

  .strategy-award-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .strategy-award-copy {
    min-height: auto;
    padding: 30px 22px 34px;
    text-align: center;
  }

  .strategy-award-copy .course-students {
    margin-bottom: 28px;
  }

  .strategy-award-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 7.3vw, 2.3rem);
  }

  .strategy-award-copy p {
    font-size: 17px;
  }

  .course-technique-card {
    display: block;
    border-radius: 16px;
  }

  .course-technique-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .course-technique-card div {
    padding: 24px 22px 26px;
    background: #ffffff;
  }

  .course-technique-card h3 {
    font-size: clamp(1.36rem, 6vw, 1.78rem);
  }

  .course-technique-card p {
    font-size: 17px;
    line-height: 1.55;
  }

  .course-benefits h3 {
    font-size: 1.42rem;
  }

  .course-program-list {
    gap: 16px;
  }

  .course-program-list article {
    padding: 22px;
  }

  .course-program-list h3 {
    font-size: 1.18rem;
  }

  .course-program-list p {
    gap: 9px;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.52;
  }

  .course-program-list p::before {
    width: 19px;
    height: 19px;
  }

  .course-certificate {
    border-radius: 16px;
    background: #ffffff;
    padding: 0;
  }

  .course-certificate-copy {
    background: #ffffff;
    padding: 30px 22px 34px;
  }

  .course-certificate-copy h2 {
    font-size: clamp(1.32rem, 6vw, 1.78rem);
  }

  .course-certificate-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .course-faq {
    padding-top: 58px;
  }

  .course-faq h2 {
    font-size: clamp(1.85rem, 3.1vw, 3rem);
  }

  .course-faq-list {
    gap: 14px;
    margin-top: 42px;
  }

  .course-faq-question {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    gap: 16px;
    padding: 22px;
  }

  .course-faq-title {
    font-size: 1.18rem;
  }

  .course-faq-toggle {
    width: 22px;
    height: 22px;
  }

  .course-faq-list p {
    font-size: 17px;
    line-height: 1.55;
  }

  .course-faq-answer {
    padding: 0 22px;
  }

  .course-faq-item[open] .course-faq-answer {
    padding: 2px 22px 34px;
  }

  .course-faq-item.is-closing .course-faq-answer {
    padding: 0 22px;
  }

  .course-faq-answer-inner {
    gap: 16px;
  }

  .course-signature {
    flex-direction: row;
    gap: 12px;
    margin-top: 4px;
    padding: 8px 12px 0;
  }

  .course-signature h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .course-signature-author {
    font-size: 14px;
  }

  .course-signature-author img {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-header,
  .formation-tab-bestseller::after,
  .formation-card.is-bestseller::after,
  .formation-advisor,
  .formation-advisor-result,
  .formation-advisor-card,
  .formation-advisor-card::before,
  .advisor-avatar-wrap::before,
  .advisor-avatar-wrap::after,
  .mystery-formation-card,
  .mystery-formation-card::after,
  .testimonials-track,
  .video-card,
  [data-reveal] {
    animation: none;
    transition: none;
  }

  body,
  .site-header,
  [data-reveal] {
    opacity: 1;
    filter: none;
  }

  .site-header {
    transform: none;
  }

  [data-reveal],
  [data-reveal="scale"],
  [data-reveal].is-visible,
  [data-reveal="scale"].is-visible,
  .video-card {
    transform: none;
  }

  .video-card {
    opacity: 1;
  }

  .formation-advisor-result,
  .formation-advisor,
  .formation-advisor-card,
  .mystery-formation-card {
    opacity: 1;
    transform: none;
  }

}

.strategy-action-plan-card .strategy-action-plan-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #f8c0d4;
}

.strategy-action-plan-card .strategy-action-plan-media img {
  width: 75%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}
