/* ================================================================
   CABINET DENTAIRE — DESIGN SYSTEM
   ================================================================ */

/* 1. VARIABLES -------------------------------------------------- */
:root {
  --primary:        #0D2B55;
  --primary-dark:   #071A35;
  --primary-light:  #1A4080;
  --accent:         #C49A5A;
  --accent-light:   #DDB978;
  --accent-dark:    #A07840;
  --teal:           #1A8FA3;
  --teal-light:     #38B2C7;
  --teal-dark:      #127588;
  --text:           #1A2540;
  --text-light:     #4A5568;
  --text-muted:     #718096;
  --bg:             #F7F9FD;
  --bg-card:        #FFFFFF;
  --bg-section:     #EEF2F9;
  --border:         #DDE4F0;
  --white:          #FFFFFF;

  --shadow-sm:  0 2px 8px rgba(13,43,85,.06);
  --shadow-md:  0 4px 24px rgba(13,43,85,.10);
  --shadow-lg:  0 8px 48px rgba(13,43,85,.14);
  --shadow-xl:  0 20px 64px rgba(13,43,85,.16);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  clamp(2.5rem, 5vw, 4rem);
  --text-hero: clamp(2.8rem, 6vw, 5rem);

  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s ease;

  --nav-h: 76px;
}

/* 2. 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 {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* 3. TYPOGRAPHY ------------------------------------------------- */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { color: var(--text-light); line-height: 1.75; }

.text-accent { color: var(--accent); }
.text-teal   { color: var(--teal); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* Section title block */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}

/* 4. LAYOUT ----------------------------------------------------- */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section { padding-block: 6rem; }
.section--sm { padding-block: 4rem; }
.section--lg { padding-block: 8rem; }

.section--dark  { background: var(--primary); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.section--dark .section-label { color: var(--accent-light); }
.section--dark .section-label::before { background: var(--accent-light); }
.section--dark .section-title { color: var(--white); }

.section--light  { background: var(--bg); }
.section--card   { background: var(--bg-section); }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: 1rem; }

/* 5. BUTTONS ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,90,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,143,163,.3);
}

.btn--lg { padding: 1rem 2.25rem; font-size: var(--text-base); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--text-xs); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 6. NAV ------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--transparent { background: transparent; }

.nav--scrolled {
  background: rgba(7,26,53,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.nav__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}

.nav__logo-icon img { width: 100%; height: 100%; object-fit: contain; }

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.nav__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav__cta {
  flex-shrink: 0;
  font-size: var(--text-sm);
  padding: 0.6rem 1.375rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--primary-dark);
  overflow-y: auto;
  padding: 1.5rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mobile-links a {
  display: block;
  padding: 0.875rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: var(--text-lg);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__mobile-links a:hover,
.nav__mobile-links a.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.nav__mobile-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* 7. HERO ------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, #1A3A6B 75%, #1A5070 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
	radial-gradient(ellipse 60% 60% at 70% 50%, rgba(26,143,163,.18) 0%, transparent 60%),
	radial-gradient(ellipse 40% 50% at 20% 80%, rgba(196,154,90,.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
	linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
	linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero--center .hero__container {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  justify-items: center;
}

.hero__container--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 820px;
  justify-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,154,90,.18);
  border: 1px solid rgba(196,154,90,.35);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero--center .hero__subtitle { max-width: 600px; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.hero__stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  position: relative;
}

.hero__visual-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26,143,163,.2), transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__orb--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(196,154,90,.15), transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* Page hero (compact) */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1A3A6B 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(26,143,163,.15), transparent 60%);
}

.page-hero__container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,.85); }

/* 8. CARDS ------------------------------------------------------ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card__body { padding: 1.75rem; }
.card__header { padding: 1.75rem 1.75rem 0; }
.card__footer { padding: 0 1.75rem 1.75rem; }

/* Service Card */
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26,143,163,.1), rgba(13,43,85,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--teal), var(--primary));
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  transition: stroke var(--transition);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--primary);
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.service-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  margin-top: 1rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link svg { width: 14px; height: 14px; }
.service-card:hover .service-card__link { gap: 0.6rem; color: var(--accent); }

/* Team Card */
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-card__photo {
  position: relative;
  height: 280px;
  background: linear-gradient(160deg, #1A3A6B 0%, #0D2B55 60%, #071A35 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.team-card__photo-placeholder {
  width: 160px;
  height: 240px;
  position: relative;
}

.team-card__photo svg {
  width: 100%;
  height: 100%;
}

.team-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.team-card__body { padding: 1.5rem 1.75rem; }

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.team-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  background: var(--bg-section);
  color: var(--text-light);
  border: 1px solid var(--border);
}

/* Feature / Value card */
.feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg { width: 24px; height: 24px; stroke: var(--white); }

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--primary);
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stat item */
.stat-block {
  text-align: center;
  padding: 2rem 1.25rem;
}

.stat-block__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-block__value span { color: var(--accent); }

.stat-block__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* 9. SPLIT SECTION --------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split--reverse .split__visual { order: -1; }

.split__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__visual svg {
  width: 60%;
  height: auto;
  opacity: 0.9;
}

.split__visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--accent);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.25;
}

.visual-blob {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,143,163,.15), rgba(196,154,90,.1));
  position: absolute;
  inset: 0;
}

/* 10. STEPS / TIMELINE ----------------------------------------- */
.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--teal));
  z-index: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step__num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(196,154,90,.4);
}

.step__content { flex: 1; padding-top: 0.75rem; }

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* 11. FAQ ------------------------------------------------------ */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow var(--transition-fast);
}

.faq__item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(13,43,85,.15);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background var(--transition-fast);
}

.faq__question:hover { background: var(--bg-section); }

.faq__question .faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
}

.faq__icon svg { width: 12px; height: 12px; stroke: var(--text-light); }
.faq__item.open .faq__icon svg { stroke: var(--white); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq__item.open .faq__answer { max-height: 300px; }

.faq__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* 12. CONTACT -------------------------------------------------- */
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.contact-info {
  width: 100%;
  max-width: 520px;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-block__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-block__icon svg { width: 20px; height: 20px; stroke: var(--white); }

.contact-block__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-block__value {
  font-size: var(--text-base);
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-block__value a { color: var(--teal); }
.contact-block__value a:hover { text-decoration: underline; }

.schedule-table { width: 100%; }
.schedule-table tr td { padding: 0.4rem 0; font-size: var(--text-sm); }
.schedule-table tr td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--text);
}
.schedule-closed { color: var(--text-muted) !important; font-style: italic; }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,143,163,.12);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 140px; }

/* Map */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

/* 13. FOOTER ---------------------------------------------------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer__brand-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.footer__brand-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,.6);
}

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--accent-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  margin-bottom: 0.5rem;
}

.footer__contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; stroke: var(--accent-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
}

.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { color: rgba(255,255,255,.35); transition: color var(--transition-fast); }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* 14. CTA BANNER ----------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-dark) 60%, var(--teal) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
	radial-gradient(ellipse 60% 80% at 30% 50%, rgba(196,154,90,.12), transparent),
	radial-gradient(ellipse 50% 70% at 70% 50%, rgba(255,255,255,.05), transparent);
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.cta-banner .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(196,154,90,.4);
}

/* 15. BADGE / CHIP --------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--accent { background: rgba(196,154,90,.12); color: var(--accent-dark); border: 1px solid rgba(196,154,90,.3); }
.badge--teal   { background: rgba(26,143,163,.1);  color: var(--teal-dark);   border: 1px solid rgba(26,143,163,.25); }
.badge--blue   { background: rgba(13,43,85,.08);   color: var(--primary);     border: 1px solid rgba(13,43,85,.15); }

/* 16. ADVANTAGE LIST ------------------------------------------- */
.advantage-list { display: flex; flex-direction: column; gap: 0.75rem; }

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(26,143,163,.04);
  border: 1px solid rgba(26,143,163,.12);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.advantage-item:hover {
  background: rgba(26,143,163,.08);
  border-color: rgba(26,143,163,.2);
}

.advantage-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.advantage-item__icon svg { width: 22px; height: 22px; stroke: var(--teal); }

.advantage-item__text {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.55;
}

.advantage-item__text strong {
  color: var(--text);
  font-weight: 600;
}

/* 17. TECHNOLOGY CARD ------------------------------------------ */
.tech-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.tech-card:hover::after { transform: scaleX(1); }

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.tech-card__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--bg-section);
  line-height: 1;
  margin-bottom: -0.75rem;
  display: block;
}

.tech-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tech-card__icon svg { width: 28px; height: 28px; stroke: var(--white); }

.tech-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tech-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* 18. MSP PRACTITIONER CARD ------------------------------------ */
.msp-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

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

.msp-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.msp-card__icon svg { width: 22px; height: 22px; stroke: var(--white); }

.msp-card > div:not(.msp-card__icon) {
  display: flex;
  flex-direction: column;
}

.msp-card__name {
  font-weight: 600;
  color: var(--text);
  font-size: var(--text-sm);
}

.msp-card__spec {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* 19. URGENCE BANNER ------------------------------------------- */
.urgence-banner {
  background: linear-gradient(135deg, #B91C1C, #991818);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.urgence-banner svg { width: 28px; height: 28px; flex-shrink: 0; }
.urgence-banner strong { font-size: var(--text-lg); }
.urgence-banner span { font-size: var(--text-sm); opacity: .85; }

/* 20. ANIMATIONS ----------------------------------------------- */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate--left  { transform: translateX(-30px); }
.animate--right { transform: translateX(30px); }
.animate--scale { transform: scale(0.94); }

.animated {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Scroll-triggered counter */
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* Floating */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float { animation: float 5s ease-in-out infinite; }

/* Pulse ring */
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.7); opacity: 0; }
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing 2.5s ease-out infinite;
}

/* 21. UTILITIES ------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mx-auto { margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* 22. RESPONSIVE ----------------------------------------------- */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand-text { max-width: none; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: block; }

  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero--center .hero__container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__actions { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(3,1fr); }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__visual { order: 0; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding-block: 4rem; }
  .section--lg { padding-block: 5rem; }

  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }

  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .hero__stat { padding: 1rem 0.5rem; }
  .hero__stat-value { font-size: 1.5rem; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .steps::before { left: 20px; }
  .step__num { width: 42px; height: 42px; font-size: var(--text-base); }
}

@media (prefers-reduced-motion: reduce) {
  .animate { opacity: 1; transform: none; transition: none; }
  .float { animation: none; }
}
