/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --accent: #6366f1;
  --accent-dark: #4f46e5;
  --accent-light: #eef2ff;
  --green: #10b981;
  --green-light: #d1fae5;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.scrolled { border-color: var(--gray-100); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  color: var(--black);
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--black); background: var(--gray-100); }
.btn-nav {
  background: var(--black) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--gray-800) !important; color: var(--white) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 2px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--accent) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 10px;
  border: none !important;
  font-weight: 600 !important;
}

/* === HERO === */
.hero {
  padding: 120px 0 0;
  background: #fafafa;
  overflow: hidden;
  position: relative;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  color: var(--black);
}
.hero-highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--black); }

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(99,102,241,0.4); }

.btn-ghost {
  background: var(--white);
  color: var(--gray-800);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--black); }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.hero-social-proof p { font-size: 13px; color: var(--gray-500); }
.hero-social-proof strong { color: var(--black); }

/* HERO MOCKUP */
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-mockup { position: relative; }

.mockup-phone {
  background: var(--black);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  width: 260px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}
.phone-bar {
  background: var(--black);
  padding: 8px 0 6px;
  display: flex;
  justify-content: center;
}
.phone-notch {
  width: 80px; height: 20px;
  background: var(--black);
  border-radius: 99px;
}
.phone-content { padding: 20px 16px 24px; }
.phone-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}
.phone-header span { font-size: 24px; }
.phone-header strong { display: block; font-size: 13px; font-weight: 700; }
.phone-header small { font-size: 11px; color: var(--gray-400); }
.phone-stars { font-size: 12px; color: #f59e0b; margin-bottom: 14px; }
.phone-stars span { color: var(--gray-400); }
.phone-btn {
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 8px;
  cursor: pointer;
}
.phone-btn.ghost {
  background: var(--gray-100);
  color: var(--black);
  margin-bottom: 14px;
}
.phone-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px;
  animation: notifPulse 3s ease infinite;
}
@keyframes notifPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.01); }
}
.phone-notif span { font-size: 18px; }
.phone-notif strong { display: block; font-size: 11px; font-weight: 700; color: #166534; }
.phone-notif small { font-size: 10px; color: var(--gray-400); }

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: 13px; font-weight: 700; }
.floating-card small { font-size: 11px; color: var(--gray-400); }
.floating-card span { font-size: 22px; }

.card-1 { top: 30px; right: -60px; animation-delay: 0s; }
.card-2 { bottom: 80px; right: -50px; animation-delay: 1.3s; }
.card-3 { bottom: 20px; left: -60px; animation-delay: 0.7s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* HERO STATS */
.hero-stats {
  background: var(--black);
  padding: 28px 0;
}
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-item span { font-size: 13px; color: var(--gray-400); margin-top: 4px; display: block; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* === SECTION COMMON === */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-top: 12px;
}
.section-sub { color: var(--gray-500); font-size: 16px; margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }

.tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === PROBLÈME === */
.problem {
  background: var(--black);
  padding: 80px 0;
}
.problem-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.problem-text { text-align: center; }
.problem-text p { color: var(--gray-400); font-size: clamp(16px, 2.5vw, 20px); line-height: 1.7; margin-bottom: 8px; }
.problem-big { font-size: clamp(20px, 3vw, 26px) !important; }
.problem-big strong { color: var(--white); }

.problem-list { display: flex; flex-direction: column; gap: 10px; }
.problem-item {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
}
.problem-item.bad { background: rgba(239,68,68,0.1); color: #fca5a5; }
.problem-item.good { background: rgba(16,185,129,0.1); color: #6ee7b7; }
.problem-arrow { font-size: 32px; color: var(--gray-500); }

/* === SERVICES === */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gray-200); }
.service-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.service-card p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.service-list li { font-size: 13px; color: var(--gray-500); }
.service-cta {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-cta:hover { color: var(--accent-dark); }

/* === EXEMPLES === */
.exemples { background: var(--black); padding: 96px 0; }
.exemples .section-header .tag { background: rgba(99,102,241,0.15); color: #a5b4fc; }
.exemples .section-header h2 { color: var(--white); }
.exemples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.exemple-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s;
}
.exemple-card:hover {
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-3px);
}
.exemple-emoji { font-size: 28px; margin-bottom: 10px; }
.exemple-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.exemple-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.exemple-card li { font-size: 13px; color: var(--gray-400); line-height: 1.5; }

/* === PROCESS === */
.process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--accent-light);
}
.step-content h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.step-content p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.step-time {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}
.process-connector {
  flex: 0 0 1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin-top: 32px;
  width: 80px;
  flex-shrink: 0;
}

/* === PROJETS === */
.projets { background: var(--gray-50); }
.projets-grid { display: flex; flex-direction: column; gap: 32px; }
.projet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  transition: box-shadow 0.25s;
}
.projet-card:hover { box-shadow: var(--shadow-xl); }
.projet-card:nth-child(even) { direction: rtl; }
.projet-card:nth-child(even) > * { direction: ltr; }

.projet-preview {
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.plombier { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.coiffeur { background: linear-gradient(135deg, #fce7f3, #fdf2f8); }
.restaurant { background: linear-gradient(135deg, #dcfce7, #f0fdf4); }

.projet-mockup {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 260px;
}
.mockup-bar {
  background: var(--gray-100);
  padding: 8px 12px;
  display: flex;
  gap: 5px;
}
.mockup-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); }
.mockup-content { padding: 18px; text-align: center; }
.mockup-logo { font-size: 12px; font-weight: 700; color: var(--gray-600); margin-bottom: 10px; }
.mockup-hero-text { font-size: 14px; font-weight: 900; line-height: 1.3; color: var(--black); margin-bottom: 12px; letter-spacing: -0.3px; }
.mockup-tags { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }
.mockup-tags span { background: var(--gray-100); color: var(--gray-600); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 99px; }
.mockup-btn { background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 9px; border-radius: 7px; }

.projet-tag { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 10px; }
.projet-info h3 { font-size: 24px; font-weight: 900; letter-spacing: -0.8px; margin-bottom: 12px; }
.projet-info p { color: var(--gray-500); font-size: 14px; line-height: 1.75; margin-bottom: 18px; }
.projet-results { display: flex; gap: 10px; flex-wrap: wrap; }
.projet-result { background: var(--green-light); color: #065f46; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 8px; }

/* === AVIS === */
.avis { background: var(--white); }
.avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.avis-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.avis-card:hover { box-shadow: var(--shadow); border-color: var(--gray-200); }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }
.avis-card p { color: var(--gray-600); font-size: 14px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.avis-author { display: flex; align-items: center; gap: 12px; }
.avis-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avis-author strong { display: block; font-size: 14px; font-weight: 700; }
.avis-author span { font-size: 12px; color: var(--gray-400); }

/* === TARIFS === */
.tarifs { background: var(--gray-50); }
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.tarif-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.25s;
}
.tarif-card:hover { box-shadow: var(--shadow-lg); }
.tarif-card.popular { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.tarif-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.tarif-prix { font-size: 46px; font-weight: 900; letter-spacing: -2px; margin-bottom: 8px; }
.tarif-prix span { font-size: 18px; font-weight: 500; color: var(--gray-400); letter-spacing: 0; }
.tarif-desc { font-size: 13px; color: var(--gray-400); margin-bottom: 22px; line-height: 1.6; }
.tarif-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tarif-list li { font-size: 13px; color: var(--gray-600); }
.tarif-list li.off { color: var(--gray-300); }
.btn-tarif {
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: 10px; font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--gray-200); color: var(--black); transition: all 0.2s;
}
.btn-tarif:hover { border-color: var(--black); }
.btn-tarif-primary {
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: 10px; font-weight: 700; font-size: 14px;
  background: var(--accent); color: white; transition: all 0.2s;
}
.btn-tarif-primary:hover { background: var(--accent-dark); }

/* === FAQ === */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--gray-100); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; text-align: left; gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon { font-size: 20px; font-weight: 400; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--gray-500); font-size: 14px; line-height: 1.75; }

/* === CTA SECTION === */
.cta-section { background: var(--accent); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }
.btn-cta-big {
  display: inline-block; text-decoration: none;
  background: var(--white); color: var(--accent);
  padding: 18px 40px; border-radius: 12px;
  font-weight: 800; font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-cta-big:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.cta-sub { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 16px; }

/* === CONTACT === */
.contact { background: var(--gray-50); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left .tag { display: inline-block; margin-bottom: 16px; }
.contact-left h2 { font-size: 40px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; }
.contact-left > p { color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 10px; }
.contact-item a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-item span:last-child { color: var(--gray-500); font-size: 14px; }
.contact-garanties { display: flex; flex-direction: column; gap: 8px; }
.garantie { font-size: 14px; color: var(--gray-600); font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700, #374151); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--black);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.form-group textarea { resize: none; }
.btn-submit {
  background: var(--accent);
  color: white; border: none;
  border-radius: 10px; padding: 15px;
  font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: all 0.2s; margin-top: 4px;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  background: var(--green-light);
  border-radius: var(--radius);
  gap: 12px;
}
.success-icon { font-size: 48px; }
.form-success h3 { font-size: 20px; font-weight: 800; color: #065f46; }
.form-success p { color: #047857; font-size: 14px; }

/* === FOOTER === */
footer { background: var(--black); padding: 56px 0 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-inner .logo { color: var(--white); display: inline-block; margin-bottom: 10px; }
.footer-desc { color: var(--gray-500); font-size: 13px; line-height: 1.7; margin-top: 8px; }
.footer-links { display: flex; gap: 48px; }
.footer-links > div { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { color: var(--white); font-size: 14px; margin-bottom: 4px; }
.footer-links a { color: var(--gray-500); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-bottom p { color: var(--gray-500); font-size: 12px; line-height: 1.8; }

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: none;
  transition: opacity 0.3s;
}
.floating-cta.hidden { opacity: 0; pointer-events: none; }
.floating-cta a {
  display: block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(99,102,241,0.5);
  white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .exemples-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid .tarif-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 64px 0; }

  .hero { padding: 88px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-right { display: none; }
  .hero-btns { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  h1 { letter-spacing: -1.5px; }

  .problem-inner { flex-direction: column; }
  .problem-arrow { transform: rotate(90deg); }

  .services-grid { grid-template-columns: 1fr; }
  .exemples-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; gap: 32px; align-items: flex-start; padding-left: 0; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
  .process-step .step-number { flex-shrink: 0; }
  .process-connector { width: 3px; height: 40px; background: var(--accent-light); margin-left: 30px; }

  .projet-card { grid-template-columns: 1fr; gap: 24px; direction: ltr !important; padding: 24px; }

  .avis-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarifs-grid .tarif-card:last-child { grid-column: auto; max-width: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }

  .floating-cta { display: block; }

  .stats-row { gap: 28px; }
  .stat-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
