/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A2E1F;
  background: #FAFCF9;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #C49A3C;
  color: #121A14;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid #C49A3C;
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-rotate-word { animation: none !important; }
  .marquee-track { animation: none !important; }
  .stepper-step { transition: none !important; }
  .stepper-arc-path, .arc-num-circle, .arc-icon-group { transition: none !important; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== COLORS ===== */
:root {
  --primary: #3D6B4F;
  --primary-dark: #2A4A37;
  --primary-light: #7BC4A0;
  --primary-lighter: #E8F5EE;
  --gold: #C49A3C;
  --gold-dark: #A07D2E;
  --gold-light: #F5E6C8;
  --gold-bg: #FFFBF0;
  --dark: #121A14;
  --dark-800: #1E2D22;
  --dark-700: #2B3E30;
  --surface: #FAFCF9;
  --card: #FFFFFF;
  --text: #1A2E1F;
  --text-muted: #4B5E50;
  --border: #E0E8E2;
  --border-light: #F0F4F1;
}

/* ===== 1. BETA BANNER ===== */
.beta-banner {
  background: linear-gradient(135deg, #121A14 0%, #1E2D22 50%, #2B3E30 100%);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.beta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.beta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 154, 60, 0.15);
  border: 1px solid rgba(196, 154, 60, 0.4);
  color: #C49A3C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.beta-tag-dot {
  width: 6px;
  height: 6px;
  background: #C49A3C;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.beta-banner-text {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
}

/* ===== 2. NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,154,60,0.3);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 16px 24px 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 100vh 0 100vh rgba(0,0,0,0.3), 0 12px 40px rgba(0,0,0,0.15);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ===== 3. HERO ===== */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-title {
  margin-bottom: 24px;
}
.hero-title-block {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
}
.hero-title-block:nth-child(1) {
  background: rgba(196,154,60,0.10);
}
.hero-title-block:nth-child(2) {
  margin-left: 32px;
  background: var(--primary-lighter);
}
.hero-title-block:nth-child(3) {
  margin-left: 64px;
  background: rgba(61,107,79,0.08);
}
@media (min-width: 769px) {
  .hero-title-block:nth-child(3) { white-space: nowrap; }
}
.hero-rotate-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.3em;
  line-height: 1.3;
  clip-path: inset(0 0 0 0);
}
.hero-rotate-word {
  display: flex;
  flex-direction: column;
  color: var(--gold);
  font-weight: 900;
  animation: rotateWords 4.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.hero-rotate-word span {
  display: block;
  height: 1.3em;
  line-height: 1.3;
}
.hero-rotate-word span b {
  font-weight: inherit;
  box-shadow: inset 0 -3px 0 var(--gold);
}
@keyframes rotateWords {
  0%, 26% { transform: translateY(0); }
  33%, 59% { transform: translateY(-25%); }
  66%, 92% { transform: translateY(-50%); }
  100% { transform: translateY(-75%); }
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,154,60,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Hero Phone Mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  position: relative;
  width: 280px;
  height: 520px;
  border: 3px solid var(--primary-dark);
  border-radius: 36px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-800) 100%);
  padding: 20px;
  box-shadow: 0 30px 80px rgba(13,26,11,0.25), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 0 0 8px rgba(61,107,79,0.06);
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--dark);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--dark-800);
  border-radius: 24px;
  padding: 36px 12px 12px;
  overflow: hidden;
  position: relative;
}
.phone-screen-header {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.phone-screen-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-bottom: 20px;
}
.phone-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: barGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}
.phone-bar:nth-child(1) { height: 50%; background: var(--primary); animation-delay: 0.3s; }
.phone-bar:nth-child(2) { height: 70%; background: var(--primary-light); animation-delay: 0.5s; }
.phone-bar:nth-child(3) { height: 90%; background: var(--gold); animation-delay: 0.7s; }
.phone-bar:nth-child(4) { height: 100%; background: var(--gold); animation-delay: 0.9s; }
@keyframes barGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
.phone-leads {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
.phone-roi {
  display: inline-block;
  background: rgba(196,154,60,0.2);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
.phone-notification {
  position: absolute;
  top: 50px;
  right: -8px;
  background: var(--card);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideInNotif 0.6s ease forwards;
  animation-delay: 1.8s;
  opacity: 0;
  transform: translateY(-20px);
}
.phone-notification-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-notification-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInNotif {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Phone frame draw */
.phone-frame-svg {
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  pointer-events: none;
}
.phone-frame-path {
  fill: none;
  stroke: var(--primary-light);
  stroke-width: 2;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawPhone 2s ease forwards;
}
@keyframes drawPhone {
  to { stroke-dashoffset: 0; }
}

/* Phone carousel */
.phone-carousel-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.phone-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: phoneCarousel 9s ease-in-out infinite;
}
.phone-carousel-screen {
  width: 100%;
  flex-shrink: 0;
  padding: 36px 12px 12px;
  display: flex;
  flex-direction: column;
}
@keyframes phoneCarousel {
  0%, 28% { transform: translateX(0); }
  33%, 61% { transform: translateX(-33.333%); }
  66%, 94% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}
/* Screen 2 — Lead card */
.phone-lead-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.phone-lead-badge {
  display: inline-block;
  background: rgba(123,196,160,0.2);
  color: var(--primary-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.phone-lead-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.phone-lead-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.phone-lead-meta strong {
  color: rgba(255,255,255,0.8);
}
.phone-lead-tel {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}
/* Screen 3 — ROI */
.phone-roi-big {
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  text-align: center;
  margin-top: 20px;
  line-height: 1;
}
.phone-roi-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 8px;
}
.phone-roi-curve {
  display: block;
  margin: 16px auto 0;
  width: 120px;
  height: auto;
}

@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-phone {
    order: 1;
  }
  .phone-frame {
    width: 240px;
    max-width: 240px;
    height: 440px;
    margin: 0 auto;
  }
  .hero-text {
    text-align: left;
  }
  .hero-badge {
    margin-left: 0;
  }
  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-title-block { font-size: clamp(17px, 4.8vw, 26px); padding: 6px 12px; }
  .hero-title-block:nth-child(1) { margin-left: 0; margin-right: auto; }
  .hero-title-block:nth-child(2) { margin-left: 12%; margin-right: auto; }
  .hero-title-block:nth-child(3) { margin-left: 24%; margin-right: auto; }
  .hero-rotate-word span { border-bottom-width: 2px; padding-bottom: 1px; }
  .hero-subtitle {
    text-align: left;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ===== 4. TRUST BAR ===== */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
}
.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-lighter);
  border-radius: 12px;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.trust-duplicate { display: none; }
@media (max-width: 768px) {
  .trust { padding: 12px 0; overflow: hidden; }
  .trust .container { max-width: none; padding: 0; }
  .trust-grid {
    display: flex;
    gap: 0;
    width: max-content;
    animation: trustMarquee 20s linear infinite;
  }
  .trust-grid:hover { animation-play-state: paused; }
  @keyframes trustMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .trust-item {
    min-width: 0;
    flex: 0 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    border-right: 1px solid var(--border-light);
    white-space: nowrap;
  }
  .trust-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin: 0;
    border-radius: 8px;
  }
  .trust-icon svg { width: 16px; height: 16px; }
  .trust-title { font-size: 11px; font-weight: 700; }
  .trust-desc { display: none; }
  .trust-duplicate { display: flex !important; }
}

/* ===== 5. METIERS MARQUEE ===== */
.metiers {
  padding: 96px 0;
  overflow: hidden;
}
.section-title-center {
  text-align: center;
  margin-bottom: 48px;
}
.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-heading .gold { color: var(--gold); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.marquee-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 8px 0;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.metier-card {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.1),
    0 8px 16px rgba(0,0,0,0.12),
    0 16px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.metier-card { position: relative; overflow: hidden; cursor: default; }
.metier-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.12),
    0 16px 32px rgba(0,0,0,0.16),
    0 24px 48px rgba(61,107,79,0.15);
  border-color: rgba(255,255,255,0.2);
}

/* Desktop: hide card tooltips */
@media (min-width: 769px) {
  .metier-stats, .metier-hint { display: none !important; }
}

/* Metier Stats (mobile card back) */
.metier-stats {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
}
.metier-card.flipped .metier-stats {
  opacity: 1;
  pointer-events: auto;
}
.metier-stats-tabs {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 2px;
  margin-bottom: 8px;
}
.ms-tab {
  flex: 1;
  padding: 4px 0;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: none;
  color: rgba(255,255,255,0.4);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.ms-tab.active {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.ms-data { display: none; }
.ms-data.active { display: block; }
.metier-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.metier-stat-row:last-child { border-bottom: none; }
.metier-stat-value { font-weight: 700; color: #fff; font-size: 11px; }
.metier-stat-value.gold { color: var(--gold); }
.metier-hint { display: none; }

/* ===== METIER CARD SELECTION ===== */
.metier-card { cursor: pointer; }
.metier-card.active-card {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== STATS PANEL (desktop + mobile) ===== */
.mobile-stats-panel {
  display: none;
  margin: 32px auto 0;
  background: var(--dark-800);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  max-width: 600px;
}
.mobile-stats-panel.open { display: block; }
.mobile-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mobile-stats-name {
  font-size: 18px;
  font-weight: 700;
}
.mobile-stats-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.2s;
}
.mobile-stats-close:hover {
  background: rgba(255,255,255,0.2);
}
.mobile-stats-tabs {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 16px;
}
.mob-tab {
  flex: 1;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border: none;
  background: none;
  color: rgba(255,255,255,0.4);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.mob-tab.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.mob-data { display: none; }
.mob-data.active { display: block; }
.mob-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-stat-row:last-child { border-bottom: none; }
.mob-stat-val { font-weight: 700; color: #fff; }
.mob-stat-val.gold { color: var(--gold); }

/* ===== DESKTOP METIERS TABLE (hidden) ===== */
.metiers-table-section {
  display: none;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.metiers-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  background: var(--border-light);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.metiers-tab {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.metiers-tab.active {
  background: var(--card);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.metiers-table {
  width: 100%;
  border-spacing: 0;
  font-size: 14px;
}
.metiers-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
}
.metiers-table th:not(:first-child) { text-align: center; }
.metiers-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  text-align: center;
}
.metiers-table td:first-child { text-align: left; font-weight: 600; }
.metiers-table tr:last-child td { border-bottom: none; }
.metiers-table tr:hover td { background: var(--primary-lighter); }
.metiers-table .val-gold { color: var(--gold-dark); font-weight: 700; }
.metiers-table .val-green { color: var(--primary); font-weight: 700; }
@media (max-width: 768px) {
  .metiers-table-section { display: none; }
}

.metier-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease,
              border-color 0.35s ease;
}
.metier-card:hover .metier-icon {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.3);
}
.metier-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.95);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.metier-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.metier-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ===== 6. SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--surface);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse .service-text { order: 2; }
.service-block.reverse .service-visual { order: 1; }
.service-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.service-bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  border-radius: 50%;
  margin-top: 1px;
}
.service-bullet-icon svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

/* Service Mockups */
.mockup-fb {
  background: var(--dark-800);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(18,26,20,0.18);
  overflow: hidden;
}
.mockup-fb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.mockup-fb-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-fb-avatar svg { width: 18px; height: 18px; color: #fff; }
.mockup-fb-meta {
  flex: 1;
}
.mockup-fb-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.mockup-fb-sponsor {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.mockup-fb-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.mockup-fb-img-icon { width: 40px; height: 40px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.mockup-fb-img-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.mockup-fb-img-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.mockup-fb-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  line-height: 1.5;
}
.mockup-fb-cta {
  display: block;
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.mockup-fb-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.mockup-browser {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(18,26,20,0.12);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mockup-browser-bar {
  background: var(--border-light);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-browser-dots {
  display: flex;
  gap: 6px;
}
.mockup-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-browser-dot:nth-child(1) { background: #ff5f56; }
.mockup-browser-dot:nth-child(2) { background: #ffbd2e; }
.mockup-browser-dot:nth-child(3) { background: #27c93f; }
.mockup-browser-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.mockup-browser-url svg { width: 12px; height: 12px; color: var(--primary); }
.mockup-browser-body {
  padding: 0;
}
.mockup-site-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-site-hero-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.mockup-site-hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.mockup-site-hero-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 4px;
  width: fit-content;
}
.mockup-site-content {
  padding: 20px 24px;
  display: flex;
  gap: 16px;
}
.mockup-site-card {
  flex: 1;
  background: var(--surface);
  border-radius: 8px;
  padding: 14px;
}
.mockup-site-card-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-lighter);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.mockup-site-card-icon svg { width: 16px; height: 16px; color: var(--primary); }
.mockup-site-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.mockup-site-card-desc {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Shadcn-style chart */
.mockup-chart {
  background: var(--dark-800);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(18,26,20,0.2);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.chart-header-left {}
.chart-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.chart-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.chart-filters {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.chart-filter-btn {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: none;
}
.chart-filter-btn:hover {
  color: rgba(255,255,255,0.8);
}
.chart-filter-btn.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.chart-body {
  position: relative;
}
.chart-svg {
  width: 100%;
  height: auto;
}
.chart-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.chart-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-block.reverse .service-text { order: 1; }
  .service-block.reverse .service-visual { order: 2; }
}

/* ===== 7. STEPPER ===== */
.stepper-section {
  padding: 96px 0;
  background: rgba(61,107,79,0.04);
}
.stepper-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}
.stepper-visual {
  position: sticky;
  top: 140px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stepper-phone {
  width: 320px;
  margin: 0 auto;
}
.stepper-phone-frame {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-800) 100%);
  border-radius: 36px;
  border: 3px solid var(--primary-dark);
  padding: 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(13,26,11,0.25), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 0 0 8px rgba(61,107,79,0.06);
}
.stepper-phone-notch {
  width: 110px;
  height: 28px;
  background: #0a0f0b;
  border-radius: 0 0 18px 18px;
  margin: -20px auto 16px;
}
.stepper-phone-screens {
  position: relative;
  min-height: 420px;
}
.stepper-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
  pointer-events: none;
}
.stepper-screen.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0s;
}
.stepper-content {
  display: flex;
  flex-direction: column;
}
.stepper-step {
  padding: 40px;
  padding-left: 32px;
  margin-bottom: 200px;
  border-left: 3px solid var(--border);
  opacity: 0.4;
  transition: border-left-color 0.4s, opacity 0.4s;
}
.stepper-step.active {
  border-left-color: var(--gold);
  opacity: 1;
}
.stepper-step:last-child { margin-bottom: 0; }
.stepper-step-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
  line-height: 36px;
  margin-bottom: 16px;
  transition: background 0.4s, color 0.4s;
}
.stepper-step.active .stepper-step-num {
  background: var(--gold);
  color: white;
}
.stepper-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stepper-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .stepper-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stepper-visual {
    position: relative;
    top: auto;
    display: none;
  }
  .stepper-step {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left-width: 2px;
    opacity: 1;
  }
}

/* ===== 8. COMPARISON TABLE ===== */
.comparison {
  padding: 96px 0;
  background: var(--card);
}
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  min-width: 700px;
  border-spacing: 0;
}
.comparison-table th {
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  background: var(--surface);
}
.comparison-table th:first-child {
  text-align: left;
  width: 200px;
}
.comparison-table th.trakkt-col {
  background: var(--gold-bg);
  border-top: 3px solid var(--gold);
  color: var(--gold-dark);
  font-size: 15px;
}
.comparison-logo {
  height: 22px;
  max-height: 22px;
  width: auto;
  max-width: 150px;
  display: inline-block;
  vertical-align: middle;
}
.comparison-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-muted);
  vertical-align: middle;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}
.comparison-table td.trakkt-col {
  background: var(--gold-bg);
  font-weight: 600;
  color: var(--dark);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comp-check, .comp-cross, .comp-tilde {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.comp-check svg { width: 20px; height: 20px; color: var(--primary); }
.comp-cross svg { width: 20px; height: 20px; color: #C94A4A; }
.comp-tilde svg { width: 20px; height: 20px; color: #D4912A; }
.comp-label {
  font-size: 12px;
  line-height: 1.3;
}

/* Mobile cards for comparison */
.comparison-cards { display: none; }
@media (max-width: 768px) {
  .comparison-table-wrapper {
    display: none;
  }
  .comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .comp-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
  }
  .comp-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
  }
  .comp-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    font-size: 13px;
    border-radius: 8px;
  }
  .comp-card-row:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
  }
  .comp-card-row.trakkt-row {
    background: var(--primary-lighter);
    border-left: 3px solid var(--gold);
    font-weight: 600;
  }
  .comp-card-provider {
    color: var(--text-muted);
    font-weight: 500;
  }
  .comp-card-row.trakkt-row .comp-card-provider {
    color: var(--dark);
    font-weight: 700;
  }
  .comp-card-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
  }
  .comp-card-value svg { width: 16px; height: 16px; }
  .comp-card-value.green { color: var(--primary); }
  .comp-card-value.red { color: #C94A4A; }
  .comp-card-value.orange { color: #D4912A; }
}

/* ===== 9. COUNTERS ===== */
.counters {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.counter-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.counter-ring {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  position: relative;
}
.counter-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.counter-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 4;
}
.counter-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  transition: stroke-dashoffset 1.5s ease;
}
.counter-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.counter-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.counter-value-inline {
  display: none;
}
@media (max-width: 768px) {
  .counters { padding: 48px 0; }
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
  }
  .counter-item {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 1 !important;
    transform: none !important;
  }
  .counter-item:last-child { border-bottom: none; }
  .counter-ring {
    display: none;
  }
  .counter-value-inline {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  }
  .counter-item.counted .counter-value-inline {
    transform: scale(1);
    opacity: 1;
  }
  .counter-label {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
  }
  .counter-item.counted .counter-label {
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .counters-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== 10. FAQ ===== */
.faq {
  padding: 96px 0;
  background: rgba(61,107,79,0.04);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-lighter);
  transition: transform 0.3s, background 0.3s;
}
.faq-question[aria-expanded="true"] .faq-question-icon {
  transform: rotate(45deg);
  background: var(--gold-bg);
}
.faq-question-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== 11. CTA FORM ===== */
.cta-form-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 96px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-form-section { padding: 56px 0; }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .cta-grid > div:last-child { text-align: center !important; }
  .cta-grid > div:last-child * { text-align: center !important; }
  .cta-grid .btn-gold { display: block; }
}
.cta-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-form-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-form-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.cta-success {
  background: rgba(123,196,160,0.15);
  border: 1px solid rgba(123,196,160,0.3);
  color: var(--primary-light);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full {
  grid-template-columns: 1fr;
}
.form-group {
  text-align: left;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option {
  background: var(--dark-800);
  color: #fff;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,154,60,0.35);
}
.form-reassurance {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== 12. FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--primary-light); }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-contact-line {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== 13. MOBILE CTA ===== */
.mobile-cta {
  display: none;
}
@media (max-width: 640px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(18,26,20,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-cta a {
    display: block;
    text-align: center;
    background: var(--gold);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-radius: 8px;
  }
  /* Extra padding at bottom so footer isn't hidden */
  .footer { padding-bottom: 80px; }
}

/* ===== ANIMATE IN (generic) ===== */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE GLOBAL FIXES ===== */
@media (max-width: 768px) {
  /* Désactiver les animations scroll sur mobile — évite les espaces blancs */
  .animate-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .metiers { padding: 40px 0; }
  .services { padding: 56px 0; }

  /* Metiers: scroll horizontal compact */
  .marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 16px;
  }
  .marquee-wrapper::-webkit-scrollbar { display: none; }
  /* Fade droit pour indiquer le scroll */
  .marquee-wrapper {
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 98%);
    mask-image: linear-gradient(to right, black 75%, transparent 98%);
  }
  .marquee-track {
    animation: none !important;
    display: flex !important;
    gap: 10px;
    width: max-content !important;
  }
  /* Cacher les doublons du marquee */
  .marquee-track .metier-card:nth-child(n+11) {
    display: none;
  }
  .metier-card {
    width: 88px !important;
    height: auto !important;
    min-height: 0;
    padding: 14px 8px 12px;
    gap: 6px;
    border-radius: 12px;
    flex: 0 0 88px;
  }
  .metier-card.active-card {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  .metier-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
  }
  .metier-icon svg { width: 16px; height: 16px; }
  .metier-name { font-size: 11px; line-height: 1.2; }
  .metier-name::after {
    content: 'Voir les stats';
    display: block;
    font-size: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    letter-spacing: 0.3px;
  }
  .metier-card.active-card .metier-name::after {
    content: 'Sélectionné';
    color: var(--gold);
  }
  .metier-desc { display: none; }
  .metier-hint { display: none; }
  .metier-stats { display: none !important; }

  /* Stats panel mobile overrides */
  .mobile-stats-panel {
    margin: 16px 0 0;
    padding: 16px;
    border-radius: 14px;
    max-width: none;
  }
  .mobile-stats-name { font-size: 15px; }
  .mobile-stats-close { width: 28px; height: 28px; font-size: 16px; }
  .mob-tab { padding: 6px 0; font-size: 11px; }
  .mob-stat-row { padding: 8px 0; font-size: 13px; }
  .stepper-section { padding: 56px 0; }
  .comparison { padding: 56px 0; }
  .faq { padding: 56px 0; }
  .section-title-center { margin-bottom: 32px; }
  .section-heading { margin-bottom: 8px; }

  /* Comparison: show cards, hide table */
  .comparison-table-wrapper { display: none !important; }
  .comparison-cards {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  /* Stepper: hide phone on mobile, steps only */
  .stepper-visual {
    display: none !important;
  }
  .stepper-step {
    padding: 24px;
    padding-left: 24px;
    opacity: 1;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark, #121A14);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  z-index: 10000;
  font-family: 'Inter', -apple-system, sans-serif;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-text a { color: var(--primary-light, #7BC4A0); text-decoration: underline; text-underline-offset: 2px; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cookie-btn-accept {
  background: var(--gold, #C49A3C);
  color: #fff;
}
.cookie-btn-refuse {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.cookie-btn-params {
  background: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 10px 8px;
}
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
  .cookie-btn-params { text-align: center; }
  .cookie-banner { padding-bottom: 90px; }
}

/* ===================================================================
   PAGE /METIERS — Liste de tous les métiers
   =================================================================== */

.metiers-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 50%, var(--dark-700) 100%);
  padding: 80px 0;
  text-align: center;
}
.metiers-hero-h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  max-width: 640px;
  margin: 16px auto 16px;
}
.metiers-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.metiers-grid-section {
  padding: 48px 0 64px;
  background: var(--surface);
}
.metiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.metiers-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease;
  will-change: transform, box-shadow;
}
.metiers-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.08),
    0 24px 48px rgba(61,107,79,0.12);
  border-color: var(--gold);
}
.metiers-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.metiers-card-soon {
  opacity: 0.75;
}
.metiers-card-soon:hover {
  border-color: var(--gold-light);
}
.metiers-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.metiers-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,26,20,0.4) 100%);
  z-index: 1;
  transition: opacity 0.35s ease;
}
.metiers-card:hover .metiers-card-img-wrap::after {
  opacity: 0.6;
}
.metiers-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.metiers-card:hover .metiers-card-img-wrap img {
  transform: scale(1.08);
}
.metiers-card-badge-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(18,26,20,0.8);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.metiers-card-body {
  padding: 22px 24px;
}
.metiers-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.metiers-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.metiers-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}
.metiers-card:hover .metiers-card-link {
  gap: 10px;
  color: var(--gold-dark);
}

/* Apparition au scroll */
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.metiers-card {
  animation: cardReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.metiers-card:nth-child(1) { animation-delay: 0s; }
.metiers-card:nth-child(2) { animation-delay: 0.08s; }
.metiers-card:nth-child(3) { animation-delay: 0.16s; }
.metiers-card:nth-child(4) { animation-delay: 0.24s; }
.metiers-card:nth-child(5) { animation-delay: 0.32s; }
.metiers-card:nth-child(6) { animation-delay: 0.4s; }
.metiers-card:nth-child(7) { animation-delay: 0.48s; }
.metiers-card:nth-child(8) { animation-delay: 0.56s; }
.metiers-card:nth-child(9) { animation-delay: 0.64s; }
.metiers-card:nth-child(10) { animation-delay: 0.72s; }
.metiers-card-soon .metiers-card-link {
  color: var(--gold-dark);
}

@media (min-width: 640px) {
  .metiers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .metiers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .metiers-grid-section {
    padding: 64px 0 96px;
  }
}

/* ===================================================================
   PAGES METIERS — PREMIUM /plombier, /electricien, etc.
   =================================================================== */

/* --- SCROLL REVEAL --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- ACCENT COLOR --- */
.accent { color: var(--accent); }

/* --- BREADCRUMB --- */
.metier-breadcrumb { background: var(--card); border-bottom: 1px solid var(--border-light); padding: 10px 0; }
.metier-breadcrumb-list { display: flex; align-items: center; font-size: 0.8125rem; color: var(--text-muted); list-style: none; }
.metier-breadcrumb-list li::after { content: '\203A'; margin: 0 8px; opacity: 0.5; }
.metier-breadcrumb-list li:last-child::after { content: none; }
.metier-breadcrumb-list a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.metier-breadcrumb-list a:hover { color: var(--accent); }
.metier-breadcrumb-list li[aria-current] { color: var(--text); font-weight: 500; }

/* --- HERO --- */
.metier-hero {
  position: relative; width: 100%; height: 80vh; min-height: 560px; max-height: 780px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.metier-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transform: scale(1.1); will-change: transform;
}
.metier-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,26,20,0.25) 0%, rgba(18,26,20,0.78) 100%);
}
.metier-hero-content { position: relative; z-index: 2; text-align: center; max-width: 720px; padding: 0 24px; }
.metier-hero-tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light); border: 1px solid var(--accent);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.metier-hero-h1 {
  font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
  color: #FFFFFF; text-shadow: 0 2px 20px rgba(0,0,0,0.3); margin-bottom: 16px;
}
.metier-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem); color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto 28px; line-height: 1.6;
}
.metier-hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; margin-top: 20px; }
.metier-trust-item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }
.metier-trust-item svg { color: var(--gold); flex-shrink: 0; }
.metier-hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
  animation: hero-bounce 2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* --- CTA BUTTON (shared + shimmer) --- */
.metier-cta-btn {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 16px 32px; border-radius: 8px; font-weight: 600; font-size: 16px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; text-decoration: none;
  position: relative; overflow: hidden;
}
.metier-cta-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.metier-cta-btn:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,154,60,0.35); }
.metier-cta-btn:hover::after { left: 100%; }
.metier-cta-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- SECTION BASE --- */
.metier-section { padding: 64px 0; }
.metier-h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em;
  color: var(--text); text-align: center; max-width: 720px; margin: 0 auto 48px;
}

/* --- PROBLEMS --- */
.metier-problems-section { background: var(--surface); }
.metier-problems-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.metier-pain-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.metier-pain-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.metier-pain-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-light); color: var(--accent); border-radius: 12px;
}
.metier-pain-title { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-top: 16px; line-height: 1.35; }
.metier-pain-text { color: var(--text-muted); margin-top: 8px; line-height: 1.6; font-size: 0.9375rem; }
.metier-pain-source { display: block; margin-top: 10px; font-size: 0.8125rem; font-style: normal; color: var(--text-muted); opacity: 0.7; }
.metier-pain-source a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* --- EMPATHY --- */
.metier-empathy { background: var(--dark); padding: 80px 0; overflow: hidden; }
.metier-empathy-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.metier-quote-mark {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-size: 120px; font-weight: 700; line-height: 1; color: var(--accent); opacity: 0.2;
  pointer-events: none; font-family: Georgia, serif;
}
.metier-empathy-text { font-size: clamp(1.25rem, 3vw, 1.625rem); color: rgba(255,255,255,0.9); line-height: 1.7; font-style: italic; position: relative; z-index: 1; }
.metier-empathy-dash { display: block; margin-top: 20px; font-size: 0.875rem; color: var(--gold); font-weight: 600; font-style: normal; }

/* --- STEPS --- */
.metier-steps-section {
  background: var(--card);
}
.metier-stepper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.metier-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
.metier-step:last-child {
  padding-bottom: 0;
}
.metier-step-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.metier-step-line {
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 56px);
  background: var(--border);
}
.metier-step-content {
  padding-top: 12px;
}
.metier-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.metier-step-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9375rem;
  max-width: 480px;
}

/* --- KPI --- */
.metier-kpi-section {
  background: var(--surface);
}
.metier-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.metier-kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
}
.metier-kpi-highlighted {
  background: var(--gold-bg);
  border: 2px solid var(--gold);
}
.metier-kpi-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.metier-kpi-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.metier-kpi-highlighted .metier-kpi-value {
  color: var(--gold-dark);
}
.metier-kpi-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.metier-kpi-sublabel {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 2px;
}
.metier-kpi-note {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- COMPARISON TABLE --- */
.metier-compare-section {
  background: var(--card);
}
.metier-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.metier-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.metier-table thead th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.metier-table thead th:first-child {
  border-radius: 12px 0 0 0;
}
.metier-table thead th.metier-table-trakkt {
  background: var(--gold);
  color: var(--dark);
  border-radius: 0 12px 0 0;
}
.metier-table tbody th,
.metier-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.metier-table tbody th {
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: var(--surface);
}
.metier-table tbody td {
  color: var(--text-muted);
}
.metier-table-trakkt-cell {
  background: var(--gold-bg);
  color: var(--text) !important;
  font-weight: 600;
}
.metier-table tbody tr:last-child th,
.metier-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- FAQ --- */
.metier-faq-section {
  background: var(--surface);
}
.metier-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.metier-faq-item {
  border-bottom: 1px solid var(--border);
}
.metier-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
}
.metier-faq-question:hover {
  color: var(--primary);
}
.metier-faq-chevron {
  min-width: 20px;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}
.metier-faq-open .metier-faq-chevron {
  transform: rotate(180deg);
}
.metier-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.metier-faq-open .metier-faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.metier-faq-answer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 90%;
}

/* --- RESULTS --- */
.metier-results-section { background: var(--card); }
.metier-results-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.metier-result-card {
  background: var(--surface); border-radius: 12px; padding: 32px 24px; text-align: center;
  border-top: 3px solid var(--accent); transition: transform 0.2s, box-shadow 0.2s;
}
.metier-result-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.metier-result-value {
  font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 700; color: var(--text); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.metier-result-label { font-size: 0.9375rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* --- TRUST / CRÉDIBILITÉ --- */
.metier-trust-section {
  padding: 40px 0; background: var(--surface); text-align: center;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.metier-trust-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.metier-trust-logos { display: flex; justify-content: center; gap: 32px; margin-bottom: 16px; }
.metier-trust-logo { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: 600; color: var(--text-muted); opacity: 0.6; }
.metier-trust-sources { font-size: 0.8125rem; color: var(--text-muted); opacity: 0.6; }
.metier-trust-sources a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* --- STICKY CTA MOBILE --- */
.metier-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 12px 16px;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.metier-sticky-cta.visible { transform: translateY(0); }
.metier-sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 600px; margin: 0 auto; }
.metier-sticky-text { font-size: 0.8125rem; color: rgba(255,255,255,0.6); white-space: nowrap; }
.metier-sticky-btn {
  display: inline-block; background: var(--gold); color: var(--dark); padding: 10px 20px;
  border-radius: 8px; font-weight: 600; font-size: 0.875rem; text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.metier-sticky-btn:hover { background: var(--gold-dark); }
@media (min-width: 768px) { .metier-sticky-cta { display: none !important; } }

/* --- CTA FINAL --- */
.metier-cta-final {
  background: var(--dark);
  padding: 64px 0;
  text-align: center;
}
.metier-cta-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #FFFFFF;
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.25;
}
.metier-cta-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.metier-cta-mention {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* --- DESKTOP (>= 768px) --- */
@media (min-width: 768px) {
  .metier-section { padding: 96px 0; }
  .metier-kpi-section { padding: 80px 0; }
  .metier-cta-final { padding: 80px 0; }

  .metier-problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .metier-pain-card { padding: 32px; }

  /* Stepper horizontal */
  .metier-stepper {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .metier-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding-bottom: 0;
    gap: 0;
  }
  .metier-step-line {
    position: absolute;
    left: calc(50% + 28px);
    top: 27px;
    width: calc(100% - 56px);
    height: 2px;
  }
  .metier-step-content {
    padding-top: 20px;
  }
  .metier-step-text {
    max-width: 280px;
    margin: 0 auto;
  }

  /* KPI 4 cols */
  .metier-kpi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Results 3 cols */
  .metier-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
