/* ═══════════════════════════════════════════════════════════
   GESFOX — style.css
   Aesthetic: Industrial-precise · Dark navy + electric amber
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── RESET & ROOT ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #f5f4f1;
  color: #1a1a2e;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --navy:      #0f1535;
  --navy-mid:  #1a2145;
  --navy-soft: #252d5a;
  --amber:     #f5a623;
  --amber-light: #ffbe55;
  --teal:      #00c9b1;
  --blue:      #3b82f6;
  --orange:    #f97316;
  --cream:     #f5f4f1;
  --white:     #ffffff;
  --gray-100:  #f0efe9;
  --gray-200:  #e2e0d8;
  --gray-400:  #9e9b8e;
  --gray-600:  #5a5750;
  --red:       #ef4444;
  --green:     #22c55e;

  --shadow-sm: 0 2px 8px rgba(15,21,53,0.08);
  --shadow-md: 0 8px 32px rgba(15,21,53,0.12);
  --shadow-lg: 0 20px 60px rgba(15,21,53,0.18);
  --shadow-xl: 0 32px 80px rgba(15,21,53,0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-nav {
  display: none;
}
.btn-nav:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── NAV ────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* dropdown context */
  background: transparent;
  transition: var(--transition);
}
.nav-wrapper.scrolled {
  background: rgba(15, 21, 53, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--amber);
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.5));
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.logo-text strong { font-weight: 800; }
.nav-links {
  display: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: #0f1535;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: absolute;
  top: calc(100% + 8px);
  right: 24px;
  width: 260px;
  z-index: 200;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #f5a623;
}
.mobile-menu .btn-primary {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
}
.mobile-menu.open { display: flex; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.hero-blob-1 {
  width: min(600px, 80vw); height: min(600px, 80vw);
  top: -200px; left: -100px;
  background: radial-gradient(circle, #3b82f6, transparent);
}
.hero-blob-2 {
  width: min(500px, 70vw); height: min(500px, 70vw);
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, var(--amber), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 7vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,201,177,0.12);
  border: 1px solid rgba(0,201,177,0.3);
  color: var(--teal);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.price-icon { font-size: 0.75rem; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Hero visual masqué (pas d'écran large pour l'instant) */
.hero-visual { display: none; }

/* ── TRUST BAND ─────────────────────────────────────────── */
.trust-band {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-band .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.trust-sep { color: rgba(255,255,255,0.2); }

@media (max-width: 640px) {
  .trust-band { padding: 16px 0; overflow: hidden; }
  .trust-band .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    width: 100%;
  }
  .trust-item {
    font-size: 0.78rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px 10px;
    white-space: nowrap;
  }
  .trust-sep { display: none; }
  .trust-label { font-size: 0.68rem; }
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); position: relative; }
.section-pricing { background: var(--gray-100); }
.section-cta { padding: 80px 0; background: var(--cream); }

.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--amber);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag-light {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.3);
}
.section-title {
  overflow-wrap: break-word;
  word-break: break-word;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: normal; color: var(--amber); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 60px;
}
.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* ── ECOSYSTEM ───────────────────────────────────────────── */
.ecosystem {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}
.eco-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.eco-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.eco-card-blue { border-top: 3px solid var(--blue); }
.eco-card-orange { border-top: 3px solid var(--orange); }
.eco-card-teal { border-top: 3px solid var(--teal); }
.eco-number {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
}
.eco-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.eco-icon { font-size: 1.5rem; }
.eco-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.eco-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.eco-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.eco-list li {
  font-size: 0.83rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.eco-list li::before { content: '→'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}
.eco-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  gap: 8px;
}
.arrow-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}
.arrow-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  white-space: nowrap;
}
.offline-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.08);
}
.offline-icon { font-size: 2rem; flex-shrink: 0; }
.offline-text strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.offline-text p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.benefit-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── FEATURES ────────────────────────────────────────────── */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-item:hover, .feature-item.active {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}
.feature-bullet {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--amber);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-content h3 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-content p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.65; }
.features-visual { position: sticky; top: 100px; }
.fv-card {
  display: none;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.08);
  animation: fadeSlide 0.4s ease;
}
.fv-card.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fv-header {
  padding: 14px 18px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fv-content { padding: 20px 18px; }
.sig-entry {
  display: flex; justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--white);
}
.sig-ok { color: #4ade80; font-size: 0.8rem; }
.sig-wait { color: var(--amber); font-size: 0.8rem; }
.eval-progress { margin-bottom: 12px; }
.eval-progress span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.ep-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.ep-bar div { height: 100%; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.eval-score { font-size: 1rem; color: var(--white); }
.eval-score strong { color: var(--teal); }
.result-row { padding: 10px 12px; border-radius: 8px; margin-bottom: 8px; font-size: 0.85rem; font-weight: 500; }
.result-row.pass { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.result-row.fail { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.doc-row { padding: 10px 12px; background: rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 8px; font-size: 0.85rem; color: var(--white); }
.doc-btn { display: inline-block; margin-top: 8px; padding: 8px 16px; background: var(--amber); color: var(--navy); border-radius: 6px; font-size: 0.8rem; font-weight: 700; cursor: pointer; }
.anomaly-row { padding: 10px 12px; border-radius: 8px; margin-bottom: 8px; font-size: 0.85rem; }
.anomaly-row.warn { background: rgba(239,68,68,0.12); color: #f87171; }
.anomaly-row.ok { background: rgba(34,197,94,0.12); color: #4ade80; }
.sat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.stars { color: var(--amber); font-size: 0.9rem; }
.sat-score { margin-top: 12px; font-size: 0.9rem; color: var(--white); }
.sat-score strong { color: var(--amber); }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pricing-main {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: visible;
}
.pricing-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
}
.pricing-crown { display: inline-flex; align-items: center; gap: 8px; color: var(--amber); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; }
.pricing-unit { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.pricing-value { display: block; font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--amber); }
.pricing-desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-bottom: 28px; }
.pricing-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; text-align: left; }
.pricing-includes li { font-size: 0.875rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 8px; }
.pricing-vs { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.vs-card { width: 100%; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.vs-card-bad { background: var(--gray-100); }
.vs-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.vs-item { font-size: 0.875rem; padding: 6px 0; }
.vs-item.positive { color: #15803d; }
.vs-item.negative { color: #b91c1c; }
.vs-arrow { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--gray-400); text-align: center; }

/* ── COMPARE TABLE ───────────────────────────────────────── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); max-width: 100%; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.875rem; }
.compare-table th { padding: 16px 20px; background: var(--navy); color: rgba(255,255,255,0.7); font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; text-align: left; letter-spacing: 0.04em; }
.compare-table th.col-gesfox { background: var(--amber); color: var(--navy); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.compare-table td.col-gesfox { background: rgba(245,166,35,0.06); font-weight: 600; color: var(--navy); border-left: 2px solid var(--amber); }
.compare-table tr:hover td { background: var(--gray-100); }
.compare-table tr:hover td.col-gesfox { background: rgba(245,166,35,0.1); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); }
.partial { color: var(--amber); }
.compare-cta { text-align: center; margin-top: 48px; }
.compare-cta p { font-size: 1rem; color: var(--gray-600); margin-bottom: 20px; }
.compare-cta .btn {
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .compare-cta .btn {
    width: 100%;
    display: block;
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; min-width: 0; }
.testimonial { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 32px 28px; transition: var(--transition); }
.testimonial:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.testi-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-soft); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--amber); border: 1px solid rgba(245,166,35,0.2); flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.875rem; color: var(--white); }
.testi-author span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--navy); text-align: left; gap: 16px; transition: var(--transition); }
.faq-q:hover { color: var(--amber); }
.faq-arrow { font-size: 1.2rem; color: var(--amber); flex-shrink: 0; transition: var(--transition); font-weight: 400; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-a p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; }
.faq-a.open { display: block; }

/* ── CTA / DEMO FORM ─────────────────────────────────────── */
.cta-box { position: relative; background: var(--navy); border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 64px); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(245,166,35,0.12), transparent 60%), radial-gradient(ellipse at bottom left, rgba(0,201,177,0.08), transparent 60%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-badge { display: inline-block; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); color: var(--amber); padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.cta-content h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-content h2 em { font-style: normal; color: var(--amber); }
.cta-content > p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }
.demo-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.form-group input { padding: 13px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: var(--transition); }
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus { border-color: var(--amber); background: rgba(245,166,35,0.08); }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: #090e22; padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 300px; }
.footer-social { margin-top: 20px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; transition: var(--transition); }
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.78rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 8px; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ecosystem { grid-template-columns: 1fr; gap: 24px; }
  .eco-arrow { flex-direction: row; padding-top: 0; }
  .arrow-line { width: 40px; height: 1px; background: linear-gradient(to right, transparent, var(--amber), transparent); }
}
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .burger { display: flex; } /* always shown now */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .features-visual { display: none; }
  .pricing-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 80px 16px 48px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .section-title { font-size: clamp(1.3rem, 5.5vw, 2rem); }
  .pain-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 80px 0 48px; }
  .hero-right { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-box { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .stat-divider { display: none; }
  .stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
  }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.68rem; white-space: normal; }
}
