/*
Theme Name: Togezzer Premium Marine
Theme URI: https://togezzer.com
Author: Sébastien Brison
Description: Thème WordPress minimaliste premium, fond clair, bleu marine, inspiré Anthropic / Vercel / Stripe.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: togezzer-premium
*/


/* ╔═══════════════════════════════════════════════╗
   ║  TOGEZZER — DESIGN SYSTEM                     ║
   ║  Version 3.0 · Fond blanc · IA Premium        ║
   ╚═══════════════════════════════════════════════╝ */

:root {
  /* ── Palette Principale ── */
  --white:       #FFFFFF;
  --surface:     #FAFAF9;
  --surface-2:   #F5F5F4;
  --border:      #ECECEC;
  --border-2:    #D6D3D1;
  --text-muted:  #737373;
  --text-body:   #525252;
  --text-main:   #0A0A0A;
  --black:       #09090B;

  /* ── Accent Bleu Marine Premium ── */
  --blue:        #162454;
  --blue-hover:  #0F1A3E;
  --blue-light:  #F1F5F9;
  --blue-mid:    #CBD5E1;

  /* ── Typo ── */
  --font-serif:  'Fraunces', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* ── Spacing ── */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl:   0 24px 80px rgba(0,0,0,0.11), 0 8px 24px rgba(0,0,0,0.05);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background: var(--white); color: var(--text-main); font-family: var(--font-sans); font-weight: 400; line-height: 1.65; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.2rem; font-weight: 600;
  color: var(--black);
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 700;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 400;
  color: var(--text-body);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-main); background: var(--surface); }
.nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-ghost-nav {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-body);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.btn-ghost-nav:hover { color: var(--text-main); background: var(--surface); }
.btn-cta-nav {
  font-size: 0.875rem; font-weight: 600;
  color: white; background: var(--blue);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 0.35rem;
}
.btn-cta-nav:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,36,84,0.22);
}
.btn-cta-nav .arrow { font-size: 1rem; }

/* BURGER */
.burger-btn {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer; border-radius: 6px;
  transition: background 0.2s;
}
.burger-btn:hover { background: var(--surface); }
.burger-btn span { display: block; width: 20px; height: 1.5px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }
.burger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity:1; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; inset: 68px 0 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  gap: 0.5rem;
  z-index: 199;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 400;
  color: var(--text-body);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--surface); color: var(--text-main); }
.mobile-nav .mobile-cta {
  display: block; text-align: center;
  background: var(--blue); color: white;
  font-weight: 600; padding: 0.875rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════════
   COMPOSANTS RÉUTILISABLES
══════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.section-label::before { content: ''; width: 16px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-body { font-size: 1rem; font-weight: 300; color: var(--text-body); line-height: 1.8; max-width: 500px; }

/* Boutons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-weight: 600; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-lg { font-size: 0.95rem; padding: 0.9rem 2rem; }
.btn-md { font-size: 0.875rem; padding: 0.7rem 1.5rem; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 1px 2px rgba(22,36,84,0.18); }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,36,84,0.24); }
.btn-secondary { background: var(--black); color: white; }
.btn-secondary:hover { background: #2A2A28; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn-outline { background: white; color: var(--text-main); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--border-2); background: var(--surface); }
.btn-ghost { background: transparent; color: var(--text-body); }
.btn-ghost:hover { color: var(--text-main); background: var(--surface); }

/* Badge */
.badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.3rem 0.75rem; border-radius: 999px; }
.badge-blue { background: var(--blue-light); color: var(--blue); border: 1px solid var(--blue-mid); }
.badge-green { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.badge-amber { background: #FFFBEB; color: #D97706; border: 1px solid #FDE68A; }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: badgePulse 2s infinite; }
@keyframes badgePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* Divider */
.hr { height: 1px; background: var(--border); margin: 0; }

/* Reveal animation */
.reveal { opacity: 1; transform: none; transition: none; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

@keyframes fadeUp { from{opacity:1;transform:none} to{opacity:1;transform:none} } to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:1} to{opacity:1} } to{opacity:1} }
@keyframes scaleIn { from{opacity:1;transform:none} to{opacity:1;transform:none} } to{opacity:1;transform:scale(1)} }
@keyframes slideRight { from{opacity:1;transform:translateX(-12px)} to{opacity:1;transform:translateX(0)} }

/* ══════════════════════════════════════════════════
   HERO — SECTION 1
══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 9rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Grille de fond */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 30%, transparent 100%);
}
/* Lumière bleue centrale */
.hero-light {
  position: absolute;
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(22,36,84,0.08) 0%, transparent 65%);
  top: 30%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge-wrap {
  margin-bottom: 2rem;
  opacity: 1;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.75rem;
  opacity: 1;
}
.hero-title em { font-style: italic; color: var(--blue); }
.hero-title strong { font-weight: 500; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 1;
}
.hero-actions {
  display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 1;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 1;
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); }
.trust-item svg { width: 14px; height: 14px; }

/* Hero Interface Mockup */
.hero-interface {
  position: relative; z-index: 2;
  width: 100%; max-width: 1000px;
  margin: 4rem auto 0;
  opacity: 1;
}
.interface-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.8) inset;
  overflow: hidden;
}
.interface-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
  display: flex; align-items: center; gap: 0.875rem;
}
.bar-dots { display: flex; gap: 6px; }
.bar-dot { width: 11px; height: 11px; border-radius: 50%; }
.bar-dot:nth-child(1) { background: #FF5F57; }
.bar-dot:nth-child(2) { background: #FFBD2E; }
.bar-dot:nth-child(3) { background: #28C840; }
.bar-url {
  flex: 1; background: var(--white);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 0.3rem 1rem; font-size: 0.75rem; color: var(--text-muted);
  text-align: center; max-width: 280px; margin: 0 auto;
}
.interface-body {
  display: grid; grid-template-columns: 240px 1fr;
  min-height: 380px;
}
.iface-sidebar {
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
  background: var(--surface);
}
.iface-logo-row {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
}
.iface-logo-icon { width: 24px; height: 24px; background: var(--blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.iface-logo-icon span { color: white; font-size: 0.6rem; font-weight: 700; }
.iface-logo-text { font-size: 0.875rem; font-weight: 600; color: var(--text-main); }
.iface-nav-group { margin-bottom: 1.5rem; }
.iface-nav-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 0 0.75rem; margin-bottom: 0.5rem; }
.iface-nav-item {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.525rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.8rem; color: var(--text-body);
  margin-bottom: 1px; cursor: default;
  transition: background 0.15s, color 0.15s;
}
.iface-nav-item.active { background: var(--white); color: var(--blue); font-weight: 500; box-shadow: var(--shadow-sm); }
.iface-nav-icon { font-size: 0.875rem; opacity: 0.7; }
.iface-nav-item.active .iface-nav-icon { opacity: 1; }

.iface-main { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.iface-header { display: flex; align-items: flex-start; justify-content: space-between; }
.iface-title { font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.2rem; }
.iface-subtitle { font-size: 0.75rem; color: var(--text-muted); }
.iface-ai-tag { display: flex; align-items: center; gap: 0.3rem; background: var(--blue-light); color: var(--blue); font-size: 0.68rem; font-weight: 600; padding: 0.3rem 0.6rem; border-radius: 999px; border: 1px solid var(--blue-mid); white-space: nowrap; }
.iface-ai-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); animation: badgePulse 1.5s infinite; }

.iface-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.iface-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.875rem 1rem; }
.iface-stat-val { font-size: 1.35rem; font-weight: 700; color: var(--text-main); letter-spacing: -0.03em; line-height: 1; }
.iface-stat-label { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.25rem; }
.iface-stat-trend { font-size: 0.65rem; color: #059669; font-weight: 600; display: flex; align-items: center; gap: 0.2rem; margin-top: 0.25rem; }

.iface-events { display: flex; flex-direction: column; gap: 0.5rem; }
.iface-event {
  display: flex; align-items: center; gap: 0.875rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.75rem 1rem;
  transition: border-color 0.2s;
}
.iface-event:hover { border-color: var(--border-2); }
.event-stripe { width: 4px; height: 36px; border-radius: 2px; flex-shrink: 0; }
.event-info { flex: 1; min-width: 0; }
.event-name { font-size: 0.82rem; font-weight: 500; color: var(--text-main); margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-meta { font-size: 0.7rem; color: var(--text-muted); }
.event-badge { font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 999px; white-space: nowrap; }

.iface-ai-box {
  background: linear-gradient(135deg, #F1F5F9 0%, #F5F8FF 100%);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.ai-sparkle { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.ai-text { font-size: 0.78rem; color: var(--text-body); line-height: 1.6; }
.ai-text strong { color: var(--blue); font-weight: 600; }

/* ══════════════════════════════════════════════════
   SOCIAL PROOF — LOGOS
══════════════════════════════════════════════════ */
.logos-section {
  padding: 3.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label { text-align: center; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }
.logos-track-wrap { overflow: hidden; position: relative; }
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none;
}
.logos-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.logos-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.logos-track { display: flex; gap: 4rem; animation: scrollLogos 24s linear infinite; width: max-content; align-items: center; }
.logos-track:hover { animation-play-state: paused; }
@keyframes scrollLogos { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.logo-entry { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--border-2); letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0; transition: color 0.2s; }
.logo-entry:hover { color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   PROBLÈME — SECTION 2
══════════════════════════════════════════════════ */
#problem { padding: 7rem 0; background: var(--white); }
.problem-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.problem-text {}
.problem-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.problem-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.problem-card:hover { border-color: #FECACA; box-shadow: 0 4px 20px rgba(239,68,68,0.06); }
.problem-icon { font-size: 1.25rem; flex-shrink: 0; }
.problem-card-title { font-size: 0.9rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.25rem; }
.problem-card-text { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }

.problem-visual { position: relative; }
.chaos-chat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
}
.chat-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.chat-avatar-group { display: flex; }
.chat-av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--white); margin-left: -6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; }
.chat-av:first-child { margin-left: 0; }
.group-name { font-size: 0.82rem; font-weight: 600; }
.group-count { font-size: 0.7rem; color: var(--text-muted); }
.chat-messages { display: flex; flex-direction: column; gap: 0.625rem; max-height: 280px; overflow: hidden; }
.chat-msg { max-width: 80%; }
.chat-msg.right { margin-left: auto; }
.chat-bubble {
  font-size: 0.78rem; line-height: 1.5;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  display: inline-block;
}
.chat-bubble.in { background: var(--surface); color: var(--text-body); border-radius: 4px 12px 12px 12px; }
.chat-bubble.out { background: #E7F0FE; color: var(--blue); border-radius: 12px 4px 12px 12px; }
.chat-bubble.system { background: #FEF3C7; color: #92400E; font-size: 0.72rem; text-align: center; border-radius: 8px; }
.chat-sender { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.chat-time { font-size: 0.62rem; color: var(--text-muted); margin-top: 0.25rem; text-align: right; }
.chaos-badge {
  position: absolute; top: -1rem; right: -1rem;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: var(--radius-md); padding: 0.75rem 1rem;
  font-size: 0.78rem; color: #DC2626; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.chaos-badge span { font-size: 1.2rem; display: block; margin-bottom: 0.2rem; }

/* ══════════════════════════════════════════════════
   SOLUTION — SECTION 3
══════════════════════════════════════════════════ */
#solution { padding: 7rem 0; background: var(--surface); }
.solution-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.solution-metrics { display: flex; flex-direction: column; gap: 0; }
.metric-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.metric-row:first-child { padding-top: 0; }
.metric-row:last-child { border-bottom: none; padding-bottom: 0; }
.metric-info {}
.metric-label { font-size: 0.875rem; color: var(--text-body); margin-bottom: 0.5rem; }
.metric-bar-track { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 0.35rem; }
.metric-bar-fill { height: 100%; border-radius: 99px; background: var(--blue); width: 0; transition: width 1.4s cubic-bezier(0.4,0,0.2,1); }
.metric-bar-fill.green { background: #10B981; }
.metric-sub { font-size: 0.7rem; color: var(--text-muted); }
.metric-val { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; color: var(--black); letter-spacing: -0.03em; text-align: right; }
.metric-val small { font-size: 0.875rem; font-family: var(--font-sans); color: var(--text-muted); display: block; font-weight: 400; margin-top: 0.1rem; }
.solution-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.sol-point { display: flex; gap: 0.875rem; align-items: flex-start; }
.sol-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; box-shadow: var(--shadow-sm);
}
.sol-body-title { font-size: 0.9rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.2rem; }
.sol-body-text { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   FEATURES — SECTION 4
══════════════════════════════════════════════════ */
#features { padding: 7rem 0; background: var(--white); }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-label { justify-content: center; }
.features-header .section-label::before { display: none; }
.features-header .section-body { margin: 0 auto; text-align: center; }
.features-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.feat-tab {
  font-size: 0.82rem; font-weight: 500;
  padding: 0.55rem 1.1rem; border-radius: var(--radius-sm);
  color: var(--text-body); background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.feat-tab.active { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 4px 12px rgba(22,36,84,0.20); }
.feat-tab:hover:not(.active) { border-color: var(--border-2); background: var(--surface-2); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.feature-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #93A4B8);
  opacity:1; transition: opacity 0.25s;
}
.feature-card:hover { border-color: rgba(22,36,84,0.18); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card:hover::after { opacity: 1; }
.feature-card.wide { grid-column: span 2; }
.feature-card.tall { }
.feature-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--border-2); text-transform: uppercase; margin-bottom: 1.25rem; }
.feature-icon-box {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon-box { transform: scale(1.08); }
.feature-name { font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.feature-desc { font-size: 0.85rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1.25rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--text-body);
}
.feature-list-item::before { content: '✓'; color: var(--blue); font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.feat-link { font-size: 0.8rem; color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1.25rem; opacity:1; transform: translateX(-4px); transition: opacity 0.25s, transform 0.25s; }
.feature-card:hover .feat-link { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════
   IA DEMO — SECTION 5
══════════════════════════════════════════════════ */
#ai-demo { padding: 7rem 0; background: var(--black); position: relative; overflow: hidden; }
.ai-demo-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
}
.ai-demo-glow { position: absolute; width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(22,36,84,0.18), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.ai-demo-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ai-demo-text {}
.ai-demo-text .section-label { color: #93A4B8; }
.ai-demo-text .section-label::before { background: #93A4B8; }
.ai-demo-text .section-title { color: white; }
.ai-demo-text .section-body { color: rgba(255,255,255,0.5); }
.ai-demo-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.ai-stat { }
.ai-stat-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; color: white; letter-spacing: -0.03em; line-height: 1; }
.ai-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; }
.ai-demo-interface {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.ai-chat-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 0.75rem;
}
.ai-chat-icon { width: 32px; height: 32px; background: var(--blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.ai-chat-name { font-size: 0.875rem; font-weight: 600; color: white; }
.ai-chat-status { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.ai-online { display: inline-block; width: 6px; height: 6px; background: #10B981; border-radius: 50%; animation: badgePulse 2s infinite; }
.ai-chat-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; min-height: 320px; }
.ai-msg { display: flex; gap: 0.75rem; align-items: flex-start; }
.ai-msg.user { flex-direction: row-reverse; }
.ai-msg-avatar { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
.ai-msg-avatar.bot { background: var(--blue); }
.ai-msg-avatar.user { background: rgba(255,255,255,0.1); }
.ai-msg-bubble {
  max-width: 82%; font-size: 0.8rem; line-height: 1.6;
  padding: 0.625rem 0.875rem; border-radius: 16px;
}
.ai-msg-bubble.bot { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); border-radius: 4px 16px 16px 16px; }
.ai-msg-bubble.user { background: var(--blue); color: white; border-radius: 16px 4px 16px 16px; }
.ai-highlight { color: #93A4B8; font-weight: 600; }
.ai-card-result {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 0.75rem;
  margin-top: 0.5rem;
}
.ai-card-result-title { font-size: 0.75rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.ai-result-row { display: flex; justify-content: space-between; font-size: 0.72rem; padding: 0.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ai-result-row:last-child { border: none; }
.ai-result-key { color: rgba(255,255,255,0.4); }
.ai-result-val { color: #93A4B8; font-weight: 500; }
.ai-typing-indicator { display: flex; gap: 3px; align-items: center; padding: 0.1rem 0; }
.typing-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); animation: typingAnim 1.2s infinite; }
.typing-dot:nth-child(2){animation-delay:0.2s}
.typing-dot:nth-child(3){animation-delay:0.4s}
@keyframes typingAnim{0%,100%{opacity:0.3;transform:translateY(0)}50%{opacity:1;transform:translateY(-3px)}}

/* ══════════════════════════════════════════════════
   TESTIMONIALS — SECTION 6
══════════════════════════════════════════════════ */
#testimonials { padding: 7rem 0; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.t-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-2); }
.t-card.featured { background: var(--blue); border-color: var(--blue); }
.t-stars { color: #F59E0B; font-size: 0.78rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.t-card.featured .t-stars { color: #FCD34D; }
.t-quote { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; font-style: italic; color: var(--text-body); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }
.t-card.featured .t-quote { color: rgba(255,255,255,0.85); }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: var(--surface); border: 1px solid var(--border); flex-shrink: 0; }
.t-card.featured .t-avatar { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.t-name { font-size: 0.875rem; font-weight: 600; color: var(--text-main); }
.t-card.featured .t-name { color: white; }
.t-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
.t-card.featured .t-role { color: rgba(255,255,255,0.5); }
.t-metric {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 600;
  color: var(--blue); background: var(--blue-light);
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-top: 0.5rem;
}
.t-card.featured .t-metric { background: rgba(255,255,255,0.15); color: white; }

/* ══════════════════════════════════════════════════
   À PROPOS — SECTION 7
══════════════════════════════════════════════════ */
#about { padding: 7rem 0; background: var(--surface); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-story { font-size: 0.95rem; color: var(--text-body); line-height: 1.9; }
.about-story p { margin-bottom: 1.25rem; }
.about-story p:last-child { margin-bottom: 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; }
.value-icon { font-size: 1.25rem; margin-bottom: 0.625rem; }
.value-title { font-size: 0.875rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.3rem; }
.value-text { font-size: 0.78rem; color: var(--text-body); line-height: 1.6; }
.about-team {}
.team-card-main {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); margin-bottom: 1.25rem;
}
.founder-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.founder-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-light); border: 2px solid var(--blue-mid); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.founder-name { font-size: 1rem; font-weight: 600; color: var(--text-main); }
.founder-title { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }
.founder-bio { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }
.team-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.team-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; text-align: center; }
.team-stat-val { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; color: var(--black); }
.team-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ══════════════════════════════════════════════════
   TARIFS — SECTION 8
══════════════════════════════════════════════════ */
#pricing { padding: 7rem 0; background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-toggle {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.375rem;
  margin: 1.5rem auto 0; display: flex; width: fit-content;
}
.toggle-opt {
  font-size: 0.82rem; font-weight: 500; padding: 0.4rem 1rem;
  border-radius: 999px; cursor: pointer; transition: all 0.2s;
  color: var(--text-muted);
}
.toggle-opt.active { background: var(--white); color: var(--text-main); box-shadow: var(--shadow-sm); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1000px; margin: 0 auto; }
.plan-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
}
.popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 1.1rem; border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.25rem; }
.plan-price-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 400; color: var(--black); letter-spacing: -0.04em; line-height: 1; }
.plan-price-currency { font-size: 1rem; color: var(--text-muted); align-self: flex-start; padding-top: 0.5rem; }
.plan-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-desc { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; margin-bottom: 1.5rem; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-feature { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-body); }
.plan-feature::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 0.72rem; margin-top: 0.15rem; flex-shrink: 0; }
.plan-feature.disabled { color: var(--text-muted); }
.plan-feature.disabled::before { content: '–'; color: var(--border-2); }
.plan-btn { display: block; text-align: center; padding: 0.85rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.plan-btn-outline { border: 1.5px solid var(--border-2); color: var(--text-main); }
.plan-btn-outline:hover { border-color: var(--text-main); background: var(--surface); }
.plan-btn-primary { background: var(--blue); color: white; }
.plan-btn-primary:hover { background: var(--blue-hover); box-shadow: 0 4px 16px rgba(22,36,84,0.22); }
.pricing-note { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   CONTACT — SECTION 9
══════════════════════════════════════════════════ */
#contact { padding: 7rem 0; background: var(--surface); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info {}
.contact-channels { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.1rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-channel:hover { border-color: var(--blue-mid); box-shadow: 0 4px 16px rgba(22,36,84,0.06); }
.channel-icon { width: 40px; height: 40px; background: var(--blue-light); border: 1px solid var(--blue-mid); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.channel-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.channel-value { font-size: 0.875rem; font-weight: 600; color: var(--text-main); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-title { font-size: 1.1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.375rem; }
.form-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 0.8rem; font-weight: 500; color: var(--text-body); }
.form-input, .form-textarea, .form-select {
  font-family: var(--font-sans); font-size: 0.875rem;
  color: var(--text-main); background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.7rem 0.875rem;
  width: 100%; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(22,36,84,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-reassure { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
.form-reassure svg { width: 14px; height: 14px; flex-shrink: 0; }
.form-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; }

/* ══════════════════════════════════════════════════
   CTA FINAL — SECTION 10
══════════════════════════════════════════════════ */
#cta-final { padding: 8rem 0; background: var(--black); position: relative; overflow: hidden; }
.cta-bg-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;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000, transparent 100%);
}
.cta-blue-glow { position: absolute; width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(22,36,84,0.16), transparent 68%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner .section-label { color: #93A4B8; justify-content: center; }
.cta-inner .section-label::before { display: none; background: none; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.03em; color: white; margin-bottom: 1.25rem; }
.cta-title em { font-style: italic; color: #93A4B8; }
.cta-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.45); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-white { background: white; color: var(--black); }
.btn-white:hover { background: var(--surface); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-glass { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); }
.btn-glass:hover { background: rgba(255,255,255,0.12); }
.cta-proof { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-proof-item { font-size: 0.78rem; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 0.4rem; }
.cta-proof-item span { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 5rem 0 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 0.875rem; }
.footer-logo .logo-mark { flex-shrink: 0; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-ico { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.social-ico:hover { border-color: rgba(255,255,255,0.25); color: white; background: rgba(255,255,255,0.06); }
.footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-links a.highlight { color: rgba(203,213,225,0.8); }
.footer-links a.highlight:hover { color: #93A4B8; }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost-nav { display: none; }
  .burger-btn { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  section { padding: 5rem 0; }
  .problem-inner,
  .solution-inner,
  .ai-demo-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .problem-visual { display: none; }
  .about-team { display: none; }
  .interface-body { grid-template-columns: 1fr; }
  .iface-sidebar { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .ai-demo-stats { flex-direction: column; gap: 1rem; }
  .about-values { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: repeat(3,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .iface-stats { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
  .pricing-toggle { flex-wrap: nowrap; }
}

/* Modification demandée : suppression du cadre avec le point dans le hero */
.hero-badge-wrap { display: none !important; }
#hero { padding-top: 7rem; }

/* Logo texte uniquement : pas de carré/icône avant le nom */
.nav-logo .logo-mark, .footer-logo .logo-mark { display: none !important; }
.nav-logo { gap: 0; }
