/* ===== Tokens ===== */
:root {
  --bg: #08090b;
  --bg-alt: #0c0d10;
  --panel: #0e0f13;
  --panel-solid: #101116;
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.16);
  --blue: #6366f1;
  --blue-dim: #4f46e5;
  --purple: #6366f1;
  --purple-dim: #4f46e5;
  --gold: #eab308;
  --red: #f87171;
  --green: #34d399;
  --text: #f4f4f5;
  --text-dim: #8b8d98;
  --text-faint: #55575f;
  --font-display: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-glow-blue: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-glow-purple: 0 1px 2px rgba(0,0,0,0.4);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 { font-family: var(--font-display); }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===== Background FX ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 30%, transparent 85%);
}

.bg-glow {
  position: fixed;
  z-index: -2;
  pointer-events: none;
}
.bg-glow--blue {
  top: -220px;
  left: 50%;
  width: 1100px;
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.24), transparent 72%);
  filter: blur(20px);
}
.bg-glow--purple {
  display: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--discord {
  background: #5865F2;
  color: #fff;
}
.btn--discord:hover { background: #4a55d6; }

.btn--accent {
  background: var(--purple);
  color: #fff;
}
.btn--accent:hover { background: var(--purple-dim); }

.btn--outline {
  background: transparent;
  border-color: var(--border-bright);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--text-faint); background: rgba(255,255,255,0.03); }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--border-bright); background: rgba(255,255,255,0.06); }

.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--lg { padding: 13px 26px; font-size: 15px; }
.btn--full { width: 100%; }

.icon-discord { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.icon-svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.icon-svg--filled { fill: currentColor; stroke: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 10, 16, 0.78);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-right: auto;
}
.brand-icon { font-size: 18px; color: var(--purple); }
.brand-text { color: #fff; }
.brand-text--accent { color: var(--purple); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  white-space: nowrap;
}
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 6px 2px;
  transition: color 0.15s ease;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-current::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  position: relative;
}

.hero > .container {
  width: 100%;
}

.hero-inner {
  text-align: center;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  padding-bottom: 70px;
}
.hero-split .hero-cta { justify-content: flex-start; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple);
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  margin-bottom: 16px;
}
.eyebrow--center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

.hero-title {
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero-title-line {
  display: block;
  font-size: clamp(44px, 5.6vw, 76px);
  color: #fff;
}
.hero-title-line--accent {
  color: var(--purple);
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 18px 0 20px;
}

/* ===== Hero FPS visual ===== */
.hero-visual { display: flex; justify-content: center; position: relative; padding: 20px; }

.hero-visual-bg {
  position: absolute;
  inset: -30px;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.network-svg {
  width: 100%;
  height: 100%;
}
.network-svg line { stroke: var(--border-bright); stroke-width: 1; }
.network-svg circle { fill: var(--purple); animation: pulseDot 3s ease-in-out infinite; }
.network-svg circle:nth-child(8) { animation-delay: 0.6s; }
.network-svg circle:nth-child(9) { animation-delay: 1.2s; }
.network-svg circle:nth-child(10) { animation-delay: 1.8s; }
.network-svg circle:nth-child(11) { animation-delay: 0.3s; }
.network-svg circle:nth-child(12) { animation-delay: 0.9s; }

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.float-chip {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  animation: floatChip 4.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.float-chip .icon-svg { width: 22px; height: 22px; }
.float-chip--gpu { top: -6px; left: -14px; }
.float-chip--controller { bottom: 10px; right: -18px; }
.float-chip--cpu { top: 50%; right: -22px; }

.fps-card { position: relative; z-index: 3; animation: floatCard 5s ease-in-out infinite; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .fps-card, .float-chip, .network-svg circle { animation: none; }
}
@media (max-width: 560px) {
  .float-chip { width: 38px; height: 38px; }
  .float-chip .icon-svg { width: 18px; height: 18px; }
  .float-chip--gpu { left: 0; }
  .float-chip--controller { right: 0; }
  .float-chip--cpu { display: none; }
}
.fps-card {
  width: 100%;
  max-width: 400px;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}
.fps-card-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.fps-compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.fps-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.fps-block-tag { font-size: 12px; color: var(--text-faint); font-weight: 600; }
.fps-block-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dim);
  line-height: 1.1;
}
.fps-block--after .fps-block-num { color: var(--purple); font-size: 56px; }
.fps-block-unit { font-size: 12px; color: var(--text-faint); font-weight: 600; }
.fps-arrow { color: var(--purple); flex-shrink: 0; }
.fps-arrow .icon-svg { width: 22px; height: 22px; stroke-width: 2; }
.fps-card-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fps-badge {
  background: rgba(52,211,153,0.12);
  color: var(--green);
  border: 1px solid rgba(52,211,153,0.25);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}
.fps-card-footer-text { font-size: 13px; color: var(--text-dim); }

/* ===== Avant / Après grid ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.fps-card--compact {
  width: 100%;
  max-width: none;
  animation: none;
}
.fps-card--compact .fps-block-num { font-size: 34px; }
.fps-card--compact .fps-block--after .fps-block-num { font-size: 42px; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.compare-item {
  position: relative;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 16px;
}
.compare-item video,
.compare-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
  background: #000;
}
.compare-item img { cursor: pointer; transition: transform 0.3s ease; }
.compare-item img:hover { transform: scale(1.03); }
.compare-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.compare-tag--after {
  color: var(--purple);
  border-color: rgba(99,102,241,0.35);
  background: rgba(99,102,241,0.1);
}

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

/* ===== Scroll indicator ===== */
.scroll-indicator {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-faint);
  z-index: 4;
  padding: 8px;
}
.scroll-indicator:hover { color: var(--text-dim); }
.scroll-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border-bright);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  transition: border-color 0.2s ease;
}
.scroll-indicator:hover .scroll-mouse { border-color: var(--purple); }
.scroll-mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--purple);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
.scroll-chevron {
  width: 14px;
  height: 14px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (max-width: 900px) {
  .scroll-indicator { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-mouse-wheel, .scroll-chevron { animation: none; }
}

/* ===== Big numbers strip ===== */
.numbers {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.number-item { display: flex; flex-direction: column; gap: 6px; }
.number-value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.number-plus { color: var(--purple); font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.number-label { font-size: 13px; color: var(--text-dim); font-weight: 500; }

.hero-desc {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 18px;
}
.hero-desc strong { color: var(--blue); }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-faint);
  font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ===== Trust strip ===== */
.trust { padding: 30px 0 70px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.trust-card:hover { border-color: var(--border-bright); }
.trust-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 18px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.trust-icon--blue { color: var(--purple); }
.trust-icon--gold { color: var(--gold); }
.trust-icon--purple { color: var(--purple); }
.trust-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.trust-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

/* ===== Demo gratuite ===== */
.demo {
  margin: 0 32px 80px;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  background: var(--panel-solid);
  border: 1px solid var(--border);
}
.demo-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.demo-icon {
  width: 44px; height: 44px;
  font-size: 22px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--green);
}
.demo-content { flex: 1; min-width: 260px; }
.demo-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.demo-content p { color: var(--text-dim); font-size: 15px; }
.demo-content strong { color: var(--text); }
.demo-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(52,211,153,0.1);
  color: var(--green);
  border: 1px solid rgba(52,211,153,0.2);
}

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); }

.section-title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.section-title--left { text-align: left; }
.stars { color: var(--gold); font-size: 0.6em; vertical-align: middle; margin-left: 8px; }

.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 50px;
}
.section-sub--left { text-align: left; margin: 0 0 28px; max-width: none; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}
.price-card:hover { border-color: var(--border-bright); }

.price-card--featured {
  border: 1px solid var(--purple);
}

.price-ribbon {
  display: inline-block;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.price-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.price-icon { font-size: 18px; color: var(--text-faint); display: flex; }
.price-icon--gold { color: var(--gold); }
.price-icon--blue { color: #00eaff; }
.price-icon--red { color: var(--red); }
.price-card h3 { font-size: 17px; font-weight: 600; color: #fff; }

.price-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 4px 0 20px;
}
.price-amount span { font-size: 19px; opacity: 0.6; font-weight: 600; }
.price-amount--inline { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 16px; }
.price-amount--inline small { font-family: var(--font-body); font-size: 15px; color: var(--text-dim); font-weight: 600; }

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(99,102,241,0.12);
  color: var(--purple);
}
.feature-icon .icon-svg { width: 16px; height: 16px; }
.price-features li strong { display: block; color: var(--text); font-weight: 600; }
.feature-desc { display: block; margin-top: 2px; }

/* ===== Montage PC ===== */
.montage-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  font-size: 14.5px;
  color: var(--text-dim);
  padding-left: 24px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.check-list li em { color: var(--text-faint); font-style: normal; font-size: 0.9em; }

.fine-print {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 24px;
  line-height: 1.6;
}
.fine-print--center { text-align: center; max-width: 640px; margin: 30px auto 0; }

.montage-visual { display: flex; justify-content: center; }
.pc-card {
  width: 100%;
  max-width: 360px;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-glow-blue);
}
.pc-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.pc-card-row:last-child { border-bottom: none; }
.pc-card-row span { font-size: 18px; }

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: border-color 0.15s ease;
}
.step-card:hover { border-color: var(--border-bright); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: var(--radius-sm);
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.step-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

/* ===== Avis ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.15s ease;
}
.review-card:hover { border-color: var(--border-bright); }
.review-text {
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}
.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-fps {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(99,102,241,0.1);
  color: var(--blue);
}

/* ===== Zone ===== */
.zone { padding: 60px 0; }
.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.zone-card {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.zone-icon {
  width: 40px; height: 40px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 18px;
  color: var(--purple);
}
.zone-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.zone-card p { color: var(--text-dim); font-size: 13.5px; }

/* ===== Conditions ===== */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.condition-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.condition-icon { width: 18px; height: 18px; flex-shrink: 0; font-size: 16px; color: var(--text-faint); margin-top: 2px; }
.condition-item p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

/* ===== CTA Final ===== */
.cta-final {
  padding: 90px 0 100px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
  color: #fff;
}
.cta-final p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 8px;
}
.contact-direct {
  margin-top: 28px !important;
  font-size: 14px !important;
  color: var(--text-faint) !important;
}
.contact-direct a { color: var(--purple); text-decoration: underline; }

.title-emoji { font-size: 0.7em; vertical-align: middle; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.footer-legal { font-size: 13px; color: var(--text-faint); line-height: 1.6; }
.footer-legal a { color: var(--text-dim); text-decoration: underline; }
.footer-links { display: flex; gap: 20px; font-size: 13px; font-weight: 600; color: var(--text-dim); }
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--text-faint); margin-top: 6px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 40px 0; }
  .hero-split { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-split .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .fps-card { max-width: 360px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { order: -1; }
  .montage-inner { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .demo-inner { text-align: center; justify-content: center; }
  .header-inner .btn--sm { display: none; }
  .hero-title-line { font-size: clamp(32px, 11vw, 48px); }
  .fps-card { max-width: 100%; padding: 22px; }
  .fps-block-num { font-size: 30px; }
  .fps-block--after .fps-block-num { font-size: 38px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav (open state) */
.nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  transform: none;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  gap: 16px;
}

.nav a.is-current { color: var(--blue); }

.btn--danger {
  background: rgba(255,77,94,0.12);
  border-color: rgba(255,77,94,0.4);
  color: var(--red);
}
.btn--danger:hover { background: rgba(255,77,94,0.2); border-color: var(--red); }

/* ===== Page hero (secondary pages) ===== */
.hero--page { padding: 70px 0 40px; }

/* ===== Avis scene: talking character + scattered bubbles ===== */
.avis-scene {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.avis-character {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  justify-content: center;
}
.avis-lottie { width: 100%; max-width: 320px; }

.avis-bubbles {
  position: relative;
  flex: 1;
  min-height: 590px;
}

.avis-bubble {
  position: absolute;
  max-width: 230px;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 13px 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transform: rotate(var(--rotate, 0deg));
  transition: transform 0.2s ease;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.avis-bubble:hover { transform: scale(1.03) rotate(var(--rotate, 0deg)); z-index: 5; }
.avis-bubble.is-dragging,
.avis-bubble.is-rotating {
  cursor: grabbing;
  transition: none;
  z-index: 10;
  box-shadow: 0 20px 45px rgba(0,0,0,0.55);
}
.avis-bubble-rotate {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 6;
}
.avis-bubble:hover .avis-bubble-rotate,
.avis-bubble.is-rotating .avis-bubble-rotate { opacity: 1; }
.avis-bubble-rotate:active { cursor: grabbing; }
.avis-bubble-rotate .icon-svg { width: 13px; height: 13px; stroke-width: 2; }
.avis-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 14px;
  height: 14px;
  background: inherit;
  border-left: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
  transform: translateY(-50%) rotate(45deg);
}
.avis-bubble .review-text { font-size: 13.5px; margin-bottom: 10px; }
.avis-bubble .review-author { font-size: 12px; }

@media (max-width: 900px) {
  .avis-scene { flex-direction: column; align-items: center; gap: 32px; }
  .avis-character { width: 200px; }
  .avis-bubbles {
    position: static;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .avis-bubble {
    position: static;
    max-width: none;
    transform: none !important;
  }
  .avis-bubble::after { display: none; }
  .avis-bubble:hover { transform: none !important; }
  .avis-bubble-rotate { display: none; }
}

/* ===== Reviews: community + form ===== */
.reviews-status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
  padding: 20px 0;
}

.reviews-community { margin-top: 56px; }
.reviews-community-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.review-card-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-form-wrap {
  max-width: 560px;
  margin: 64px auto 0;
  padding: 36px;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.form-field input[type="text"],
.form-field input[type="password"],
.form-field input[type="number"],
.form-field input[type="file"],
.form-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.star-input {
  display: flex;
  gap: 4px;
}
.star-input button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--border-bright);
  transition: color 0.15s ease;
  line-height: 1;
  padding: 4px;
}
.star-input button.is-active { color: var(--gold); }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.form-message--success { color: var(--green); }
.form-message--error { color: var(--red); }

/* ===== Setup gallery ===== */
.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.setup-card {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.setup-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.setup-card img:hover {
  transform: scale(1.04);
}

/* ===== Photo lightbox ===== */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(3,4,10,0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.photo-lightbox[hidden] { display: none; }
.photo-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow-purple);
  cursor: default;
}
.photo-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.photo-lightbox-close:hover { background: rgba(255,255,255,0.16); }

.setup-form-wrap { max-width: 560px; margin: 0 auto; }
.setup-preview {
  margin-top: 10px;
  max-height: 220px;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* ===== Admin ===== */
.admin-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.admin-login-card {
  max-width: 380px;
  margin: 70px auto;
  padding: 40px 32px;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}
.admin-login-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-login-icon .icon-svg { width: 22px; height: 22px; display: block; }
.admin-login-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1;
}
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.admin-login-form .form-field { display: flex; flex-direction: column; gap: 8px; }
.admin-login-submit { width: 100%; margin-top: 6px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap .input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--text-faint);
  pointer-events: none;
  display: block;
}
.input-icon-wrap input {
  width: 100%;
  height: 46px;
  padding-left: 44px !important;
  line-height: 1;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.admin-tab {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.admin-tab.is-active { color: var(--blue); border-color: var(--blue); }

.admin-subtabs { display: flex; gap: 10px; margin-bottom: 24px; }
.admin-subtab {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.admin-subtab.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.admin-item {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.admin-item--setup { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.admin-item--setup img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.admin-item--setup .admin-item-body { padding: 20px; }

.admin-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.admin-item-head strong { color: #fff; }
.admin-item-stars { color: var(--gold); font-size: 13px; }
.admin-item-date { color: var(--text-faint); font-size: 12px; margin-left: auto; }

.admin-item-text { font-size: 14.5px; color: var(--text-dim); margin-bottom: 8px; line-height: 1.5; }
.admin-item-meta { font-size: 12px; color: var(--text-faint); margin-bottom: 14px; }

.admin-item-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
}
.admin-item-note label { font-size: 11px; font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.admin-item-note textarea,
.admin-item-note input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13.5px;
}
.admin-item-note .btn { align-self: flex-start; }

.admin-item-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .admin-list--grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .setup-grid { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 24px; }
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3,4,10,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] {
  display: none;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--panel-solid);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-glow-purple);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--text); border-color: var(--border-bright); }

@media (max-width: 560px) {
  .modal { padding: 26px; }
}

/* ===== Legal page ===== */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  font-size: 22px;
  color: #fff;
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 16px;
  color: var(--blue);
  margin: 24px 0 8px;
}
.legal-content p, .legal-content li {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-content a { color: var(--blue); text-decoration: underline; }
