/* ═══════════════════════════════════════════════════════════
   CLICKCASE — Styles globaux
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & variables ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:      #F5C400;
  --purple-dark: #1A0A3B;
  --purple-mid:  #2D1260;
  --purple-glow: #7C3AED;
  --white:       #FFFFFF;
  --nav-bg:      rgba(255, 255, 255, 0.97);
  --nav-height:  64px;
  --radius-sm:   8px;
  --radius-md:   10px;
  --ease:        .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #1a1a2e;
}

/* ── Utilitaires ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER (réutilisable plus tard)
   ═══════════════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid #e8e0f5;
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(100,50,200,.08);
}
.header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.header-logo img   { height: 36px; display: block; }
.header-nav        { display: flex; gap: 32px; align-items: center; }
.header-nav a      { text-decoration: none; color: #1a1a2e; font-size: 14px; font-weight: 500; transition: color var(--ease); }
.header-nav a:hover { color: var(--purple-glow); }
.header-actions    { display: flex; gap: 10px; align-items: center; }

/* ═══════════════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: filter var(--ease), transform var(--ease);
}

.btn-yellow { background: var(--yellow); color: #1a1a2e; padding: 9px 18px; font-size: 14px; }
.btn-yellow:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-outline {
  background: none; border: 1.5px solid #d1c4e9; color: #1a1a2e;
  padding: 8px 14px; font-size: 14px;
  transition: border-color var(--ease), background var(--ease);
}
.btn-outline:hover { border-color: var(--purple-glow); background: #f3eeff; }

/* Boutons hero */
.btn-hero-yellow {
  background: var(--yellow); color: #1a1a2e;
  padding: 14px 28px; font-size: 15px; font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(245,196,0,.4);
  text-decoration: none;
}
.btn-hero-yellow:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,196,0,.5); }

.btn-hero-ghost {
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--radius-md);
  padding: 13px 24px; font-size: 15px; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background var(--ease), border-color var(--ease);
  text-decoration: none;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 60px 0;
  background: url('media/bg_hero.png') center top / cover no-repeat;
  isolation: isolate;
}

/* Overlay dégradé */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(110deg,
    rgba(26,10,59,.9)  0%,
    rgba(45,18,96,.6) 55%,
    rgba(26,10,59,.1) 100%
  );
}



/* ── Layout intérieur ─────────────────────────────────────── */
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 80px;
  display: flex; align-items: center; gap: 40px;
}

/* ── Texte ────────────────────────────────────────────────── */
.hero-text { flex: 1; }

.hero-text h1 {
  display: flex; flex-direction: column; gap: 4px;
  color: var(--white);
}

.h1-etui {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 700; font-style: italic; letter-spacing: -.01em;
}

.h1-line {
  font-size: clamp(40px, 5.6vw, 74px);
  font-weight: 900; line-height: 1; letter-spacing: -.025em;
  text-transform: uppercase; white-space: nowrap;
}

.hero-text h1 .yellow { color: var(--yellow); }

.hero-subtitle {
  margin-top: 20px;
  font-size: 19px; font-weight: 400;
  color: rgba(255,255,255,.72); line-height: 1.7;
}

/* ── Bloc CTA + paiement groupés ─────────────────────────── */
.cta-block { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Paiement ─────────────────────────────────────────────── */
.payment-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 28px;
}

.pay-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 0;
}
.pay-badge img {
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
}
.pay-badge.more {
  color: rgba(255,255,255,.45); font-weight: 400; font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════
   VISUEL MACHINE
   ═══════════════════════════════════════════════════════════ */
.hero-visual {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 520px;
  cursor: pointer;
}

/* ── Glow central ─────────────────────────────────────────── */
.machine-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(138,68,255,.55) 0%, rgba(109,40,217,.2) 45%, transparent 72%
  );
  pointer-events: none;
  transition: transform .6s ease, opacity .4s ease;
}

/* ── Rings de pulse (toujours actifs au hover) ────────────── */
.ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(160, 100, 255, 0);
  pointer-events: none;
  opacity: 0;
}
.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 420px; height: 420px; }
.ring-3 { width: 540px; height: 540px; }

/* ── Nuages ───────────────────────────────────────────────── */
.cloud {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(40px);
  transition: transform .6s ease, filter .5s ease, opacity .5s ease;
}
.cloud-1 { width: 210px; height: 120px; top:    6%; right:  8%; background: radial-gradient(ellipse, rgba(180,130,255,.5) 0%, transparent 70%); animation: cd1 7s ease-in-out infinite; }
.cloud-2 { width: 170px; height: 100px; top:   38%; left:   2%; background: radial-gradient(ellipse, rgba(155, 90,255,.4) 0%, transparent 70%); animation: cd2 9s ease-in-out infinite; }
.cloud-3 { width: 250px; height: 130px; bottom: 8%; left:   6%; background: radial-gradient(ellipse, rgba(200,150,255,.38) 0%, transparent 70%); animation: cd3 11s ease-in-out infinite; }
.cloud-4 { width: 190px; height: 110px; bottom:12%; right:  4%; background: radial-gradient(ellipse, rgba(170,110,255,.45) 0%, transparent 70%); animation: cd4 8s ease-in-out infinite; }

@keyframes cd1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8px,-10px) scale(1.05)} }
@keyframes cd2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-6px,8px) scale(1.04)} }
@keyframes cd3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(10px,6px) scale(1.06)} }
@keyframes cd4 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-8px,-8px) scale(1.04)} }

/* ── Machine ──────────────────────────────────────────────── */
.machine-img {
  position: relative; z-index: 2;
  max-width: 100%; width: 430px;
  filter: drop-shadow(0 10px 50px rgba(138,68,255,.65));
  animation: float 4.5s ease-in-out infinite;
  transition: filter .4s ease, transform .45s cubic-bezier(.34,1.4,.64,1);
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  background: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ── Particules nuageuses ─────────────────────────────────── */
.particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }

.cloud-puff {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: cloudRise var(--dur, 2s) ease-out forwards;
}

@keyframes cloudRise {
  0%   { transform: translate(0, 0) scale(0.4); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1.6); opacity: 0; }
}

/* ── Hover : uniquement sur appareils avec souris ─────────── */
@media (hover: hover) and (pointer: fine) {
  .hero-visual.is-hovered .machine-img {
    animation-play-state: paused;
    transform: scale(1.05) translateY(-8px);
    filter:
      drop-shadow(0 0 24px rgba(245,196,0,.55))
      drop-shadow(0 16px 60px rgba(180,100,255,.9));
  }

  .hero-visual.is-hovered .machine-glow {
    transform: scale(1.5);
    opacity: 1;
    background: radial-gradient(circle,
      rgba(200,140,255,.65) 0%, rgba(138,68,255,.25) 45%, transparent 72%
    );
  }

  .hero-visual.is-hovered .ring {
    animation-play-state: running;
  }

  .hero-visual.is-hovered .ring-1 { animation: pulse 1.4s ease-out infinite; }
  .hero-visual.is-hovered .ring-2 { animation: pulse 1.4s ease-out .35s infinite; }
  .hero-visual.is-hovered .ring-3 { animation: pulse 1.4s ease-out .7s  infinite; }

  .hero-visual.is-hovered .cloud   { filter: blur(24px); }
  .hero-visual.is-hovered .cloud-1 { transform: translate(16px,-18px) scale(1.18); }
  .hero-visual.is-hovered .cloud-2 { transform: translate(-14px,14px) scale(1.14); }
  .hero-visual.is-hovered .cloud-3 { transform: translate(18px,10px)  scale(1.16); }
  .hero-visual.is-hovered .cloud-4 { transform: translate(-12px,-16px) scale(1.14); }
}

@keyframes pulse {
  0%   { transform: scale(.6); opacity: .9; border-color: rgba(200,150,255,.8); }
  100% { transform: scale(1.4); opacity: 0; border-color: rgba(200,150,255,0); }
}

/* Masquer rings et particles JS sur touch (pas de hover) ─── */
@media (hover: none) {
  .ring, .particles { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner    { flex-direction: column; text-align: center; padding: 40px 24px 48px; }
  .hero-visual   { order: -1; min-height: 300px; }
  .hero-text     { order:  1; }
  .hero-buttons  { justify-content: center; }
  .payment-row   { justify-content: center; }
  .machine-img   { width: 260px; }
  .machine-glow  { width: 260px; height: 260px; }
  .h1-line       { white-space: normal; }
}

@media (max-width: 600px) {
  .hero-text h1        { font-size: 32px; }
  .hero-buttons        { flex-direction: column; align-items: stretch; }
  .btn-hero-yellow,
  .btn-hero-ghost      { justify-content: center; }
  .machine-img         { width: 240px; }
  .payment-row         { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE
   ═══════════════════════════════════════════════════════════ */
.how {
  position: relative;
  padding: 80px 40px;
  background: url('media/bg_commentcamarche.jpg') center / cover no-repeat;
  isolation: isolate;
}


.how::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(242, 238, 255, 0.82);
}

.how-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: 2;
}

.how-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ── Header ───────────────────────────────────────────────── */
.how-header { text-align: center; }

.how-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--purple-dark);
  letter-spacing: -.02em;
}

.how-sub {
  margin-top: 8px;
  font-size: 18px;
  color: #4a3980;
  font-weight: 400;
}

.how-sub strong { font-weight: 800; }

/* ── Grille 3 cartes ──────────────────────────────────────── */
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* ── Carte ────────────────────────────────────────────────── */
.how-card {
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(100, 60, 200, .08);
}

.how-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple-glow);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.step-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-dark);
}

/* ── Image ────────────────────────────────────────────────── */
.how-card-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--purple-dark);
}

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

/* ── Bottom ───────────────────────────────────────────────── */
.how-card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bouton démo */
.btn-demo {
  width: 100%;
  background: var(--purple-glow);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 13px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: filter var(--ease), transform var(--ease);
}
.btn-demo:hover { filter: brightness(1.12); transform: translateY(-1px); }

/* Logos paiement */
.how-card-pay { gap: 16px; }

.how-card-brands { gap: 18px; }

.brand-logo {
  height: 22px;
  width: auto;
  color: var(--purple-dark);
  opacity: .75;
  flex-shrink: 0;
}

.pay-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Pickup */
.how-card-pickup { gap: 10px; justify-content: flex-start; }

.pickup-icon { font-size: 28px; }

.how-card-pickup div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.how-card-pickup strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple-dark);
}

.how-card-pickup span {
  font-size: 13px;
  color: #6b5e99;
}

/* ── Footer strip ─────────────────────────────────────────── */
.how-footer {
  font-size: 16px;
  color: #4a3980;
  font-weight: 500;
}

.how-footer strong { font-weight: 800; color: var(--purple-dark); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .how-cards { grid-template-columns: 1fr; max-width: 360px; }
  .how-card { padding: 10px; gap: 8px; }
  .how-card-img { aspect-ratio: 4/5; }
  .step-badge { width: 28px; height: 28px; font-size: 13px; }
  .step-label { font-size: 14px; }
}

@media (max-width: 500px) {
  .how { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   SHOWCASE — Designs & Machine
   ═══════════════════════════════════════════════════════════ */
.showcase {
  background: url('media/bg_hero.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg,
    rgba(26,10,59,.92) 0%,
    rgba(45,18,96,.65) 55%,
    rgba(26,10,59,.15) 100%
  );
}

.showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 700px;
  padding: 80px 40px 0;
  gap: 110px;
}

/* ── Gauche texte ─────────────────────────────────────────── */
.showcase-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-title {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.sc-small {
  display: block;
  font-size: .45em;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  line-height: 1.8;
}

.sc-shine {
  background: linear-gradient(90deg, #e6b800 0%, #ffe866 40%, #F5C400 60%, #ffdd55 80%, #e6a800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(245,196,0,.6)) drop-shadow(0 0 40px rgba(245,196,0,.3));
  display: inline-block;
}

.showcase-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 420px;
  font-weight: 400;
}

/* ── Visuel ───────────────────────────────────────────────── */
.showcase-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.showcase-visual img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* ── Barre du bas ─────────────────────────────────────────── */
.showcase-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 40px;
}

.showcase-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.showcase-specs {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 500;
}

.showcase-specs .sep { opacity: .4; }

.showcase-pays {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-pays img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.pay-more {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .showcase-inner {
    grid-template-columns: 1fr;
    padding: 50px 24px 0;
    gap: 24px;
    text-align: center;
  }
  .showcase-visual { order: 2; }
  .showcase-left { align-items: center; order: 1; }
  .showcase-visual { padding-bottom: 0; }
  .showcase-bar { padding: 20px 24px; }
  .showcase-bar-inner { flex-direction: column; align-items: center; }
  .showcase-specs { flex-wrap: wrap; justify-content: center; }
  .showcase-pays { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   LOCATION ÉVÉNEMENT
   ═══════════════════════════════════════════════════════════ */
.event {
  background: linear-gradient(135deg, #ffffff 0%, #f3eeff 50%, #e9d8fd 100%);
  padding: 100px 40px;
  overflow: hidden;
}

.event-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  direction: rtl;
}

/* ── Visuel ───────────────────────────────────────────────── */
.event-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(124,58,237,.18);
}

.event-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.event-visual-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,10,59,.45) 0%,
    transparent 55%
  );
  pointer-events: none;
}

/* ── Contenu ──────────────────────────────────────────────── */
.event-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  direction: ltr;
}

.event-visual { direction: ltr; }

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3eeff;
  color: var(--purple-glow);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(124,58,237,.2);
}

.event-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--purple-dark);
}

.ev-small {
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.01em;
  color: rgba(26,10,59,.7);
}

.ev-line {
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--purple-dark);
}

.ev-yellow { color: var(--purple-dark); }

.event-desc {
  font-size: 16px;
  color: rgba(26,10,59,.6);
  line-height: 1.75;
  max-width: 460px;
}

.event-desc strong { color: var(--purple-dark); }

/* ── Liste avantages ──────────────────────────────────────── */
.event-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--purple-dark);
}

.perk-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: #f3eeff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CTA ──────────────────────────────────────────────────── */
.event-cta {
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(245,196,0,.4);
  text-decoration: none;
  width: fit-content;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .event { padding: 60px 24px; }
  .event-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .event-visual img { height: 500px; object-position: top; }
  .event-content { align-items: center; text-align: center; }
  .event-desc { max-width: 100%; }
  .event-cta { align-self: center; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
  background: var(--purple-dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(124,58,237,.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(45,18,96,.5) 0%, transparent 70%);
  padding: 90px 40px;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.contact-tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}

.contact-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 4px;
}

.contact-title-shine {
  color: var(--yellow);
}

.contact-sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

/* ── Formulaire ───────────────────────────────────────────── */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.contact-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}

.contact-field input,
.contact-field textarea {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--purple-glow);
  background: rgba(255,255,255,.1);
}

.contact-ctas {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.contact-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px 40px;
  text-decoration: none;
  flex: 1 1 0;
  width: 0;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.contact-cta-card:hover {
  background: rgba(255,255,255,.13);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.contact-cta-icon { font-size: 32px; }

.contact-cta-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-cta-value {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 600px) {
  .contact { padding: 60px 24px; }
  .contact-row { grid-template-columns: 1fr; }
}
