:root {
  --blue: #0047ab;
  --blue-deep: #00327a;
  --blue-dark: #001f4d;
  --cyan: #1d6fe8;
  --gold: #f6c873;
  --gold-deep: #e9ac39;
  --ink: #101c33;
  --muted: #465a73;
  --mist: #edf3ff;
  --cream: #fffaf0;
  --line: #cbd9ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 50, 122, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: #f4f7fc;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  display: none;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(0, 71, 171, 0.16);
  background: rgba(247, 252, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 36px;
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand {
  flex: 0 0 162px;
}

.brand img {
  width: 162px;
  height: 66px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 36px);
}

.desktop-nav a {
  position: relative;
  color: #29475d;
  font-size: 0.91rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.89rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 71, 171, 0.2);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 16px 30px rgba(0, 71, 171, 0.28);
}

.button-outline {
  border-color: rgba(0, 71, 171, 0.3);
  background: var(--white);
  color: var(--blue);
}

.button-outline:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 71, 171, 0.1);
}

.button-white {
  background: var(--white);
  color: var(--blue-dark);
}

.button-gold {
  background: var(--gold);
  color: var(--blue-dark);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform 180ms ease;
}

a:hover .icon {
  transform: translateX(4px);
}

a:hover .icon.diagonal {
  transform: translate(3px, -3px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(246, 200, 115, 0.3), transparent 27%),
    radial-gradient(circle at 80% 24%, rgba(29, 111, 232, 0.2), transparent 34%),
    linear-gradient(128deg, #f8faff 0%, #e6eeff 58%, #eff4ff 100%);
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 71, 171, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 660px;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  padding-block: 78px 88px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 71, 171, 0.14);
  border-radius: 999px;
  padding: 9px 13px 9px 10px;
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 5px rgba(246, 200, 115, 0.24);
}

.hero h1,
.section-heading h2,
.support-heading h2,
.offers-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

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

.hero h1 span::after {
  position: absolute;
  right: 2%;
  bottom: -10px;
  left: 2%;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: 0.75;
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 590px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.89rem;
  font-weight: 850;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.avatars {
  display: flex;
}

.avatars span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  margin-left: -9px;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.65rem;
  font-weight: 900;
}

.avatars span:first-child {
  margin-left: 0;
  background: var(--blue);
  color: var(--white);
}

.avatars span:last-child {
  background: var(--cyan);
  color: var(--white);
}

.hero-proof p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 490px;
  border: 1px solid rgba(0, 71, 171, 0.09);
  border-radius: 48% 52% 45% 55% / 42% 44% 56% 58%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 248, 255, 0.72)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 45px,
      rgba(0, 71, 171, 0.04) 46px
    );
  box-shadow: var(--shadow);
}

.hero-photo {
  min-height: 525px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px 90px 34px 90px;
  background: var(--blue-dark);
  box-shadow:
    0 34px 80px rgba(0, 31, 77, 0.27),
    0 0 0 1px rgba(0, 71, 171, 0.15);
  transform: rotate(1.2deg);
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.hero-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, rgba(5, 36, 66, 0.82));
  content: "";
}

.hero-photo-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 18px 20px;
  background: rgba(0, 31, 77, 0.75);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-photo-card span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-photo-card strong {
  max-width: 280px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-photo .success-card {
  z-index: 3;
  top: 26px;
  right: 22px;
  bottom: auto;
  transform: rotate(-1.2deg);
}

.hero-photo .place-card {
  display: none;
}

.visual-ring {
  position: absolute;
  border: 1px solid rgba(0, 71, 171, 0.14);
  border-radius: 50%;
}

.ring-one {
  top: 22px;
  right: 20px;
  width: 125px;
  height: 125px;
}

.ring-two {
  right: 55px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: rgba(246, 200, 115, 0.35);
}

.visual-spark {
  position: absolute;
  top: 48px;
  left: 52px;
  color: var(--gold-deep);
  transform: rotate(13deg);
}

.spark {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(0, 71, 171, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(0, 31, 77, 0.14);
  backdrop-filter: blur(10px);
}

.main-card {
  top: 99px;
  right: 48px;
  left: 48px;
  border-radius: 26px;
  padding: 30px;
  transform: rotate(-1.8deg);
}

.mini-label {
  display: inline-block;
  margin-bottom: 13px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--mist);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-card h2 {
  max-width: 290px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.main-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.main-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #365267;
  font-size: 0.82rem;
  font-weight: 700;
}

.main-card li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.62rem;
}

.success-card,
.place-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 14px 18px;
}

.success-card {
  right: -22px;
  bottom: 74px;
}

.place-card {
  bottom: 24px;
  left: -30px;
}

.check,
.pin {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #dff6ed;
  color: #147a5a;
  font-weight: 900;
}

.pin {
  background: #e8efff;
  color: var(--blue);
  font-size: 0.65rem;
}

.success-card p,
.place-card p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 3px;
  color: var(--muted);
  font-size: 0.66rem;
}

.success-card strong,
.place-card strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: 86px;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(29, 111, 232, 0.07);
}

.hero-orb-two {
  bottom: 44px;
  left: 2%;
  width: 84px;
  height: 84px;
  background: rgba(246, 200, 115, 0.18);
}

.results {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.results-grid {
  display: grid;
  min-height: 126px;
  align-items: center;
  gap: 24px;
  grid-template-columns: 1.55fr repeat(3, 1fr) auto;
}

.result-intro {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
}

.result-intro p {
  max-width: 150px;
  margin: 0;
}

.result-intro .line {
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.result {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.result strong {
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.result span,
.result-note {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.result-note {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section {
  padding-block: 112px;
}

.formations-section {
  background:
    radial-gradient(circle at 86% 0%, rgba(29, 111, 232, 0.14), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #eff4ff 100%);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.28fr 0.72fr;
  margin-bottom: 54px;
}

.section-heading h2,
.offers-copy h2 {
  max-width: 660px;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.section-heading > p,
.offers-copy > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.75;
}

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

.formation-showcase {
  display: grid;
  min-height: 360px;
  overflow: hidden;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(29, 111, 232, 0.28), transparent 34%),
    var(--blue-dark);
  box-shadow: 0 30px 65px rgba(0, 31, 77, 0.22);
  color: var(--white);
  grid-template-columns: 1.08fr 0.92fr;
}

.showcase-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 48px;
}

.showcase-copy h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.showcase-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.showcase-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.showcase-image::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-dark), transparent 38%);
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.formation-card {
  position: relative;
  display: flex;
  min-height: 365px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(0, 71, 171, 0.16);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow:
    0 16px 34px rgba(0, 31, 77, 0.09),
    0 3px 8px rgba(0, 31, 77, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.formation-card::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 20px;
  width: 52px;
  height: 52px;
  border: 13px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.formation-card:hover {
  border-color: var(--card-accent);
  box-shadow:
    0 30px 58px rgba(0, 31, 77, 0.18),
    0 7px 16px rgba(0, 31, 77, 0.1);
  transform: translateY(-9px);
}

.tone-tp {
  --card-accent: #13896f;
  --card-accent-secondary: #0047ab;
  --card-accent-soft: rgba(19, 137, 111, 0.1);
}

.tone-bts {
  --card-accent: var(--blue);
  --card-accent-secondary: var(--gold-deep);
  --card-accent-soft: rgba(0, 71, 171, 0.09);
}

.tone-bachelor {
  --card-accent: var(--gold-deep);
  --card-accent-secondary: #d44b49;
  --card-accent-soft: rgba(246, 200, 115, 0.18);
}

.tone-mastere {
  --card-accent: #bd3943;
  --card-accent-secondary: #7d2032;
  --card-accent-soft: rgba(189, 57, 67, 0.09);
}

.formation-visual {
  position: relative;
  display: flex;
  min-height: 122px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, var(--card-accent-secondary), var(--card-accent));
  color: var(--white);
}

.formation-visual::after {
  position: absolute;
  right: -35px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.formation-visual strong {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.formation-index {
  position: absolute;
  top: 16px;
  left: 19px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.formation-orbit {
  position: absolute;
  left: -25px;
  bottom: -41px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.formation-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 26px;
}

.formation-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--card-accent);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.formation-card h3 {
  position: relative;
  z-index: 2;
  margin: 30px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.formation-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.68;
}

.formation-card a,
.news-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--card-accent, var(--blue));
  font-size: 0.78rem;
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.support-section {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  background: var(--blue-dark);
  color: var(--white);
}

.support-section::before {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.support-shape {
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(29, 111, 232, 0.16);
}

.support-section .shell {
  position: relative;
  z-index: 2;
}

.kicker-light {
  color: var(--gold);
}

.support-heading {
  display: grid;
  align-items: end;
  gap: 40px 70px;
  grid-template-columns: 1.35fr 0.65fr;
}

.support-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -21px;
}

.support-heading h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
  line-height: 1.04;
}

.support-heading > p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 72px 0 44px;
}

.step {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 24px;
  isolation: isolate;
  box-shadow: 0 20px 45px rgba(1, 24, 45, 0.22);
}

.step::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 35, 62, 0.25) 5%, rgba(3, 35, 62, 0.92) 82%),
    linear-gradient(120deg, rgba(0, 71, 171, 0.28), transparent 55%);
  content: "";
}

.step-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.82) contrast(0.96);
  transition: transform 500ms ease, opacity 300ms ease;
}

.step:hover .step-background {
  opacity: 0.78;
  transform: scale(1.04);
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 48, 82, 0.62);
  backdrop-filter: blur(10px);
}

.step-icon span {
  width: 17px;
  height: 17px;
  border: 4px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.step h3 {
  margin: 104px 0 12px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.81rem;
  line-height: 1.72;
}

.offers-section {
  background: var(--mist);
}

.offers-layout {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 0.74fr 1.26fr;
}

.offers-copy {
  position: sticky;
  top: 140px;
}

.offers-copy > p {
  margin-top: 25px;
}

.offers-copy .button {
  margin-top: 30px;
}

.offers-list {
  display: grid;
  gap: 14px;
}

.offer-card {
  position: relative;
  display: grid;
  min-height: 132px;
  overflow: hidden;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(0, 71, 171, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  background:
    linear-gradient(115deg, rgba(0, 71, 171, 0.055), transparent 36%),
    var(--white);
  box-shadow:
    0 18px 44px rgba(0, 31, 77, 0.12),
    0 4px 12px rgba(0, 31, 77, 0.06);
  grid-template-columns: auto 1fr auto;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.offer-card::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--blue), var(--cyan));
  content: "";
}

.offer-card:hover {
  border-color: rgba(0, 71, 171, 0.42);
  box-shadow:
    0 28px 58px rgba(0, 31, 77, 0.18),
    0 8px 18px rgba(0, 31, 77, 0.08);
  transform: translateY(-5px);
}

.offer-badge {
  border-radius: 999px;
  padding: 8px 11px;
  background: #fff5df;
  color: #a76800;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.offer-card p span {
  margin-inline: 6px;
  color: var(--gold-deep);
}

.offer-arrow {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 71, 171, 0.22);
  color: var(--white);
}

.confidentiality {
  margin: 3px 8px 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

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

.news-heading {
  align-items: end;
}

.news-heading .text-link {
  justify-self: end;
  margin-bottom: 7px;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.news-card:hover {
  box-shadow: 0 20px 45px rgba(0, 31, 77, 0.1);
  transform: translateY(-5px);
}

.news-visual {
  position: relative;
  display: flex;
  height: 190px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: rgba(255, 255, 255, 0.92);
}

.news-visual.has-image::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 44, 77, 0.66));
}

.news-visual.has-image::after {
  display: none;
}

.news-visual.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-visual.has-image img {
  transform: scale(1.045);
}

.news-visual::before,
.news-visual::after {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.news-visual::before {
  top: -80px;
  left: -50px;
}

.news-visual::after {
  right: -40px;
  bottom: -100px;
}

.news-visual > span {
  position: relative;
  z-index: 2;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.news-visual .spark {
  position: absolute;
  z-index: 2;
  top: 27px;
  right: 30px;
  width: 29px;
  height: 29px;
  color: var(--gold);
}

.visual-2 {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.visual-3 {
  background: linear-gradient(135deg, #e2a83c, var(--gold));
  color: var(--blue-dark);
}

.visual-3::before,
.visual-3::after {
  border-color: rgba(0, 31, 77, 0.18);
}

.visual-3 .spark {
  color: var(--blue);
}

.news-content {
  padding: 25px;
}

.news-content > span {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-content h3 {
  margin: 13px 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.news-content p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.67;
}

.final-cta {
  padding-block: 82px;
  background:
    radial-gradient(circle at 86% 10%, rgba(29, 111, 232, 0.38), transparent 27%),
    var(--blue-dark);
  color: var(--white);
}

.dossier-panel {
  display: grid;
  align-items: start;
  gap: 30px 36px;
  grid-template-columns: auto 1.05fr 1.3fr;
}

.cta-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-7deg);
}

.cta-mark span {
  color: var(--gold);
  font-size: 2.55rem;
  font-weight: 900;
  transform: rotate(7deg);
}

.final-cta .kicker {
  margin-bottom: 10px;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.dossier-intro {
  max-width: 530px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.dossier-steps {
  display: grid;
  gap: 10px;
}

.dossier-steps > div {
  display: grid;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: auto 1fr;
}

.dossier-steps > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
}

.dossier-steps p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.dossier-steps strong {
  color: var(--white);
  font-size: 0.86rem;
}

.dossier-action {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 2 / -1;
}

.dossier-action > span {
  align-self: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.site-footer {
  padding-block: 72px 28px;
  background: #001f4d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.65fr repeat(3, 1fr);
}

.footer-brand img {
  width: 170px;
  height: 76px;
  padding: 8px;
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  max-width: 310px;
  margin: 20px 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 4px 0 18px;
  color: var(--white);
  font-size: 0.81rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 54px;
  padding-top: 24px;
  font-size: 0.68rem;
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 46px;
    height: 46px;
    align-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    padding: 0 13px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    height: 2px;
    border-radius: 999px;
    background: var(--blue-dark);
  }

  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 48px));
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 750;
  }

  .mobile-menu nav a:last-child {
    background: var(--blue);
    color: var(--white);
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: 1fr 0.82fr;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-photo {
    min-height: 500px;
  }

  .main-card {
    right: 24px;
    left: 24px;
  }

  .success-card {
    right: -12px;
  }

  .place-card {
    left: -12px;
  }

  .results-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }

  .result-note {
    display: none;
  }

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

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

  .showcase-copy {
    padding: 40px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .offers-layout {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar a {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand,
  .brand img {
    width: 132px;
  }

  .brand img {
    height: 54px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 58px 72px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 10px;
  }

  .hero-photo {
    min-height: 560px;
    border-radius: 28px 68px 28px 68px;
  }

  .main-card {
    top: 86px;
  }

  .success-card {
    right: 8px;
  }

  .place-card {
    left: 8px;
  }

  .results-grid {
    min-height: auto;
    gap: 24px 12px;
    grid-template-columns: repeat(3, 1fr);
    padding-block: 34px;
  }

  .result-intro {
    justify-content: center;
    grid-column: 1 / -1;
    text-align: center;
  }

  .result-intro p {
    max-width: none;
  }

  .result {
    align-items: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .result strong {
    font-size: 1.65rem;
  }

  .section,
  .support-section {
    padding-block: 82px;
  }

  .section-heading,
  .support-heading {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p {
    max-width: 530px;
  }

  .support-heading .kicker {
    grid-column: auto;
    margin-bottom: -5px;
  }

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

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

  .showcase-copy {
    padding: 38px 30px;
  }

  .showcase-image {
    min-height: 390px;
  }

  .showcase-image::before {
    background: linear-gradient(180deg, var(--blue-dark), transparent 32%);
  }

  .formation-card {
    min-height: 350px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .step {
    min-height: 330px;
    padding: 24px;
  }

  .offers-layout {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .offers-copy {
    position: static;
  }

  .offer-card {
    gap: 13px;
    grid-template-columns: 1fr auto;
  }

  .offer-badge {
    justify-self: start;
    grid-column: 1 / -1;
  }

  .news-heading .text-link {
    justify-self: start;
  }

  .dossier-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .dossier-action {
    align-items: flex-start;
    flex-direction: column;
    grid-column: auto;
  }

  .cta-mark {
    width: 64px;
    height: 64px;
  }

  .final-cta .button {
    justify-self: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .eyebrow {
    font-size: 0.63rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero h1 span::after {
    height: 7px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-photo {
    min-height: 520px;
  }

  .main-card {
    top: 76px;
    right: 12px;
    left: 12px;
    padding: 24px;
  }

  .main-card h2 {
    font-size: 1.5rem;
  }

  .success-card,
  .place-card {
    right: 5px;
    left: 5px;
  }

  .success-card {
    bottom: 62px;
  }

  .place-card {
    bottom: -9px;
  }

  .hero-photo .success-card {
    top: 16px;
    right: 14px;
    left: auto;
  }

  .hero-photo-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .result strong {
    font-size: 1.42rem;
  }

  .result span {
    font-size: 0.62rem;
  }

  .section-heading h2,
  .support-heading h2,
  .offers-copy h2 {
    font-size: 2.2rem;
  }

  .offer-card {
    padding: 20px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Intégration WordPress */
body.admin-bar .site-header {
  top: 32px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  border-radius: 6px;
  padding: 12px 16px;
  background: #fff;
  color: #001f4d;
  font-weight: 800;
}

.custom-logo-link {
  display: block;
}

.brand .custom-logo {
  width: 162px;
  height: 66px;
  object-fit: contain;
}

.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav li {
  margin: 0;
}

.mobile-menu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-shell {
  width: min(880px, calc(100% - 48px));
  min-height: 55vh;
  margin-inline: auto;
  padding-block: 86px;
}

.entry-header {
  margin-bottom: 36px;
}

.entry-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.entry-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.entry-content {
  color: #365267;
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.entry-content h2 {
  margin-top: 2em;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.entry-content h3 {
  margin-top: 1.7em;
  font-size: 1.45rem;
}

.entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 71, 171, 0.3);
  text-underline-offset: 3px;
}

.entry-content img,
.entry-content .wp-block-image {
  border-radius: 20px;
}

.entry-content .alignwide {
  width: min(1100px, calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 2em 0;
  padding: 8px 0 8px 24px;
  color: var(--blue-dark);
  font-size: 1.16rem;
  font-weight: 700;
}

.archive-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.archive-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.archive-card:hover {
  box-shadow: 0 16px 38px rgba(0, 31, 77, 0.1);
  transform: translateY(-3px);
}

.archive-card h2 {
  margin: 0 0 9px;
  font-size: 1.35rem;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pagination {
  margin-top: 38px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding-inline: 10px;
  color: var(--blue);
  font-weight: 800;
}

.pagination .current {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(0, 31, 77, 0.08);
}

/* Mise en page des contenus Tremplin 84 */
.managed-formations .t84sm-formations-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.managed-formations .t84sm-formation-card {
  overflow: hidden;
  border: 1px solid rgba(0, 71, 171, 0.16);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow:
    0 16px 34px rgba(0, 31, 77, 0.1),
    0 3px 8px rgba(0, 31, 77, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.managed-formations .t84sm-formation-card:hover {
  box-shadow:
    0 30px 58px rgba(0, 31, 77, 0.18),
    0 7px 16px rgba(0, 31, 77, 0.1);
  transform: translateY(-8px);
}

.managed-formations .t84sm-formation-image {
  min-height: 150px;
}

.managed-formations .t84sm-formation-body {
  min-height: 290px;
  padding: 24px 25px 26px;
}

.managed-formations .t84sm-level-bac .t84sm-formation-body {
  border-top-color: #13896f;
}

.managed-formations .t84sm-level-bac-2 .t84sm-formation-body {
  border-top-color: var(--blue);
}

.managed-formations .t84sm-level-bachelor .t84sm-formation-body {
  border-top-color: #d44b49;
}

.managed-formations .t84sm-level-mastere .t84sm-formation-body {
  border-top-color: #bd3943;
}

.home-managed-jobs .t84sm-jobs-section {
  padding-block: 112px;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 71, 171, 0.1), transparent 24%),
    var(--mist);
}

.home-managed-jobs .t84sm-job-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 71, 171, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(125deg, rgba(0, 71, 171, 0.06), transparent 42%),
    #fff;
  box-shadow:
    0 20px 46px rgba(0, 31, 77, 0.14),
    0 5px 12px rgba(0, 31, 77, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-managed-jobs .t84sm-job-card::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--blue), var(--cyan));
  content: "";
}

.home-managed-jobs .t84sm-job-card:hover {
  box-shadow:
    0 30px 62px rgba(0, 31, 77, 0.2),
    0 8px 18px rgba(0, 31, 77, 0.08);
  transform: translateY(-6px);
}

.home-managed-news .t84sm-news-section {
  padding-block: 112px;
  background: #fff;
}

.home-managed-news .t84sm-news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(0, 31, 77, 0.08);
}

.home-managed-news .t84sm-news-image {
  min-height: 220px;
}

.t84-managed-page .entry-shell,
.t84i-page .entry-shell {
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 0;
}

.t84-managed-page .entry-header,
.t84i-page .entry-header {
  display: none;
}

.t84-managed-page .entry-content,
.t84i-page .entry-content {
  font-size: inherit;
  line-height: inherit;
}

.t84-managed-page .entry-content > :is(
  .t84sm-home,
  .t84sm-formation-page,
  .t84sm-catalog,
  .t84sm-team-page,
  .t84sm-jobs-section,
  .t84sm-contact-page,
  .t84sm-pathway,
  .t84sm-company-page,
  .t84i-wrap
) {
  margin-right: auto;
  margin-left: auto;
}

.t84-pathway-page .entry-content > .t84sm-pathway {
  margin: 0;
}

.t84-company-page .entry-content > .t84sm-company-page {
  margin: 0;
}

@media (max-width: 1024px) {
  .managed-formations .t84sm-formations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .managed-formations .t84sm-formations-grid {
    grid-template-columns: 1fr;
  }

  .home-managed-jobs .t84sm-jobs-section,
  .home-managed-news .t84sm-news-section {
    padding-block: 82px;
  }
}

@media (max-width: 760px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .entry-shell {
    width: min(100% - 32px, 620px);
    padding-block: 64px;
  }

  .t84-managed-page .entry-shell,
  .t84i-page .entry-shell {
    width: 100%;
    padding-block: 0;
  }
}

/* Titres lisibles sur les fonds bleu roi et bleu profond */
.formation-showcase .showcase-copy h3,
.support-section .support-heading h2,
.final-cta h2,
.site-footer .footer-grid h2 {
  color: var(--gold) !important;
}

.support-section .step h3 {
  color: var(--white) !important;
}
