    /* EMERGENCY COLOR FIX */
    html,
    body {
      background: #0f2318 !important;
      color: #f5f0e8 !important;
      min-height: 100vh;
    }

    .site-section {
      background: #0f2318;
      min-height: 100vh;
    }

    #section-pub,
    #section-ins {
      background: #0f2318;
    }

    /* Ensure sections with light text stay readable */
    .module-content p,
    .cal-meta,
    .card-sub,
    .pc-desc,
    .quinze-content p,
    .chine-desc,
    .formateur-bio,
    .balance-header p,
    .plat-desc,
    .nl-top p {
      color: rgba(245, 240, 232, 0.68) !important;
    }

    .module-content h4,
    .cal-title,
    .pc-name,
    .card-title,
    .section-title,
    .chine-title,
    .formateur-name {
      color: #fefdfb !important;
    }



    :root {
      --dark: #0f2318;
      --green: #1a4d2e;
      --mid: #2c7a4b;
      --light: #4caf74;
      --gold: #c4943a;
      --gold2: #e8b84b;
      --red: #c0392b;
      --cream: #f5f0e8;
      --white: #fefdfb;
      --slate: #4a6274;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: .4;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(196, 148, 58, .4);
      }

      50% {
        box-shadow: 0 0 0 14px rgba(196, 148, 58, 0);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-9px);
      }
    }

    @keyframes rotateSlow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes lineGrow {
      from {
        width: 0;
      }

      to {
        width: 80px;
      }
    }

    @keyframes chinaPulse {

      0%,
      100% {
        box-shadow: 0 0 30px rgba(192, 57, 43, .15);
      }

      50% {
        box-shadow: 0 0 60px rgba(192, 57, 43, .4);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    section {
      position: relative;
      z-index: 1;
      padding: 88px 24px;
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-tag {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .section-title em {
      color: var(--gold);
      font-style: italic;
    }

    .divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 18px 0 36px;
    }

    .divider.center {
      margin-left: auto;
      margin-right: auto;
    }

    .btn {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 2px;
      padding: 15px 36px;
      border-radius: 4px;
      text-decoration: none;
      cursor: pointer;
      transition: all .3s;
      border: none;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--dark);
      box-shadow: 0 8px 28px rgba(196, 148, 58, .35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(196, 148, 58, .5);
    }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(245, 240, 232, .3);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .btn-china {
      background: linear-gradient(135deg, #8b1a1a, #c0392b);
      color: #fff;
      box-shadow: 0 8px 28px rgba(192, 57, 43, .4);
    }

    .btn-china:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(192, 57, 43, .6);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 70px 24px 90px;
      overflow: hidden;
      position: relative;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 80% 60% at 50% 25%, rgba(44, 122, 75, .18) 0%, transparent 70%), radial-gradient(ellipse 45% 40% at 85% 70%, rgba(196, 148, 58, .12) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(26, 77, 46, .22) 0%, transparent 60%);
    }

    .hero-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 620px;
      height: 620px;
      border-radius: 50%;
      border: 1px solid rgba(196, 148, 58, .1);
      pointer-events: none;
    }

    .hero-ring::before {
      content: '';
      position: absolute;
      inset: 36px;
      border-radius: 50%;
      border: 1px solid rgba(196, 148, 58, .06);
    }

    .hero-badge {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      border: 1px solid rgba(196, 148, 58, .4);
      padding: 7px 22px;
      margin-bottom: 26px;
      animation: fadeIn 1s ease both;
      position: relative;
      z-index: 2;
      display: inline-block;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 8vw, 88px);
      font-weight: 700;
      line-height: 1;
      color: var(--white);
      margin-bottom: 8px;
      animation: fadeUp 1s .2s ease both;
      position: relative;
      z-index: 2;
    }

    .hero-title span {
      display: block;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 40%, var(--gold) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite, fadeUp 1s .3s ease both;
    }

    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(16px, 2.5vw, 21px);
      font-style: italic;
      font-weight: 300;
      color: rgba(245, 240, 232, .72);
      margin-bottom: 36px;
      animation: fadeUp 1s .5s ease both;
      position: relative;
      z-index: 2;
    }

    .hero-line {
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 36px;
      animation: lineGrow 1.2s .8s ease forwards;
      position: relative;
      z-index: 2;
    }

    .hero-date {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(26, 77, 46, .5);
      border: 1px solid rgba(196, 148, 58, .3);
      border-radius: 60px;
      padding: 11px 26px;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 44px;
      animation: fadeUp 1s .7s ease both;
      position: relative;
      z-index: 2;
    }

    .dot {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .prices-wrap {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
      animation: fadeUp 1s .9s ease both;
      margin-bottom: 36px;
    }

    .price-card {
      background: rgba(15, 35, 24, .75);
      border: 1px solid rgba(196, 148, 58, .18);
      border-radius: 12px;
      padding: 26px 28px;
      min-width: 200px;
      text-align: center;
      backdrop-filter: blur(12px);
      transition: transform .3s, border-color .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
    }

    .price-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .price-card:hover {
      transform: translateY(-5px);
      border-color: rgba(196, 148, 58, .5);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    }

    .price-card:hover::before {
      opacity: 1;
    }

    .price-card.featured {
      border-color: var(--gold);
      background: rgba(26, 77, 46, .6);
    }

    .price-card.featured::before {
      opacity: 1;
    }

    .price-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .price-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .price-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 50px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }

    .price-amount sup {
      font-size: 22px;
      vertical-align: super;
    }

    .price-desc {
      font-size: 11px;
      color: rgba(245, 240, 232, .5);
      font-style: italic;
    }

    .remise-banner {
      position: relative;
      z-index: 2;
      animation: fadeUp 1s 1.05s ease both;
      margin-bottom: 44px;
    }

    .remise-inner {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: linear-gradient(135deg, rgba(196, 148, 58, .18), rgba(196, 148, 58, .07));
      border: 1px solid rgba(196, 148, 58, .5);
      border-radius: 8px;
      padding: 14px 26px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .remise-badge {
      background: var(--gold);
      color: var(--dark);
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 4px;
      animation: float 3s ease-in-out infinite;
      flex-shrink: 0;
    }

    .remise-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--cream);
      text-align: left;
      line-height: 1.45;
    }

    .remise-text em {
      color: var(--gold);
      font-style: normal;
    }

    .cta-group {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
      animation: fadeUp 1s 1.15s ease both;
    }

    .scroll-hint {
      position: absolute;
      bottom: 26px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: .4;
      animation: fadeIn 2s 2s ease both;
    }

    .scroll-hint span {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: var(--gold);
    }

    .scroll-arrow {
      width: 18px;
      height: 18px;
      border-right: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
      transform: rotate(45deg);
      animation: float 2s ease-in-out infinite;
    }

    /* 20% PERMANENT */
    .section-quinze {
      background: linear-gradient(135deg, rgba(26, 77, 46, .3) 0%, rgba(15, 35, 24, .95) 100%);
      border-top: 1px solid rgba(196, 148, 58, .12);
      border-bottom: 1px solid rgba(196, 148, 58, .12);
      padding: 80px 24px;
    }

    .quinze-wrap {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 60px;
      align-items: center;
    }

    .quinze-badge {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--dark));
      border: 2px solid var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      animation: float 4s ease-in-out infinite;
      box-shadow: 0 0 50px rgba(196, 148, 58, .2);
      margin: 0 auto;
    }

    .quinze-badge .pct {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .quinze-badge .pct-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .7);
      margin-top: 2px;
    }

    .quinze-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .quinze-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .quinze-content p {
      font-size: 15px;
      color: rgba(245, 240, 232, .68);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .quinze-rules {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .quinze-rule {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(15, 35, 24, .6);
      border-left: 3px solid var(--gold);
      border-radius: 0 6px 6px 0;
    }

    .qr-icon {
      font-size: 15px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .qr-text {
      font-size: 14px;
      color: rgba(245, 240, 232, .75);
      line-height: 1.5;
    }

    .qr-text strong {
      color: var(--cream);
    }

    /* PROGRAMME */
    .section-prog {
      background: rgba(26, 77, 46, .07);
      border-top: 1px solid rgba(196, 148, 58, .08);
      border-bottom: 1px solid rgba(196, 148, 58, .08);
    }

    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 18px;
      margin-top: 44px;
    }

    .module-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px 22px;
      background: rgba(15, 35, 24, .55);
      border: 1px solid rgba(196, 148, 58, .1);
      border-radius: 8px;
      transition: border-color .3s, transform .3s;
    }

    .module-card:hover {
      border-color: rgba(196, 148, 58, .35);
      transform: translateX(4px);
    }

    .module-num {
      font-family: 'Cinzel', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--gold);
      opacity: .5;
      line-height: 1;
      flex-shrink: 0;
      min-width: 38px;
    }

    .module-content h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }

    .module-content p {
      font-size: 12px;
      color: rgba(245, 240, 232, .5);
      line-height: 1.5;
    }

    /* STAGE CHINE */
    .section-chine {
      background: linear-gradient(180deg, rgba(120, 20, 20, .18) 0%, rgba(15, 35, 24, .98) 100%);
      border-top: 1px solid rgba(192, 57, 43, .25);
      border-bottom: 1px solid rgba(192, 57, 43, .25);
      position: relative;
      overflow: hidden;
    }

    .section-chine::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(192, 57, 43, .12) 0%, transparent 70%);
    }

    .chine-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .chine-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
    }

    .chine-badge-outer {
      position: relative;
      width: 230px;
      height: 230px;
      flex-shrink: 0;
    }

    .chine-ring-outer {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px dashed rgba(192, 57, 43, .3);
      animation: rotateSlow 25s linear infinite;
    }

    .chine-ring-outer::after {
      content: '✦';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      color: #c0392b;
      font-size: 14px;
    }

    .chine-badge {
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1a0808, #2d0f0f 50%, #1a0808);
      border: 2px solid rgba(192, 57, 43, .7);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation: chinaPulse 3s ease-in-out infinite;
    }

    .chine-char {
      font-size: 52px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .chine-badge-label {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      color: rgba(192, 57, 43, .9);
    }

    .chine-infos {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 310px;
    }

    .chine-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      background: rgba(120, 20, 20, .2);
      border: 1px solid rgba(192, 57, 43, .18);
      border-radius: 6px;
    }

    .chine-info-icon {
      font-size: 17px;
      flex-shrink: 0;
    }

    .chine-info-text {
      font-size: 13px;
      color: rgba(245, 240, 232, .72);
    }

    .chine-info-text strong {
      color: var(--cream);
    }

    .chine-content .section-tag {
      color: rgba(192, 57, 43, .9);
    }

    .chine-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .chine-title em {
      color: #e74c3c;
      font-style: italic;
    }

    .chine-price-block {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 18px 0;
    }

    .chine-price-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 62px;
      font-weight: 700;
      color: #e74c3c;
      line-height: 1;
    }

    .chine-price-sup {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: #e74c3c;
    }

    .chine-price-sub {
      font-size: 13px;
      color: rgba(245, 240, 232, .4);
    }

    .chine-desc {
      font-size: 15px;
      color: rgba(245, 240, 232, .68);
      line-height: 1.8;
      margin-bottom: 22px;
    }

    .chine-conditions {
      background: rgba(192, 57, 43, .1);
      border: 1px solid rgba(192, 57, 43, .28);
      border-radius: 8px;
      padding: 16px 20px;
      margin-bottom: 24px;
    }

    .chine-conditions .cond-title {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: #e74c3c;
      margin-bottom: 10px;
      display: block;
    }

    .chine-conditions ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .chine-conditions li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: rgba(245, 240, 232, .72);
      line-height: 1.4;
    }

    .chine-conditions li::before {
      content: '✦';
      color: #e74c3c;
      font-size: 9px;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .chine-avantage-membre {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(26, 77, 46, .4);
      border: 1px solid rgba(196, 148, 58, .35);
      border-radius: 8px;
      padding: 14px 18px;
      margin-bottom: 26px;
    }

    .cam-badge {
      background: var(--gold);
      color: var(--dark);
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 4px;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .cam-text {
      font-size: 14px;
      color: rgba(245, 240, 232, .8);
      line-height: 1.5;
    }

    .cam-text strong {
      color: var(--cream);
    }

    /* FORMATEUR */
    .section-formateur {
      background: var(--dark);
    }

    .formateur-wrap {
      display: flex;
      gap: 60px;
      align-items: center;
      flex-wrap: wrap;
    }

    .formateur-visual {
      flex-shrink: 0;
      position: relative;
    }

    .formateur-avatar {
      width: 172px;
      height: 172px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--mid));
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 60px;
      color: var(--gold);
      position: relative;
      z-index: 1;
      animation: float 4s ease-in-out infinite;
    }

    .formateur-ring {
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      border: 1px solid rgba(196, 148, 58, .22);
      animation: rotateSlow 20s linear infinite;
    }

    .formateur-ring::after {
      content: '';
      position: absolute;
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
    }

    .formateur-info {
      flex: 1;
      min-width: 280px;
    }

    .formateur-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .formateur-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .formateur-bio {
      font-size: 14px;
      color: rgba(245, 240, 232, .68);
      line-height: 1.75;
      margin-bottom: 22px;
    }

    .credentials {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .cred-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(245, 240, 232, .6);
    }

    .cred-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ACADÉMIE */
    .section-academie {
      background: linear-gradient(135deg, rgba(26, 77, 46, .25) 0%, rgba(15, 35, 24, .9) 100%);
      border-top: 1px solid rgba(196, 148, 58, .15);
      border-bottom: 1px solid rgba(196, 148, 58, .15);
    }

    .academie-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .academie-visual {
      position: relative;
      text-align: center;
    }

    .academie-outer-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 256px;
      height: 256px;
      border-radius: 50%;
      border: 1px dashed rgba(196, 148, 58, .22);
      animation: rotateSlow 28s linear infinite reverse;
    }

    .academie-badge-big {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 216px;
      height: 216px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--dark));
      border: 2px solid var(--gold);
      box-shadow: 0 0 60px rgba(196, 148, 58, .18), inset 0 0 40px rgba(26, 77, 46, .5);
      animation: float 5s ease-in-out infinite;
      margin: 0 auto;
    }

    .academie-badge-big .acad-top {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .academie-badge-big .acad-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--white);
      text-align: center;
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .academie-badge-big .acad-gold {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gold);
    }

    .academie-content h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .academie-content h3 em {
      color: var(--gold);
      font-style: italic;
    }

    .academie-content p {
      font-size: 14px;
      color: rgba(245, 240, 232, .67);
      line-height: 1.78;
      margin-bottom: 22px;
    }

    .academie-avantages {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .avantage-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 15px;
      background: rgba(15, 35, 24, .5);
      border-left: 3px solid var(--gold);
      border-radius: 0 6px 6px 0;
    }

    .avantage-icon {
      font-size: 16px;
      flex-shrink: 0;
    }

    .avantage-text {
      font-size: 13px;
      color: rgba(245, 240, 232, .77);
      line-height: 1.4;
    }

    .avantage-text strong {
      color: var(--cream);
    }

    /* TARIFS */
    .section-pricing {
      background: linear-gradient(180deg, rgba(26, 77, 46, .1) 0%, transparent 100%);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
      gap: 24px;
      margin-top: 46px;
    }

    .pricing-card {
      background: rgba(15, 35, 24, .75);
      border: 1px solid rgba(196, 148, 58, .14);
      border-radius: 16px;
      padding: 36px 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .pricing-card.highlighted {
      border-color: var(--gold);
      background: linear-gradient(180deg, rgba(44, 122, 75, .28) 0%, rgba(15, 35, 24, .85) 100%);
      transform: scale(1.03);
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
    }

    .pricing-card.highlighted:hover {
      transform: translateY(-8px) scale(1.04);
    }

    .popular-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .pc-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 23px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .pc-desc {
      font-size: 11px;
      color: rgba(245, 240, 232, .42);
      margin-bottom: 22px;
      font-style: italic;
    }

    .pc-price .amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 62px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .pc-price .currency {
      font-family: 'Cormorant Garamond', serif;
      font-size: 27px;
      color: var(--gold);
      vertical-align: super;
    }

    .pc-price .period {
      font-size: 11px;
      color: rgba(245, 240, 232, .33);
      display: block;
      margin-bottom: 22px;
    }

    .pc-features {
      list-style: none;
      margin-bottom: 26px;
      text-align: left;
    }

    .pc-features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13px;
      color: rgba(245, 240, 232, .7);
      padding: 7px 0;
      border-bottom: 1px solid rgba(196, 148, 58, .07);
      line-height: 1.5;
    }

    .pc-features li:last-child {
      border-bottom: none;
    }

    .pc-features li::before {
      content: '✦';
      color: var(--gold);
      flex-shrink: 0;
      font-size: 9px;
      margin-top: 3px;
    }

    .pc-remise {
      background: linear-gradient(135deg, rgba(196, 148, 58, .14), rgba(196, 148, 58, .05));
      border: 1px solid rgba(196, 148, 58, .28);
      border-radius: 8px;
      padding: 10px 14px;
      margin-bottom: 20px;
      font-size: 12px;
      color: var(--gold);
      font-weight: 700;
    }

    .pc-remise .old-price {
      text-decoration: line-through;
      opacity: .5;
      font-weight: 400;
      font-size: 11px;
      margin-right: 6px;
    }

    /* INSCRIPTION */
    .section-inscription {
      background: linear-gradient(135deg, rgba(26, 77, 46, .3) 0%, rgba(15, 35, 24, 1) 100%);
      text-align: center;
      padding: 100px 24px;
      position: relative;
      overflow: hidden;
    }

    .section-inscription::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(44, 122, 75, .2) 0%, transparent 70%);
      pointer-events: none;
    }

    .urgency-box {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(196, 148, 58, .1);
      border: 1px solid rgba(196, 148, 58, .28);
      border-radius: 60px;
      padding: 9px 22px;
      margin-bottom: 30px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gold);
    }

    .urgency-dot {
      width: 8px;
      height: 8px;
      background: #ff6b6b;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    .inscription-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 6vw, 60px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .inscription-title em {
      color: var(--gold);
      font-style: italic;
    }

    .inscription-sub {
      font-size: 15px;
      color: rgba(245, 240, 232, .52);
      margin-bottom: 42px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .inscription-prices {
      display: flex;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap;
      margin-bottom: 42px;
      position: relative;
      z-index: 1;
    }

    .ins-price-item {
      text-align: center;
    }

    .ins-price-item .lbl {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: rgba(245, 240, 232, .32);
      display: block;
      margin-bottom: 5px;
    }

    .ins-price-item .val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .ins-price-item.china .val {
      color: #e74c3c;
    }

    .ins-price-item .sub {
      font-size: 10px;
      color: rgba(245, 240, 232, .32);
      display: block;
      margin-top: 3px;
    }

    .ins-separator {
      width: 1px;
      background: rgba(196, 148, 58, .16);
      align-self: stretch;
      min-height: 52px;
    }

    .final-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .final-cta .btn {
      font-size: 12px;
      padding: 17px 48px;
      letter-spacing: 3px;
    }

    .contact-info {
      margin-top: 42px;
      font-size: 13px;
      color: rgba(245, 240, 232, .32);
      position: relative;
      z-index: 1;
    }

    .contact-info a {
      color: var(--gold);
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    footer {
      background: rgba(0, 0, 0, .4);
      border-top: 1px solid rgba(196, 148, 58, .1);
      padding: 26px 24px;
      text-align: center;
      font-size: 11px;
      color: rgba(245, 240, 232, .26);
      font-family: 'Cinzel', serif;
      letter-spacing: 1px;
    }

    footer span {
      color: var(--gold);
    }

    /* ═══ BALANCE METHOD DR TAN ═══ */
    .section-balance {
      background: linear-gradient(170deg, rgba(10, 25, 60, .95) 0%, rgba(15, 35, 24, .97) 60%, rgba(10, 25, 60, .9) 100%);
      border-top: 1px solid rgba(100, 180, 255, .18);
      border-bottom: 1px solid rgba(100, 180, 255, .18);
      position: relative;
      overflow: hidden;
    }

    .section-balance::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 184, .12) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 90% 80%, rgba(100, 180, 255, .06) 0%, transparent 60%);
    }

    .balance-header {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: start;
      margin-bottom: 52px;
    }

    @media(max-width:900px) {
      .balance-header {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    .balance-visual {
      position: relative;
      width: 220px;
      height: 220px;
      margin: 0 auto 24px;
    }

    .balance-outer-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(100, 180, 255, .25);
      animation: rotateSlow 22s linear infinite;
    }

    .balance-outer-ring::after {
      content: '平';
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      color: #7ecfff;
      font-size: 16px;
      font-family: 'Cormorant Garamond', serif;
    }

    .balance-inner-ring {
      position: absolute;
      inset: 14px;
      border-radius: 50%;
      border: 1px dashed rgba(100, 180, 255, .15);
      animation: rotateSlow 15s linear infinite reverse;
    }

    .balance-badge {
      position: absolute;
      inset: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0a1940, #1a2d6b);
      border: 2px solid rgba(100, 180, 255, .5);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 50px rgba(37, 99, 184, .25), inset 0 0 30px rgba(10, 25, 60, .6);
      animation: float 4.5s ease-in-out infinite;
    }

    .bb-chi {
      font-family: 'Cormorant Garamond', serif;
      font-size: 50px;
      font-weight: 700;
      color: #7ecfff;
      line-height: 1;
      margin-bottom: 3px;
    }

    .bb-label {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 2px;
      color: rgba(126, 207, 255, .8);
      text-align: center;
      line-height: 1.5;
    }

    .bb-sub {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 3px;
      color: rgba(126, 207, 255, .5);
      margin-top: 3px;
    }

    .balance-price-hero {
      background: rgba(10, 25, 60, .6);
      border: 1px solid rgba(100, 180, 255, .2);
      border-radius: 10px;
      padding: 18px 22px;
      text-align: center;
    }

    .bph-label {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: rgba(126, 207, 255, .5);
      display: block;
      margin-bottom: 6px;
    }

    .bph-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 700;
      color: #7ecfff;
      line-height: 1;
      display: block;
    }

    .bph-price sup {
      font-size: 22px;
      vertical-align: super;
    }

    .bph-sub {
      font-size: 11px;
      color: rgba(245, 240, 232, .35);
      display: block;
      margin-bottom: 8px;
    }

    .bph-membre {
      display: block;
      background: rgba(196, 148, 58, .12);
      border: 1px solid rgba(196, 148, 58, .25);
      border-radius: 4px;
      padding: 6px 10px;
      font-size: 12px;
      color: var(--gold);
    }

    .tan-philosophy {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      background: rgba(10, 25, 60, .4);
      border: 1px solid rgba(100, 180, 255, .12);
      border-radius: 12px;
      padding: 32px 36px;
      margin-bottom: 8px;
    }

    @media(max-width:768px) {
      .tan-philosophy {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    .tan-quote {
      position: relative;
      padding-left: 20px;
      border-left: 3px solid #7ecfff;
    }

    .tq-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      color: rgba(126, 207, 255, .2);
      line-height: 0.8;
      display: block;
      margin-bottom: 8px;
    }

    .tan-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--cream);
      line-height: 1.65;
      margin-bottom: 12px;
    }

    .tq-author {
      font-size: 11px;
      color: rgba(126, 207, 255, .5);
      font-family: 'Cinzel', serif;
      letter-spacing: 1px;
    }

    .tan-stats {
      display: flex;
      gap: 0;
      align-items: stretch;
    }

    .ts-item {
      flex: 1;
      text-align: center;
      padding: 12px 8px;
    }

    .ts-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 700;
      color: #7ecfff;
      display: block;
      line-height: 1;
      margin-bottom: 6px;
    }

    .ts-label {
      font-size: 11px;
      color: rgba(245, 240, 232, .45);
      line-height: 1.3;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 1px;
    }

    .ts-sep {
      width: 1px;
      background: rgba(100, 180, 255, .15);
      flex-shrink: 0;
    }

    .balance-modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 16px;
      margin-bottom: 52px;
    }

    .balance-module {
      display: flex;
      gap: 0;
      background: rgba(10, 25, 60, .55);
      border: 1px solid rgba(100, 180, 255, .1);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }

    .balance-module:hover {
      border-color: rgba(100, 180, 255, .35);
      transform: translateX(4px);
    }

    .bm-num {
      background: rgba(37, 99, 184, .25);
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 700;
      color: #7ecfff;
      opacity: .7;
      min-width: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 16px 0;
      border-right: 1px solid rgba(100, 180, 255, .1);
    }

    .bm-body {
      padding: 18px 20px;
    }

    .bm-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .bm-body p {
      font-size: 12px;
      color: rgba(245, 240, 232, .5);
      line-height: 1.6;
    }

    .balance-outcomes {
      background: rgba(10, 25, 60, .5);
      border: 1px solid rgba(100, 180, 255, .15);
      border-radius: 12px;
      padding: 40px 36px;
    }

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

    .outcome-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      background: rgba(37, 99, 184, .1);
      border-left: 3px solid #7ecfff;
      border-radius: 0 6px 6px 0;
    }

    .oi-icon {
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .oi-text {
      font-size: 13px;
      color: rgba(245, 240, 232, .78);
      line-height: 1.5;
    }

    /* ═══ LIVRE OFFERT ═══ */
    .section-livre {
      background: linear-gradient(160deg, rgba(26, 77, 46, .25) 0%, rgba(15, 35, 24, .98) 50%, rgba(196, 148, 58, .08) 100%);
      border-top: 2px solid rgba(196, 148, 58, .35);
      border-bottom: 2px solid rgba(196, 148, 58, .35);
      position: relative;
      overflow: hidden;
    }

    .section-livre::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(196, 148, 58, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .livre-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    @media(max-width:900px) {
      .livre-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
    }

    .livre-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .livre-img-wrap {
      position: relative;
      display: inline-block;
    }

    .livre-img {
      width: 100%;
      max-width: 340px;
      border-radius: 6px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(196, 148, 58, .2);
      animation: float 5s ease-in-out infinite;
      display: block;
    }

    .livre-glow {
      position: absolute;
      inset: -20px;
      border-radius: 12px;
      background: radial-gradient(ellipse at 50% 50%, rgba(196, 148, 58, .12), transparent 70%);
      pointer-events: none;
    }

    .livre-badge-offert {
      position: absolute;
      top: -18px;
      right: -18px;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(196, 148, 58, .5);
      animation: pulse 3s infinite;
      z-index: 2;
    }

    .lbo-top {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 2px;
      color: var(--dark);
      font-weight: 700;
    }

    .lbo-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
    }

    .lbo-sub {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 1px;
      color: var(--dark);
      opacity: .7;
    }

    /*   .livre-content {} */

    .livre-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .livre-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .livre-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: rgba(245, 240, 232, .65);
      margin-bottom: 28px;
      line-height: 1.5;
    }

    .livre-desc {
      font-size: 15px;
      color: rgba(245, 240, 232, .68);
      line-height: 1.82;
      margin-bottom: 28px;
    }

    .livre-contenu {
      background: rgba(15, 35, 24, .6);
      border: 1px solid rgba(196, 148, 58, .15);
      border-radius: 10px;
      padding: 24px 26px;
      margin-bottom: 28px;
    }

    .livre-contenu-title {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
    }

    .livre-items {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .livre-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: rgba(245, 240, 232, .75);
      line-height: 1.4;
    }

    .livre-item::before {
      content: '平';
      color: var(--gold);
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 1px;
      font-family: 'Cormorant Garamond', serif;
    }

    .livre-condition {
      display: flex;
      align-items: center;
      gap: 14px;
      background: linear-gradient(135deg, rgba(196, 148, 58, .15), rgba(196, 148, 58, .05));
      border: 1px solid rgba(196, 148, 58, .4);
      border-radius: 8px;
      padding: 16px 20px;
      margin-bottom: 28px;
    }

    .lc-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .lc-text {
      font-size: 14px;
      color: rgba(245, 240, 232, .82);
      line-height: 1.55;
    }

    .lc-text strong {
      color: var(--cream);
    }

    .lc-text em {
      color: var(--gold);
      font-style: normal;
    }

    .livre-chinese {
      text-align: center;
      margin-top: 12px;
    }

    .livre-chinese span {
      font-size: 28px;
      color: rgba(196, 148, 58, .3);
      letter-spacing: 8px;
    }

    @media(max-width:640px) {
      .livre-badge-offert {
        width: 72px;
        height: 72px;
        top: -12px;
        right: -12px;
      }

      .lbo-main {
        font-size: 18px;
      }
    }

    /* ═══ AGENDA & NEWSLETTER ═══ */
    .section-agenda {
      background: linear-gradient(170deg, rgba(15, 35, 24, .98) 0%, rgba(8, 20, 14, 1) 100%);
      border-top: 1px solid rgba(196, 148, 58, .14);
      padding: 90px 24px;
    }

    .agenda-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    @media(max-width:900px) {
      .agenda-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    /* Calendrier */
    .agenda-calendar h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .agenda-calendar h3 em {
      color: var(--gold);
      font-style: italic;
    }

    .cal-events {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 8px;
    }

    .cal-event {
      display: flex;
      gap: 0;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(196, 148, 58, .12);
      transition: border-color .3s, transform .3s;
      cursor: default;
    }

    .cal-event:hover {
      border-color: rgba(196, 148, 58, .4);
      transform: translateX(5px);
    }

    .cal-event.soon {
      border-color: rgba(196, 148, 58, .35);
    }

    .cal-event.china {
      border-color: rgba(192, 57, 43, .25);
    }

    .cal-event.china:hover {
      border-color: rgba(192, 57, 43, .55);
    }

    .cal-event.tbd {
      opacity: .65;
    }

    .cal-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 70px;
      padding: 16px 12px;
      flex-shrink: 0;
    }

    .cal-event:not(.china):not(.tbd) .cal-date {
      background: rgba(26, 77, 46, .7);
    }

    .cal-event.china .cal-date {
      background: rgba(120, 20, 20, .6);
    }

    .cal-event.tbd .cal-date {
      background: rgba(74, 98, 116, .4);
    }

    .cal-d {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      color: var(--white);
    }

    .cal-m {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--gold);
      margin-top: 2px;
    }

    .cal-event.china .cal-m {
      color: #e87070;
    }

    .cal-event.tbd .cal-m {
      color: rgba(245, 240, 232, .4);
    }

    .cal-y {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 1px;
      color: rgba(245, 240, 232, .35);
    }

    .cal-body {
      padding: 14px 18px;
      flex: 1;
    }

    .cal-badge {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 7px;
    }

    .badge-mc1 {
      background: rgba(26, 77, 46, .7);
      color: var(--gold);
      border: 1px solid rgba(196, 148, 58, .3);
    }

    .badge-mc2 {
      background: rgba(10, 25, 60, .7);
      color: #7ecfff;
      border: 1px solid rgba(100, 180, 255, .3);
    }

    .badge-china {
      background: rgba(120, 20, 20, .5);
      color: #e87070;
      border: 1px solid rgba(192, 57, 43, .3);
    }

    .badge-tbd {
      background: rgba(74, 98, 116, .3);
      color: rgba(245, 240, 232, .4);
      border: 1px solid rgba(74, 98, 116, .3);
    }

    .cal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .cal-meta {
      font-size: 11px;
      color: rgba(245, 240, 232, .45);
      line-height: 1.5;
    }

    .cal-meta strong {
      color: rgba(245, 240, 232, .65);
    }

    .cal-tag-soon {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 7px;
    }

    .cal-tag-soon span {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      color: var(--gold);
      background: rgba(196, 148, 58, .12);
      border: 1px solid rgba(196, 148, 58, .3);
      padding: 3px 9px;
      border-radius: 20px;
    }

    .cal-dot-live {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
      flex-shrink: 0;
    }

    .cal-cta-mini {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .4);
      padding: 4px 12px;
      border: 1px solid rgba(245, 240, 232, .12);
      border-radius: 20px;
      text-decoration: none;
      transition: all .2s;
    }

    .cal-cta-mini:hover {
      color: var(--gold);
      border-color: rgba(196, 148, 58, .4);
    }

    /* Newsletter */
    .agenda-newsletter {
      background: rgba(10, 25, 10, .6);
      border: 1px solid rgba(196, 148, 58, .18);
      border-radius: 14px;
      padding: 36px 32px;
    }

    .nl-top {
      margin-bottom: 28px;
    }

    .nl-top h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .nl-top h3 em {
      color: var(--gold);
      font-style: italic;
    }

    .nl-top p {
      font-size: 14px;
      color: rgba(245, 240, 232, .58);
      line-height: 1.7;
    }

    .nl-perks {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 28px;
    }

    .nl-perk {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(245, 240, 232, .72);
    }

    .nl-perk-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .nl-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .nl-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .nl-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(196, 148, 58, .7);
    }

    .nl-input {
      background: rgba(15, 35, 24, .8);
      border: 1px solid rgba(196, 148, 58, .2);
      border-radius: 6px;
      padding: 12px 16px;
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color .3s, box-shadow .3s;
      width: 100%;
    }

    .nl-input:focus {
      border-color: rgba(196, 148, 58, .6);
      box-shadow: 0 0 0 3px rgba(196, 148, 58, .08);
    }

    .nl-input::placeholder {
      color: rgba(245, 240, 232, .25);
    }

    .nl-interests {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 4px;
    }

    .nl-check {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .nl-check input {
      display: none;
    }

    .nl-checkbox {
      width: 18px;
      height: 18px;
      border: 1px solid rgba(196, 148, 58, .3);
      border-radius: 3px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      background: rgba(15, 35, 24, .8);
    }

    .nl-check input:checked+.nl-checkbox {
      background: var(--gold);
      border-color: var(--gold);
    }

    .nl-check input:checked+.nl-checkbox::after {
      content: '✓';
      font-size: 11px;
      color: var(--dark);
      font-weight: 700;
    }

    .nl-check-label {
      font-size: 12px;
      color: rgba(245, 240, 232, .65);
      line-height: 1.4;
    }

    .nl-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--dark);
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 2px;
      padding: 15px 28px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      width: 100%;
      transition: all .3s;
      margin-top: 4px;
    }

    .nl-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(196, 148, 58, .45);
    }

    .nl-success {
      display: none;
      text-align: center;
      padding: 28px 20px;
    }

    .nl-success.show {
      display: block;
    }

    .nl-success-icon {
      font-size: 42px;
      margin-bottom: 12px;
    }

    .nl-success h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .nl-success p {
      font-size: 13px;
      color: rgba(245, 240, 232, .55);
      line-height: 1.6;
    }

    .nl-legal {
      font-size: 11px;
      color: rgba(245, 240, 232, .2);
      margin-top: 12px;
      line-height: 1.5;
    }

    .nl-socials {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .nl-social {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border: 1px solid rgba(196, 148, 58, .15);
      border-radius: 8px;
      text-decoration: none;
      color: rgba(245, 240, 232, .65);
      font-size: 12px;
      font-family: 'Cinzel', serif;
      letter-spacing: 1px;
      transition: all .3s;
    }

    .nl-social:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .nl-social-icon {
      font-size: 16px;
    }

    /* ═══ COUVERTURE LIVRE (sans photo) ═══ */
    .livre-couverture {
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
      background: linear-gradient(160deg, #0d2a0f 0%, #1a4d2e 40%, #0d2a0f 100%);
      border: 2px solid rgba(196, 148, 58, .5);
      border-radius: 6px;
      padding: 28px 24px 20px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .65), 0 0 0 1px rgba(196, 148, 58, .2), inset 0 1px 0 rgba(196, 148, 58, .15);
      animation: float 5s ease-in-out infinite;
      position: relative;
      overflow: hidden;
    }

    .livre-couverture::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), var(--gold), transparent);
    }

    .lc-header {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: var(--gold);
      text-align: center;
      margin-bottom: 16px;
      line-height: 1.8;
      border-bottom: 1px solid rgba(196, 148, 58, .2);
      padding-bottom: 12px;
    }

    .lc-title-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--white);
      text-align: center;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .lc-subtitle {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: rgba(245, 240, 232, .65);
      text-align: center;
      margin-bottom: 6px;
    }

    .lc-keywords {
      font-family: 'Cinzel', serif;
      font-size: 7.5px;
      letter-spacing: 1px;
      color: rgba(196, 148, 58, .7);
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .lc-chinese {
      font-size: 32px;
      color: var(--gold);
      text-align: center;
      margin-bottom: 4px;
      letter-spacing: 6px;
    }

    .lc-chinese-sub {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: rgba(196, 148, 58, .5);
      text-align: center;
      margin-bottom: 20px;
    }

    .lc-diamonds {
      display: flex;
      justify-content: center;
      gap: -8px;
      margin-bottom: 20px;
      height: 60px;
      position: relative;
    }

    .lcd {
      position: absolute;
      width: 44px;
      height: 44px;
      border: 2px solid rgba(196, 148, 58, .4);
      transform: rotate(45deg);
    }

    .lcd1 {
      left: 50%;
      transform: translateX(-60%) rotate(45deg);
      background: rgba(44, 122, 75, .4);
    }

    .lcd2 {
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      background: rgba(26, 77, 46, .5);
      top: 8px;
    }

    .lcd3 {
      left: 50%;
      transform: translateX(-40%) rotate(45deg);
      background: rgba(44, 122, 75, .3);
    }

    .lc-footer {
      display: flex;
      justify-content: space-around;
      border-top: 1px solid rgba(196, 148, 58, .2);
      padding-top: 14px;
      margin-top: 14px;
    }

    .lcf-item {
      font-size: 18px;
      color: var(--gold);
      text-align: center;
      line-height: 1.2;
    }

    .lcf-item small {
      font-family: 'Cinzel', serif;
      font-size: 6px;
      letter-spacing: 1px;
      color: rgba(245, 240, 232, .4);
      display: block;
      margin-top: 2px;
    }


    .section-plateforme {
      background: linear-gradient(160deg, rgba(5, 18, 45, .98) 0%, rgba(10, 25, 60, .95) 50%, rgba(5, 18, 45, 1) 100%);
      border-top: 1px solid rgba(100, 180, 255, .2);
      border-bottom: 1px solid rgba(100, 180, 255, .2);
      position: relative;
      overflow: hidden;
    }

    .section-plateforme::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(37, 99, 184, .1) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 20% 20%, rgba(100, 180, 255, .05) 0%, transparent 60%);
      pointer-events: none;
    }

    .plat-exclu-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(37, 99, 184, .25);
      border: 1px solid rgba(100, 180, 255, .4);
      border-radius: 60px;
      padding: 8px 22px;
      margin-bottom: 20px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: #7ecfff;
    }

    .plat-exclu-dot {
      width: 7px;
      height: 7px;
      background: #7ecfff;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .plat-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 60px;
    }

    @media(max-width:900px) {
      .plat-header {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    .plat-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4.5vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .plat-title em {
      color: #7ecfff;
      font-style: italic;
    }

    .plat-desc {
      font-size: 15px;
      color: rgba(245, 240, 232, .65);
      line-height: 1.82;
      margin-bottom: 24px;
    }

    .plat-cond {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(37, 99, 184, .15);
      border: 1px solid rgba(100, 180, 255, .25);
      border-radius: 8px;
      padding: 14px 18px;
      margin-bottom: 28px;
    }

    .plat-cond-icon {
      font-size: 24px;
      flex-shrink: 0;
    }

    .plat-cond-text {
      font-size: 13px;
      color: rgba(245, 240, 232, .75);
      line-height: 1.5;
    }

    .plat-cond-text strong {
      color: #7ecfff;
    }

    /* Mockup interface */
    .plat-mockup {
      background: rgba(5, 14, 35, .9);
      border: 1px solid rgba(100, 180, 255, .2);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(100, 180, 255, .1);
    }

    .plat-topbar {
      background: rgba(15, 30, 70, .8);
      border-bottom: 1px solid rgba(100, 180, 255, .1);
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .plat-dots {
      display: flex;
      gap: 6px;
    }

    .plat-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .plat-dot.r {
      background: #e74c3c;
    }

    .plat-dot.y {
      background: #f39c12;
    }

    .plat-dot.g {
      background: #2ecc71;
    }

    .plat-url {
      flex: 1;
      background: rgba(0, 0, 0, .4);
      border: 1px solid rgba(100, 180, 255, .15);
      border-radius: 4px;
      padding: 5px 12px;
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: rgba(126, 207, 255, .5);
    }

    .plat-lock {
      font-size: 11px;
      color: rgba(100, 180, 255, .4);
    }

    .plat-nav {
      background: rgba(10, 22, 55, .7);
      border-bottom: 1px solid rgba(100, 180, 255, .08);
      padding: 10px 18px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .plat-nav-item {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 1px;
      padding: 5px 12px;
      border-radius: 4px;
      color: rgba(126, 207, 255, .5);
      cursor: default;
      transition: all .2s;
    }

    .plat-nav-item.active {
      background: rgba(37, 99, 184, .4);
      color: #7ecfff;
      border: 1px solid rgba(100, 180, 255, .3);
    }

    .plat-nav-item:not(.active) {
      border: 1px solid transparent;
    }

    .plat-body {
      padding: 20px 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

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

    .plat-card {
      background: rgba(15, 30, 70, .5);
      border: 1px solid rgba(100, 180, 255, .1);
      border-radius: 8px;
      padding: 14px 16px;
    }

    .plat-card-title {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: #7ecfff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .plat-card-title::before {
      content: '';
      width: 4px;
      height: 4px;
      background: #7ecfff;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .plat-bar {
      height: 6px;
      background: rgba(37, 99, 184, .25);
      border-radius: 3px;
      margin-bottom: 7px;
      overflow: hidden;
    }

    .plat-bar-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, #2563b8, #7ecfff);
    }

    .plat-tag-row {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .plat-tag {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 1px;
      padding: 3px 8px;
      border-radius: 10px;
      background: rgba(37, 99, 184, .3);
      color: rgba(126, 207, 255, .7);
      border: 1px solid rgba(100, 180, 255, .15);
    }

    .plat-list-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      color: rgba(245, 240, 232, .5);
      padding: 5px 0;
      border-bottom: 1px solid rgba(100, 180, 255, .05);
    }

    .plat-list-item:last-child {
      border-bottom: none;
    }

    .plat-list-dot {
      width: 4px;
      height: 4px;
      background: #7ecfff;
      border-radius: 50%;
      flex-shrink: 0;
      opacity: .6;
    }

    /* Features grid */
    .plat-features {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 18px;
      margin-top: 20px;
    }

    .plat-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 22px;
      background: rgba(10, 22, 55, .6);
      border: 1px solid rgba(100, 180, 255, .1);
      border-radius: 8px;
      transition: border-color .3s, transform .3s;
    }

    .plat-feature:hover {
      border-color: rgba(100, 180, 255, .35);
      transform: translateX(4px);
    }

    .plat-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(37, 99, 184, .3);
      border: 1px solid rgba(100, 180, 255, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .plat-feature-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 5px;
    }

    .plat-feature-body p {
      font-size: 12px;
      color: rgba(245, 240, 232, .5);
      line-height: 1.55;
    }

    @media(max-width:900px) {
      .chine-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
      }

      .chine-avantage-membre {
        flex-direction: column;
        text-align: center;
      }

      .academie-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    @media(max-width:640px) {
      .prices-wrap {
        flex-direction: column;
        align-items: center;
      }

      .price-card {
        min-width: 280px;
        width: 100%;
        max-width: 340px;
      }

      .formateur-wrap {
        flex-direction: column;
        text-align: center;
      }

      .formateur-visual {
        display: flex;
        justify-content: center;
      }

      .pricing-card.highlighted {
        transform: none;
      }

      .ins-separator {
        display: none;
      }

      .quinze-wrap {
        grid-template-columns: 1fr;
      }

      .section-quinze {
        padding: 60px 20px;
      }

      section {
        padding: 64px 20px;
      }

      .balance-modules-grid {
        grid-template-columns: 1fr;
      }

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

      .nl-interests {
        grid-template-columns: 1fr;
      }
    }


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

    html {
      scroll-behavior: smooth;
    }

    :root {
      --dark: #0f2318;
      --green: #1a4d2e;
      --mid: #2c7a4b;
      --light: #4caf74;
      --gold: #c4943a;
      --gold2: #e8b84b;
      --cream: #f5f0e8;
      --white: #fefdfb;
      --slate: #4a6274;
      --blue: #1a3a6e;
      --blue2: #7ecfff;
      --error: #e74c3c;
      --success: #2ecc71;
    }

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(196, 148, 58, .4);
      }

      50% {
        box-shadow: 0 0 0 10px rgba(196, 148, 58, 0);
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes checkPop {
      0% {
        transform: scale(0);
      }

      70% {
        transform: scale(1.2);
      }

      100% {
        transform: scale(1);
      }
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(20px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* HEADER */
    .header {
      background: linear-gradient(135deg, rgba(26, 77, 46, .95), rgba(15, 35, 24, .98));
      border-bottom: 1px solid rgba(196, 148, 58, .2);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
    }

    .header-logo {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
    }

    .header-logo span {
      display: block;
      font-size: 8px;
      letter-spacing: 4px;
      color: rgba(245, 240, 232, .4);
      margin-top: 2px;
    }

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

    .nav-btn {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      padding: 7px 16px;
      border-radius: 4px;
      cursor: pointer;
      transition: all .25s;
      border: none;
      background: transparent;
    }

    .nav-btn.active {
      background: var(--gold);
      color: var(--dark);
    }

    .nav-btn:not(.active) {
      color: rgba(245, 240, 232, .5);
      border: 1px solid rgba(245, 240, 232, .15);
    }

    .nav-btn:not(.active):hover {
      color: var(--gold);
      border-color: rgba(196, 148, 58, .4);
    }

    /* LAYOUT */
    .main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 24px 80px;
    }

    /* STEP INDICATOR */
    .steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 48px;
      animation: fadeUp .5s ease both;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .step-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 700;
      transition: all .3s;
      flex-shrink: 0;
    }

    .step-circle.done {
      background: var(--success);
      color: #fff;
    }

    .step-circle.active {
      background: var(--gold);
      color: var(--dark);
      box-shadow: 0 0 0 4px rgba(196, 148, 58, .2);
    }

    .step-circle.pending {
      background: rgba(245, 240, 232, .1);
      color: rgba(245, 240, 232, .3);
      border: 1px solid rgba(245, 240, 232, .15);
    }

    .step-label {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 1px;
      color: rgba(245, 240, 232, .4);
      margin-top: 4px;
      text-align: center;
      white-space: nowrap;
    }

    .step-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .step-line {
      width: 60px;
      height: 1px;
      background: rgba(245, 240, 232, .15);
      flex-shrink: 0;
      margin: 0 4px;
      margin-bottom: 20px;
    }

    .step-line.done {
      background: var(--success);
    }

    @media(max-width:600px) {
      .step-line {
        width: 24px;
      }

      .step-label {
        font-size: 7px;
      }
    }

    /* SECTION TITLE */
    .section-hd {
      text-align: center;
      margin-bottom: 36px;
      animation: fadeUp .5s ease both;
    }

    .section-hd .tag {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 4px;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }

    .section-hd h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .section-hd h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .section-hd p {
      font-size: 14px;
      color: rgba(245, 240, 232, .55);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto;
    }

    /* CARDS GRILLE */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 32px;
    }

    .offer-card {
      background: rgba(15, 35, 24, .7);
      border: 1px solid rgba(196, 148, 58, .15);
      border-radius: 14px;
      padding: 28px 26px;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .offer-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .offer-card:hover {
      border-color: rgba(196, 148, 58, .4);
      transform: translateY(-3px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, .4);
    }

    .offer-card:hover::before {
      opacity: 1;
    }

    .offer-card.selected {
      border-color: var(--gold);
      background: rgba(26, 77, 46, .5);
    }

    .offer-card.selected::before {
      opacity: 1;
    }

    .offer-card.blue-card {
      border-color: rgba(100, 180, 255, .15);
    }

    .offer-card.blue-card:hover {
      border-color: rgba(100, 180, 255, .4);
    }

    .offer-card.blue-card.selected {
      border-color: #7ecfff;
      background: rgba(10, 25, 60, .5);
    }

    .offer-card.blue-card::before {
      background: linear-gradient(90deg, transparent, #7ecfff, transparent);
    }

    .card-check {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--dark);
      opacity: 0;
      transform: scale(0);
      transition: all .25s;
    }

    .offer-card.selected .card-check {
      opacity: 1;
      transform: scale(1);
      animation: checkPop .3s ease;
    }

    .blue-card.selected .card-check {
      background: #7ecfff;
    }

    .card-badge {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
    }

    .badge-green {
      background: rgba(26, 77, 46, .7);
      color: var(--gold);
      border: 1px solid rgba(196, 148, 58, .3);
    }

    .badge-blue {
      background: rgba(10, 25, 60, .7);
      color: #7ecfff;
      border: 1px solid rgba(100, 180, 255, .3);
    }

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

    .badge-red {
      background: rgba(120, 20, 20, .5);
      color: #e87070;
      border: 1px solid rgba(192, 57, 43, .3);
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .card-sub {
      font-size: 12px;
      color: rgba(245, 240, 232, .45);
      margin-bottom: 16px;
      font-style: italic;
    }

    .card-price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
    }

    .card-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 46px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .card-price sup {
      font-size: 20px;
      vertical-align: super;
    }

    .card-price.blue {
      color: #7ecfff;
    }

    .card-price-old {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: rgba(245, 240, 232, .3);
      text-decoration: line-through;
    }

    .card-remise {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--dark);
      font-family: 'Cinzel', serif;
      font-size: 9px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 12px;
      margin-left: 6px;
    }

    .card-period {
      font-size: 11px;
      color: rgba(245, 240, 232, .35);
      margin-bottom: 16px;
    }

    .card-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .card-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 12px;
      color: rgba(245, 240, 232, .7);
      line-height: 1.4;
    }

    .card-features li::before {
      content: '✦';
      color: var(--gold);
      font-size: 8px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .blue-card .card-features li::before {
      color: #7ecfff;
    }

    /* MEMBRE BADGE remise auto */
    .remise-auto-badge {
      background: linear-gradient(135deg, rgba(196, 148, 58, .15), rgba(196, 148, 58, .05));
      border: 1px solid rgba(196, 148, 58, .4);
      border-radius: 6px;
      padding: 10px 14px;
      margin-top: 12px;
      font-size: 12px;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .remise-auto-badge strong {
      color: var(--white);
    }

    /* PACK CARD */
    .pack-card {
      background: linear-gradient(135deg, rgba(26, 77, 46, .35), rgba(10, 25, 60, .35));
      border: 1px solid var(--gold);
      border-radius: 14px;
      padding: 28px 26px;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .pack-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), var(--gold), transparent);
    }

    .pack-card.selected {
      box-shadow: 0 0 40px rgba(196, 148, 58, .2);
    }

    .pack-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, .4);
    }

    /* FORM */
    .form-section {
      background: rgba(10, 25, 10, .5);
      border: 1px solid rgba(196, 148, 58, .12);
      border-radius: 14px;
      padding: 32px 28px;
      animation: fadeUp .4s ease both;
    }

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

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

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-field.full {
      grid-column: 1/-1;
    }

    .form-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(196, 148, 58, .7);
    }

    .form-input {
      background: rgba(15, 35, 24, .8);
      border: 1px solid rgba(196, 148, 58, .2);
      border-radius: 6px;
      padding: 12px 14px;
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color .25s, box-shadow .25s;
      width: 100%;
    }

    .form-input:focus {
      border-color: rgba(196, 148, 58, .6);
      box-shadow: 0 0 0 3px rgba(196, 148, 58, .08);
    }

    .form-input::placeholder {
      color: rgba(245, 240, 232, .2);
    }

    .form-input.error {
      border-color: var(--error);
    }

    .form-error {
      font-size: 11px;
      color: var(--error);
      margin-top: 3px;
    }

    select.form-input {
      cursor: pointer;
    }

    select.form-input option {
      background: #1a2a1a;
      color: var(--cream);
    }

    /* PAYMENT SECTION */
    .payment-box {
      background: rgba(5, 18, 45, .5);
      border: 1px solid rgba(100, 180, 255, .15);
      border-radius: 12px;
      padding: 24px 22px;
      margin-top: 20px;
    }

    .payment-title {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: #7ecfff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .payment-title::before {
      content: '🔒';
      font-size: 13px;
    }

    .payment-methods {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .pm-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 10px 18px;
      border-radius: 6px;
      border: 1px solid rgba(100, 180, 255, .15);
      background: rgba(10, 22, 55, .5);
      cursor: pointer;
      transition: all .25s;
      font-size: 13px;
      color: rgba(245, 240, 232, .7);
    }

    .pm-btn.active {
      border-color: #7ecfff;
      background: rgba(37, 99, 184, .2);
      color: var(--white);
    }

    .pm-btn:hover:not(.active) {
      border-color: rgba(100, 180, 255, .35);
    }

    .pm-icon {
      font-size: 18px;
    }

    .card-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .card-fields .full {
      grid-column: 1/-1;
    }

    .card-number-wrap {
      position: relative;
    }

    .card-type-icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
    }

    /* ORDER SUMMARY */
    .summary-box {
      background: rgba(15, 35, 24, .6);
      border: 1px solid rgba(196, 148, 58, .15);
      border-radius: 12px;
      padding: 24px 22px;
    }

    .summary-title {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid rgba(196, 148, 58, .06);
      font-size: 13px;
      color: rgba(245, 240, 232, .7);
    }

    .summary-line:last-child {
      border-bottom: none;
    }

    .summary-line.remise {
      color: var(--success);
    }

    .summary-line.total {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      border-top: 1px solid rgba(196, 148, 58, .2);
      padding-top: 14px;
      margin-top: 6px;
    }

    .summary-line.total .price {
      color: var(--gold);
    }

    /* BUTTONS */
    .btn {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 2px;
      padding: 15px 36px;
      border-radius: 6px;
      cursor: pointer;
      border: none;
      transition: all .3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--dark);
      box-shadow: 0 8px 28px rgba(196, 148, 58, .35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(196, 148, 58, .5);
    }

    .btn-primary:disabled {
      opacity: .5;
      cursor: not-allowed;
      transform: none;
    }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(245, 240, 232, .25);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .btn-blue {
      background: linear-gradient(135deg, #1a3a6e, #2563b8);
      color: #fff;
      box-shadow: 0 8px 28px rgba(37, 99, 184, .35);
    }

    .btn-blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(37, 99, 184, .5);
    }

    .btn-actions {
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    /* SPINNER */
    .spinner {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(15, 35, 24, .3);
      border-top-color: var(--dark);
      border-radius: 50%;
      animation: spin .7s linear infinite;
    }

    /* SUCCESS PAGE */
    .success-wrap {
      text-align: center;
      padding: 60px 24px;
      animation: fadeUp .6s ease both;
    }

    .success-icon {
      font-size: 64px;
      margin-bottom: 20px;
      animation: checkPop .5s .2s ease both;
      display: block;
    }

    .success-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .success-title em {
      color: var(--gold);
      font-style: italic;
    }

    .success-sub {
      font-size: 15px;
      color: rgba(245, 240, 232, .6);
      margin-bottom: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      line-height: 1.7;
    }

    .success-card {
      background: rgba(26, 77, 46, .3);
      border: 1px solid rgba(196, 148, 58, .25);
      border-radius: 14px;
      padding: 28px 32px;
      max-width: 560px;
      margin: 0 auto 32px;
      text-align: left;
    }

    .success-card h4 {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .success-item {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(196, 148, 58, .08);
      font-size: 13px;
      color: rgba(245, 240, 232, .75);
    }

    .success-item:last-child {
      border-bottom: none;
    }

    .success-item strong {
      color: var(--cream);
    }

    .success-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      margin: 4px 0;
    }

    .membre-card-preview {
      background: linear-gradient(135deg, var(--green), var(--dark));
      border: 2px solid var(--gold);
      border-radius: 12px;
      padding: 22px 24px;
      max-width: 360px;
      margin: 32px auto;
      position: relative;
      overflow: hidden;
    }

    .membre-card-preview::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .mcp-top {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .mcp-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .mcp-id {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: rgba(245, 240, 232, .4);
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .mcp-avantage {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--gold);
      background: rgba(196, 148, 58, .1);
      border: 1px solid rgba(196, 148, 58, .25);
      border-radius: 4px;
      padding: 5px 12px;
      display: inline-block;
    }

    /* ADMIN VIEW */
    .admin-header {
      background: rgba(5, 18, 45, .9);
      border: 1px solid rgba(100, 180, 255, .2);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .admin-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 14px;
      margin-bottom: 28px;
    }

    .stat-card {
      background: rgba(15, 35, 24, .6);
      border: 1px solid rgba(196, 148, 58, .12);
      border-radius: 10px;
      padding: 18px 20px;
      text-align: center;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      display: block;
    }

    .stat-label {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .4);
      margin-top: 4px;
      display: block;
    }

    .table-wrap {
      background: rgba(10, 25, 10, .5);
      border: 1px solid rgba(196, 148, 58, .1);
      border-radius: 12px;
      overflow: hidden;
    }

    .table-head {
      display: grid;
      grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
      background: var(--green);
      padding: 12px 16px;
      gap: 8px;
    }

    .th {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .6);
    }

    .table-row {
      display: grid;
      grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
      padding: 12px 16px;
      gap: 8px;
      border-bottom: 1px solid rgba(196, 148, 58, .05);
      transition: background .2s;
      align-items: center;
    }

    .table-row:hover {
      background: rgba(196, 148, 58, .04);
    }

    .table-row:last-child {
      border-bottom: none;
    }

    .td {
      font-size: 12px;
      color: rgba(245, 240, 232, .7);
    }

    .td strong {
      color: var(--cream);
    }

    .status-badge {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 1px;
      padding: 3px 8px;
      border-radius: 10px;
    }

    .status-paid {
      background: rgba(46, 204, 113, .15);
      color: #2ecc71;
      border: 1px solid rgba(46, 204, 113, .3);
    }

    .status-pending {
      background: rgba(196, 148, 58, .15);
      color: var(--gold);
      border: 1px solid rgba(196, 148, 58, .3);
    }

    .status-membre {
      background: rgba(26, 77, 46, .5);
      color: var(--light);
      border: 1px solid rgba(76, 175, 116, .3);
    }

    @media(max-width:768px) {

      .table-head,
      .table-row {
        grid-template-columns: 1fr 1fr;
      }

      .th:nth-child(n+3),
      .td:nth-child(n+3) {
        display: none;
      }
    }

    /* DIVIDER */
    .gold-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 32px 0;
    }

    /*.page {} */

    .page.active {
      display: block;
      animation: fadeUp .4s ease both;
    }

    /* TOAST */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: rgba(26, 77, 46, .95);
      border: 1px solid var(--gold);
      border-radius: 8px;
      padding: 14px 20px;
      font-size: 13px;
      color: var(--cream);
      z-index: 999;
      transform: translateX(120%);
      transition: transform .3s;
      max-width: 320px;
      backdrop-filter: blur(12px);
    }

    .toast.show {
      transform: none;
    }

    .toast.error {
      background: rgba(120, 20, 20, .95);
      border-color: var(--error);
    }

    /* MEMBER CHECK */
    .member-check-box {
      background: rgba(26, 77, 46, .2);
      border: 1px solid rgba(196, 148, 58, .25);
      border-radius: 10px;
      padding: 18px 20px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .mcb-icon {
      font-size: 24px;
      flex-shrink: 0;
    }

    .mcb-text {
      font-size: 13px;
      color: rgba(245, 240, 232, .8);
      line-height: 1.5;
    }

    .mcb-text strong {
      color: var(--gold);
    }

    /* TABS */
    .tabs {
      display: flex;
      gap: 2px;
      background: rgba(0, 0, 0, .3);
      border-radius: 8px;
      padding: 3px;
      margin-bottom: 28px;
    }

    .tab {
      flex: 1;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      padding: 10px;
      text-align: center;
      border-radius: 6px;
      cursor: pointer;
      transition: all .25s;
      color: rgba(245, 240, 232, .4);
      border: none;
      background: transparent;
    }

    .tab.active {
      background: rgba(196, 148, 58, .15);
      color: var(--gold);
      border: 1px solid rgba(196, 148, 58, .3);
    }

    .tab:hover:not(.active) {
      color: rgba(245, 240, 232, .7);
    }

    /* ══ SPLASH PAGE ══ */
    @keyframes dragonFloat {

      0%,
      100% {
        transform: translateY(0) rotate(-2deg);
      }

      50% {
        transform: translateY(-12px) rotate(2deg);
      }
    }

    @keyframes ripple {
      0% {
        transform: scale(.8);
        opacity: .6;
      }

      100% {
        transform: scale(2.2);
        opacity: 0;
      }
    }

    @keyframes textReveal {
      from {
        opacity: 0;
        letter-spacing: 12px;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        letter-spacing: 6px;
        transform: none;
      }
    }

    @keyframes goldLine {
      from {
        width: 0;
      }

      to {
        width: 180px;
      }
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    #splash {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: radial-gradient(ellipse 120% 120% at 50% -10%, rgba(26, 77, 46, .8) 0%, var(--dark) 60%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 24px;
      transition: opacity .8s ease, transform .8s ease;
    }

    #splash.hiding {
      opacity: 0;
      transform: scale(1.04);
      pointer-events: none;
    }

    /* Ripple rings */
    .splash-rings {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .splash-ring {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      border: 1px solid rgba(196, 148, 58, .08);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: ripple 4s ease-out infinite;
    }

    .splash-ring:nth-child(2) {
      animation-delay: 1.3s;
    }

    .splash-ring:nth-child(3) {
      animation-delay: 2.6s;
    }

    /* Dragon logo SVG */
    .splash-dragon {
      position: relative;
      z-index: 2;
      margin-bottom: 32px;
      animation: dragonFloat 5s ease-in-out infinite;
    }

    .dragon-circle {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(26, 77, 46, .6), rgba(15, 35, 24, .8));
      border: 2px solid rgba(196, 148, 58, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 0 60px rgba(44, 122, 75, .25), inset 0 0 40px rgba(26, 77, 46, .4);
    }

    .dragon-logo-img {
      width: 200px;
      height: 200px;
      object-fit: contain;
      filter: drop-shadow(0 0 20px rgba(44, 122, 75, .6)) drop-shadow(0 0 40px rgba(196, 148, 58, .2));
      animation: dragonFloat 5s ease-in-out infinite;
    }

    .dragon-circle::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 1px solid rgba(196, 148, 58, .15);
    }

    .dragon-chi {
      font-size: 56px;
      color: var(--gold);
      line-height: 1;
      display: block;
    }

    .dragon-sub-chi {
      font-size: 22px;
      color: rgba(196, 148, 58, .5);
      line-height: 1;
      display: block;
      margin-top: 2px;
    }

    /* Text */
    .splash-tag {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 6px;
      color: rgba(196, 148, 58, .6);
      margin-bottom: 14px;
      animation: fadeSlideUp .8s .4s ease both;
      position: relative;
      z-index: 2;
    }

    .splash-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(26px, 6vw, 52px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 6px;
      animation: textReveal .9s .6s ease both;
      position: relative;
      z-index: 2;
      letter-spacing: 4px;
    }

    .splash-title2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(16px, 3.5vw, 28px);
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 6px;
      margin-bottom: 8px;
      animation: fadeSlideUp .8s .85s ease both;
      position: relative;
      z-index: 2;
    }

    .splash-slogan {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(14px, 2.5vw, 20px);
      font-style: italic;
      color: rgba(245, 240, 232, .55);
      letter-spacing: 2px;
      margin-bottom: 8px;
      animation: fadeSlideUp .8s 1s ease both;
      position: relative;
      z-index: 2;
    }

    /* Gold divider */
    .splash-line-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 20px 0;
      animation: fadeSlideUp .8s 1.1s ease both;
      position: relative;
      z-index: 2;
    }

    .splash-gold-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: goldLine 1.2s 1.2s ease both;
      width: 0;
    }

    .splash-diamond {
      color: var(--gold);
      font-size: 8px;
      animation: fadeSlideUp .5s 1.4s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }

    /* Subtitle info */
    .splash-info {
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      color: rgba(245, 240, 232, .35);
      letter-spacing: 3px;
      margin-bottom: 40px;
      animation: fadeSlideUp .8s 1.3s ease both;
      position: relative;
      z-index: 2;
    }

    /* CTA button */
    .splash-cta {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 4px;
      padding: 16px 52px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--dark);
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all .3s;
      animation: fadeSlideUp .8s 1.5s ease both, pulse 3s 2.5s infinite;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 32px rgba(196, 148, 58, .35);
    }

    .splash-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 44px rgba(196, 148, 58, .55);
    }

    /* Footer logos area */
    .splash-footer {
      position: absolute;
      bottom: 24px;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: fadeSlideUp .8s 1.8s ease both;
      z-index: 2;
    }

    .splash-footer-brand {
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 3px;
      color: rgba(245, 240, 232, .25);
    }

    .splash-footer-partners {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .splash-partner {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .2);
      padding: 3px 10px;
      border: 1px solid rgba(245, 240, 232, .08);
      border-radius: 3px;
    }



    /* ══ UNIFIED STYLES ══ */
    .unified-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      background: linear-gradient(135deg, rgba(26, 77, 46, .97), rgba(15, 35, 24, .99));
      border-bottom: 1px solid rgba(196, 148, 58, .2);
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      backdrop-filter: blur(14px);
      transition: transform .35s;
    }

    /* t
    .unified-nav.hidden {
     ransform: translateY(-100%);     } */


    .unav-logo {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      cursor: pointer;
      line-height: 1.5;
    }

    .unav-logo small {
      display: block;
      font-size: 9px;
      letter-spacing: 3px;
      color: rgba(245, 240, 232, .3);
    }

    .unav-links {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      align-items: center;
    }

    .unav-btn {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 1px;
      padding: 7px 13px;
      border-radius: 4px;
      cursor: pointer;
      border: 1px solid transparent;
      background: transparent;
      transition: all .25s;
      color: white;
    }

    .unav-btn:hover {
      color: var(--gold);
      border-color: rgba(196, 148, 58, .3);
    }

    /*.unav-btn.nav-active {
      color: var(--cream);
      border-color: rgba(245, 240, 232, .2);
    }*/

    .unav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--dark) !important;
      border: none !important;
      box-shadow: 0 4px 16px rgba(196, 148, 58, .3);
      font-weight: 700;
    }

    .unav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(196, 148, 58, .5);
    }

    .site-section {
      display: none;
    }

    .site-section.active {
      display: block;
    }

    #section-pub {
      padding-top: 54px;
    }

    #section-ins {
      padding-top: 54px;
    }

    .ins-subnav {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      padding: 14px 24px;
      background: rgba(15, 35, 24, .6);
      border-bottom: 1px solid rgba(196, 148, 58, .1);
      position: sticky;
      top: 54px;
      z-index: 400;
    }

    .ins-subnav {
      min-height: calc(100vh - 54px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      padding: 40px 24px;
      background: transparent;
      border-bottom: none;
      position: static;
      top: auto;
      z-index: auto;
    }

    .ins-stab {
      width: 260px;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 28px;
      border-radius: 18px;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .72);
      background: rgba(15, 35, 24, .55);
      border: 1px solid rgba(196, 148, 58, .18);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
      transition: all .25s;
    }

    .ins-stab:hover {
      transform: translateY(-4px);
      color: var(--white);
      border-color: rgba(196, 148, 58, .4);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
    }

    .ins-stab.active {
      background: linear-gradient(160deg, rgba(26, 77, 46, .5), rgba(15, 35, 24, .92));
      color: var(--gold);
      border-color: rgba(196, 148, 58, .38);
    }

    #itab-reservation.ins-stab {
      border-color: rgba(126, 207, 255, .18);
    }

    #itab-reservation.ins-stab:hover {
      border-color: rgba(126, 207, 255, .38);
    }

    #itab-reservation.ins-stab.active {
      background: linear-gradient(160deg, rgba(10, 25, 60, .7), rgba(15, 35, 24, .92));
      color: #7ecfff;
      border-color: rgba(126, 207, 255, .32);
    }

    @media (max-width: 640px) {
      .ins-subnav {
        min-height: calc(100vh - 54px);
        padding: 24px 16px;
        gap: 16px;
      }

      .ins-stab {
        width: 100%;
        max-width: 340px;
        min-height: 190px;
      }
    }

    .unified-footer {
      background: rgba(0, 0, 0, .45);
      border-top: 1px solid rgba(196, 148, 58, .1);
      padding: 24px;
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .25);
    }

    .unified-footer a {
      color: var(--gold);
      text-decoration: none;
    }


    /* Dragon characters overlay */
    .dragon-chars-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -52%);
      display: flex;
      flex-direction: column;
      align-items: center;
      pointer-events: none;
      z-index: 3;
    }

    .dragon-chi-over {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      text-shadow: 0 2px 12px rgba(0, 0, 0, .7), 0 0 20px rgba(196, 148, 58, .5);
      display: block;
    }

    .dragon-wa-over {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 600;
      color: rgba(196, 148, 58, .85);
      line-height: 1;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
      display: block;
      margin-top: 2px;
    }


    /* ═══ BILAN ÉNERGÉTIQUE MTC NUMÉRIQUE ═══ */
    .section-bilan {
      background: linear-gradient(160deg, rgba(15, 35, 24, .98) 0%, rgba(5, 20, 30, .99) 50%, rgba(15, 35, 24, .98) 100%);
      border-top: 2px solid rgba(196, 148, 58, .3);
      border-bottom: 2px solid rgba(196, 148, 58, .3);
      position: relative;
      overflow: hidden;
    }

    .section-bilan::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 148, 58, .07) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(44, 122, 75, .08) 0%, transparent 60%);
    }

    .bilan-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    @media(max-width:900px) {
      .bilan-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .bilan-badge-exclu {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(196, 148, 58, .15), rgba(196, 148, 58, .05));
      border: 1px solid rgba(196, 148, 58, .4);
      border-radius: 60px;
      padding: 8px 22px;
      margin-bottom: 20px;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--gold);
    }

    .bilan-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    /* Tongue + Pulse visual */
    .bilan-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .bilan-diagram {
      background: rgba(10, 25, 10, .7);
      border: 1px solid rgba(196, 148, 58, .2);
      border-radius: 14px;
      padding: 28px 24px;
      width: 100%;
      max-width: 340px;
      position: relative;
    }

    .bilan-diagram::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .bd-title {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .bd-title::before {
      content: '';
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Tongue SVG zones */
    .tongue-svg {
      width: 120px;
      height: 140px;
      margin: 0 auto 16px;
      display: block;
    }

    .tongue-zones {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
      margin-top: 12px;
    }

    .tongue-zone {
      background: rgba(26, 77, 46, .4);
      border: 1px solid rgba(196, 148, 58, .15);
      border-radius: 6px;
      padding: 7px 10px;
      text-align: center;
    }

    .tz-organ {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 1px;
      color: var(--gold);
      display: block;
      margin-bottom: 3px;
    }

    .tz-desc {
      font-size: 10px;
      color: rgba(245, 240, 232, .55);
    }

    /* Pulse positions */
    .pulse-diagram {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pulse-position {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(15, 35, 24, .6);
      border: 1px solid rgba(196, 148, 58, .1);
      border-radius: 8px;
      padding: 10px 14px;
    }

    .pp-pos {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      min-width: 28px;
    }

    .pp-bar-wrap {
      flex: 1;
      height: 6px;
      background: rgba(196, 148, 58, .1);
      border-radius: 3px;
      overflow: hidden;
    }

    .pp-bar {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--green), var(--gold));
    }

    .pp-organs {
      font-size: 11px;
      color: rgba(245, 240, 232, .65);
    }

    .pp-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
      min-width: 32px;
      text-align: right;
    }

    /* Digital badge */
    .digital-badge {
      background: linear-gradient(135deg, rgba(196, 148, 58, .12), rgba(26, 77, 46, .3));
      border: 1px solid rgba(196, 148, 58, .3);
      border-radius: 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
    }

    .db-icon {
      font-size: 24px;
      flex-shrink: 0;
    }

    .db-text {
      font-size: 12px;
      color: rgba(245, 240, 232, .75);
      line-height: 1.5;
    }

    .db-text strong {
      color: var(--gold);
    }

    /* Content */
    .bilan-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .bilan-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .bilan-content p {
      font-size: 15px;
      color: rgba(245, 240, 232, .68);
      line-height: 1.82;
      margin-bottom: 22px;
    }

    .bilan-innovations {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }

    .bilan-innov {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 8px;
      transition: border-color .3s;
    }

    .bilan-innov.langue {
      background: rgba(26, 77, 46, .2);
      border-left: 3px solid var(--gold);
    }

    .bilan-innov.pouls {
      background: rgba(10, 25, 60, .3);
      border-left: 3px solid #7ecfff;
    }

    .bilan-innov.digital {
      background: rgba(120, 60, 10, .15);
      border-left: 3px solid var(--gold2);
    }

    .bi-icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .bi-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 5px;
    }

    .bi-body p {
      font-size: 13px;
      color: rgba(245, 240, 232, .6);
      line-height: 1.55;
      margin: 0;
    }

    .bi-body .bi-tag {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 2px;
      background: rgba(196, 148, 58, .12);
      color: var(--gold);
      border: 1px solid rgba(196, 148, 58, .25);
      padding: 2px 8px;
      border-radius: 10px;
      margin-bottom: 5px;
    }

    .pouls .bi-body .bi-tag {
      background: rgba(37, 99, 184, .15);
      color: #7ecfff;
      border-color: rgba(100, 180, 255, .25);
    }

    /* Intérêt box */
    .bilan-interest {
      background: linear-gradient(135deg, rgba(196, 148, 58, .12), rgba(26, 77, 46, .2));
      border: 1px solid rgba(196, 148, 58, .35);
      border-radius: 10px;
      padding: 20px 22px;
      margin-bottom: 28px;
    }

    .bi-interest-title {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }

    .bi-interest-text {
      font-size: 14px;
      color: rgba(245, 240, 232, .8);
      line-height: 1.7;
      font-style: italic;
    }

    .bi-interest-text strong {
      color: var(--cream);
      font-style: normal;
    }

    /* CTA demand */
    .bilan-demand-box {
      background: rgba(196, 148, 58, .08);
      border: 1px solid rgba(196, 148, 58, .3);
      border-radius: 10px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .bdb-text {
      flex: 1;
      min-width: 200px;
    }

    .bdb-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .bdb-text p {
      font-size: 12px;
      color: rgba(245, 240, 232, .5);
      margin: 0;
    }

    .login-body {
      min-height: 100vh;
    }

    .login-shell {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 20px;
    }

    .login-card {
      width: 100%;
      max-width: 460px;
      background: rgba(10, 25, 10, .55);
      border: 1px solid rgba(196, 148, 58, .14);
      border-radius: 14px;
      padding: 36px 30px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
      backdrop-filter: blur(10px);
      animation: fadeUp .4s ease both;
    }

    .login-top {
      text-align: center;
      margin-bottom: 28px;
    }

    .login-tag {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .login-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 42px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .login-title em {
      color: var(--gold);
      font-style: italic;
    }

    .login-subtitle {
      font-size: 14px;
      color: rgba(245, 240, 232, .55);
      line-height: 1.6;
    }

    .login-error {
      margin-bottom: 18px;
      padding: 12px 14px;
      border-radius: 8px;
      background: rgba(120, 20, 20, .25);
      border: 1px solid rgba(231, 76, 60, .3);
      color: #f5c6c6;
      font-size: 13px;
    }

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

    .login-input {
      min-height: 48px;
    }

    .login-actions {
      display: flex;
      gap: 10px;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .login-actions .btn {
      justify-content: center;
      flex: 1 1 180px;
    }

    @media (max-width: 520px) {
      .login-card {
        padding: 28px 20px;
      }

      .login-actions {
        flex-direction: column;
      }

      .login-actions .btn {
        width: 100%;
      }
    }

    .login-body {
      min-height: 100vh;
    }

    .login-shell {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 24px;
    }

    .login-card {
      width: 100%;
      max-width: 560px;
      background: rgba(10, 25, 10, .55);
      border: 1px solid rgba(196, 148, 58, .14);
      border-radius: 18px;
      padding: 52px 44px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
      backdrop-filter: blur(10px);
      animation: fadeUp .4s ease both;
    }

    .login-top {
      text-align: center;
      margin-bottom: 36px;
    }

    .login-tag {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 5px;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .login-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 5vw, 52px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 12px;
    }

    .login-title em {
      color: var(--gold);
      font-style: italic;
    }

    .login-subtitle {
      max-width: 420px;
      margin: 0 auto;
      font-size: 15px;
      color: rgba(245, 240, 232, .55);
      line-height: 1.75;
    }

    .login-error {
      margin-bottom: 22px;
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(120, 20, 20, .25);
      border: 1px solid rgba(231, 76, 60, .3);
      color: #f5c6c6;
      font-size: 13px;
      line-height: 1.5;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      gap: 26px;
    }

    .login-form .form-field {
      gap: 10px;
    }

    .login-input {
      min-height: 54px;
      padding: 15px 16px;
      font-size: 15px;
    }

    .login-actions {
      display: flex;
      gap: 14px;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .login-actions .btn {
      justify-content: center;
      flex: 1 1 220px;
      min-height: 52px;
    }

    @media (max-width: 640px) {
      .login-shell {
        padding: 28px 16px;
      }

      .login-card {
        max-width: 100%;
        padding: 34px 22px;
        border-radius: 14px;
      }

      .login-top {
        margin-bottom: 28px;
      }

      .login-title {
        font-size: 38px;
      }

      .login-subtitle {
        font-size: 14px;
      }

      .login-form {
        gap: 20px;
      }

      .login-actions {
        flex-direction: column;
      }

      .login-actions .btn {
        width: 100%;
      }
    }

    .legal-page {
      max-width: 980px;
      margin: 0 auto;
      padding: 7rem 24px 5rem;
    }

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

    .legal-tag {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .legal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 5vw, 56px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 12px;
    }

    .legal-title em {
      color: var(--gold);
      font-style: italic;
    }

    .legal-intro {
      max-width: 640px;
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.8;
      color: rgba(245, 240, 232, .58);
    }

    .legal-card {
      background: rgba(10, 25, 10, .48);
      border: 1px solid rgba(196, 148, 58, .14);
      border-radius: 18px;
      padding: 42px 38px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
      backdrop-filter: blur(8px);
    }

    .legal-content {
      max-width: 760px;
      margin: 0 auto;
    }

    .legal-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--white);
      margin: 34px 0 12px;
      line-height: 1.15;
    }

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

    .legal-content p,
    .legal-content li {
      font-size: 15px;
      line-height: 1.9;
      color: rgba(245, 240, 232, .78);
    }

    .legal-content p {
      margin-bottom: 16px;
    }

    .legal-content ul {
      margin: 10px 0 18px 20px;
    }

    .legal-content li {
      margin-bottom: 8px;
    }

    .legal-content strong {
      color: var(--cream);
      font-weight: 700;
    }

    .legal-content a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(196, 148, 58, .35);
      transition: all .2s ease;
    }

    .legal-content a:hover {
      color: var(--gold2);
      border-bottom-color: rgba(232, 184, 75, .7);
    }

    @media (max-width: 768px) {
      .legal-page {
        padding: 6rem 16px 4rem;
      }

      .legal-card {
        padding: 28px 22px;
        border-radius: 14px;
      }

      .legal-content h2 {
        font-size: 25px;
        margin: 26px 0 10px;
      }

      .legal-content p,
      .legal-content li,
      .legal-intro {
        font-size: 14px;
        line-height: 1.75;
      }
    }

    /* ═══ BIBLIOTHÈQUE ACADÉMIE ═══ */
    .section-bibliotheque {
      background: linear-gradient(160deg, rgba(10, 20, 10, .98) 0%, rgba(15, 35, 24, .97) 100%);
      border-top: 1px solid rgba(196, 148, 58, .2);
      border-bottom: 1px solid rgba(196, 148, 58, .2);
    }

    .biblio-wrap {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 52px;
      align-items: start;
    }

    @media(max-width:900px) {
      .biblio-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    /* Book visual */
    .book-3d {
      perspective: 800px;
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }

    .book-inner {
      width: 200px;
      height: 270px;
      position: relative;
      transform-style: preserve-3d;
      transform: rotateY(-20deg);
      transition: transform .5s ease;
      cursor: pointer;
    }

    .book-inner:hover {
      transform: rotateY(-5deg);
    }

    .book-front {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #1a4d2e 0%, #0f2318 100%);
      border-radius: 3px 8px 8px 3px;
      border: 1px solid rgba(196, 148, 58, .4);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding: 20px 16px;
      backface-visibility: hidden;
      box-shadow: 4px 6px 20px rgba(0, 0, 0, .6);
    }

    .book-front::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 20px;
      background: linear-gradient(135deg, rgba(196, 148, 58, .3), rgba(26, 77, 46, .8));
      border-radius: 3px 0 0 3px;
      border-right: 1px solid rgba(196, 148, 58, .2);
    }

    .book-spine {
      position: absolute;
      top: 0;
      left: -18px;
      bottom: 0;
      width: 18px;
      background: linear-gradient(180deg, #0a1a0a, #1a3a1a);
      border-radius: 3px 0 0 3px;
      transform: rotateY(-90deg) translateX(9px);
      transform-origin: right;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .book-spine-text {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 2px;
      color: rgba(196, 148, 58, .7);
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }

    .book-header {
      font-family: 'Cinzel', serif;
      font-size: 7px;
      letter-spacing: 2px;
      color: rgba(196, 148, 58, .7);
      text-align: center;
      line-height: 1.6;
    }

    .book-title-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      text-align: center;
      line-height: 1.3;
    }

    .book-chi {
      font-size: 22px;
      color: var(--gold);
      letter-spacing: 4px;
      text-align: center;
    }

    .book-subtitle {
      font-size: 9px;
      font-family: 'Cinzel', serif;
      letter-spacing: 1px;
      color: rgba(245, 240, 232, .4);
      text-align: center;
    }

    .book-author {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-style: italic;
      color: rgba(196, 148, 58, .8);
      text-align: center;
    }

    .book-badge {
      background: rgba(196, 148, 58, .15);
      border: 1px solid rgba(196, 148, 58, .3);
      border-radius: 3px;
      padding: 3px 8px;
      font-family: 'Cinzel', serif;
      font-size: 6px;
      letter-spacing: 2px;
      color: var(--gold);
    }

    .book-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 12px;
    }

    .bi-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: rgba(245, 240, 232, .5);
    }

    .bi-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Reader modal */
    .reader-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(5, 12, 5, .95);
      backdrop-filter: blur(8px);
    }

    .reader-modal.open {
      display: flex;
      flex-direction: column;
    }

    .reader-topbar {
      background: rgba(15, 35, 24, .98);
      border-bottom: 1px solid rgba(196, 148, 58, .2);
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }

    .reader-title {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
    }

    .reader-nav {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .reader-page-info {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(245, 240, 232, .4);
    }

    .reader-btn {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 1px;
      padding: 6px 14px;
      border: 1px solid rgba(196, 148, 58, .3);
      background: transparent;
      color: var(--gold);
      border-radius: 4px;
      cursor: pointer;
      transition: all .2s;
    }

    .reader-btn:hover {
      background: rgba(196, 148, 58, .1);
    }

    .reader-btn.close-btn {
      border-color: rgba(245, 240, 232, .2);
      color: rgba(245, 240, 232, .5);
    }

    .reader-body {
      flex: 1;
      overflow-y: auto;
      padding: 40px 24px;
      max-width: 780px;
      margin: 0 auto;
      width: 100%;
    }

    .reader-chapter {
      margin-bottom: 48px;
    }

    .reader-part-title {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      text-align: center;
      margin-bottom: 8px;
    }

    .reader-chapter-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 3.5vw, 32px);
      font-weight: 700;
      color: var(--white);
      text-align: center;
      margin-bottom: 28px;
      line-height: 1.2;
    }

    .reader-chapter-title em {
      color: var(--gold);
      font-style: italic;
    }

    .reader-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      line-height: 1.9;
      color: rgba(245, 240, 232, .82);
      margin-bottom: 16px;
    }

    .reader-text strong {
      color: var(--cream);
    }

    .reader-quote {
      border-left: 3px solid var(--gold);
      padding: 14px 20px;
      margin: 20px 0;
      background: rgba(26, 77, 46, .2);
      border-radius: 0 6px 6px 0;
    }

    .reader-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-style: italic;
      color: rgba(245, 240, 232, .8);
      line-height: 1.7;
    }

    .reader-quote cite {
      display: block;
      font-size: 11px;
      color: rgba(245, 240, 232, .4);
      margin-top: 8px;
      font-style: normal;
      font-family: 'Cinzel', serif;
      letter-spacing: 1px;
    }

    .reader-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-weight: 600;
      color: var(--gold);
      margin: 28px 0 12px;
    }

    .reader-list {
      list-style: none;
      margin: 12px 0 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .reader-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      color: rgba(245, 240, 232, .75);
      line-height: 1.6;
    }

    .reader-list li::before {
      content: '•';
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .reader-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 13px;
    }

    .reader-table th {
      background: rgba(26, 77, 46, .5);
      color: var(--gold);
      font-family: 'Cinzel', serif;
      font-size: 8px;
      letter-spacing: 2px;
      padding: 10px 12px;
      border: 1px solid rgba(196, 148, 58, .15);
    }

    .reader-table td {
      padding: 9px 12px;
      border: 1px solid rgba(196, 148, 58, .08);
      color: rgba(245, 240, 232, .7);
      vertical-align: top;
    }

    .reader-table tr:hover td {
      background: rgba(196, 148, 58, .04);
    }

    .reader-toc {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin: 24px 0;
    }

    .reader-toc-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      background: rgba(15, 35, 24, .5);
      border: 1px solid rgba(196, 148, 58, .1);
      border-radius: 6px;
      cursor: pointer;
      transition: all .25s;
    }

    .reader-toc-item:hover {
      border-color: rgba(196, 148, 58, .4);
      background: rgba(26, 77, 46, .3);
    }

    .rtoc-num {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      min-width: 24px;
    }

    .rtoc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      color: var(--white);
    }

    .rtoc-part {
      font-size: 10px;
      color: rgba(245, 240, 232, .35);
      margin-left: auto;
      font-family: 'Cinzel', serif;
      letter-spacing: 1px;
    }

    .reader-separator {
      text-align: center;
      color: rgba(196, 148, 58, .3);
      font-size: 18px;
      letter-spacing: 8px;
      margin: 32px 0;
    }

    .reader-page-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-top: 1px solid rgba(196, 148, 58, .1);
      margin-top: 32px;
    }
