:root {
  --text: rgba(20, 20, 22, .92);
  --muted: rgba(20, 20, 22, .55);
  --glass: rgba(255, 255, 255, .55);
  --glass-strong: rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .35);
  --shadow: 0 18px 50px rgba(0, 0, 0, .08);

  /* Nouvelles couleurs premium */
  --primary: #e63946;
  --primary-glow: rgba(230, 57, 70, 0.4);
  --accent: #ff6b7a;
  --accent-soft: rgba(255, 107, 122, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial;

  background: #ffffff;
  position: relative;
  overflow-x: hidden;
}

/* ===== Google Font Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===== ANIMATED GRADIENT MESH BACKGROUND ===== */
.gradient-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.gradient-mesh::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(230, 57, 70, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255, 107, 122, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 30% 60%, rgba(255, 182, 193, 0.15) 0%, transparent 50%);
  animation: meshMove 25s ease-in-out infinite;
}

@keyframes meshMove {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(2%, 3%) rotate(1deg);
  }

  50% {
    transform: translate(-1%, 2%) rotate(-1deg);
  }

  75% {
    transform: translate(3%, -2%) rotate(0.5deg);
  }
}

/* ===== MORPHING BLOBS ===== */
.blob-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: blobMorph 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.3) 0%, rgba(255, 107, 122, 0.1) 100%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(225deg, rgba(255, 182, 193, 0.25) 0%, rgba(230, 57, 70, 0.1) 100%);
  bottom: 10%;
  right: -5%;
  animation-delay: -7s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, rgba(255, 107, 122, 0.2) 0%, rgba(255, 182, 193, 0.1) 100%);
  bottom: 30%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0, 0) scale(1);
  }

  25% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    transform: translate(20px, -30px) scale(1.05);
  }

  50% {
    border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
    transform: translate(-10px, 20px) scale(0.95);
  }

  75% {
    border-radius: 30% 70% 60% 40% / 60% 30% 70% 40%;
    transform: translate(15px, 10px) scale(1.02);
  }
}

/* ===== ENTRANCE ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.3));
}

.topbar__nav {
  display: flex;
  gap: 54px;
  align-items: center;
}

.navlink {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-decoration: none;
  color: rgba(20, 20, 22, .65);
  text-transform: uppercase;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.navlink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navlink:hover {
  color: var(--primary);
}

.navlink:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===== Layout ===== */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.page {
  padding: 64px 0 90px;
}

.page__title {
  font-size: 42px;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.page__sub {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

/* ===== Glass blocks ===== */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .6);
  border-radius: 22px;
}

/* ===== HOME (Hero) ===== */
.hero {
  min-height: 330vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 84px;
  position: relative;
}

.hero__glass {
  padding: 28px 36px;
  position: relative;
  z-index: 1;
  transform: translateY(-1050px);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 0 80px rgba(230, 57, 70, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg,
      rgba(20, 20, 22, 0.9) 0%,
      rgba(20, 20, 22, 0.75) 50%,
      var(--primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

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

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

/* Bulles rouges verre */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.bubble {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 70% 75%, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #e63946 0%, #ff6b7a 50%, #e63946 100%);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 18px 60px rgba(255, 0, 60, .18),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  filter: saturate(1.1);
  opacity: .95;
}

.b1 {
  left: 8%;
  top: 12%;
  width: 92px;
  height: 92px;
}

.b2 {
  left: 18%;
  top: 45%;
  width: 150px;
  height: 150px;
}

.b3 {
  right: 12%;
  top: 15%;
  width: 115px;
  height: 115px;
}

.b4 {
  right: 18%;
  top: 52%;
  width: 82px;
  height: 82px;
  opacity: .85;
}

.b5 {
  left: 48%;
  top: 65%;
  width: 66px;
  height: 66px;
  opacity: .75;
}

/* Réseaux (discret) */
.hero__footer {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.miniCard {
  width: min(860px, 92vw);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 0 60px rgba(230, 57, 70, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.miniCard:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 0 80px rgba(230, 57, 70, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.miniCard__icon {
  width: 54px;
  height: auto;
  transition: transform 0.3s ease;
}

.miniCard:hover .miniCard__icon {
  transform: scale(1.1) rotate(-3deg);
}

.miniCard__title {
  font-weight: 650;
  letter-spacing: -.01em;
}

.miniCard__sub {
  font-size: 13px;
  color: rgba(20, 20, 22, .55);
  margin-top: 2px;
}

.miniCard__actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(20, 20, 22, .85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 999px;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.2);
  color: white;
}

.pill:hover::before {
  opacity: 1;
}

.pill__icon {
  width: 20px;
  height: auto;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}

.pill span,
.pill {
  position: relative;
  z-index: 1;
}

.pill:hover .pill__icon {
  filter: brightness(10);
}

/* ===== Cards / grids ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  text-decoration: none;
  color: rgba(20, 20, 22, .9);
}

.card__icon {
  width: 62px;
  height: auto;
}

.card__title {
  font-weight: 650;
}

.card__meta {
  font-size: 13px;
  color: rgba(20, 20, 22, .55);
  margin-top: 4px;
}

/* ===== Post page ===== */
.postWrap {
  margin-top: 24px;
  padding: 26px;
}

.postHeader {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.postHeader__img {
  width: 96px;
  height: auto;
}

.postContent {
  margin-top: 18px;
  color: rgba(20, 20, 22, .82);
  line-height: 1.65;
}

/* ===== Admin ===== */
.adminWrap {
  margin-top: 24px;
  padding: 22px;
}

.row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(20, 20, 22, .55);
}

input,
textarea,
select {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  outline: none;
  font-size: 14px;
  background: rgba(255, 255, 255, .78);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.btn {
  border: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 0, 60, .16);
  color: rgba(20, 20, 22, .92);
  font-weight: 650;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(0.98);
}

.btnSecondary {
  background: rgba(0, 0, 0, .06);
}

.table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.table th,
.table td {
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 14px;
}

.table th {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(20, 20, 22, .55);
}

.small {
  font-size: 13px;
  color: rgba(20, 20, 22, .55);
}

.footerSpace {
  height: 50px;
}

@keyframes floatVar {
  0% {
    --float: 0px;
  }

  50% {
    --float: -14px;
  }

  100% {
    --float: 0px;
  }
}

/* Important : on anime une variable, pas transform */
.bubble {
  animation: floatVar 7s ease-in-out infinite;
}

/* vitesses différentes */
.b2 {
  animation-duration: 8.5s;
}

.b3 {
  animation-duration: 10s;
}

.b4 {
  animation-duration: 11s;
}

.b5 {
  animation-duration: 9s;
}

/* On combine scroll + float */
.bubble {
  transform: translate3d(0, calc(var(--y, 0px) + var(--float, 0px)), 0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .035), transparent 55%);
  opacity: .18;
  mix-blend-mode: soft-light;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(2200px 1200px at 22% 12%, rgba(170, 0, 40, .22) 0%, rgba(170, 0, 40, .10) 48%, rgba(170, 0, 40, 0) 88%),
    radial-gradient(2000px 1200px at 82% 18%, rgba(220, 0, 60, .16) 0%, rgba(220, 0, 60, .07) 52%, rgba(220, 0, 60, 0) 90%),
    radial-gradient(2200px 1400px at 52% 92%, rgba(170, 0, 40, .12) 0%, rgba(170, 0, 40, .05) 55%, rgba(170, 0, 40, 0) 92%),
    #ffffff;
}

/* ===== BULLE LOGO PHYSIO FIT ===== */
.bubble-logo {
  width: 100px;
  height: 100px;
  left: 38%;
  top: 5%;
  border-radius: 999px;

  /* Le logo EST la bulle */
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 70% 75%, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0) 55%),
    url("../images/logo.png") center / 68% no-repeat;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .6);

  opacity: .95;
}

.bubble-logo {
  animation: floatLogo 5.5s ease-in-out infinite;
}

@keyframes floatLogo {
  0% {
    --float: 0px;
  }

  50% {
    --float: 2px;
  }

  /* inverse des autres */
  100% {
    --float: -40px;
  }
}

/* ============================================
   FORMATION INITIALE PAGE STYLES
   ============================================ */

/* Navigation active state */
.navlink--active {
  color: var(--primary);
}

.navlink--active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Text gradient utility */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Formation Page Layout ===== */
.formation-page {
  padding-top: 84px;
}

/* ===== Hero Section ===== */
.formation-hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 60px;
  flex-wrap: wrap;
}

.formation-hero__content {
  max-width: 560px;
  animation: fadeInUp 0.8s ease-out;
}

.formation-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
}

.formation-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
}

.formation-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
}

/* CTA Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.4);
}

.btn-cta--large {
  padding: 20px 36px;
  font-size: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Hero Visual Cards */
.formation-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-card__icon {
  font-size: 32px;
}

.hero-card__text {
  display: flex;
  flex-direction: column;
}

.hero-card__text strong {
  font-size: 18px;
  font-weight: 650;
}

.hero-card__text span {
  font-size: 14px;
  color: var(--muted);
}

/* ===== Sections Common Styles ===== */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 48px;
}

/* ===== Features Section ===== */
.formation-features {
  padding: 80px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 650;
  margin: 0 0 10px;
}

.feature-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ===== Pricing Section ===== */
.formation-pricing {
  padding: 80px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(230, 57, 70, 0.03) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-card {
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.75);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing-card__header {
  margin-bottom: 20px;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.pricing-card__price {
  margin-bottom: 4px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 18px;
  color: var(--muted);
}

.pricing-card__duration {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

.pricing-card__saving {
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
  margin: 0 0 20px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__btn {
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-card__btn {
  width: 100%;
  justify-content: center;
}

.pricing-card__total {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Guarantee Box */
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

.pricing-guarantee__icon {
  font-size: 36px;
  flex-shrink: 0;
}

.pricing-guarantee__content h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 650;
}

.pricing-guarantee__content p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ===== FAQ Section ===== */
.formation-faq {
  padding: 80px 20px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item__question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

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

.faq-item__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== CTA Section ===== */
.formation-cta {
  padding: 80px 20px;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}

.cta-box__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin: 0 0 12px;
}

.cta-box__text {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--text);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .formation-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .formation-hero__visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-card {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

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

  .pricing-card--featured {
    order: -1;
  }

  .pricing-guarantee {
    flex-direction: column;
    text-align: center;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   AUTH PAGES STYLES
   ============================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 40px;
}

.auth-container {
  width: 100%;
  max-width: 480px;
}

.auth-card {
  padding: 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.plan-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--accent-soft);
  border-radius: 12px;
  margin-bottom: 24px;
}

.plan-summary__icon {
  font-size: 28px;
}

.plan-summary__content {
  display: flex;
  flex-direction: column;
}

.plan-summary__name {
  font-weight: 600;
  font-size: 15px;
}

.plan-summary__price {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.form-group input {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.error-message {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  color: #dc2626;
  font-size: 14px;
}

.btn-cta--full {
  width: 100%;
  justify-content: center;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-secure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   MEMBER PAGES STYLES
   ============================================ */

.member-page {
  padding: 120px 20px 60px;
}

.member-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.member-welcome__greeting {
  font-size: 16px;
  color: var(--muted);
}

.member-welcome__name {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 8px 0 0;
}

.member-welcome__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.progress-ring {
  position: relative;
  width: 70px;
  height: 70px;
}

.progress-ring svg {
  transform: rotate(-90deg);
}

.progress-ring__bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 6;
}

.progress-ring__fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s ease;
}

.progress-ring__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
}

.progress-info {
  display: flex;
  flex-direction: column;
}

.progress-info__label {
  font-size: 14px;
  color: var(--muted);
}

.progress-info__count {
  font-size: 16px;
  font-weight: 600;
}

/* Action Cards */
.member-actions {
  margin-bottom: 40px;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.action-card--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.action-card__icon {
  font-size: 36px;
}

.action-card__content {
  flex: 1;
}

.action-card__content h3 {
  font-size: 18px;
  font-weight: 650;
  margin: 0 0 4px;
}

.action-card__content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

/* Modules Grid */
.member-modules {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.section-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.module-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.module-card__thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-soft);
  position: relative;
}

.module-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #22c55e;
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.module-card__content {
  padding: 16px;
}

.module-card__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.module-card__duration {
  font-size: 13px;
  color: var(--muted);
}

.module-card__progress {
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
}

.module-card__progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}

/* Skeleton loaders */
.module-skeleton {
  padding: 16px;
}

.skeleton-img {
  height: 120px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
}

.skeleton-text {
  height: 20px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  width: 70%;
}

/* Account Section */
.account-card {
  padding: 24px;
}

.account-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.account-label {
  font-size: 14px;
  color: var(--muted);
}

.account-value {
  font-size: 14px;
  font-weight: 500;
}

.account-value--success {
  color: #22c55e;
}

.account-value--badge {
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}

/* Navlink Button */
.navlink--btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   FORMATION CONTENT PAGES STYLES
   ============================================ */

.formation-content-page {
  padding: 120px 20px 60px;
}

.formation-header {
  margin-bottom: 40px;
}

.back-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--primary);
}

.formation-header__title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 8px;
}

.formation-header__subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
}

.overall-progress {
  padding: 20px 24px;
}

.overall-progress__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.overall-progress__info span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.overall-progress__bar {
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.overall-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* Modules List */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.module-item--completed {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.module-item__number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  flex-shrink: 0;
}

.module-item--completed .module-item__number {
  background: #22c55e;
  color: white;
}

.module-item__content {
  flex: 1;
  min-width: 0;
}

.module-item__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}

.module-item__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.module-item__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.completed-badge {
  color: #22c55e;
  font-weight: 500;
}

.module-item__arrow {
  color: var(--muted);
  transition: transform 0.2s ease;
}

.module-item:hover .module-item__arrow {
  transform: translateX(4px);
}

/* Module skeleton */
.module-item-skeleton {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}

.skeleton-number {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.skeleton-content {
  flex: 1;
}

.skeleton-title {
  height: 20px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  margin-bottom: 8px;
  width: 60%;
}

.skeleton-desc {
  height: 16px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  width: 40%;
}

/* ============================================
   MODULE VIDEO PAGE STYLES
   ============================================ */

.module-page {
  padding: 120px 20px 60px;
}

.module-nav {
  margin-bottom: 24px;
}

.module-content {
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  margin-bottom: 24px;
  overflow: hidden;
}

.video-container video,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
}

.video-placeholder__icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.video-placeholder p {
  color: var(--muted);
  margin: 0;
}

.module-info {
  margin-bottom: 32px;
}

.module-info__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 12px;
}

.module-info__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}

.module-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.completed-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
}

.module-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav-btn--next {
  margin-left: auto;
}

.nav-btn--highlighted {
  background: var(--accent-soft);
  color: var(--primary);
}

.nav-btn--highlighted:hover {
  background: var(--primary);
  color: white;
}

/* No access message */
.no-access,
.no-modules {
  padding: 40px;
  text-align: center;
}

.no-access p,
.no-modules p {
  margin: 0 0 20px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .member-welcome {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .module-navigation {
    flex-direction: column;
  }

  .nav-btn--next {
    margin-left: 0;
  }
}

/* ===== FORMATION CONTINUE ===== */

/* Landing State */
.formation-continue-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 84px;
  position: relative;
}

.fc-hero {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-hero__bgWord {
  position: absolute;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(230, 57, 70, 0.08);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  top: -120px;
}

.fc-hero__glass {
  padding: 28px 36px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 0 80px rgba(230, 57, 70, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: fadeInScale 0.8s ease-out;
}

.fc-hero__title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg,
      rgba(20, 20, 22, 0.9) 0%,
      rgba(20, 20, 22, 0.75) 50%,
      var(--primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease-in-out infinite;
}

/* Split Navigation */
.split-navigation {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: min(900px, 90vw);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.split-nav-item {
  flex: 1;
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.split-nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.split-nav-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(230, 57, 70, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--primary);
}

.split-nav-item:hover::before {
  opacity: 0.08;
}

.split-nav-icon {
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.split-nav-item:hover .split-nav-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(230, 57, 70, 0.3));
}

.split-nav-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: rgba(20, 20, 22, 0.9);
  position: relative;
  z-index: 1;
}

.split-nav-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.split-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.split-nav-item:hover .split-nav-cta {
  background: var(--primary);
  color: white;
  transform: translateX(4px);
}

/* Section Header */
.section-header {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg,
      rgba(20, 20, 22, 0.9) 0%,
      var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* E-learning Section */
.elearning-section {
  min-height: 100vh;
  padding: 120px 0 60px;
}

.content-rows {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.content-row {
  animation: fadeInUp 0.6s ease-out;
}

.content-row:nth-child(2) {
  animation-delay: 0.1s;
}

.content-row:nth-child(3) {
  animation-delay: 0.2s;
}

.content-row__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: rgba(20, 20, 22, 0.9);
}

.content-row__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

/* Custom scrollbar */
.content-row__scroll::-webkit-scrollbar {
  height: 8px;
}

.content-row__scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.content-row__scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.content-row__scroll::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Content Cards */
.content-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(230, 57, 70, 0.2),
    0 0 40px rgba(230, 57, 70, 0.1);
  border-color: var(--primary);
}

.content-card__thumbnail {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #e63946 0%, #ff6b7a 100%);
  position: relative;
  overflow: hidden;
}

.content-card__thumbnail::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 48px;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
}

.content-card:hover .content-card__thumbnail::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}

.content-card__info {
  padding: 18px;
}

.content-card__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: rgba(20, 20, 22, 0.9);
  line-height: 1.3;
}

.content-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.progress-badge {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
}

.progress-badge.completed {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

/* Presential Section */
.presential-section {
  min-height: 100vh;
  padding: 120px 0 60px;
}

/* Presential Layout - Side by Side */
.presential-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

/* Formation Details (Left Side) */
.formation-details {
  position: sticky;
  top: 120px;
}

.formation-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px dashed rgba(230, 57, 70, 0.3);
  border-radius: 20px;
  text-align: center;
  min-height: 400px;
}

.formation-placeholder svg {
  color: rgba(230, 57, 70, 0.4);
  margin-bottom: 20px;
}

.formation-placeholder p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 300px;
}

/* Formation Card */
.formation-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.formation-poster {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.formation-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: rgba(20, 20, 22, 0.9);
}

.formation-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--muted);
}

.formation-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 20, 22, 0.8);
  margin: 0 0 24px;
}

.formation-register-btn {
  width: 100%;
  padding: 16px;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.formation-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

/* France Map Container (Right Side) */
.france-map-container {
  position: relative;
  animation: fadeInScale 0.8s ease-out;
}

.france-map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(230, 57, 70, 0.15));
}

.map-outline {
  transition: all 0.3s ease;
}

.map-outline:hover {
  stroke: #ff6b7a;
  stroke-width: 3;
}

/* SVG Map Markers */
.map-marker-svg {
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-marker-svg:hover {
  transform: scale(1.15);
}

.marker-pulse-svg {
  animation: markerPulseSVG 2s ease-in-out infinite;
}

@keyframes markerPulseSVG {

  0%,
  100% {
    opacity: 0.3;
    r: 0;
  }

  50% {
    opacity: 0.6;
    r: 15;
  }
}

.map-marker-svg:hover .marker-pulse-svg {
  animation: none;
  opacity: 0.5;
  r: 12;
}

.marker-label-svg {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.map-marker-svg:hover .marker-label-svg {
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
}

/* D3.js Marker Pulse Animation */
.marker-pulse-d3 {
  animation: markerPulseD3 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes markerPulseD3 {

  0%,
  100% {
    opacity: 0;
    r: 0;
  }

  50% {
    opacity: 0.4;
    r: 20;
  }
}

/* Poster Modal */
.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.poster-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.poster-modal__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  display: flex;
  gap: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

.poster-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 24px;
  color: rgba(20, 20, 22, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.poster-modal__close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.poster-modal__poster {
  flex: 0 0 300px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.poster-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e63946 0%, #ff6b7a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.poster-placeholder__icon {
  font-size: 80px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.poster-placeholder__text {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

.poster-modal__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.poster-modal__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: rgba(20, 20, 22, 0.9);
  line-height: 1.2;
}

.poster-modal__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
}

.poster-modal__description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(20, 20, 22, 0.8);
  margin: 0 0 auto;
}

.poster-modal__register {
  margin-top: 30px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.poster-modal__register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .split-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .split-nav-divider {
    width: 120px;
    height: 2px;
    transform: rotate(0deg);
  }

  .content-card {
    flex: 0 0 240px;
  }

  .poster-modal__content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .poster-modal__poster {
    flex: 0 0 auto;
    height: 400px;
  }

  .section-title {
    font-size: 32px;
  }

  .fc-hero__title {
    font-size: 24px;
  }
}
/* ===== Full Pack Banner (Enhanced) ===== */
.fullpack-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 2rem 3rem;
    border-radius: 24px;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

.fullpack-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.fullpack-banner__content {
    position: relative;
    z-index: 1;
}

.fullpack-banner__content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.fullpack-banner__content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.fullpack-banner__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    margin-right: 2rem;
    position: relative;
    z-index: 1;
}

.fullpack-banner__price-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.fullpack-banner__price-label {
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.fullpack-banner__btn {
    background: white;
    color: #059669;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    animation: pulseBtn 2s infinite;
}

.fullpack-banner__btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 768px) {
    .fullpack-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .fullpack-banner__price {
        align-items: center;
        margin: 0;
    }
}
