/* ==========================================================================
   ANIMALIO — Design System (Spécialisé Bien-être & Soins Animaux)
   Propulsé par Aliosphère
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Tokens --- */
:root {
  --teal-900: #0b3d3e;
  --teal-800: #0e4f50;
  --teal-700: #115f60;
  --teal-600: #167172;
  --teal-500: #1a8a8b;
  --teal-400: #22a7a8;
  --teal-300: #4fc4c5;
  --teal-200: #8adcdd;
  --teal-100: #c5eeee;
  --teal-50: #f0fdfa; /* Vert menthe ultra léger pour fond doux */

  /* Deep blue corporatif */
  --deep-blue-900: #0a2330;
  --deep-blue-800: #0d2e3f;
  --deep-blue-700: #113a4f;
  --deep-blue-600: #164a63;
  --deep-blue-500: #1c5d7d;

  /* Teintes Animalières Chaudes (Ambre/Miel) */
  --amber-accent: #d97706; /* Ambre chaud chaleureux */
  --amber-hover: #b45309;
  --amber-light: #fef3c7; /* Fond jaune miel très doux */
  --amber-cream: #fffbeb;

  --red-accent: #d42e2e;
  --red-light: #fbe9e9;

  --neutral-900: #1a1a2e;
  --neutral-800: #2d2d44;
  --neutral-700: #444460;
  --neutral-600: #5e5e7a;
  --neutral-500: #8080a0;
  --neutral-400: #a0a0bc;
  --neutral-300: #c4c4d8;
  --neutral-200: #e0e0ec;
  --neutral-100: #f0f0f6;
  --neutral-50: #f8fafc;
  --white: #ffffff;

  --font-family: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .08), 0 4px 8px rgba(0, 0, 0, .03);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, .10);

  --max-width: 1200px;
  --header-height: 90px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--deep-blue-900);
  line-height: 1.25;
}

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 16px;
}

.section-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--deep-blue-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--neutral-600);
  max-width: 700px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Décorations & Grilles de fond --- */
.circuit-bg {
  position: relative;
}

.circuit-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image:
    linear-gradient(90deg, var(--teal-700) 1px, transparent 1px),
    linear-gradient(180deg, var(--teal-700) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero-fond-bg {
  position: relative;
}

.hero-fond-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 20%, rgba(22, 113, 114, 0.05) 0%, rgba(254, 243, 199, 0.05) 90.2%);
  z-index: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all .3s;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 80px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-900);
}

.logo-icon-svg {
  width: 32px;
  height: 32px;
  fill: var(--amber-accent);
}

.logo-img-header {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img-header {
  transform: scale(1.08) rotate(5deg);
}

.logo-text span {
  color: var(--amber-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--neutral-700);
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber-accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: var(--amber-accent);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* --- BOUTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  transition: all .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-700), var(--deep-blue-900));
  color: var(--white);
  box-shadow:
    0 4px 14px rgba(11, 95, 96, .25),
    inset 0 1px 0 rgba(255, 255, 255, .15);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, .4);
  animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, .4); }
  50% { box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(11, 95, 96, .35),
    inset 0 1px 0 rgba(255, 255, 255, .15);
}

.btn-outline {
  background: transparent;
  color: var(--deep-blue-900);
  border: 2px solid var(--teal-300);
}

.btn-outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-600);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber-accent), #ea580c);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, .25);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, .4);
}

/* Mobile Nav Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  transform: translateY(-120%);
  transition: transform .3s ease-in-out;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  padding: 8px 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 90px;
  background: linear-gradient(170deg, var(--white) 0%, var(--teal-50) 50%, var(--amber-cream) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--deep-blue-900);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal-600), var(--amber-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  box-shadow: var(--shadow-sm);
}

.badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.badge-swiss svg { color: var(--red-accent); }
.badge-shield svg { color: var(--teal-600); }
.badge-star svg { color: var(--amber-accent); }

/* ==========================================================================
   LES CARTES CIBLES D'IDENTIFICATION RAPIDE (3 CARTES ALIGNÉES)
   ========================================================================== */
.targets-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--neutral-100);
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.target-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--neutral-300);
  transition: background .3s;
}

.target-card.tc-garde::before { background: #3b82f6; }
.target-card.tc-refuge::before { background: var(--amber-accent); }
.target-card.tc-toilettage::before { background: #14b8a6; }

.target-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.target-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform .3s;
}

.tc-garde .target-icon { background: #eff6ff; color: #2563eb; }
.tc-refuge .target-icon { background: var(--amber-light); color: var(--amber-accent); }
.tc-toilettage .target-icon { background: #f0fdfa; color: #0d9488; }

.target-card:hover .target-icon {
  transform: scale(1.1) rotate(5deg);
}

.target-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--deep-blue-900);
}

.target-desc {
  font-size: .95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 18px;
}

.target-examples {
  font-size: .85rem;
  color: var(--neutral-500);
  margin-bottom: 28px;
  font-style: italic;
}

.target-card .btn {
  width: 100%;
  font-size: .9rem;
  padding: 10px 20px;
}

/* ==========================================================================
   WHY SECTION (AVANTAGES GLOBAUX)
   ========================================================================== */
.why-section {
  background: var(--neutral-50);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-blue-900);
}

.value-card p {
  font-size: .92rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ==========================================================================
   ROI CALCULATOR (SPÉCIAL ANIMALIO)
   ========================================================================== */
.roi-section {
  background: var(--white);
}

.roi-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}

.roi-intro {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.roi-intro h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.roi-input-block {
  margin-bottom: 30px;
}

.roi-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-blue-900);
  margin-bottom: 12px;
}

.roi-slider-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.roi-calls-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-700);
  line-height: 1;
}

.roi-calls-label {
  font-size: .85rem;
  color: var(--neutral-500);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.roi-slider-card input[type="range"] {
  width: 100%;
  accent-color: var(--teal-600);
  cursor: pointer;
}

.roi-slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--neutral-400);
  margin-top: 4px;
}

.roi-length-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.roi-length-btn {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roi-length-btn:hover {
  border-color: var(--teal-400);
}

.roi-length-btn--active {
  background: var(--teal-700);
  color: var(--white) !important;
  border-color: var(--teal-700);
}

.roi-length-main {
  font-weight: 700;
  font-size: .95rem;
}

.roi-length-sub {
  font-size: .75rem;
  opacity: .8;
}

.roi-card--highlight {
  background: linear-gradient(135deg, var(--teal-900), var(--deep-blue-900));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.roi-card--highlight .roi-label {
  color: var(--teal-200);
  font-size: .9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.roi-card--highlight .roi-value {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-title);
  line-height: 1;
}

.roi-card--highlight .roi-unit {
  font-size: 1rem;
  color: var(--teal-100);
  margin-bottom: 30px;
}

.roi-result-money {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-bottom: 24px;
}

.roi-card--highlight .roi-value--money {
  font-size: 2.8rem;
  color: var(--amber-accent);
}

.roi-caption {
  font-size: .72rem;
  color: var(--neutral-300);
  line-height: 1.4;
  margin-bottom: 30px;
}

/* ==========================================================================
   À PROPOS (VÉTÉRINAIRE & TECHNOLOGIE)
   ========================================================================== */
.founder-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.founder-card {
  padding: 40px 32px;
  text-align: left;
}

.founder-avatar {
  margin-bottom: 24px;
}

.founder-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.founder-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--neutral-600);
  margin-bottom: 12px;
}

/* ==========================================================================
   WEB CALL PANEL & SIMULATOR
   ========================================================================== */
.webcall-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  min-height: 400px;
  margin: 0 auto;
  padding: 48px 32px 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 119, 6, .2);
  box-shadow:
    0 20px 60px rgba(11, 61, 62, .08),
    inset 0 1px 0 rgba(255, 255, 255, .6);
  overflow: hidden;
  z-index: 2;
}

.webcall-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.webcall-blob-1 {
  width: 200px;
  height: 200px;
  background: rgba(217, 119, 6, .15);
  top: -40px;
  right: -40px;
}

.webcall-blob-2 {
  width: 160px;
  height: 160px;
  background: rgba(22, 167, 168, .12);
  bottom: -30px;
  left: -30px;
}

.webcall-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  pointer-events: none;
  z-index: 1;
}

.webcall-btn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.webcall-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--amber-accent);
  opacity: 0;
}

.webcall-panel:not(.webcall--active):not(.webcall--connecting) .webcall-ring-1 {
  animation: ring-pulse 3s ease-out infinite;
}
.webcall-panel:not(.webcall--active):not(.webcall--connecting) .webcall-ring-2 {
  animation: ring-pulse 3s ease-out 1s infinite;
}
.webcall-panel:not(.webcall--active):not(.webcall--connecting) .webcall-ring-3 {
  animation: ring-pulse 3s ease-out 2s infinite;
}

.webcall-panel.webcall--active .webcall-ring {
  border-color: #0d9488;
}
.webcall-panel.webcall--active .webcall-ring-1 {
  animation: ring-pulse-active 2s ease-out infinite;
}
.webcall-panel.webcall--active .webcall-ring-2 {
  animation: ring-pulse-active 2s ease-out .66s infinite;
}
.webcall-panel.webcall--active .webcall-ring-3 {
  animation: ring-pulse-active 2s ease-out 1.33s infinite;
}

.webcall-panel.webcall--connecting .webcall-ring-1 {
  opacity: .6;
  border: 2px solid transparent;
  border-top-color: var(--amber-accent);
  border-right-color: var(--amber-accent);
  animation: spin 1s linear infinite;
  transform: scale(1);
}

.webcall-btn {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal-700), var(--deep-blue-900));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(11, 95, 96, .3);
  transition: all .3s ease;
}

.webcall-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(11, 95, 96, .4);
}

.webcall-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  transition: opacity .3s, transform .3s;
}

.webcall-icon--phone { opacity: 1; transform: scale(1); }
.webcall-icon--mic { opacity: 0; transform: scale(.7); }
.webcall-icon--hangup { opacity: 0; transform: scale(.7); }

.webcall-panel.webcall--active .webcall-icon--phone { opacity: 0; transform: scale(.7); }
.webcall-panel.webcall--active .webcall-icon--mic { opacity: 1; transform: scale(1); }

.webcall-waves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 30px;
  margin: 24px 0 12px;
  opacity: 0;
  transition: opacity .3s;
}

.webcall--active .webcall-waves {
  opacity: 1;
}

.webcall-wave {
  width: 4px;
  height: 8px;
  background-color: var(--teal-500);
  border-radius: var(--radius-full);
}

.agent-talking .webcall-wave {
  animation: bounce 0.8s ease-in-out infinite alternate;
}

.agent-talking .webcall-wave:nth-child(2) { animation-delay: 0.15s; }
.agent-talking .webcall-wave:nth-child(3) { animation-delay: 0.3s; }
.agent-talking .webcall-wave:nth-child(4) { animation-delay: 0.45s; }
.agent-talking .webcall-wave:nth-child(5) { animation-delay: 0.3s; }
.agent-talking .webcall-wave:nth-child(6) { animation-delay: 0.15s; }
.agent-talking .webcall-wave:nth-child(7) { animation-delay: 0s; }

@keyframes bounce {
  from { height: 8px; transform: scaleY(1); }
  to { height: 28px; transform: scaleY(1.2); }
}

.webcall-status {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue-900);
  margin-top: 16px;
  text-align: center;
}

.webcall-substatus {
  font-size: .88rem;
  color: var(--neutral-500);
  text-align: center;
}

/* ==========================================================================
   LANDING PAGES CIBLES — STRUCTURE SPÉCIFIQUE
   ========================================================================== */
.target-hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--neutral-50) 100%);
}

.target-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.target-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.garde-theme .target-badge-label { background: #eff6ff; color: #2563eb; }
.refuge-theme .target-badge-label { background: var(--amber-light); color: var(--amber-accent); }
.toilettage-theme .target-badge-label { background: #f0fdfa; color: #0d9488; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.pain-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--deep-blue-900);
}

.pain-card p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.55;
}

.solution-showcase {
  background: var(--neutral-50);
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.solution-row:nth-child(even) {
  direction: rtl;
}

.solution-row > * {
  direction: ltr;
}

.solution-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.solution-text p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sol-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.sol-feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.garde-theme .sol-feature-item svg { color: #2563eb; }
.refuge-theme .sol-feature-item svg { color: var(--amber-accent); }
.toilettage-theme .sol-feature-item svg { color: #0d9488; }

.solution-card-preview {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.preview-header {
  border-bottom: 1px solid var(--neutral-100);
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--deep-blue-900);
}

.preview-badge {
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Tab/Data lists */
.preview-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-50);
  font-size: .9rem;
}

.preview-row span:first-child {
  color: var(--neutral-500);
}

.preview-row span:last-child {
  font-weight: 600;
  color: var(--neutral-800);
}

.benefit-pill {
  font-size: .8rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.bp-qual { background: #e0f2fe; color: #0369a1; }
.bp-temp { background: #f0fdf4; color: #166534; }
.bp-fin { background: var(--amber-light); color: var(--amber-hover); }

/* ==========================================================================
   FAQ & ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--neutral-50);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}

.faq-item.active {
  border-color: var(--teal-400);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-blue-900);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform .3s;
  color: var(--neutral-500);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--teal-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: .95rem;
  color: var(--neutral-600);
  line-height: 1.65;
  border-top: 1px solid var(--neutral-100);
  margin-top: -1px;
}

/* ==========================================================================
   RDV & SCHEDULING (CAL.COM)
   ========================================================================== */
.rdv-section {
  background: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--deep-blue-900);
  color: var(--neutral-300);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 48px;
  margin-bottom: 30px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
  transform: scale(1.02);
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: .9rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--amber-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--amber-accent);
  flex-shrink: 0;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--neutral-500);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--neutral-300);
}

/* ==========================================================================
   SCROLL REVEAL & FADE EFFECTS
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.2, 0.8, 0.2, 1), transform .8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container,
  .target-hero .container,
  .roi-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content p, .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions, .trust-badges {
    justify-content: center;
  }

  .targets-grid, .founder-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 80px;
  }

  .logo-img-header {
    width: 55px;
    height: 55px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links, .header-cta {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .values-grid, .pain-grid, .solution-features {
    grid-template-columns: 1fr;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
  }

  .solution-row:nth-child(even) {
    direction: ltr;
  }

  .roi-length-buttons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo-img {
    height: 50px;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER (nLPD / GDPR Compliance)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner--hidden {
  transform: translateY(150px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-banner-icon {
  font-size: 2rem;
  line-height: 1;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-btn {
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  transition: all 0.2s ease;
}

.cookie-btn--primary {
  background: linear-gradient(135deg, var(--teal-700), var(--deep-blue-900));
  color: var(--white);
  box-shadow: 0 2px 6px rgba(11, 95, 96, 0.2);
}

.cookie-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 95, 96, 0.3);
}

.cookie-btn--secondary {
  background: transparent;
  color: var(--neutral-600);
  border: 1px solid var(--neutral-300);
}

.cookie-btn--secondary:hover {
  background: var(--neutral-100);
  color: var(--neutral-800);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 20px;
  }
}

