/* ============================================================
   Web'up — Home v2 · Terminal CRT
   Single-page conversion-optimised redesign.
   Uses tokens from ../colors_and_type.css
   ============================================================ */

body {
  background: var(--bg-deep);
  color: var(--fg-1);
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

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

/* ============================================================
   STAGE — fixed background orbs + grid + scanlines (CRT)
   ============================================================ */

.stage-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 18% 8%, rgba(78,214,255,0.22), transparent 60%),
    radial-gradient(50% 50% at 88% 32%, rgba(44,114,214,0.2), transparent 70%),
    radial-gradient(55% 55% at 50% 110%, rgba(255,177,85,0.1), transparent 70%),
    var(--bg-deep);
}

.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(78,214,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(78,214,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black, transparent 95%);
  opacity: 0.55;
}

/* ============================================================
   HEADER — sticky terminal bar
   ============================================================ */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(2,8,15,0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border-1);
}
.site-header-inner {
  display: flex; align-items: center; gap: var(--space-6);
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand img { height: 32px; }
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(78, 214, 255, 0.4));
}
.brand-logo--lg { height: 44px; }
.brand-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
}
.nav-main {
  display: flex; gap: var(--space-5);
  margin-left: var(--space-5);
}
.nav-main a {
  color: var(--fg-2);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.nav-main a:hover { color: var(--accent); }
.nav-cta {
  margin-left: auto;
  display: flex; gap: 10px; align-items: center;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-1);
  display: inline-flex; gap: 6px; align-items: center;
  transition: all var(--dur-fast);
}
.nav-phone:hover { color: var(--accent); border-color: var(--border-strong); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: calc(120px + var(--space-9)) 0 var(--space-8);
  position: relative;
}

.hero-horizon {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200%; height: 280px;
  perspective: 600px; pointer-events: none;
  opacity: 0.5;
}
.hero-horizon .floor {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(78,214,255,0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,214,255,0.28) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: rotateX(72deg) translateY(-40px);
  transform-origin: center bottom;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent 95%);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  margin: 0 0 var(--space-5);
  text-wrap: balance;
}
.hero-title .accent {
  color: var(--accent);
}
.hero-title .cursor::after {
  content: '▮';
  margin-left: 6px;
  color: var(--accent);
  animation: cursor-blink 1s steps(1) infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0 0 var(--space-6);
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: var(--space-6);
}

.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--dur-base) var(--ease-out-quart);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--accent), 0 0 48px -6px var(--glow-accent);
}
.btn-primary:hover {
  background: #7AE5FF;       /* brighter cyan, contrast preserved */
  color: var(--bg-deep);     /* explicit — never let text invert */
  box-shadow: 0 0 0 1px #7AE5FF, 0 0 72px -4px var(--glow-accent);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: var(--accent);
  transform: scale(0.98);
}
.btn-secondary {
  background: var(--surface-glass);
  color: var(--fg-1);
  border-color: var(--border-2);
  backdrop-filter: blur(16px);
}
.btn-secondary:hover {
  background: var(--surface-elev);
  border-color: var(--border-strong);
  color: var(--accent);
}

.hero-microtrust {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
}
.hero-microtrust .stars { color: #FFD166; font-size: 14px; letter-spacing: 2px; }
.hero-microtrust strong { color: var(--fg-1); font-weight: 500; font-family: var(--font-sans); }

/* ===========================================================
   HERO SHOWCASE — CRT browser auto-cycling client sites
   =========================================================== */

.hero-showcase {
  display: flex; flex-direction: column;
  gap: var(--space-3);
  perspective: 1400px;
}

.showcase-frame {
  background: var(--bg-elev);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(78, 214, 255, 0.4),
    0 24px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 80px -10px var(--glow-accent);
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform var(--dur-slow) var(--ease-out-quart);
  position: relative;
}
.hero-showcase:hover .showcase-frame {
  transform: rotateY(0) rotateX(0);
}

.showcase-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-2);
}
.showcase-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-left: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(78, 214, 255, 0.08);
  border: 1px solid var(--border-2);
  letter-spacing: 0.04em;
  flex: 1;
  max-width: 240px;
  text-align: center;
}
.showcase-url.typing {
  animation: url-flicker 0.4s steps(8);
}
@keyframes url-flicker {
  0%, 30%, 60% { opacity: 0.3; }
  15%, 45%, 100% { opacity: 1; }
}
.showcase-live {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.showcase-live .live-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.showcase-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}
.showcase-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 600ms ease, transform 4000ms ease;
  pointer-events: none;
}
.showcase-img.active {
  opacity: 1;
  transform: scale(1);
}
/* CRT scanline overlay on the active image */
.showcase-scan {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 2px,
      rgba(78, 214, 255, 0.06) 2px,
      rgba(78, 214, 255, 0.06) 3px
    ),
    radial-gradient(ellipse 100% 75% at center, transparent 60%, rgba(0, 0, 0, 0.5));
  mix-blend-mode: screen;
}

.showcase-dots {
  display: flex; gap: 6px;
  justify-content: center;
  padding: 4px 0;
}
.showcase-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(78, 214, 255, 0.2);
  cursor: pointer;
  transition: all 200ms ease;
}
.showcase-dot:hover { background: rgba(78, 214, 255, 0.5); }
.showcase-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transform: scale(1.4);
}

.showcase-caption {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  padding: 0 4px;
}
.showcase-count { color: var(--accent); }

/* ===========================================================
   HERO — single column intro (text + CTAs + microtrust)
   =========================================================== */

.hero-intro {
  max-width: 820px;
}

/* ===========================================================
   CAROUSEL — full-width client showcase, 16:9 cards
   =========================================================== */

.carousel-wrap {
  margin-top: var(--space-8);
  position: relative;
}

/* Arrow buttons — visible on desktop, hidden on mobile (touch swipe takes over) */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(2, 8, 15, 0.75);
  border: 1px solid var(--border-2);
  color: var(--fg-1);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 8px 24px -8px rgba(0, 0, 0, 0.7),
    0 0 32px -8px var(--glow-accent);
  transition: all var(--dur-base) var(--ease-out-quart);
}
.carousel-arrow:hover {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 0 40px -4px var(--glow-accent);
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.carousel-arrow i { width: 22px; height: 22px; }
.carousel-prev { left: clamp(8px, 2vw, 24px); }
.carousel-next { right: clamp(8px, 2vw, 24px); }

/* Hide arrows on mobile — swipe is the interaction */
@media (max-width: 760px) {
  .carousel-arrow { display: none; }
  .carousel { touch-action: pan-y; }
  .carousel-track { cursor: grab; }
}
.carousel-wrap:focus-visible {
  outline: none;
}
.carousel-wrap:focus-visible .carousel-arrow {
  box-shadow: 0 0 0 2px var(--accent), 0 8px 24px -8px rgba(0, 0, 0, 0.7);
}
.carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 40px 0;
}
.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel-card {
  flex-shrink: 0;
  width: clamp(280px, 46vw, 640px);
  background: var(--bg-elev);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0.35;
  transform: scale(0.92);
  filter: blur(1.5px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 600ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 600ms ease,
    border-color 400ms ease;
  position: relative;
}
.carousel-card.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 100px -10px var(--glow-accent);
}
.carousel-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-1);
}
.carousel-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  margin: 0 auto;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: rgba(78, 214, 255, 0.06);
  border: 1px solid var(--border-1);
  letter-spacing: 0.04em;
}
.carousel-card.is-active .carousel-url {
  color: var(--accent);
  border-color: var(--border-2);
}
.carousel-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--bg-deep);
}

/* Caption block below the image — visible only on the active card */
.carousel-caption {
  padding: var(--space-4) var(--space-5);
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-1);
  opacity: 0;
  transition: opacity 400ms ease 200ms;
}
.carousel-card.is-active .carousel-caption { opacity: 1; }
.carousel-caption .cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.carousel-caption strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-1);
}
.carousel-caption .loc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

.carousel-meta {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}
.carousel-count {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.carousel-label { opacity: 0.7; }

@media (max-width: 760px) {
  .carousel { padding: 24px 0; }
  .carousel-card { width: 78vw; }
  .carousel-track { gap: 16px; }
}

/* ===========================================================
   METHOD — bento layout · 5 step cards + 1 central manifesto
   =========================================================== */

.method-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  backdrop-filter: blur(20px) saturate(140%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  transition: all var(--dur-base) var(--ease-out-quart);
}
.bento-card::before {
  content: '';
  position: absolute; top: 0; left: 18px; right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 214, 255, 0.4), transparent);
}
.bento-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -16px rgba(0,0,0,0.55), 0 0 60px -12px var(--glow-accent);
}

.bento-head {
  display: flex; align-items: center; justify-content: space-between;
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.25);
}
.bento-num {
  font-family: var(--font-retro);
  font-size: 22px;
  color: var(--fg-3);
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

.bento-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.bento-card > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-2);
}

.bento-visual {
  margin-top: auto;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 90px;
}

/* —— Visual 01: audit terminal —— */
.visual-audit .mini-term {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.85;
  color: var(--fg-2);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-1);
  border-radius: 8px;
  padding: 10px 14px;
}
.mini-term .ok { color: #34d399; margin-right: 4px; }
.mini-term .warn { color: #FFB155; margin-right: 4px; }
.mini-term strong { color: var(--accent); font-weight: 600; }

/* —— Visual: image-based (build / authority) —— */
.visual-image {
  align-items: stretch;
  margin-left: calc(-1 * var(--space-5));
  margin-right: calc(-1 * var(--space-5));
  margin-bottom: calc(-1 * var(--space-5));
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.visual-image img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Subtle dark fade at top so the image transitions into the card cleanly */
.visual-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 15, 0.5) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

/* —— Visual: content (image + chips) —— */
.visual-content-image {
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.visual-content-image img {
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.kw-row {
  display: flex; flex-wrap: wrap; gap: 5px;
}

/* —— Visual 02: wireframe (legacy, kept for reference) —— */
.visual-build .mini-wire {
  width: 100%;
  display: flex; flex-direction: column; gap: 6px;
}
.wire-line { height: 6px; background: rgba(78, 214, 255, 0.18); border-radius: 3px; }
.w-80 { width: 78%; }
.w-60 { width: 58%; }
.wire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 4px; }
.wire-box {
  aspect-ratio: 1;
  background: rgba(78, 214, 255, 0.08);
  border: 1px solid rgba(78, 214, 255, 0.22);
  border-radius: 5px;
}
.wire-box-active {
  background: rgba(78, 214, 255, 0.28);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--glow-accent), inset 0 0 8px rgba(78, 214, 255, 0.3);
}

/* —— Visual 03: keyword chips —— */
.visual-content {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-content: flex-end;
}
.kw-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  background: rgba(78, 214, 255, 0.06);
  border: 1px solid var(--border-2);
  color: var(--fg-2);
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.kw-active {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 0 16px -2px var(--glow-accent);
}

/* —— Visual 04: authority network —— */
.visual-authority svg {
  width: 100%;
  height: 110px;
  display: block;
}
.visual-authority circle {
  filter: drop-shadow(0 0 6px var(--glow-accent));
}

/* —— Visual 05: KPI sparkline —— */
.visual-kpi {
  position: relative;
  align-items: stretch;
}
.visual-kpi svg {
  width: 100%;
  height: 90px;
  display: block;
}
.kpi-stat {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.kpi-stat-val {
  font-family: var(--font-retro);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kpi-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* —— Center manifesto —— */
.bento-center {
  background:
    radial-gradient(circle at center, rgba(78, 214, 255, 0.14), transparent 70%),
    linear-gradient(135deg, rgba(78, 214, 255, 0.16), rgba(44, 114, 214, 0.06));
  border-color: var(--accent);
  box-shadow: 0 0 80px -20px var(--glow-accent), inset 0 0 60px -20px rgba(78, 214, 255, 0.15);
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: var(--space-4);
}
.bento-mark {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: rgba(2, 8, 15, 0.7);
  border: 1px solid var(--accent);
  border-radius: 14px;
  box-shadow: 0 0 32px var(--glow-accent), inset 0 0 12px rgba(78, 214, 255, 0.2);
  position: relative;
}
.bento-mark svg { width: 36px; height: 36px; display: block; }

/* —— Center manifesto card: toned down ——
   Removed the pulsing border-ring around the mark (was perceived as a
   "luminous square" appearing on BG hover by perceptual contrast). */
.bento-center-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.bento-center-title strong {
  color: var(--accent);
  font-weight: 700;
}
.bento-center-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
}

@media (max-width: 900px) {
  .method-bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .method-bento { grid-template-columns: 1fr; }
  .bento-card { min-height: 220px; }
}

/* DEPRECATED — old hex layout (kept for reference, not used) */
.method-hex { display: none; }

.method-hex {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Decorative lines from center to each step */
.method-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.method-lines line {
  stroke: rgba(78, 214, 255, 0.18);
  stroke-width: 0.3;
  stroke-dasharray: 1 1.4;
  vector-effect: non-scaling-stroke;
  animation: line-pulse 4s ease-in-out infinite;
}
@keyframes line-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Compact step cards — replaces .method-rail's wide row */
.method-step {
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  backdrop-filter: blur(20px) saturate(140%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  transition: all var(--dur-base) var(--ease-out-quart);
}
.method-step::before {
  content: '';
  position: absolute; top: 0; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 214, 255, 0.4), transparent);
}
.method-step:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 40px -12px rgba(0,0,0,0.6), 0 0 48px -12px var(--glow-accent);
}
.method-step .method-num {
  font-family: var(--font-retro);
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 24px var(--glow-accent);
  font-variant-numeric: tabular-nums;
}
.method-step h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--fg-1);
}
.method-step p {
  margin: 0;
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.method-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.25);
  align-self: flex-start;
  margin-top: auto;
}

/* Hexagonal positions:  01 top, 02 right, 03 bottom-right,
                         04 bottom-left, 05 middle-left      */
.method-step.pos-1 { grid-column: 2; grid-row: 1; max-width: 380px; justify-self: center; width: 100%; }
.method-step.pos-2 { grid-column: 3; grid-row: 2; }
.method-step.pos-3 { grid-column: 3; grid-row: 3; }
.method-step.pos-4 { grid-column: 1; grid-row: 3; }
.method-step.pos-5 { grid-column: 1; grid-row: 2; }

/* Central animated terminal */
.method-core {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  background: rgba(2, 8, 15, 0.85);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(78, 214, 255, 0.4),
    0 24px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 80px -10px var(--glow-accent);
  position: relative;
  z-index: 2;
}
.method-core-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--border-2);
}
.method-core-file {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-left: auto;
  letter-spacing: 0.04em;
}
.method-core-code {
  margin: 0;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--fg-1);
  overflow: hidden;
  background: transparent;
  border: none;
}
.method-core-code .c  { color: var(--fg-3); font-style: normal; }
.method-core-code .k  { color: var(--accent-3); }
.method-core-code .s  { color: var(--accent); }
.method-core-code .f  { color: var(--accent-2); }
.method-core-code .ok { color: #34d399; font-weight: 600; }
.method-core-code .caret {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--accent);
  vertical-align: -2px;
  margin-left: 4px;
  animation: caret-blink 1s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
/* Scanlines on the terminal */
.method-core::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(78, 214, 255, 0.05) 2px,
    rgba(78, 214, 255, 0.05) 3px
  );
  mix-blend-mode: screen;
}

/* Responsive: collapse hex into a vertical timeline on mobile */
@media (max-width: 960px) {
  .method-hex {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-4);
  }
  .method-lines { display: none; }
  .method-step.pos-1,
  .method-step.pos-2,
  .method-step.pos-3,
  .method-step.pos-4,
  .method-step.pos-5,
  .method-core {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    width: auto;
    justify-self: stretch;
    align-self: auto;
  }
  /* Visual order on mobile: 01 → CODE → 02 → 03 → 04 → 05 (chronological) */
  .method-step.pos-1 { order: 1; }
  .method-core         { order: 2; }
  .method-step.pos-2 { order: 3; }
  .method-step.pos-3 { order: 4; }
  .method-step.pos-4 { order: 5; }
  .method-step.pos-5 { order: 6; }
  .method-hex { display: flex; flex-direction: column; }
}

/* DEPRECATED — old vertical rail, no longer used */
.method-rail { display: none; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: stretch;
}

.why-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow:
    0 24px 60px -16px rgba(0, 0, 0, 0.6),
    0 0 80px -20px var(--glow-accent);
  isolation: isolate;
  min-height: 480px;
  background:
    radial-gradient(circle at 30% 40%, rgba(78, 214, 255, 0.18), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(44, 114, 214, 0.15), transparent 60%),
    var(--bg-elev);
}
.why-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  /* Filter the photo to match the CRT palette: cool cyan cast */
  filter: contrast(1.05) saturate(0.85) brightness(0.95) hue-rotate(-8deg);
  transition: filter 600ms ease;
}
.why-photo:hover img { filter: contrast(1.05) saturate(1) brightness(1); }
/* Cyan overlay tint */
.why-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(2, 8, 15, 0.7) 100%),
    linear-gradient(135deg, rgba(78, 214, 255, 0.18), transparent 60%);
  pointer-events: none;
}
/* Subtle scanlines on the photo */
.why-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(78, 214, 255, 0.05) 3px,
    rgba(78, 214, 255, 0.05) 4px
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}
.why-photo-cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-1);
  letter-spacing: 0.08em;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 8px;
}
.why-photo-cap .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.why-pillars {
  display: flex; flex-direction: column;
  gap: var(--space-4);
}

.why-pillar {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(140%);
  position: relative;
  transition: all var(--dur-base) var(--ease-out-quart);
}
.why-pillar::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 214, 255, 0.4), transparent);
}
.why-pillar:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 60px -16px var(--glow-accent);
  transform: translateX(4px);
}
.why-num {
  font-family: var(--font-retro);
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 24px var(--glow-accent);
  font-variant-numeric: tabular-nums;
}
.why-body {
  display: flex; flex-direction: column; gap: 8px;
}
.why-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.25);
}
.why-body h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--fg-1);
  margin: 0;
  letter-spacing: -0.01em;
}
.why-body h3 em { font-style: normal; color: var(--accent); }
.why-body p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
}
.why-body p strong { color: var(--fg-1); font-weight: 600; }

.why-cta {
  margin-top: var(--space-3);
  display: flex; align-items: center; gap: var(--space-4);
  flex-wrap: wrap;
}
.why-cta-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .why-photo img { min-height: 320px; }
}
@media (max-width: 560px) {
  .why-pillar { grid-template-columns: 1fr; gap: var(--space-2); }
  .why-num { font-size: 36px; }
}


.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-7);
}
.kpi-pill {
  padding: var(--space-4) var(--space-4);
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.kpi-pill::before {
  content: '';
  position: absolute; top: 0; left: 12px; right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 214, 255, 0.4), transparent);
}
.kpi-pill-value {
  font-family: var(--font-retro);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.kpi-pill-value .unit {
  color: var(--fg-2);
  font-size: 0.6em;
}
.kpi-pill-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
}

@media (max-width: 760px) {
  .kpi-strip { grid-template-columns: 1fr 1fr; }
}

/* —— Hero KPI panel (right side) ——
   DEPRECATED — replaced by .hero-showcase + .kpi-strip below.
   Kept here in case a fallback is needed. */
.hero-kpis {
  background: var(--surface-glass);
  backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}
.hero-kpis::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.hero-kpis-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-1);
  margin-bottom: var(--space-5);
}
.hero-kpis-head .live-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }
.kpi-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-1);
}
.kpi-row:last-child { border-bottom: none; padding-bottom: 0; }
.kpi-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}
.kpi-meta {
  display: flex; flex-direction: column; gap: 4px;
}
.kpi-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
  font-style: normal;
}
.kpi-value {
  font-family: var(--font-retro);
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.kpi-value .unit { font-size: 0.55em; color: var(--fg-2); }

/* ============================================================
   ANTI-ARNAQUE RIBBON — the unique selling point
   ============================================================ */

.anti-trap {
  margin: var(--space-7) 0 var(--space-8);
  padding: var(--space-6) var(--space-6);
  background:
    linear-gradient(135deg, rgba(78,214,255,0.08), rgba(44,114,214,0.04)),
    var(--surface-glass);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}
.anti-trap::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.5), transparent);
}
.anti-trap-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-7);
  align-items: center;
}
.anti-trap h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg-1);
}
.anti-trap h2 em { font-style: normal; color: var(--accent); }
.anti-trap-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 8px;
  display: block;
}
.anti-trap-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-1);
  padding: 8px 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.chip .check {
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--accent);
  color: var(--bg-deep);
  display: grid; place-items: center;
  font-weight: 700; font-size: 10px;
}

/* ============================================================
   LOGO STRIP — trust bar
   ============================================================ */

.logos-strip {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  padding: var(--space-5) 0;
}
.logos-strip-label {
  position: absolute; top: 50%; left: 24px;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  background: var(--bg-deep);
  padding: 4px 12px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-pill);
  z-index: 3;
}
.logos-strip::before, .logos-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.logos-strip::before { left: 0; background: linear-gradient(to right, var(--bg-deep), transparent); }
.logos-strip::after { right: 0; background: linear-gradient(to left, var(--bg-deep), transparent); }
.logos-track {
  display: flex; gap: 56px;
  animation: scroll-x 42s linear infinite;
  width: max-content;
  padding-left: 200px;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos-track span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--dur-base);
}
.logos-track span:hover { color: var(--fg-1); }

/* ============================================================
   SECTIONS — generic header
   ============================================================ */

section.zone { padding: var(--space-10) 0; position: relative; }

/* Option B — stronger rhythm: even sections get a visible cyan-tinted panel
   with bright cyan top/bottom hairlines + subtle inset glow. */
section.zone:nth-of-type(even) {
  background:
    linear-gradient(180deg,
      rgba(78, 214, 255, 0.025) 0%,
      rgba(78, 214, 255, 0.06) 50%,
      rgba(78, 214, 255, 0.025) 100%);
  box-shadow:
    inset 0 40px 80px -40px rgba(78, 214, 255, 0.08),
    inset 0 -40px 80px -40px rgba(78, 214, 255, 0.06);
}
section.zone:nth-of-type(even)::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 2%, rgba(78, 214, 255, 0.42) 50%, transparent 98%);
  box-shadow: 0 0 12px rgba(78, 214, 255, 0.32);
}
section.zone:nth-of-type(even)::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 2%, rgba(78, 214, 255, 0.28) 50%, transparent 98%);
  box-shadow: 0 0 10px rgba(78, 214, 255, 0.2);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-8);
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { opacity: 0.6; }
.section-head h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--accent); }

/* "ouiiiiiiii" — each i grows proportionally, no animation. */
.oui-stretch {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  vertical-align: baseline;
}
.oui-i {
  display: inline-block;
  line-height: 1;
  font-size: calc(1em + var(--i, 1) * 0.10em);
  vertical-align: baseline;
  text-shadow: 0 0 calc(var(--i, 1) * 2px) rgba(78, 214, 255, calc(0.06 + var(--i, 1) * 0.04));
}

/* Allow the giant ouiii to spill horizontally without forcing a wrap or
   clipping. Section head keeps its centered layout. */
.section-head { overflow: visible; }
#avis .section-head h2 { text-wrap: pretty; }

/* Sub-line inside an H2 — keeps SEO keyword inside the heading
   while preserving the punchy headline above it. */
.section-head h2 .h2-sub {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fg-2);
  text-transform: none;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--fg-2);
  margin: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SERVICES — 6 pillars grid
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-card {
  padding: var(--space-6) var(--space-5);
  background: var(--surface-glass);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out-quart);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.4), transparent);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -16px rgba(0,0,0,0.5), 0 0 80px -20px var(--glow-accent);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(78,214,255,0.08);
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.service-icon svg { width: 22px; height: 22px; }
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  background: rgba(0,0,0,0.25);
}
.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}
.service-card a.link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--space-3);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.04em;
}
.service-card a.link:hover { color: var(--fg-1); }

/* ============================================================
   REALISATIONS — real client showcases
   ============================================================ */

.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.real-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out-quart);
  position: relative;
}
.real-card::before {
  content: '';
  position: absolute; top: 0; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.4), transparent);
  z-index: 3;
}
.real-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.5), 0 0 80px -20px var(--glow-accent);
}
.browser-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.55);
  border-bottom: 1px solid var(--border-1);
}
.dot { width: 11px; height: 11px; border-radius: 999px; }
.d-red { background: #ff5f57; }
.d-yel { background: #febc2e; }
.d-grn { background: #28c840; }
.browser-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-left: auto;
  letter-spacing: 0.04em;
}
.real-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-elev);
  display: block;
}
.real-meta {
  padding: var(--space-4) var(--space-5);
}
.real-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.real-meta h3 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-1);
}
.real-loc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}

/* ============================================================
   METHOD — deprecated rail block removed.
   Active hex layout lives above (search "METHOD — hexagonal layout").
   ============================================================ */

/* ============================================================
   TESTIMONIALS — real Google reviews
   ============================================================ */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.testi {
  padding: var(--space-5) var(--space-5);
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  position: relative;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.testi::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.4), transparent);
}
.testi-head {
  display: flex; justify-content: space-between; align-items: center;
}
.stars { color: #FFD166; letter-spacing: 2px; font-size: 14px; }
.google-mark {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
}
.testi p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-1);
}
.testi-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-1);
  margin-top: auto;
}
.avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-name { display: flex; flex-direction: column; }
.testi-name strong {
  font-size: 13px;
  color: var(--fg-1);
  font-weight: 600;
  font-family: var(--font-sans);
}
.testi-name span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}

.google-overall {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-left: auto; margin-right: auto;
  backdrop-filter: blur(16px);
}
.google-overall .big {
  font-family: var(--font-retro);
  font-size: 1.4rem;
  color: var(--fg-1);
}
.google-overall .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
}
.google-overall .stars { font-size: 18px; }

.google-overall-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: var(--space-3);
  padding: 8px 14px;
  background: var(--accent);
  color: var(--bg-deep);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  box-shadow: 0 0 24px -4px var(--glow-accent);
  transition: all var(--dur-fast) var(--ease-out-quart);
}
.google-overall-cta:hover {
  background: #7AE5FF;
  border-color: #7AE5FF;
  transform: translateY(-1px);
  box-shadow: 0 0 32px -2px var(--glow-accent);
}
.google-overall-cta i {
  width: 14px;
  height: 14px;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.plan {
  padding: var(--space-6) var(--space-5) var(--space-5);
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  position: relative;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.plan::before {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.4), transparent);
}
.plan-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.plan-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
  color: var(--fg-1);
  letter-spacing: -0.02em;
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}
.plan-price {
  font-family: var(--font-retro);
  font-size: 2rem;
  line-height: 1;
  color: var(--fg-1);
  margin-top: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.plan-price small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--fg-3);
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.plan li {
  color: var(--fg-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.plan li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
  margin-top: 1px;
}
.plan .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.plan-apex {
  background: linear-gradient(135deg, rgba(78,214,255,0.18), rgba(44,114,214,0.08));
  border-color: var(--accent);
  box-shadow: 0 0 80px -16px var(--glow-accent);
  transform: scale(1.02);
}
.plan-apex .plan-tag { color: var(--accent); }
/* Apex price uses Space Grotesk because Major Mono Display clips on text-heavy strings like "DÈS" */
.plan-apex .plan-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  color: var(--accent);
  padding-left: 2px;
  text-shadow: 0 0 24px rgba(78, 214, 255, 0.35);
}
.plan-apex-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 24px var(--glow-accent);
}

/* ============================================================
   ABOUT MICHEL
   ============================================================ */

.about {
  background: var(--surface-glass);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  backdrop-filter: blur(24px);
  position: relative;
}
.about::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.4), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-7);
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  width: 220px; height: 220px;
}
.about-photo-wrap::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--glow-accent), transparent 70%);
  z-index: -1;
  filter: blur(8px);
}
.about-photo {
  width: 220px; height: 220px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(78,214,255,0.4), 0 0 60px -10px var(--glow-accent);
}
.about-content .eyebrow { margin-bottom: var(--space-3); }
.about-content h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 var(--space-3);
  color: var(--fg-1);
  letter-spacing: -0.02em;
}
.about-content h2 em { font-style: normal; color: var(--accent); }
.about-content p {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
}
.about-bullets {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: var(--space-5);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.faq {
  padding: var(--space-5);
  background: var(--surface-glass);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  cursor: pointer;
  position: relative;
  transition: all var(--dur-base);
}
.faq::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.32), transparent);
}
.faq:hover { border-color: var(--border-strong); }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-1);
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform var(--dur-base);
  line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  padding-top: var(--space-3);
  margin-top: var(--space-3);
  border-top: 1px solid var(--border-1);
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  text-align: center;
  padding: var(--space-10) var(--space-7);
  background:
    radial-gradient(60% 80% at 50% 0%, var(--glow-accent), transparent 70%),
    var(--surface-glass);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.5), transparent);
}
.final-cta h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto var(--space-4);
  color: var(--fg-1);
  max-width: 800px;
  text-wrap: balance;
}
.final-cta h2 em { font-style: normal; color: var(--accent); }
.final-cta > p {
  font-size: 1.1rem;
  color: var(--fg-2);
  margin: 0 auto var(--space-6);
  max-width: 560px;
}
.final-cta .btn-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.final-cta .small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: var(--space-5);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: var(--space-9) 0 var(--space-5);
  border-top: 1px solid var(--border-1);
  margin-top: var(--space-10);
  background: rgba(2,8,15,0.6);
  backdrop-filter: blur(20px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-7);
}
.footer-brand img { height: 36px; margin-bottom: var(--space-4); }
.footer-brand p {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer a {
  color: var(--fg-2);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-1);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================================
   SEO MAP (visible dev note at the very bottom)
   ============================================================ */

.seo-map {
  margin: var(--space-7) 0 0;
  padding: var(--space-5);
  background: rgba(0,0,0,0.4);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  line-height: 1.6;
}
.seo-map summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.seo-map ul { padding-left: 20px; margin: 10px 0; }
.seo-map li { margin-bottom: 4px; }
.seo-map strong { color: var(--accent-3); }

/* ============================================================
   VS TABLE — comparison "2 modèles du marché"
   ============================================================ */

.vs-wrapper {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px -20px rgba(0, 0, 0, 0.7), 0 0 80px -20px var(--glow-accent);
}
.vs-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-2);
}
.vs-chrome .filename {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  margin-left: auto;
  letter-spacing: 0.06em;
}
.vs-chrome .ext {
  color: var(--accent);
  font-weight: 600;
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
}
.vs-table thead th {
  padding: var(--space-5) var(--space-5);
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg-1);
  border-bottom: 1px solid var(--border-2);
  vertical-align: top;
}
.vs-table thead .vs-col-label {
  width: 28%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.vs-table thead .vs-col-other {
  width: 36%;
}
.vs-table thead .vs-col-webup {
  width: 36%;
  background: linear-gradient(180deg, rgba(78, 214, 255, 0.12), rgba(78, 214, 255, 0.04));
  border-left: 1px solid rgba(78, 214, 255, 0.3);
  border-right: 1px solid rgba(78, 214, 255, 0.3);
}

.vs-col-head {
  display: flex; flex-direction: column; gap: 6px;
}
.vs-col-head .col-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.vs-col-head .col-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.vs-col-webup .col-tag { color: var(--accent); }
.vs-col-webup .col-name { color: var(--accent); }

.vs-table tbody td {
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-2);
  vertical-align: top;
  border-bottom: 1px dashed var(--border-1);
  line-height: 1.5;
}
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table tbody tr:hover td { background: rgba(78, 214, 255, 0.02); }
.vs-table tbody .vs-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.vs-table tbody .vs-webup {
  background: linear-gradient(180deg, rgba(78, 214, 255, 0.06), rgba(78, 214, 255, 0.03));
  border-left: 1px solid rgba(78, 214, 255, 0.25);
  border-right: 1px solid rgba(78, 214, 255, 0.25);
  color: var(--fg-1);
  font-weight: 500;
}
.vs-row-cta td { padding: var(--space-5); border-bottom: none; }
.vs-row-cta .vs-webup { background: linear-gradient(180deg, rgba(78, 214, 255, 0.1), rgba(78, 214, 255, 0.04)); }

.vs-cell {
  display: flex; gap: 10px; align-items: flex-start;
}
.vs-cell .ico {
  width: 18px; height: 18px;
  border-radius: 999px;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  margin-top: 1px;
}
.vs-cell.minus .ico { background: rgba(255, 77, 109, 0.15); color: #ff7088; border: 1px solid rgba(255, 77, 109, 0.3); }
.vs-cell.plus .ico { background: var(--accent); color: var(--bg-deep); }
.vs-cell.neutral .ico { background: rgba(255, 177, 85, 0.18); color: var(--accent-3); border: 1px solid rgba(255, 177, 85, 0.35); }

.vs-foot-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  margin-top: var(--space-5);
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

@media (max-width: 900px) {
  .vs-table { display: block; }
  .vs-table thead { display: none; }
  .vs-table tbody, .vs-table tbody tr { display: block; }
  .vs-table tbody td { display: block; border: none; padding: 12px var(--space-5); }
  .vs-table tbody tr {
    border-bottom: 1px solid var(--border-2);
    padding: var(--space-3) 0;
  }
  .vs-table tbody .vs-label {
    padding-top: var(--space-4);
    color: var(--fg-1);
    font-size: 13px;
    text-transform: uppercase;
  }
  .vs-table tbody .vs-webup {
    background: linear-gradient(180deg, rgba(78, 214, 255, 0.08), rgba(78, 214, 255, 0.03));
    border-left: 2px solid var(--accent);
    border-right: none;
    margin-top: 4px;
  }
  .vs-table tbody td.vs-other::before {
    content: '// autre mod\u00e8le';
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--fg-3);
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }
  .vs-table tbody td.vs-webup::before {
    content: '// web\u2019up';
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }
}


/* —— Stars rating (Google-style) —— */
.vs-stars {
  display: flex; flex-direction: column; gap: 6px;
}
.vs-stars .stars-row {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
}
.vs-stars .star-on {
  color: #FFD166;
  text-shadow: 0 0 10px rgba(255, 209, 102, 0.6);
}
.vs-stars .star-off { color: rgba(220, 244, 255, 0.16); }
.vs-stars .stars-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}
.vs-webup .vs-stars .stars-label { color: var(--fg-1); }

/* Row group separator inside the VS table */
.vs-group-row td {
  padding: 16px var(--space-5) 8px !important;
  background: rgba(0, 0, 0, 0.35) !important;
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  border-top: 1px solid var(--border-2) !important;
  border-bottom: 1px solid var(--border-1) !important;
}
.vs-group-row .vs-webup {
  background: rgba(78, 214, 255, 0.1) !important;
}

/* ===========================================================
   LEAD MAGNET — inline audit simulator
   =========================================================== */

.seo-magnet {
  position: relative;
  overflow: hidden;
}
.seo-magnet .magnet-scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 15px var(--glow-accent);
  opacity: 0.6;
  animation: magnet-scan 8s linear infinite;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}
@keyframes magnet-scan {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.85; }
  100% { transform: translate3d(0, 900px, 0); opacity: 0; }
}

.magnet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.magnet-text { max-width: 560px; }

.magnet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(78, 214, 255, 0.06);
  margin-bottom: var(--space-4);
}
.live-indicator {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.magnet-h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0 0 var(--space-5);
  text-wrap: balance;
}
.magnet-h2 em {
  font-style: normal;
  color: var(--accent);
}

/* Sub-line inside magnet H2 — same SEO-keyword pattern as other H2s. */
.magnet-h2 .h2-sub {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fg-2);
  text-transform: none;
}

.magnet-desc {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0 0 var(--space-6);
}
.magnet-desc strong { color: var(--fg-1); font-weight: 600; }

.magnet-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.magnet-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-cyan {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  display: grid;
  place-items: center;
  margin-top: 2px;
  box-shadow: 0 0 20px -2px var(--glow-accent);
}
.magnet-benefits li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.magnet-benefits strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
.magnet-benefits span {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

.magnet-arrow-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.magnet-arrow-hint svg {
  filter: drop-shadow(0 0 8px var(--glow-accent));
  animation: arrow-nudge 2s ease-in-out infinite;
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.magnet-tool {
  position: sticky;
  top: 100px;
}
.tool-wrapper {
  background: rgba(2, 8, 15, 0.85);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(78, 214, 255, 0.4),
    0 24px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 80px -10px var(--glow-accent);
}
.tool-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-2);
}
.tool-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-left: auto;
  padding: 3px 12px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(78, 214, 255, 0.06);
  letter-spacing: 0.04em;
}
.tool-frame {
  background: #ffffff;
}
.tool-frame iframe {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
}

@media (max-width: 960px) {
  .magnet-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .magnet-text { max-width: none; }
  .magnet-arrow-hint { display: none; }
  .magnet-tool { position: relative; top: 0; }
}

/* ============================================================
   SCANLINES — soft overlay for the whole page
   ============================================================ */

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(78,214,255,0.04) 2px,
    rgba(78,214,255,0.04) 3px
  );
  mix-blend-mode: screen;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .anti-trap-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .services-grid, .real-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo-wrap, .about-photo { margin: 0 auto; }
}
@media (max-width: 640px) {
  .nav-main { display: none; }
  .nav-cta .nav-phone { display: none; }
  .services-grid, .real-grid, .testi-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .method-step .method-tag { display: none; }
  .plan-apex { transform: none; }
  .about { padding: var(--space-5); }
}


/* ============================================================
   v2 PATCH — burger / drawer / dropdown / fixes
   ============================================================ */

/* —— Desktop nav: dropdown for Solutions —— */
.nav-item.nav-has-dropdown { position: relative; }
.nav-trigger {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--fg-2);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast);
}
.nav-trigger:hover, .nav-trigger[aria-expanded="true"] { color: var(--accent); }
.nav-trigger svg { transition: transform var(--dur-base); }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  padding: 8px;
  background: rgba(2, 8, 15, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.7), 0 0 60px -10px var(--glow-accent);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 50;
}
.nav-dropdown::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,214,255,0.4), transparent);
}
.nav-item.nav-has-dropdown:hover .nav-dropdown,
.nav-item.nav-has-dropdown:focus-within .nav-dropdown,
.nav-trigger[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--fg-2);
  font-family: var(--font-sans);
  font-size: 14px;
  text-decoration: none;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-dropdown a:hover {
  background: rgba(78, 214, 255, 0.08);
  color: var(--accent);
}

/* —— Header LinkedIn icon —— */
.nav-linkedin {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-1);
  color: var(--fg-2);
  background: var(--surface);
  transition: all var(--dur-fast);
}
.nav-linkedin:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px -4px var(--glow-accent);
}
.nav-linkedin i { width: 18px; height: 18px; }

/* —— Burger button (hidden on desktop, shown ≤960px) —— */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 200ms;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* —— Mobile drawer (off-canvas) —— */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 280ms ease;
}
.mobile-drawer.is-open .mobile-drawer-backdrop { opacity: 1; }
.mobile-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: rgba(6, 16, 30, 0.97);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-left: 1px solid var(--accent);
  box-shadow: -24px 0 80px -16px rgba(0,0,0,0.6), -8px 0 60px -10px var(--glow-accent);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-1);
}
.mobile-drawer-head .brand-logo { height: 32px; width: auto; }
.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  width: 40px; height: 40px;
  color: var(--fg-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--dur-fast);
}
.mobile-drawer-close:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.mobile-drawer-nav {
  padding: 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link, .mobile-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--fg-1);
  text-decoration: none;
  border-radius: 10px;
  transition: background var(--dur-fast);
  list-style: none;
  cursor: pointer;
}
.mobile-accordion summary::-webkit-details-marker { display: none; }
.mobile-link:hover, .mobile-accordion summary:hover {
  background: rgba(78, 214, 255, 0.06);
}
.mobile-accordion summary svg {
  transition: transform var(--dur-base);
  color: var(--accent);
}
.mobile-accordion[open] summary svg { transform: rotate(180deg); }
.mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0 6px 12px;
  margin-left: 4px;
  border-left: 1px solid var(--border-2);
}
.mobile-sub a {
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--dur-fast);
}
.mobile-sub a:hover {
  color: var(--accent);
  background: rgba(78, 214, 255, 0.06);
}
.mobile-drawer-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer-footer .btn { width: 100%; justify-content: center; }
.mobile-phone, .mobile-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  transition: all var(--dur-fast);
}
.mobile-phone:hover, .mobile-linkedin:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.mobile-phone i, .mobile-linkedin i { width: 16px; height: 16px; }

/* —— Lock body scroll when drawer is open —— */
body.drawer-open { overflow: hidden; }

/* —— Footer LinkedIn —— */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-4);
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(78, 214, 255, 0.05);
  transition: all var(--dur-fast);
  width: fit-content;
}
.footer-linkedin:hover {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}
.footer-linkedin i { width: 14px; height: 14px; }

/* —— Responsive: switch to burger ≤960px —— */
@media (max-width: 960px) {
  .nav-main { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* —— Comparatif: scroll wrapper + mobile hint —— */
.vs-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(78,214,255,0.4) transparent;
  position: relative;
}
.vs-table-scroll::-webkit-scrollbar { height: 8px; }
.vs-table-scroll::-webkit-scrollbar-track { background: transparent; }
.vs-table-scroll::-webkit-scrollbar-thumb {
  background: rgba(78,214,255,0.25);
  border-radius: 4px;
}
.vs-table-scroll::-webkit-scrollbar-thumb:hover { background: rgba(78,214,255,0.5); }
.vs-table-scroll .vs-table { min-width: 760px; }

.vs-mobile-hint {
  display: none;
  margin: 0 0 var(--space-3);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  animation: vs-hint-pulse 2.4s ease-in-out infinite;
}
@keyframes vs-hint-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(2px); }
}
@media (max-width: 760px) {
  .vs-mobile-hint { display: block; }
  .vs-wrapper { box-shadow: inset -16px 0 24px -16px rgba(78,214,255,0.25); }
}

/* —— Google overall responsive — stack on mobile —— */
@media (max-width: 760px) {
  .google-overall {
    flex-direction: column;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 18px;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
  .google-overall-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* —— Google overall CTA hover contrast fix —— */
.google-overall-cta {
  color: var(--bg-deep);
  background: var(--accent);
  border-color: var(--accent);
}
.google-overall-cta:hover {
  background: #7AE5FF;
  color: var(--bg-deep);
  border-color: #7AE5FF;
  transform: translateY(-1px);
  box-shadow: 0 0 36px -2px var(--glow-accent);
}

/* —— Bento center: WU mark removed, recenter content —— */
.bento-center {
  justify-content: center;
}
.bento-center .bento-center-title { margin-top: 0; }
