/* ═══════════════ Snap+ Store — design system (Apple × Stripe, sobre) ═══════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;600;700&display=swap');

:root {
  --bg: #070709;
  --card: #101016;
  --card-2: #14141b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f2f4;
  --muted: #9b9ba6;
  --muted-2: #6b6b76;
  --yellow: #00E676;
  --violet: #00C853;
  --cyan: #69F0AE;
  --green: #34D399;
  --red: #F87171;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --title: 'Unbounded', 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: #070709; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Utilitaires ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--yellow); }

.h2 {
  font-family: var(--title); font-weight: 600;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.15;
  letter-spacing: -0.01em; margin-top: 12px;
}
.h2 .accent { color: var(--yellow); }
.h2 .accent-v { color: var(--violet); }

.sub { color: var(--muted); margin-top: 14px; max-width: 560px; font-size: 15.5px; }

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }

/* ── Boutons ── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  overflow: hidden; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--yellow); color: #ffffff; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(0, 230, 118, 0.35); transform: translateY(-1px); }
.btn-primary .shine {
  position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-primary:hover .shine { animation: shine 0.9s var(--ease); }
@keyframes shine { to { left: 130%; } }

.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.05); }

.btn-sm { padding: 10px 18px; font-size: 13.5px; border-radius: 10px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ── Badges & labels (rares) ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04); color: var(--muted);
}
.badge-yellow { background: rgba(0, 230, 118, 0.1); border-color: rgba(0, 230, 118, 0.35); color: var(--yellow); }
.badge-violet { background: rgba(0, 200, 83, 0.12); border-color: rgba(0, 200, 83, 0.4); color: #a5d6a7; }
.badge-green { background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.35); color: var(--green); }
.badge-red { background: rgba(248, 113, 113, 0.1); border-color: rgba(248, 113, 113, 0.35); color: var(--red); }

/* ── Curseur personnalisé (desktop) ── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--yellow); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(0, 230, 118, 0.5); transition: opacity 0.3s, width 0.2s, height 0.2s; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor .cursor-ring.is-hover { width: 52px; height: 52px; }
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
  html { scroll-behavior: auto; }
}

/* ── Reveal au scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(7, 7, 9, 0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.nav.scrolled {
  height: 60px; background: rgba(7, 7, 9, 0.82);
  border-bottom-color: var(--line);
}
.nav-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--yellow); }

.nav-inner { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 28px; }

.logo { display: flex; align-items: center; gap: 11px; font-family: var(--title); font-weight: 600; font-size: 17px; letter-spacing: 0.01em; }
.logo-mark {
  width: 108px; height: auto; display: block;
  filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.45));
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-mark { transform: scale(1.05); }
.footer-logo .logo-mark { width: 118px; }

.nav-links { display: flex; gap: 26px; margin: 0 auto; }
.nav-links a { position: relative; font-size: 14.5px; font-weight: 500; color: var(--muted); padding: 4px 0; transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--yellow); transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-favs {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); padding: 8px 12px; border-radius: 10px; border: 1px solid transparent; transition: all 0.25s;
}
.nav-favs:hover { border-color: var(--line); color: var(--text); }
.nav-favs svg { transition: transform 0.3s var(--ease); }
.nav-favs:hover svg { transform: scale(1.15); }
.nav-favs .count { color: var(--yellow); }

.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; place-items: center; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; display: flex; flex-direction: column;
  background: rgba(7, 7, 9, 0.97); backdrop-filter: blur(18px);
  padding: 110px 32px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--title); font-size: 26px; font-weight: 600; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(14px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu .btn { margin-top: 28px; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; }
  .nav-actions .nav-favs { display: none; }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 90px; overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 35%, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.12), transparent 62%);
  top: -160px; left: 50%; transform: translateX(-50%); z-index: 0;
  animation: glowFloat 9s ease-in-out infinite alternate;
}
@keyframes glowFloat {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-50%) translateY(34px); }
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(0, 230, 118, 0.35); background: rgba(0, 230, 118, 0.07);
  font-size: 13px; font-weight: 600; color: var(--yellow); letter-spacing: 0.02em;
  animation: fadeDown 0.8s var(--ease) both;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

.hero h1 {
  font-family: var(--title); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(38px, 7vw, 82px); line-height: 1.04;
  margin: 28px 0 10px;
  animation: fadeUp 0.9s 0.08s var(--ease) both;
}
.grad-text {
  background: linear-gradient(100deg, var(--yellow) 5%, #B9F6CA 30%, var(--cyan) 55%, var(--violet) 80%, var(--yellow) 105%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradSlide 8s ease-in-out infinite;
}
@keyframes gradSlide { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero .sub { margin: 0 auto 34px; font-size: 17px; animation: fadeUp 0.9s 0.18s var(--ease) both; }

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.9s 0.28s var(--ease) both; }

.hero-stats {
  display: flex; justify-content: center; gap: 56px; margin-top: 54px;
  animation: fadeUp 0.9s 0.38s var(--ease) both;
}
.stat { text-align: center; }
.stat .num { font-family: var(--title); font-size: 32px; font-weight: 600; color: var(--yellow); letter-spacing: -0.01em; }
.stat .num.violet { color: var(--violet); }
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

.hero-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 64px auto 0; max-width: 980px; perspective: 1200px;
  animation: fadeUp 1s 0.5s var(--ease) both;
}
.hcard {
  position: relative; padding: 20px 18px; border-radius: 16px; text-align: left;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.4s;
  animation: floatY 7s ease-in-out infinite alternate;
}
.hcard:nth-child(2) { animation-delay: 0.8s; }
.hcard:nth-child(3) { animation-delay: 1.6s; }
.hcard:nth-child(4) { animation-delay: 2.4s; }
.hcard:hover { border-color: rgba(0, 230, 118, 0.45); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 34px rgba(0, 230, 118, 0.1); }
@keyframes floatY { to { transform: translateY(-12px); } }
.hcard .hic {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); margin-bottom: 12px;
}
.hcard.alt .hic { background: rgba(0, 200, 83, 0.12); border-color: rgba(0, 200, 83, 0.4); }
.hcard.alt2 .hic { background: rgba(105, 240, 174, 0.1); border-color: rgba(105, 240, 174, 0.35); }
.hcard .hname { font-weight: 600; font-size: 14.5px; }
.hcard .hprice { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hcard .hprice b { color: var(--yellow); font-weight: 600; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-stats { gap: 34px; }
  .stat .num { font-size: 25px; }
}
@media (max-width: 560px) {
  .hero-cards { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-zone { position: relative; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: #0a0a0e; }
.marquee-zone::before, .marquee-zone::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-zone::before { left: 0; background: linear-gradient(90deg, #070709, transparent); }
.marquee-zone::after { right: 0; background: linear-gradient(-90deg, #070709, transparent); }
.marquee { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-zone:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-family: var(--title); font-size: 17px; font-weight: 600; letter-spacing: 0.05em;
  color: #3d3d46; padding: 0 26px; white-space: nowrap;
  transition: color 0.3s;
}
.marquee span:hover { color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ CATALOGUE ═══════════════ */



.chip {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  background: rgba(255, 255, 255, 0.02); transition: all 0.25s var(--ease);
}
.chip:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.chip.active { background: var(--yellow); color: #0a0a0c; border-color: var(--yellow); }
.chip.fav-chip.active { background: var(--violet); border-color: var(--violet); color: #fff; }


























@keyframes heartPop { 40% { transform: scale(1.35); } }






/* Confettis (action uniquement) */
.confetti-piece {
  position: fixed; z-index: 3000; pointer-events: none;
  width: 7px; height: 11px; border-radius: 2px;
}

/* ═══════════════ FORMATS ═══════════════ */
.formats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 36px; }
.fcard {
  padding: 22px; border-radius: 16px; background: var(--card); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.fcard:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.2); }
.fcard h4 { font-size: 15.5px; font-weight: 600; }
.fcard p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.fcard .price { font-family: var(--title); font-weight: 600; color: var(--yellow); margin-top: 14px; font-size: 17px; }
.fcard .price small { color: var(--muted-2); font-family: var(--font); font-size: 12.5px; font-weight: 400; margin-left: 6px; text-decoration: line-through; }
.fcard .save { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--green); }

/* Comparateur flip 3D */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 36px; }
.flip-card { perspective: 1200px; cursor: pointer; height: 210px; }
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform 0.7s var(--ease);
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0; border-radius: 16px; padding: 22px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
}
.flip-back { transform: rotateY(180deg); background: linear-gradient(160deg, rgba(0, 230, 118, 0.06), var(--card) 60%); border-color: rgba(0, 230, 118, 0.3); }
.flip-face h4 { font-size: 15px; font-weight: 600; }
.flip-face .big { font-family: var(--title); font-size: 26px; font-weight: 600; }
.flip-face .big small { font-family: var(--font); font-size: 13px; color: var(--muted); font-weight: 400; }
.flip-face .hint { font-size: 12px; color: var(--muted-2); }
.flip-face ul { list-style: none; font-size: 13px; color: var(--muted); }
.flip-face ul li { padding: 2px 0; }
.flip-face ul li::before { content: '— '; color: var(--yellow); }

/* ═══════════════ BUNDLES ═══════════════ */
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 16px; margin-top: 36px; }

























/* ═══════════════ BUDGET ═══════════════ */
.budget-box { margin-top: 36px; padding: 34px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); max-width: 760px; }
.budget-label { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.budget-label b { color: var(--yellow); font-family: var(--title); font-size: 17px; }
.range-wrap { position: relative; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.range-fill {
  position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--yellow));
  transition: width 0.25s var(--ease);
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.35);
}
.range-wrap input[type='range'] {
  position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; margin: 0;
}
.range-thumb {
  position: absolute; top: 50%; left: 0%; width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); transform: translate(-50%, -50%);
  border: 3px solid #0a0a0c; box-shadow: 0 0 0 1.5px var(--yellow), 0 0 20px rgba(0, 230, 118, 0.5);
  pointer-events: none; transition: left 0.25s var(--ease);
}
.budget-marks { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); margin-top: 12px; }
.budget-suggest { display: grid; gap: 10px; margin-top: 26px; }
.suggest {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-radius: 13px; background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line); animation: fadeUp 0.5s var(--ease) both;
}
.suggest .sname { font-weight: 600; font-size: 14.5px; }
.suggest .smeta { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.suggest .sprice { font-family: var(--title); font-weight: 600; color: var(--yellow); font-size: 15px; flex: none; }

/* ═══════════════ PREUVE ═══════════════ */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 36px; }
.proof-card { padding: 24px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.stars { color: var(--yellow); font-size: 13px; letter-spacing: 3px; }
.proof-card p { font-size: 14.5px; color: var(--muted); margin-top: 12px; min-height: 66px; }
.proof-card .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13.5px; font-weight: 600; }
.proof-card .who .vbadge { margin-left: auto; }
.avatar { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; background: linear-gradient(135deg, var(--violet), var(--cyan)); color: #fff; }
.pay-logos { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.pay-logo {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 11px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  font-size: 12.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em;
}
.orders-counter { margin-top: 26px; font-size: 14px; color: var(--muted); }
.orders-counter b { color: var(--yellow); font-family: var(--title); font-weight: 600; }

/* ═══════════════ COMMANDE ═══════════════ */
.order-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; margin-top: 40px; align-items: start; }
.order-form { padding: 30px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); }

.osteps { display: flex; gap: 10px; margin-bottom: 26px; }
.ostep {
  flex: 1; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 11px;
  border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--muted-2);
  transition: all 0.3s var(--ease);
}
.ostep .n {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(255, 255, 255, 0.07); font-size: 11.5px;
}
.ostep.active { border-color: rgba(0, 230, 118, 0.5); color: var(--text); background: rgba(0, 230, 118, 0.05); }
.ostep.active .n { background: var(--yellow); color: #0a0a0c; }
.ostep.done { border-color: rgba(52, 211, 153, 0.4); color: var(--green); }
.ostep.done .n { background: var(--green); color: #052e22; }

.ostep-body { display: none; animation: fadeUp 0.45s var(--ease) both; }
.ostep-body.active { display: block; }

.fstep1 h4, .fstep2 h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.fstep1 .hint, .fstep2 .hint { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px;
  background: #0c0c12; border: 1px solid var(--line); color: var(--text); font-size: 14.5px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(0, 230, 118, 0.55); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.08); }
.field .error-msg { font-size: 12.5px; color: var(--red); margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select { border-color: rgba(248, 113, 113, 0.6); }
.field.has-error .error-msg { display: block; }
.field .ok-msg { font-size: 12.5px; color: var(--green); margin-top: 6px; display: none; }
.field.is-ok .ok-msg { display: block; }
.field input.invalid { border-color: rgba(248, 113, 113, 0.6); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.order-summary {
  position: sticky; top: 96px; padding: 28px; border-radius: 20px;
  background: linear-gradient(165deg, rgba(0, 230, 118, 0.05), var(--card) 50%);
  border: 1px solid var(--line);
}
.order-summary h4 { font-family: var(--title); font-size: 16px; font-weight: 600; }
.sum-line { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.sum-line .l { color: var(--muted); }
.sum-line .v { font-weight: 600; text-align: right; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; }
.sum-total .l { font-weight: 600; }
.sum-total .v { font-family: var(--title); font-size: 24px; font-weight: 600; color: var(--yellow); }
.sum-total .v small { font-family: var(--font); font-size: 12px; color: var(--muted-2); font-weight: 400; }

/* Carte cadeau (aperçu live) */
.gift-preview {
  position: relative; margin-top: 24px; border-radius: 18px; padding: 26px; overflow: hidden;
  background: linear-gradient(140deg, #101016, #0c0c12);
  border: 1px solid rgba(0, 230, 118, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 44px rgba(0, 230, 118, 0.1);
}
.gift-preview::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 12%, rgba(0, 230, 118, 0.16), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(0, 200, 83, 0.14), transparent 50%);
}
.gift-preview > * { position: relative; }
.gift-logo { display: flex; align-items: center; gap: 9px; font-family: var(--title); font-weight: 600; font-size: 13px; }
.gift-logo .logo-mark { width: 26px; height: 26px; font-size: 13px; border-radius: 7px; }
.gift-amount { font-family: var(--title); font-size: 42px; font-weight: 700; margin-top: 26px; letter-spacing: -0.02em; }
.gift-msg { margin-top: 10px; font-size: 14px; color: var(--muted); font-style: italic; min-height: 42px; }
.gift-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; }
.gift-foot .ref { font-family: monospace; color: var(--yellow); }

/* Chargement / succès */
.loader {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 2.5px solid rgba(0, 230, 118, 0.25); border-top-color: var(--yellow);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-note { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; background: rgba(0, 230, 118, 0.06); border: 1px solid rgba(0, 230, 118, 0.3); font-size: 14px; margin-bottom: 16px; }

.order-success { text-align: center; padding: 30px 10px; }
.order-success .check {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.5);
  display: grid; place-items: center; color: var(--green);
  animation: popIn 0.55s var(--ease) both;
}
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.order-success h4 { font-family: var(--title); font-size: 20px; font-weight: 600; }
.order-success .ref-line { margin-top: 12px; font-size: 15px; color: var(--muted); }
.order-success .ref-line b { font-family: monospace; color: var(--yellow); font-size: 18px; letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

/* ═══════════════ FAQ / FOOTER ═══════════════ */
.faq-list { max-width: 780px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px; text-align: left; font-size: 15.5px; font-weight: 600;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--yellow); }
.faq-q .plus { position: relative; width: 22px; height: 22px; flex: none; transition: transform 0.4s var(--ease); color: var(--muted); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 4px 20px; color: var(--muted); font-size: 14.5px; max-width: 680px; }

.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; background: #0a0a0e; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer .fdesc { font-size: 13.5px; color: var(--muted); margin-top: 14px; max-width: 300px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color 0.25s, padding-left 0.25s var(--ease); }
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 26px;
  font-size: 13px; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px);
  background: #17171d; border: 1px solid var(--line); color: var(--text);
  padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 500;
  z-index: 4000; opacity: 0; pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.6);
  max-width: min(92vw, 460px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.error { border-color: rgba(248, 113, 113, 0.55); }

/* ═══════════════ STATUS ═══════════════ */
.status-hero { padding: 150px 0 60px; text-align: center; }
.status-card { max-width: 640px; margin: 0 auto; padding: 34px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); }
.status-ref { font-family: monospace; font-size: 22px; color: var(--yellow); letter-spacing: 0.08em; margin-top: 14px; }

.timeline { display: grid; gap: 0; margin: 34px 0 6px; text-align: left; }
.tstep { position: relative; display: flex; gap: 16px; padding-bottom: 28px; }
.tstep::before {
  content: ''; position: absolute; left: 13px; top: 30px; bottom: 2px; width: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.tstep:last-child::before { display: none; }
.tstep .dot {
  width: 28px; height: 28px; border-radius: 50%; flex: none; z-index: 1;
  display: grid; place-items: center; background: #17171d; border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--muted-2); transition: all 0.4s var(--ease);
}
.tstep.done .dot { background: rgba(52, 211, 153, 0.15); border-color: var(--green); color: var(--green); }
.tstep.current .dot { background: rgba(0, 230, 118, 0.12); border-color: var(--yellow); color: var(--yellow); box-shadow: 0 0 16px rgba(0, 230, 118, 0.35); animation: pulse 2s infinite; }
.tstep .tlabel { font-size: 14.5px; font-weight: 600; padding-top: 3px; }
.tstep .tdesc { font-size: 13px; color: var(--muted); margin-top: 2px; }
.tstep .ttime { font-size: 12px; color: var(--muted-2); margin-top: 4px; }

.status-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 26px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-align: left; }
.status-info div { padding: 14px 16px; border-bottom: 1px solid var(--line); }
.status-info div:nth-child(odd) { border-right: 1px solid var(--line); }
.status-info .k { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.status-info .v { font-size: 14.5px; font-weight: 600; margin-top: 3px; word-break: break-word; }

.status-empty { text-align: center; padding: 40px 0; color: var(--muted); }

/* ═══════════════ ADMIN ═══════════════ */
.admin-shell { max-width: 1320px; margin: 0 auto; padding: 110px 24px 80px; }
.admin-login {
  max-width: 400px; margin: 0 auto; padding: 36px; border-radius: 20px;
  background: var(--card); border: 1px solid var(--line);
}
.admin-login h2 { font-family: var(--title); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.admin-login .hint { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }

.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.admin-top h1 { font-family: var(--title); font-size: 22px; font-weight: 600; }
.admin-top .who { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tab {
  padding: 11px 18px; font-size: 14px; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.25s, border-color 0.25s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.panel { display: none; animation: fadeUp 0.4s var(--ease) both; }
.panel.active { display: block; }

.admin-toolbar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.admin-toolbar input, .admin-toolbar select {
  padding: 10px 14px; border-radius: 10px; background: var(--card); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--text);
}
.admin-toolbar input:focus, .admin-toolbar select:focus { outline: none; border-color: rgba(0, 230, 118, 0.5); }
.admin-toolbar input { min-width: 240px; }

.atable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.atable { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 1150px; }
.atable th {
  text-align: left; padding: 12px 14px; font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted-2); border-bottom: 1px solid var(--line); white-space: nowrap;
  position: sticky; top: 0; background: var(--card);
}
.atable td { padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); vertical-align: top; }
.atable tr:hover td { background: rgba(255, 255, 255, 0.02); }
.atable .mono { font-family: 'SF Mono', ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--yellow); }
.atable .phone { font-family: 'SF Mono', ui-monospace, Menlo, monospace; color: var(--cyan); }

.order-cell { min-width: 190px; }
.order-cell .svc { font-weight: 600; }
.order-cell .fmt { font-size: 12px; color: var(--muted); }
.order-cell .gift { font-size: 12px; color: var(--violet); font-style: italic; margin-top: 3px; max-width: 220px; }

.st { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.st::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.st-pending { background: rgba(255, 255, 255, 0.06); color: var(--muted); }
.st-otp_sent { background: rgba(105, 240, 174, 0.1); color: var(--cyan); }
.st-verified { background: rgba(0, 200, 83, 0.12); color: #a5d6a7; }
.st-validated { background: rgba(52, 211, 153, 0.1); color: var(--green); }
.st-rejected { background: rgba(248, 113, 113, 0.1); color: var(--red); }

.act-row { display: flex; gap: 6px; flex-wrap: wrap; }
.mini-btn {
  padding: 6px 11px; border-radius: 8px; font-size: 11.5px; font-weight: 700;
  border: 1px solid var(--line); color: var(--muted); transition: all 0.2s; white-space: nowrap;
}
.mini-btn:hover { border-color: rgba(255, 255, 255, 0.3); color: var(--text); }
.mini-btn.ok { color: var(--green); border-color: rgba(52, 211, 153, 0.4); }
.mini-btn.ok:hover { background: rgba(52, 211, 153, 0.1); }
.mini-btn.warn { color: var(--cyan); border-color: rgba(105, 240, 174, 0.4); }
.mini-btn.danger { color: var(--red); border-color: rgba(248, 113, 113, 0.4); }
.mini-btn.danger:hover { background: rgba(248, 113, 113, 0.1); }
.mini-btn.accent { color: var(--yellow); border-color: rgba(0, 230, 118, 0.4); }
.mini-btn:disabled { opacity: 0.35; pointer-events: none; }

.admin-note { margin-top: 8px; font-size: 12px; color: var(--muted); padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 26px; }
.stat-card { padding: 20px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.stat-card .k { font-size: 12px; color: var(--muted); }
.stat-card .v { font-family: var(--title); font-size: 26px; font-weight: 600; margin-top: 6px; }
.stat-card .v.yellow { color: var(--yellow); }
.stat-card .v.violet { color: var(--violet); }
.stat-card .v.green { color: var(--green); }
.stat-card .v.cyan { color: var(--cyan); }

.role-card { padding: 18px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); margin-bottom: 12px; }
.role-card .rname { font-weight: 700; font-size: 15px; }
.role-card .perms { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.perm { font-size: 11.5px; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); color: var(--muted); border: 1px solid var(--line); }

.log-line { display: flex; gap: 12px; padding: 10px 12px; border-radius: 10px; font-size: 12.5px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--line); margin-bottom: 8px; flex-wrap: wrap; }
.log-line .t { font-family: monospace; color: var(--muted-2); }
.log-line .ty { font-weight: 700; color: var(--red); }
.log-line .ty.info { color: var(--cyan); }

/* ═══════════════ DIAG ═══════════════ */
.diag-wrap { max-width: 760px; margin: 0 auto; }
.diag-card { padding: 26px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); margin-bottom: 14px; }
.diag-card .dtitle { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.diag-card .dbody { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.diag-ok { color: var(--green); }
.diag-bad { color: var(--red); }
.diag-warn { color: var(--yellow); }
.diag-run { margin-top: 6px; }

/* ═══════════════ 404 ═══════════════ */
.e404 { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 40px 20px; }
.e404 .code { font-family: var(--title); font-size: clamp(90px, 20vw, 200px); font-weight: 700; line-height: 1; background: linear-gradient(100deg, var(--yellow), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.e404 p { color: var(--muted); margin: 20px 0 30px; }

/* ═══════════════ prefers-reduced-motion : tout est coupé, tout reste fonctionnel ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee { animation: none !important; }
  .hero-glow { animation: none !important; }
}

/* ═══════════════ FREEPROMO v2 — logos réels, gratuit, mobile-first ═══════════════ */

/* Tuile logo de marque (vraies images) */
.brand-tile {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.brand-tile img { width: 28px; height: 28px; object-fit: contain; }
.brand-tile .fallback { display: none; font-family: var(--title); font-weight: 700; font-size: 14px; color: var(--yellow); }
.brand-tile.noimg img { display: none; }
.brand-tile.noimg .fallback { display: block; }
.brand-tile.sm { width: 40px; height: 40px; border-radius: 11px; }
.brand-tile.sm img { width: 21px; height: 21px; }
.hcard { display: flex; flex-direction: column; gap: 10px; padding: 18px 16px; }
.hcard .brand-tile { width: 44px; height: 44px; }
.hcard .hprice { color: var(--yellow); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.hcard .hprice b { font-weight: 700; }

/* Badge GRATUIT */
.free-badge {
  background: var(--yellow); color: #0a0a0c; border-color: var(--yellow);
  font-weight: 800; letter-spacing: 0.04em; font-size: 11px; padding: 4px 9px;
}



/* Comment ça marche */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.how-card {
  padding: 26px 22px; border-radius: 18px; background: var(--card); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.how-card:hover { transform: translateY(-4px); border-color: rgba(0, 230, 118, 0.35); }
.how-num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--title); font-weight: 700; font-size: 17px;
  background: rgba(0, 230, 118, 0.12); color: var(--yellow); border: 1px solid rgba(0, 230, 118, 0.35);
  margin-bottom: 14px;
}
.how-card h4 { font-family: var(--title); font-size: 16px; font-weight: 600; }
.how-card p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* Packs */


.bcard .btotal .val s { color: var(--muted-2); font-family: var(--font); font-size: 13px; font-weight: 400; text-decoration-color: rgba(0, 230, 118, 0.6); }

/* Total GRATUIT */
.sum-total .v s { color: var(--muted-2); font-family: var(--font); font-size: 13px; font-weight: 400; margin-right: 8px; text-decoration-color: rgba(0, 230, 118, 0.6); }
.sum-total .v .free { color: var(--yellow); }
.gift-amount { letter-spacing: 0.01em; }

/* ── Mobile : priorité tactile et lisibilité ── */
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .btn { min-height: 48px; }
  .brand-tile { width: 46px; height: 46px; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 24px; }
  .stat .num { font-size: 24px; }
  .hero h1 { font-size: clamp(32px, 11vw, 52px); }
  .hero { padding: 120px 0 60px; }
  .order-form { padding: 22px 16px; }
  .field-row { grid-template-columns: 1fr; }
  .nav-actions .btn { padding: 10px 14px; }
  .hero-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hcard { padding: 14px 12px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
}

/* ═══════════════ FREEPROMO v3 — urgence, partenaires, picker, admin ═══════════════ */

/* Partenaires */
.partner-strip {
  display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 40px; animation: fadeUp 1s 0.6s var(--ease) both;
}
.partner-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03); font-size: 12.5px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.03em;
}
.partner-pill img { display: block; }
.partner-pill.apple { color: #e8e8ec; border-color: rgba(255, 255, 255, 0.18); }
.partner-pill.sfr { color: #fff; background: rgba(230, 0, 0, 0.16); border-color: rgba(230, 0, 0, 0.55); }
.partner-pill.bouygues { color: #fff; background: rgba(0, 105, 175, 0.18); border-color: rgba(0, 160, 235, 0.55); }

/* Tendances */






/* Compteur par carte service */


/* Picker visuel (étape 1) */
.pick-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px;
  margin: 14px 0 16px; max-height: 300px; overflow: auto; padding: 2px;
}
.pick-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 12px 8px; border-radius: 13px; border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.02); font-size: 11.5px; color: var(--muted);
  transition: all 0.22s var(--ease); text-align: center;
}
.pick-item img { width: 34px; height: 34px; object-fit: contain; transition: transform 0.22s var(--ease); }
.pick-item:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.pick-item:hover img { transform: scale(1.12); }
.pick-item.selected {
  border-color: var(--yellow); background: rgba(0, 230, 118, 0.09);
  color: var(--text); box-shadow: 0 0 0 1px var(--yellow), 0 8px 26px rgba(0, 230, 118, 0.12);
}
.pick-selected { margin: 0 0 16px; font-size: 14px; color: var(--muted); }
.pick-selected b { color: var(--text); }

/* Notes partenaires + Apple */
.partner-note {
  margin: 4px 0 16px; padding: 11px 14px; border-radius: 11px; font-size: 12.5px; color: var(--muted);
  background: rgba(0, 200, 83, 0.07); border: 1px solid rgba(0, 200, 83, 0.35);
}
.partner-note b { color: #c4b0ff; }
.apple-note {
  display: flex; align-items: center; gap: 10px; margin: 2px 0 16px;
  padding: 11px 14px; border-radius: 11px; font-size: 12.5px; color: var(--muted);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
}
.apple-note img { flex: none; }
.apple-note b { color: var(--text); }

/* Résumé sticky */
.sum-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sum-logo h4 { font-family: var(--title); font-size: 15px; font-weight: 600; }
.sum-gratis { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: var(--yellow); }
.sum-phone-note { margin-top: 10px; font-size: 12px; color: var(--muted-2); }
.sum-phone-note b { color: var(--muted); }

/* Footer partenaires */
.footer-partners {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--line); margin-bottom: 4px;
}
.footer-partner-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-right: 6px; }

/* ── Admin v3 ── */
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s infinite; display: inline-block; }
#clock { font-family: monospace; color: var(--cyan); font-size: 13px; }
.copyable { cursor: pointer; border-bottom: 1px dashed rgba(0, 230, 118, 0.35); }
.copyable:hover { color: var(--yellow); }
.otp-badge {
  display: inline-block; padding: 6px 12px; border-radius: 9px; cursor: pointer;
  background: rgba(0, 230, 118, 0.14); border: 1px solid rgba(0, 230, 118, 0.55);
  font-family: monospace; font-size: 16px; font-weight: 700; letter-spacing: 0.18em; color: var(--yellow);
  transition: transform 0.2s var(--ease);
}
.otp-badge:hover { transform: scale(1.08); }
.atable td .brand-tile.sm { border-radius: 9px; }
.admin-top .who { gap: 8px; }
.stat-card .v { font-size: 24px; }

/* ── Mobile v3 ── */
@media (max-width: 900px) {
  .pick-grid { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); max-height: 260px; }
  .admin-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .partner-strip { gap: 7px; }
  .admin-toolbar { flex-direction: column; }
  .admin-toolbar input, .admin-toolbar select { width: 100%; min-width: 0; }
}

/* ═══════════════ FREEPROMO v4 — ultra pro, mobile-first, animations retenues ═══════════════ */

/* Aurora subtile derrière le hero */
.hero-aurora {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background: conic-gradient(from 0deg at 50% 40%,
    transparent 0deg, rgba(0, 230, 118, 0.06) 70deg, transparent 140deg,
    rgba(0, 200, 83, 0.06) 210deg, transparent 280deg,
    rgba(105, 240, 174, 0.05) 340deg, transparent 360deg);
  filter: blur(70px); opacity: 0.8;
  animation: auroraSpin 28s linear infinite;
}
@keyframes auroraSpin { to { transform: rotate(360deg); } }

/* Tampon GRATUIT */
.stamp {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 14px; border: 2.5px solid var(--yellow); color: var(--yellow);
  font-family: var(--title); font-weight: 700; letter-spacing: 0.14em; font-size: 13px;
  border-radius: 9px; opacity: 0; transform: rotate(-8deg) scale(1.6);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.stamp.stamped { opacity: 1; transform: rotate(-6deg) scale(1); }
.stamp-big { font-size: 19px; padding: 10px 24px; margin: 0 auto 4px; }
.stamp.delivered { border-color: var(--green); color: var(--green); }

/* Squelette de chargement (shimmer) */


@keyframes shimmer { to { transform: translateX(100%); } }

/* Cartes opérateur (SFR / Bouygues) */
.operator-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.op-card {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; text-align: left;
  border-radius: 14px; border: 1.5px solid var(--line); background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.22s var(--ease), background 0.22s, transform 0.22s var(--ease), box-shadow 0.25s;
}
.op-card:active { transform: scale(0.97); }
.op-card b { font-size: 15px; display: block; }
.op-card small { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.op-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; background: var(--muted-2); transition: transform 0.25s var(--ease); }
.op-card.sfr .op-dot { background: #E60000; box-shadow: 0 0 10px rgba(230, 0, 0, 0.6); }
.op-card.bouygues .op-dot { background: #00A0EB; box-shadow: 0 0 10px rgba(0, 160, 235, 0.6); }
.op-card.selected.sfr { border-color: rgba(230, 0, 0, 0.65); background: rgba(230, 0, 0, 0.09); box-shadow: 0 0 22px rgba(230, 0, 0, 0.15); }
.op-card.selected.bouygues { border-color: rgba(0, 160, 235, 0.7); background: rgba(0, 160, 235, 0.09); box-shadow: 0 0 22px rgba(0, 160, 235, 0.16); }
.op-card.selected .op-dot { transform: scale(1.3); }
.operator-cards.error .op-card { border-color: rgba(248, 113, 113, 0.55); }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.operator-cards.shake { animation: shake 0.4s var(--ease); }

/* Saisie OTP en 4 cases */
.otp-boxes { display: flex; gap: 10px; flex-wrap: wrap; }
.otp-cell {
  width: 56px; height: 64px; text-align: center; font-size: 26px; font-family: var(--title); font-weight: 700;
  background: #0c0c12; border: 1.5px solid var(--line); border-radius: 12px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.otp-cell:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15); }
.otp-cell.filled { border-color: rgba(0, 230, 118, 0.55); transform: translateY(-2px); }
.otp-boxes.shake { animation: shake 0.4s var(--ease); }

/* Timeline : progression verte */
.tstep::before { transition: background 0.5s var(--ease); }
.tstep.done::before { background: rgba(52, 211, 153, 0.45); }
.tstep.current::before { background: linear-gradient(rgba(52, 211, 153, 0.45), rgba(0, 230, 118, 0.3)); }

/* Barre CTA sticky (mobile uniquement) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 7, 9, 0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(115%); transition: transform 0.45s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-info b { font-family: var(--title); font-size: 19px; color: var(--yellow); }
.sticky-info span { display: block; font-size: 11px; color: var(--muted); }
@media (min-width: 901px) { .sticky-cta { display: none; } }

/* Mention légale partenaires */
.legal-partners {
  margin-top: 12px; text-align: center; font-size: 11.5px; color: var(--muted-2);
  animation: fadeUp 1s 0.7s var(--ease) both; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* How : carrousel scroll-snap sur mobile */
@media (max-width: 900px) {
  .how-carousel {
    display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory;
    margin-left: -24px; margin-right: -24px; padding: 6px 24px 14px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .how-carousel::-webkit-scrollbar { display: none; }
  .how-carousel .how-card { min-width: 80%; scroll-snap-align: center; }
  .how-carousel .how-card:hover { transform: none; }
}

/* Carte service : CTA pleine largeur au tap */
@media (max-width: 640px) {
  .otp-cell { width: 50px; height: 58px; font-size: 23px; }
}

/* Étapes : transition slide */
.ostep-body { display: none; }
.ostep-body.active { display: block; animation: stepIn 0.5s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

/* Carte cliquable entière */

/* ═══════════════ VOLT v5 — panel admin (sidebar + dashboard + drawer) ═══════════════ */

.logo b { color: var(--yellow); font-weight: inherit; }

.ad-body { min-height: 100vh; background: var(--bg); }
.ad-sidebar {
  position: fixed; top: 0; bottom: 0; left: 0; width: 232px; z-index: 120;
  display: flex; flex-direction: column; padding: 22px 14px;
  background: #0a0a0e; border-right: 1px solid var(--line);
}
.ad-side-label { margin: 26px 14px 8px; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.ad-nav { display: flex; flex-direction: column; gap: 4px; }
.ad-link {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 11px;
  font-size: 14px; font-weight: 600; color: var(--muted); text-align: left;
  transition: background 0.2s, color 0.2s;
}
.ad-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.ad-link.active { color: var(--yellow); background: rgba(0, 230, 118, 0.09); }
.ad-badge {
  margin-left: auto; min-width: 20px; text-align: center;
  font-size: 11px; font-weight: 800; color: #0a0a0c;
  background: var(--yellow); border-radius: 999px; padding: 2px 8px;
}
.ad-side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; }
.ad-side-foot a { color: var(--muted-2); }
.ad-side-foot a:hover { color: var(--yellow); }

.ad-main { margin-left: 232px; padding: 96px 28px 70px; min-height: 100vh; }
.ad-topbar {
  position: fixed; top: 0; left: 232px; right: 0; height: 76px; z-index: 110;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 28px;
  background: rgba(7, 7, 9, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.ad-title { font-family: var(--title); font-size: 19px; font-weight: 600; }
body.logged-out .ad-sidebar, body.logged-out .ad-topbar { display: none; }
body.logged-out .ad-main { margin-left: 0; padding: 60px 20px; }

.ad-card { padding: 22px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.ad-charts { display: grid; grid-template-columns: 1fr 1.35fr; gap: 16px; margin-top: 16px; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.donut-svg { position: relative; width: 150px; height: 150px; flex: none; }
.donut-svg svg { width: 100%; height: 100%; }
.donut-center {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none;
}
.donut-center b { font-family: var(--title); font-size: 26px; color: var(--yellow); }
.donut-center span { font-size: 11px; color: var(--muted-2); margin-top: 2px; }
.donut-legend { list-style: none; display: grid; gap: 8px; flex: 1; min-width: 170px; }
.donut-legend li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.donut-legend li b { margin-left: auto; color: var(--text); font-size: 13.5px; }
.lg-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

/* Barres 7 jours */
.bars { display: flex; align-items: flex-end; gap: 12px; height: 160px; margin-top: 14px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 7px; height: 100%; }
.bar {
  width: 100%; max-width: 36px; border-radius: 7px 7px 3px 3px; min-height: 4px;
  background: linear-gradient(180deg, rgba(0, 230, 118, 0.85), rgba(0, 230, 118, 0.2));
  transition: height 0.6s var(--ease);
}
.bar.today { background: linear-gradient(180deg, var(--yellow), rgba(0, 200, 83, 0.5)); box-shadow: 0 0 16px rgba(0, 230, 118, 0.3); }
.bar-count { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.bar-label { font-size: 11px; color: var(--muted-2); text-transform: capitalize; }

/* Lignes récentes cliquables */
.rec-line:hover { border-color: rgba(0, 230, 118, 0.35); background: rgba(0, 230, 118, 0.04); }

/* Tiroir détail */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 310; width: min(470px, 100vw);
  display: flex; flex-direction: column;
  background: #0c0c12; border-left: 1px solid var(--line);
  transform: translateX(105%); transition: transform 0.4s var(--ease);
}
.drawer.show { transform: none; }
.drawer header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer-body { flex: 1; overflow: auto; padding: 20px 22px; }
.drawer-foot { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 22px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.dl-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.07); font-size: 13.5px; }
.dl-row .k { color: var(--muted); flex: none; }
.dl-row .v { font-weight: 600; text-align: right; word-break: break-word; }

/* ── Mobile admin ── */
@media (max-width: 900px) {
  .ad-sidebar {
    position: static; width: 100%; flex-direction: column; padding: 12px 14px;
    border-right: none; border-bottom: 1px solid var(--line);
  }
  .ad-side-label { display: none; }
  .ad-nav { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
  .ad-nav::-webkit-scrollbar { display: none; }
  .ad-link { white-space: nowrap; flex: none; }
  .ad-side-foot { display: none; }
  .ad-main { margin-left: 0; padding: 18px 14px 70px; }
  .ad-topbar {
    position: static; height: auto; flex-wrap: wrap; gap: 10px; padding: 12px 4px;
    background: none; backdrop-filter: none; border-bottom: 1px solid var(--line); margin-bottom: 16px;
  }
  .ad-charts { grid-template-columns: 1fr; }
  .drawer { width: 100vw; }
}

/* ═══════════════ VOLT v6 — vrai logo, logos opérateurs, footer minimal ═══════════════ */

/* Logo réel (SVG image) */
.logo-mark {
  width: 34px; height: 34px; border-radius: 11px; display: block;
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.28);
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.04); }
.logo span:last-child { font-family: var(--title); font-weight: 700; font-size: 15.5px; letter-spacing: 0.04em; }
.logo b { color: var(--yellow); font-weight: inherit; }
.footer-logo { justify-content: center; }

/* Logos opérateurs (reproductions fidèles SFR / Bouygues) */
.op-logo {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-weight: 800;
  transition: transform 0.25s var(--ease);
}
.op-logo.sfr {
  background: #E60000; color: #fff;
  font-family: var(--title); font-size: 14px; letter-spacing: 0.01em;
  box-shadow: 0 0 14px rgba(230, 0, 0, 0.35);
}
.op-logo.bouygues {
  background: #00A0EB; color: #fff;
  font-family: var(--title); font-size: 21px;
  box-shadow: 0 0 14px rgba(0, 160, 235, 0.35);
}
.op-logo.sm { width: 24px; height: 24px; border-radius: 7px; }
.op-logo.sm.sfr { font-size: 9px; }
.op-logo.sm.bouygues { font-size: 13px; }
.op-card.selected .op-logo { transform: scale(1.08); }

/* Bandeau partenaires épuré */
.partner-label {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700; margin-right: 4px;
}
.partner-strip .partner-pill { gap: 9px; padding: 9px 16px; }

/* Rangée paiements */
.pay-strip {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 18px;
}
.pay-strip img { width: 22px; height: 22px; object-fit: contain; opacity: 0.9; }

/* Footer minimal + crédits ultra beaux */
.footer-mini { text-align: center; padding: 72px 0 44px; }
.footer-center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.credits {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted-2);
}
.credits a { color: var(--muted); transition: color 0.25s; }
.credits a:hover { color: var(--yellow); }
.credits-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.credits-links span { color: var(--muted-2); }
@media (max-width: 640px) {
  .footer-mini { padding: 56px 0 34px; }
}

/* ═══════════════ VOLT v9 — logo éclair, carte Apple, opérateurs fidèles, animations, admin fou ═══════════════ */

/* Titre hero : révélation ligne par ligne */
.h1-line { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.h1-line { animation: h1Up 0.85s var(--ease) both; }
.h1-line:nth-of-type(1) { animation-delay: 0.06s; }
.h1-line:nth-of-type(2) { animation-delay: 0.24s; }
@keyframes h1Up { from { transform: translateY(112%); } to { transform: none; } }

/* Vraie carte Apple */
.apple-card {
  display: flex; align-items: center; gap: 14px; margin: 4px 0 18px;
  padding: 15px 16px; border-radius: 15px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.apple-card img { flex: none; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)); }
.apple-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.apple-txt b { font-size: 14.5px; }
.apple-txt span { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.apple-txt span b { color: var(--text); font-size: 12.5px; }
.apple-code { display: flex; gap: 5px; margin-left: auto; flex: none; }
.apple-code i {
  width: 15px; height: 22px; border-radius: 6px;
  border: 1.5px dashed rgba(0, 230, 118, 0.55); background: rgba(0, 230, 118, 0.04);
  animation: dashBreathe 2.6s ease-in-out infinite;
}
.apple-code i:nth-child(2) { animation-delay: 0.2s; }
.apple-code i:nth-child(3) { animation-delay: 0.4s; }
.apple-code i:nth-child(4) { animation-delay: 0.6s; }
@keyframes dashBreathe { 50% { border-color: rgba(0, 230, 118, 0.15); transform: translateY(-2px); } }
@media (max-width: 640px) {
  .apple-code { display: none; }
  .apple-card { gap: 11px; padding: 13px; }
  .apple-card img { width: 32px; height: 32px; }
}

/* Logos opérateurs fidèles : SFR (carré rouge « sfr ») & Bouygues (rond bleu « b ») */
.op-logo {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  font-family: var(--title); font-weight: 700; color: #fff;
  transition: transform 0.25s var(--ease);
}
.op-logo.sfr {
  background: linear-gradient(160deg, #ff3b30, #d50000); border-radius: 11px;
  font-size: 13px; letter-spacing: -0.02em;
  box-shadow: 0 6px 16px rgba(213, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.op-logo.bouygues {
  background: linear-gradient(160deg, #00b8f5, #0076c8); border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0, 118, 200, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.op-logo.sm { width: 26px; height: 26px; }
.op-logo.sm.sfr { font-size: 8.5px; border-radius: 7px; box-shadow: none; }
.op-logo.sm.bouygues { font-size: 12px; box-shadow: none; }
.op-card { gap: 13px; padding: 15px 16px; }
.op-card.selected .op-logo { transform: scale(1.1); }

/* Parallaxe souris (hero glow) */
.hero-glow { will-change: transform; }

/* Ripple tactile sur les boutons */
.ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255, 255, 255, 0.45); transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* Bordure dégradée rotative sur le récap */
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.order-summary { position: relative; }
.order-summary::before {
  content: ''; position: absolute; inset: -1.5px; border-radius: 21px; padding: 1.5px;
  background: conic-gradient(from var(--ang), transparent 0deg 60deg, rgba(0, 230, 118, 0.55) 110deg, transparent 160deg 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: angSpin 7s linear infinite; pointer-events: none;
}
@keyframes angSpin { to { --ang: 360deg; } }

/* Pick : rebond à la sélection */
.pick-item.selected img { animation: pickPop 0.4s var(--ease); }
@keyframes pickPop { 40% { transform: scale(1.22) rotate(-6deg); } }

/* ── Mobile renforcé ── */
@media (max-width: 640px) {
  .pick-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 300px; }
  .pick-item { padding: 11px 6px; gap: 6px; }
  .pick-item img { width: 38px; height: 38px; }
  .pick-item span { font-size: 10.5px; line-height: 1.25; }
  .hero h1 { font-size: clamp(30px, 10.5vw, 48px); }
  .hero-badge { font-size: 11.5px; padding: 8px 14px; }
  .op-logo { width: 42px; height: 42px; }
  .ostep { padding: 9px 8px; gap: 7px; font-size: 11.5px; }
  .status-card { padding: 22px 16px; }
  .status-ref { font-size: 19px; }
  .otp-cell { width: 54px; height: 60px; font-size: 24px; }
  .admin-toolbar .btn, .admin-toolbar .mini-btn { width: 100%; }
}

/* ── Admin : barre d'actions en masse ── */
.bulk-bar {
  position: sticky; top: 84px; z-index: 60;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px; padding: 12px 14px; border-radius: 13px;
  background: rgba(0, 230, 118, 0.07); border: 1px solid rgba(0, 230, 118, 0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeUp 0.3s var(--ease) both;
}
.bulk-bar b { font-family: var(--title); font-size: 13px; color: var(--yellow); margin-right: 4px; }
.req-check { width: 17px; height: 17px; accent-color: #00E676; cursor: pointer; }
th .req-check { vertical-align: middle; }
.ad-split { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.ad-split .split-item {
  display: flex; align-items: center; gap: 9px; padding: 10px 14px;
  border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.ad-split .split-item b { font-family: var(--title); font-size: 15px; }
.ad-split .split-item.sfr b { color: #ff5048; }
.ad-split .split-item.bouygues b { color: #35c4ff; }
.drawer-note-row { display: flex; gap: 8px; margin-bottom: 12px; }
.drawer-note-row input {
  flex: 1; padding: 10px 12px; border-radius: 10px;
  background: #0c0c12; border: 1px solid var(--line); font-size: 13px; color: var(--text);
}
.drawer-note-row input:focus { outline: none; border-color: rgba(0, 230, 118, 0.55); }

/* ═══════════════ VOLT v10 — vrais logos opérateurs, pression live, vitesse, mobile ─══════════════ */

/* Vrais logos opérateurs (images officielles) */
.op-logo-img {
  width: 46px; height: 46px; flex: none; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s var(--ease);
}
.op-logo-img.round { border-radius: 50%; }
.op-card.selected .op-logo-img { transform: scale(1.1); }
.split-item img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.partner-pill img { object-fit: contain; }

/* Pression live (réelle, discrète) */
.live-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 14px auto 0; font-size: 12.5px; color: var(--muted);
  animation: fadeUp 0.9s 0.14s var(--ease) both;
}
.live-line .u-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s infinite; }
.live-line.hot { color: var(--text); }
.live-line.hot .u-dot { background: var(--red); box-shadow: 0 0 10px var(--red); }

/* Badge N°1 dans le picker */
.pick-item { position: relative; }
.pick-hot {
  position: absolute; top: -7px; right: -7px; z-index: 2;
  padding: 3px 7px; border-radius: 999px;
  background: linear-gradient(120deg, #FF5A3C, #00E676); color: #0a0a0c;
  font-size: 9.5px; font-weight: 900; letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(255, 90, 60, 0.45);
  animation: hotPulse 1.8s ease-in-out infinite;
}
@keyframes hotPulse { 50% { transform: scale(1.12); } }

/* ── PC : animations supplémentaires ── */
.hero .btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: shine 2.8s var(--ease) infinite;
}
@keyframes shine { 0% { left: -80%; } 55%, 100% { left: 130%; } }
.pick-item:hover { border-color: rgba(0, 230, 118, 0.5); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 230, 118, 0.1); }
.pick-item:hover img { transform: scale(1.14) rotate(-3deg); }
.order-form { position: relative; overflow: hidden; }
.order-form::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background: radial-gradient(600px circle at 85% 0%, var(--yellow), transparent 55%);
}

/* ── Mobile : encore plus net ── */
@media (max-width: 640px) {
  .field input, .field select { min-height: 52px; font-size: 16px; }
  .btn { min-height: 52px; }
  .pick-item { border-radius: 12px; }
  .live-line { font-size: 11.5px; }
  .hero-stats { gap: 18px; }
  .stat .num { font-size: 22px; }
  .hero { padding: 110px 0 50px; }
  .section { padding: 52px 0; }
  .operator-cards { gap: 8px; }
  .op-card { padding: 12px; gap: 10px; }
  .op-logo-img { width: 40px; height: 40px; }
  .how-card { padding: 20px 16px; }
  .faq-q { font-size: 14.5px; }
  .footer-mini { padding: 48px 0 30px; }
}

/* ═══════════════ VOLT v11 — mode démo temporaire (codes affichés) ═══════════════ */

.demo-code-box {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  margin-top: 16px; padding: 14px 18px; border-radius: 13px;
  background: rgba(0, 230, 118, 0.07);
  border: 1.5px dashed rgba(0, 230, 118, 0.55);
  font-size: 13px; color: var(--muted); text-align: center;
}
.demo-code-box b {
  font-family: var(--title); font-size: 24px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--yellow);
}
.demo-code-box span { font-size: 11.5px; color: var(--muted-2); }
@media (max-width: 640px) {
  .demo-code-box b { font-size: 21px; }
}

/* ═══════════════ VOLT v12 — options dynamiques par service (points, formule, montant) ═══════════════ */

.option-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px;
  margin-bottom: 20px;
}
.option-item {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  padding: 14px 15px; text-align: left; border-radius: 14px;
  background: rgba(255, 255, 255, 0.025); border: 1.5px solid var(--line);
  transition: border-color 0.22s var(--ease), background 0.22s, transform 0.22s var(--ease), box-shadow 0.25s;
  overflow: hidden;
}
.option-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.25s;
  background: radial-gradient(240px circle at var(--mx, 80%) 0%, rgba(0, 230, 118, 0.1), transparent 60%);
}
.option-item:hover { border-color: rgba(0, 230, 118, 0.45); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4); }
.option-item:hover::after { opacity: 1; }
.option-item:active { transform: scale(0.97); }
.opt-label { font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.opt-price { font-size: 12px; color: var(--muted-2); }
.opt-price s { text-decoration-color: rgba(0, 230, 118, 0.6); text-decoration-thickness: 1.5px; }
.opt-free {
  font-size: 10px; font-weight: 900; letter-spacing: 0.08em; color: #0a0a0c;
  background: var(--yellow); border-radius: 999px; padding: 3px 9px;
  opacity: 0.35; transition: opacity 0.22s;
}
.option-item.selected {
  border-color: var(--yellow); background: rgba(0, 230, 118, 0.07);
  box-shadow: 0 0 0 1px var(--yellow), 0 14px 34px rgba(0, 230, 118, 0.13);
}
.option-item.selected::before {
  content: '✓'; position: absolute; top: 10px; right: 12px;
  width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: #0a0a0c; font-weight: 900; font-size: 12px;
  animation: pickPop 0.35s var(--ease);
}
.option-item.selected .opt-free { opacity: 1; }
.option-item.selected .opt-label { color: var(--yellow); }

@media (max-width: 640px) {
  .option-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .option-item { padding: 12px 13px; min-height: 78px; }
  .opt-label { font-size: 12.5px; }
}
@media (max-width: 380px) {
  .option-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ VOLT v15 — cartes opérateur : logo seul, en gros ═══════════════ */
.op-logo-img.big { width: 58px; height: 58px; }
.op-card.logo-only { justify-content: center; padding: 18px 14px; }
.op-card.logo-only.selected { background: rgba(0, 230, 118, 0.09); }
.partner-pill:has(> img:only-child) { padding: 8px 13px; }
@media (max-width: 640px) {
  .op-logo-img.big { width: 52px; height: 52px; }
  .op-card.logo-only { padding: 15px 10px; }
}

/* ═══════════════ VOLT v20 — écran de démarrage sécurisé ═══════════════ */
.boot {
  position: fixed; inset: 0; z-index: 99990;
  background: #070709;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.boot-done { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 24px; }
.boot-logo {
  width: 200px; height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.55));
  animation: bootIn 0.7s var(--ease) both;
}
@keyframes bootIn { from { opacity: 0; transform: scale(0.86); } to { opacity: 1; transform: none; } }
.boot-bar { width: 190px; height: 3px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.boot-fill {
  display: block; height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, #00E676, #69F0AE);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.65);
  animation: bootFill 1.5s var(--ease) forwards;
}
@keyframes bootFill { to { width: 100%; } }
.boot-msg { font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }
.boot-sec { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.boot-sec span {
  font-size: 10.5px; color: var(--muted-2); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 999px;
  opacity: 0; animation: fadeUp 0.5s ease forwards;
}
.boot-sec span:nth-child(1) { animation-delay: 0.15s; }
.boot-sec span:nth-child(2) { animation-delay: 0.3s; }
.boot-sec span:nth-child(3) { animation-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) { .boot { display: none; } }

/* Login admin : shake en cas d'erreur */
.admin-login.shake { animation: shake 0.4s ease; }

/* ═══════════════ VOLT v21 — changer d'offre + vert argent ═══════════════ */
.ostep { cursor: pointer; }
.change-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  color: var(--muted); font-size: 13px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.change-btn:hover { border-color: rgba(0, 230, 118, 0.5); color: var(--yellow); }
.sum-stamp-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.sum-stamp-row .mini-btn { margin-left: 0; }

/* ═══════════════ VOLT v21 admin — tri, pagination, surbrillance, paramètres ═══════════════ */
th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { color: var(--text); }
th.sortable .srt { color: var(--yellow); margin-left: 3px; }
.row-new td { animation: rowNew 2.2s ease-out; }
@keyframes rowNew {
  0% { background: rgba(0, 230, 118, 0.22); }
  100% { background: transparent; }
}
.mini-select {
  padding: 5px 8px; border-radius: 7px;
  background: var(--card); border: 1px solid var(--line-strong);
  color: var(--text); font-size: 11.5px; font-weight: 700;
}
.mini-select:focus { outline: none; border-color: var(--yellow); }
#req-pager { align-items: center; }
#req-pager .mini-btn { min-width: 30px; text-align: center; }

/* ═══════════════ VOLT v22 — logo texte, détection opérateur, VIP ═══════════════ */
.logo-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 23px; letter-spacing: -0.03em; line-height: 1;
}
.logo-text .bolt { width: 18px; height: 18px; color: var(--yellow); filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.6)); }
.logo:hover .logo-text { opacity: 0.88; }

.boot-logo.logo-text { font-size: 46px; gap: 14px; }
.boot-logo.logo-text .bolt { width: 34px; height: 34px; }

.op-detect { margin-top: 6px; font-size: 12.5px; min-height: 18px; }
.op-detect-hint { color: var(--muted-2); }
.op-detect-ok { color: var(--yellow); font-weight: 600; }
.op-detect-bad { color: var(--red); font-weight: 600; }

/* Badges VIP */
.vip-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 999px;
  border: 1px solid; white-space: nowrap;
}
.vip-badge::before { content: '◆'; font-size: 8px; }
.vip-bronze { color: #CD7F32; border-color: rgba(205, 127, 50, 0.6); background: rgba(205, 127, 50, 0.12); }
.vip-argent { color: #D7DCE2; border-color: rgba(215, 220, 226, 0.5); background: rgba(215, 220, 226, 0.1); }
.vip-gold { color: #FFD700; border-color: rgba(255, 215, 0, 0.55); background: rgba(255, 215, 0, 0.1); }
.vip-ultime { color: #00E676; border-color: rgba(0, 230, 118, 0.6); background: rgba(0, 230, 118, 0.1); }

/* Carte VIP côté suivi */
.vip-card {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(0, 230, 118, 0.4);
  font-size: 13px; color: var(--muted);
}
.vip-card b { color: var(--yellow); }

/* Login pro */
.login-badges { display: flex; gap: 7px; flex-wrap: wrap; margin: 0 0 18px; }
.pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); background: none; border: none; cursor: pointer; padding: 4px;
}
.pw-wrap { position: relative; }

/* ═══════════════ VOLT — écran de connexion admin (v22) ═══════════════ */
body.logged-out { overflow-x: hidden; }
body.logged-out .ad-main { margin-left: 0; padding: 0; }

.login-screen {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px; overflow: hidden; isolation: isolate;
}

/* Halos animés */
.login-aurora { position: absolute; inset: -20% -10%; z-index: -2; filter: blur(90px); opacity: 0.55; }
.login-aurora span { position: absolute; display: block; border-radius: 50%; }
.login-aurora span:nth-child(1) {
  width: 46vw; height: 46vw; left: -6vw; top: -8vw;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.55), transparent 68%);
  animation: auroraA 17s var(--ease) infinite alternate;
}
.login-aurora span:nth-child(2) {
  width: 38vw; height: 38vw; right: -6vw; top: 8vw;
  background: radial-gradient(circle, rgba(105, 240, 174, 0.38), transparent 66%);
  animation: auroraB 21s var(--ease) infinite alternate;
}
.login-aurora span:nth-child(3) {
  width: 42vw; height: 42vw; left: 28vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.3), transparent 70%);
  animation: auroraC 25s var(--ease) infinite alternate;
}
@keyframes auroraA { to { transform: translate3d(7vw, 5vh, 0) scale(1.15); } }
@keyframes auroraB { to { transform: translate3d(-6vw, 7vh, 0) scale(1.2); } }
@keyframes auroraC { to { transform: translate3d(4vw, -6vh, 0) scale(1.1); } }

/* Grille technique de fond */
.login-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 35%, transparent 100%);
}

.login-shell {
  width: 100%; max-width: 1060px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}

/* ── Colonne marque ── */
.login-brand { animation: fadeUp 0.7s var(--ease) both; }
.login-logo { display: inline-flex; margin-bottom: 30px; }
.login-logo .logo-text { font-size: 30px; }
.login-h1 {
  font-family: var(--title); font-size: clamp(30px, 4.1vw, 46px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.login-h1 span {
  background: linear-gradient(100deg, var(--yellow), var(--cyan) 55%, #ffffff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.login-sub { color: var(--muted); font-size: 15px; max-width: 430px; margin-bottom: 30px; }

.login-features { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.login-features li {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.028); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.login-features li:hover {
  transform: translateX(5px); border-color: rgba(0, 230, 118, 0.4);
  background: rgba(0, 230, 118, 0.05);
}
.lf-ico {
  width: 36px; height: 36px; flex: none; border-radius: 11px; font-size: 16px;
  display: grid; place-items: center;
  background: rgba(0, 230, 118, 0.11); border: 1px solid rgba(0, 230, 118, 0.22);
}
.login-features b { display: block; font-size: 13.8px; font-weight: 600; }
.login-features small { display: block; font-size: 12.4px; color: var(--muted-2); }

.login-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--muted-2);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
}

/* ── Carte de connexion ── */
.login-card {
  position: relative; border-radius: 26px; padding: 1px;
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.55), rgba(255, 255, 255, 0.06) 42%, rgba(105, 240, 174, 0.35));
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 70px -35px rgba(0, 230, 118, 0.55);
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}
.login-card-glow {
  position: absolute; inset: -40%; z-index: 0; pointer-events: none; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 62%, rgba(0, 230, 118, 0.5) 78%, transparent 92%);
  animation: cardSpin 9s linear infinite; opacity: 0.4;
}
@keyframes cardSpin { to { transform: rotate(360deg); } }
.login-card-inner {
  position: relative; z-index: 1; border-radius: 25px;
  padding: 34px 32px 26px;
  background: linear-gradient(180deg, rgba(18, 18, 24, 0.97), rgba(10, 10, 13, 0.99));
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}
.login-lock {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  color: var(--yellow); background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.28); margin-bottom: 16px;
}
.login-lock svg { width: 23px; height: 23px; }
.login-card-inner h2 { font-family: var(--title); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.login-card-sub { font-size: 13.2px; color: var(--muted); margin: 6px 0 20px; }

.login-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 20px;
  padding: 4px; border-radius: 13px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
}
.login-tab {
  padding: 9px 10px; border-radius: 10px; font-size: 12.8px; font-weight: 600;
  color: var(--muted); transition: all 0.25s var(--ease);
}
.login-tab:hover { color: var(--text); }
.login-tab.active { color: #07070a; background: var(--yellow); box-shadow: 0 6px 18px -8px rgba(0, 230, 118, 0.9); }

.login-form { animation: fadeUp 0.35s var(--ease) both; }
.login-form .field { margin-bottom: 15px; }
.login-form label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: 0.02em; }
.login-form .pw-wrap { position: relative; }
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%; padding: 13px 44px 13px 40px; border-radius: 13px;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font); font-size: 14.5px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.login-form input::placeholder { color: #55555f; }
.login-form input:focus {
  outline: none; border-color: rgba(0, 230, 118, 0.65);
  background: rgba(0, 230, 118, 0.05);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.12);
}
.fi-ico {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); pointer-events: none; display: flex;
}
.login-form input:focus ~ .fi-ico, .login-form .pw-wrap:focus-within .fi-ico { color: var(--yellow); }
.login-form .pw-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  padding: 7px; border-radius: 9px; color: var(--muted-2); transition: color 0.2s, background 0.2s;
}
.login-form .pw-toggle:hover { color: var(--yellow); background: rgba(255, 255, 255, 0.05); }
.field-help { font-size: 11.8px; color: var(--muted-2); margin-top: 7px; line-height: 1.5; }
.field-help b { color: var(--cyan); }

.login-remember { display: flex; align-items: center; gap: 9px; font-size: 12.6px; color: var(--muted); margin: 4px 0 18px; cursor: pointer; }
.login-remember input { width: 15px; height: 15px; accent-color: var(--yellow); cursor: pointer; }

.login-submit {
  width: 100%; justify-content: center; gap: 9px; padding: 14px 20px;
  font-size: 14.5px; border-radius: 13px;
  box-shadow: 0 14px 34px -14px rgba(0, 230, 118, 0.85);
}
.login-submit:disabled { opacity: 0.65; cursor: progress; }

.login-error {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  padding: 11px 13px; border-radius: 12px; font-size: 12.8px; font-weight: 500;
  color: #fecaca; background: rgba(248, 113, 113, 0.1); border: 1px solid rgba(248, 113, 113, 0.32);
}
.login-ok { color: #bbf7d0; background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.35); }

.login-back { display: inline-block; margin-top: 20px; font-size: 12.4px; color: var(--muted-2); }
.login-back:hover { color: var(--yellow); }

.login-card.shake { animation: shake 0.4s ease; }

@media (max-width: 900px) {
  .login-shell { grid-template-columns: 1fr; gap: 34px; max-width: 460px; }
  .login-features { display: none; }
  .login-h1 { font-size: 30px; }
  .login-sub { margin-bottom: 18px; }
}
@media (max-width: 480px) {
  .login-screen { padding: 28px 14px; }
  .login-card-inner { padding: 26px 20px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .login-aurora span, .login-card-glow { animation: none; }
}
