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

    :root {
      --black:   #080810;
      --deep:    #0E0E1A;
      --violet:  #6B21F5;
      --vivid:   #8B5CF6;
      --glow:    #A78BFA;
      --white:   #FFFFFF;
      --muted:   rgba(255,255,255,0.55);
      --border:  rgba(107,33,245,0.25);
    }

    html { scroll-behavior: smooth; font-size: 17.5px; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ─── DISNEY COPYRIGHT ─── */
    .disney-copyright {
      position: fixed; bottom: 12px; left: 16px; z-index: 999;
      font-size: 0.7rem; color: rgba(255,255,255,0.9);
      pointer-events: none;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(8,8,16,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-toggle-checkbox { display: none; }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 20px;
      gap: 16px;
    }
    .nav-logo {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 700; font-size: 1.15rem;
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .nav-logo span { color: var(--glow); }
    nav a.nav-btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 10px 22px; border-radius: 6px;
      text-decoration: none; white-space: nowrap;
      transition: background .2s, border-color .2s;
    }
    nav a.nav-btn .material-symbols-outlined { font-size: 20px; flex-shrink: 0; }
    nav a.nav-btn-solid {
      background: var(--violet); color: #fff; border: 1.5px solid transparent;
    }
    nav a.nav-btn-solid:hover { background: var(--vivid); }
    nav a.nav-btn-outline {
      background: transparent; color: #fff; border: 1.5px solid var(--violet);
    }
    nav a.nav-btn-outline:hover { border-color: var(--glow); background: rgba(107,33,245,0.1); }
    @media (max-width: 560px) {
      .nav-right a.nav-btn-outline { display: none; }
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 26px;
      margin: 0 auto;
    }
    @media (min-width: 900px) {
      .nav-links { display: flex; }
    }
    .nav-link {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
      color: rgba(255,255,255,0.7); text-decoration: none;
      transition: color .2s;
      white-space: nowrap;
    }
    .nav-link:hover { color: var(--glow); }

    .nav-right { display: flex; align-items: center; gap: 14px; }

    .nav-burger {
      display: flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; cursor: pointer; color: #fff; flex-shrink: 0;
    }
    @media (min-width: 900px) {
      .nav-burger { display: none; }
    }
    .nav-burger .icon-close { display: none; }

    .nav-mobile-menu {
      display: none;
      flex-direction: column;
      padding: 8px 20px 24px;
      border-top: 1px solid var(--border);
      background: rgba(8,8,16,0.98);
    }
    .nav-toggle-checkbox:checked ~ .nav-mobile-menu { display: flex; }
    .nav-toggle-checkbox:checked ~ .nav-inner .nav-burger .icon-menu { display: none; }
    .nav-toggle-checkbox:checked ~ .nav-inner .nav-burger .icon-close { display: flex; }
    @media (min-width: 900px) {
      .nav-mobile-menu { display: none !important; }
    }
    .nav-mobile-link {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase;
      color: rgba(255,255,255,0.8); text-decoration: none;
      padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-mobile-link:hover { color: var(--glow); }
    .nav-mobile-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
    .nav-mobile-ctas a.nav-btn { justify-content: center; }

    /* ─── HERO ─── */
    .hero {
      display: flex; flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 960px) {
      .hero { flex-direction: row; height: 900px; }
    }

    .hero-photo { position: relative; flex: 0 0 auto; min-height: 480px; }
    @media (min-width: 960px) {
      .hero-photo { flex: 0 0 65%; min-height: auto; height: 100%; }
    }
    .hero-photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      display: block;
    }
    .hero-photo::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(8,8,16,0.65) 0%, rgba(8,8,16,0.05) 35%, rgba(8,8,16,0.05) 70%, rgba(8,8,16,0.92) 100%);
    }
    @media (min-width: 960px) {
      .hero-photo::after {
        background: linear-gradient(180deg, rgba(8,8,16,0.45) 0%, transparent 25%, transparent 100%);
      }
    }

    .hero-info {
      flex: 1;
      display: flex; flex-direction: column; justify-content: center; gap: 24px;
      padding: 96px 28px 40px;
      background: var(--deep);
      border-top: 1px solid var(--border);
      position: relative;
    }
    @media (min-width: 960px) {
      .hero-info {
        padding: 110px 56px 40px;
        border-top: none;
        border-left: 1px solid var(--border);
        overflow-y: auto;
      }
    }

    .hero-info-top {
      display: flex; flex-direction: column; align-items: center; gap: 20px;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 18px; border-radius: 100px;
      border: 1px solid var(--border);
      background: rgba(107,33,245,0.12);
      font-size: 0.92rem; font-weight: 500;
      color: var(--glow);
    }
    .hero-badge .dot { color: var(--violet); padding: 0 2px; }

    .hero-info h1 {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      font-weight: 600; line-height: 1.2;
      color: var(--white);
    }

    .hero-divider { width: 36px; height: 1px; background: var(--violet); border: none; }

    .hero-brand { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
    .hero-brand img { height: 110px; width: auto; display: block; }
    .hero-location-row { display: flex; align-items: center; gap: 12px; width: 100%; }
    .hero-location-row .line { flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
    .hero-location-row .loc { font-size: 1.05rem; color: rgba(255,255,255,0.65); white-space: nowrap; }

    .hero-info-desc {
      font-size: 1rem; color: var(--muted);
      line-height: 1.75; text-align: center;
    }

    .hero-cta-row {
      display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    }
    .hero-btn {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 22px; border-radius: 6px;
      text-decoration: none; min-height: 52px;
      transition: transform .15s, border-color .2s, background .2s;
    }
    .hero-btn .material-symbols-outlined { font-size: 26px; flex-shrink: 0; }
    .hero-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
    .hero-btn-text strong { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; }
    .hero-btn-text small { font-size: 0.76rem; opacity: 0.85; font-weight: 400; }
    .hero-btn-primary {
      background: var(--violet); color: #fff; border: 1.5px solid transparent;
      box-shadow: 0 0 30px rgba(107,33,245,0.4);
    }
    .hero-btn-primary:hover { background: var(--vivid); transform: translateY(-2px); }
    .hero-btn-primary s { opacity: 0.7; }
    .hero-btn-secondary {
      background: transparent; color: #fff;
      border: 1.5px solid var(--violet);
    }
    .hero-btn-secondary:hover { border-color: var(--glow); background: rgba(107,33,245,0.1); transform: translateY(-2px); }
    .hero-btn-secondary .material-symbols-outlined { animation: hero-bounce 2s ease-in-out infinite; }
    @keyframes hero-bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(4px); }
    }

    .hero-ctas {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 700;
      font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase;
      padding: 16px 36px; border-radius: 6px;
      background: var(--violet); color: #fff; text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 0 30px rgba(107,33,245,0.4);
    }
    .btn-primary:hover { background: var(--vivid); transform: translateY(-2px); box-shadow: 0 0 45px rgba(107,33,245,0.6); }

    .btn-secondary {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 700;
      font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase;
      padding: 16px 36px; border-radius: 6px;
      background: transparent; color: #fff; text-decoration: none; cursor: pointer;
      border: 1.5px solid var(--violet);
      transition: border-color .2s, background .2s, transform .15s;
    }
    .btn-secondary:hover { border-color: var(--glow); background: rgba(107,33,245,0.1); transform: translateY(-2px); }

    .hero-date {
      margin-top: 52px;
      display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
    }
    .hero-date-item {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
    }
    .hero-date-item .label {
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
    }
    .hero-date-item .value {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white);
    }

    /* ─── TICKER ─── */
    .ticker-wrap {
      overflow: hidden; white-space: nowrap;
      padding: 18px 0;
      background: rgba(107,33,245,0.08);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .ticker-track {
      display: inline-block;
      animation: ticker 35s linear infinite;
    }
    .ticker-track span {
      display: inline-block;
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 700;
      font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted); padding: 0 40px;
    }
    .ticker-track span.dot {
      color: var(--violet); padding: 0 10px; font-size: 1.2rem;
    }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── CHANNELS ─── */
    .section { padding: 64px 24px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--glow); font-weight: 600; margin-bottom: 16px;
      text-align: center;
    }
    .section-title {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700; line-height: 1.1; margin-bottom: 8px;
      text-align: center;
    }
    .section-desc { color: var(--muted); font-size: 1.02rem; margin: 0 auto 56px; text-align: center; max-width: 50%; }

    .channels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 2px;
    }
    .channel-card {
      background: var(--deep);
      padding: 32px 28px;
      border: 1px solid var(--border);
      transition: border-color .2s, background .2s;
      position: relative; overflow: hidden;
    }
    .channel-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--violet);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s;
    }
    .channel-card:hover { background: rgba(107,33,245,0.08); border-color: var(--vivid); }
    .channel-card:hover::before { transform: scaleX(1); }

    .channel-header {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 14px;
    }
    .channel-icon {
      width: 30px; height: 30px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      /*border-radius: 8px;
      background: rgba(107,33,245,0.12);
      border: 1px solid rgba(107,33,245,0.3);*/
      color: var(--glow);
    }
    .channel-icon .material-symbols-outlined {
      font-size: 30px;
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;*/
    }
    .channel-name {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 600;
      font-size: 1.05rem;
      color:var(--glow);
    }
    .channel-desc { font-size: 0.88rem; color: var(--muted); }

    /* ─── NUMBERS ─── */
    .numbers-section {
      background: var(--deep);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0;
    }
    .number-item {
      padding: 56px 32px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .number-item:last-child { border-right: none; }
    .number-value {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-size: clamp(2.8rem, 5vw, 4rem);
      font-weight: 800; color: var(--glow); line-height: 1;
      margin-bottom: 8px;
    }
    .number-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; }

    /* ─── FORMAT ─── */
    .format-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
    }
    .format-card {
      border: 1px solid var(--border);
      border-radius: 12px; padding: 36px 32px;
      background: var(--deep);
      transition: transform .2s, border-color .2s;
    }
    .format-card:hover { transform: translateY(-4px); border-color: var(--vivid); }
    .format-card .icon { font-size: 2.2rem; margin-bottom: 18px; }
    .format-card h3 {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 600; font-size: 1.15rem;
      margin-bottom: 12px;
    }
    .format-card p { font-size: 0.9rem; color: var(--muted); }

    /* ─── BRANDS ─── */
    .brands-section { background: var(--deep); }
    .brands-label {
      text-align: center;
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 40px;
    }
    .brands-grid {
      display: flex; flex-wrap: wrap; gap: 12px 28px;
      justify-content: center; align-items: center;
    }
    .brand-pill {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 600;
      font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      padding: 8px 18px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      transition: color .2s, border-color .2s;
    }
    .brand-pill:hover { color: var(--white); border-color: var(--violet); }

    /* ─── SPONSORS OFFERS ─── */
    .offers-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
    }
    .offer-card {
      border: 1px solid var(--border);
      border-radius: 12px; padding: 40px 32px;
      background: var(--deep); position: relative; overflow: hidden;
    }
    .offer-card.featured {
      border-color: var(--violet);
      background: rgba(107,33,245,0.06);
    }
    .offer-card.featured::before {
      content: 'RECOMMANDÉ';
      position: absolute; top: 16px; right: 16px;
      font-size: 0.65rem; letter-spacing: 0.1em;
      padding: 4px 10px; border-radius: 4px;
      background: var(--violet); color: #fff; font-weight: 700;
    }
    .offer-tier {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 800;
      font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--glow); margin-bottom: 14px;
    }
    .offer-price {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-weight: 800;
      font-size: 2.4rem; line-height: 1; margin-bottom: 28px; color: var(--white);
    }
    .offer-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
    .offer-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
    .offer-features li {
      font-size: 0.9rem; color: var(--muted);
      padding-left: 20px; position: relative;
    }
    .offer-features li::before {
      content: '✓'; position: absolute; left: 0;
      color: var(--glow); font-weight: 700;
    }
    .offer-features li.neg { color: rgba(255,255,255,0.2); }
    .offer-features li.neg::before { content: '✗'; color: rgba(255,255,255,0.2); }

    /* ─── ORGANISATEURS ─── */
    .organisateurs-list {
      display: flex; flex-direction: column; gap: 48px;
      margin-top: 56px;
    }
    .organisateur-row {
      display: flex; flex-direction: row; align-items: flex-start; gap: 20px;
    }
    .organisateur-photo-wrap { flex-shrink: 0; }
    .organisateur-photo-wrap img {
      width: 112px; height: 112px;
      border-radius: 50%;
      object-fit: cover;
      outline: 2px solid var(--white);
      outline-offset: 0px;
      display: block;
    }
    .organisateur-body {
      display: flex; flex-direction: column; gap: 12px;
      border-left: 1px solid var(--violet);
      padding-left: 20px;
    }
    .organisateur-name {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 600; font-size: 1.5rem; color: var(--white);
    }
    .organisateur-name .lastname {
      display: inline;
      background: linear-gradient(90deg, var(--violet), var(--vivid));
      color: #fff; font-weight: 800;
      padding: 1px 6px; border-radius: 4px;
      text-transform: uppercase;
    }
    .organisateur-bio {
      font-size: 0.9rem; 
      color: rgba(255,255,255,0.8);
      line-height: 1.3; text-align: justify;
    }
    .organisateur-bio strong { color: var(--white); font-weight: 600; }
    .organisateur-bio a { color: var(--white); font-weight: 400; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
    .organisateur-bio a:hover { border-color: var(--glow); }
    @media (max-width: 600px) {
      .organisateur-row { flex-direction: column; align-items: flex-start; }
      .organisateur-body { border-left: none; border-top: 1px solid var(--violet); padding-left: 0; padding-top: 16px; }
    }

    /* ─── CTA FINAL ─── */
    .cta-section {
      text-align: center; padding: 50px 24px;
      background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(107,33,245,0.2) 0%, transparent 70%),
        var(--black);
    }
    .cta-section h2 {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif; font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 700; margin-bottom: 20px; line-height: 1.1;
    }
    .cta-section p { color: var(--muted); max-width: 1200px; margin: 0 auto 44px; }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 56px 48px 40px;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 32px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 32px;
    }
    .footer-brand img { height: 52px; width: auto; display: block; }
    .footer-brand p { font-size: 0.75rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }
    .footer-legal-link {
      font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none;
      transition: color .2s;
    }
    .footer-legal-link:hover { color: var(--white); }
    .footer-contact {
      display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right;
    }
    .footer-contact a {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; color: var(--muted); text-decoration: none;
      transition: color .2s;
    }
    .footer-contact a:hover { color: var(--white); }
    .footer-contact .material-symbols-outlined { font-size: 16px; }
    .footer-social {
      display: flex; gap: 12px; align-items: center;
    }
    .footer-social a {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--border);
      color: var(--muted);
      transition: border-color .2s, color .2s;
    }
    .footer-social a:hover { border-color: var(--glow); color: var(--white); }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-bottom { display: flex; flex-direction: column; gap: 16px; }
    .footer-row {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 24px; flex-wrap: wrap;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.6; }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
    .footer-links-row { display: flex; gap: 20px; flex-wrap: wrap; }

    /* ─── SECTION ALT (fond secondaire) ─── */
    .section-alt { background: var(--deep); }

    /* ─── TARIFS / RÉSERVEZ VOS PLACES ─── */
    .tiers-countdown { text-align: center; margin-bottom: 56px; }
    .tiers-badge-row {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      flex-wrap: wrap; margin-bottom: 24px;
    }
    .tiers-badge {
      background: var(--violet); color: #fff; font-weight: 700;
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 7px 16px; border-radius: 100px;
    }
    .tiers-badge-note { font-size: 0.88rem; color: var(--muted); }
    .countdown-grid { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .countdown-item {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.03); border: 1px solid var(--border);
      border-radius: 12px; padding: 18px 26px; min-width: 88px;
    }
    .countdown-value {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 800; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--glow);
      line-height: 1; font-variant-numeric: tabular-nums;
    }
    .countdown-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

    .tiers-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px; width: 100%;
    }
    .tier-card {
      position: relative; display: flex; flex-direction: column;
      border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
      background: var(--deep);
    }
    .tier-card.featured { border-color: var(--violet); background: rgba(107,33,245,0.06); }
    .tier-card.featured::before {
      content: 'Recommandé';
      position: absolute; top: 0; right: 0;
      font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 7px 16px; border-radius: 0 0 0 12px;
      background: var(--violet); color: #fff; font-weight: 700;
    }
    .tier-body { padding: 36px 28px; display: flex; flex-direction: column; gap: 22px; flex: 1; }
    .tier-title {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 700; font-size: 1.5rem; color: var(--white);
    }
    .tier-subtitle { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
    .tier-price-row { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
    .tier-price {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 800; font-size: 3rem; color: var(--white); line-height: 1;
    }
    .tier-price-unit { font-size: 0.9rem; color: var(--muted); padding-bottom: 6px; }
    .tier-price-old {
      background: var(--violet); color: #fff; font-size: 0.85rem; font-weight: 700;
      padding: 5px 10px; border-radius: 6px; text-decoration: line-through;
    }
    .tier-future { border-top: 1px solid var(--border); padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
    .tier-future-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted); gap: 12px; }
    .tier-future-row strong { color: var(--white); font-weight: 700; }
    .tier-cta { margin: 0 28px 28px; }
    .tier-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 16px; border-radius: 6px;
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
      text-decoration: none; transition: background .2s, transform .15s, border-color .2s;
    }
    .tier-btn .material-symbols-outlined { font-size: 20px; }
    .tier-btn-solid { background: var(--violet); color: #fff; border: 1.5px solid transparent; }
    .tier-btn-solid:hover { background: var(--vivid); transform: translateY(-2px); }
    .tier-btn-outline { background: transparent; border: 1.5px solid var(--violet); color: #fff; }
    .tier-btn-outline:hover { border-color: var(--glow); background: rgba(107,33,245,0.1); transform: translateY(-2px); }

    /* ─── CONFÉRENCIERS ─── */
    .speakers-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 32px 16px; width: 100%;
    }
    .speaker-card { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .speaker-avatar {
      width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--violet); background: var(--deep); display: block;
    }
    .speaker-name { font-size: 0.82rem; font-weight: 600; color: var(--white); line-height: 1.25; }
    .speaker-name .lastname { text-transform: uppercase; }
    .speaker-role { font-size: 0.72rem; color: var(--muted); line-height: 1.3; }

    /* ─── PARTENAIRES ─── */
    .partners-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }
    .partner-card {
      display: flex; align-items: center; justify-content: center;
      background: var(--black); border: 1px solid var(--border); border-radius: 10px;
      padding: 26px 20px; transition: border-color .2s, background .2s;
    }
    .partner-card:hover { border-color: var(--vivid); background: rgba(107,33,245,0.08); }
    .partner-card img {
      max-height: 34px; max-width: 100%; width: auto; display: block;
      filter: brightness(0) invert(1) opacity(0.55);
      transition: filter .25s, opacity .25s;
    }
    .partner-card:hover img { filter: none; opacity: 1; }

    /* ─── DISNEYLAND EXPÉRIENCE ─── */
    .venue-gallery {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px; width: 100%; margin: 0 0 48px;
    }
    .venue-gallery figure {
      border: 1px solid var(--border); overflow: hidden;
      background: var(--black); margin: 0;
    }
    .venue-gallery img { width: 100%; height: auto; display: block; }

    .venue-text {
      width: 100%; display: flex; flex-direction: column;
      gap: 16px; color: var(--muted); font-size: 0.95rem; line-height: 1.75;
    }
    .venue-text strong { color: var(--white); }

    .venue-stay {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
      margin: 64px 0 0; width: 100%; align-items: start;
    }
    @media (max-width: 800px) { .venue-stay { grid-template-columns: 1fr; } }
    .venue-stay-title {
      font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
      font-size: 1.3rem; font-weight: 600; color: var(--white);
    }
    .venue-stay-subtitle { color: var(--glow); font-weight: 600; margin-top: 4px; font-size: 0.95rem; }
    .venue-stay-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-top: 14px; }
    .venue-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
    .venue-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; font-weight: 600; color: var(--white); }
    .venue-benefits li .material-symbols-outlined { color: var(--glow); font-size: 20px; margin-top: 1px; flex-shrink: 0; }
    .venue-stay-details { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
    .venue-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); min-height: 320px; }
    .venue-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

    .venue-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }

    /* ─── FAQ ─── */
    .faq-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
    .faq-item { border: 1px solid var(--border); border-radius: 10px; background: var(--black); overflow: hidden; }
    .faq-item summary {
      cursor: pointer; list-style: none;
      padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
      font-weight: 600; font-size: 0.96rem; color: var(--white);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+'; font-size: 1.4rem; color: var(--glow); font-weight: 400;
      flex-shrink: 0; transition: transform .2s; line-height: 1;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item .faq-answer { padding: 0 24px 22px; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      footer { padding: 40px 24px 32px; }
      .number-item { border-right: none; border-bottom: 1px solid var(--border); }
      .number-item:last-child { border-bottom: none; }
      footer { padding: 40px 20px 32px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-contact { align-items: flex-start; }
      .footer-social { justify-content: flex-start; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }
