/* ============================================================
   DENIS GOURRET — PERSONAL TRAINER | STYLE GLOBAL
   Design : Clair & Moderne | Rouge HBX #E63329 + Blanc + Noir
   ============================================================ */

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

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  /* Colors */
  --red:          #E63329;
  --red-dark:     #C4251B;
  --red-light:    #FF4A40;
  --red-alpha:    rgba(230, 51, 41, 0.08);
  --dark:         #111111;
  --dark-2:       #1E1E1E;
  --gray-dark:    #444444;
  --gray-mid:     #777777;
  --gray-light:   #AAAAAA;
  --bg-light:     #F8F8F8;
  --bg-white:     #FFFFFF;
  --border:       #E8E8E8;

  /* Typography */
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:   72px;
  --container:    1200px;
  --nav-h:        80px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --shadow-red:   0 8px 32px rgba(230,51,41,0.25);

  /* Border radius */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-full:  999px;

  /* Transitions */
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 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(--dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

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

/* ── SECTION SPACING ──────────────────────────────────────── */
section {
  padding: var(--section-py) 0;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  margin-bottom: 40px;
}

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

.section-header--center .section-tag {
  justify-content: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(230,51,41,0.35);
}

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

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

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

/* ── NAVIGATION ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.nav-logo-title {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-client-btn {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-client-btn:hover { color: var(--red); }

.nav-client-btn svg { width: 16px; height: 16px; }

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-mobile a:hover { color: var(--red); }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(145deg, #fff 0%, #F5F5F5 100%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-accent {
  position: absolute;
  top: 20%;
  right: 42%;
  width: 6px;
  height: 120px;
  background: var(--red);
  border-radius: 3px;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-left { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-alpha);
  border: 1px solid rgba(230,51,41,0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--red);
  display: block;
}

.hero-slogan {
  font-size: 1rem;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  line-height: 1.6;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-pillars {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.hero-pillar-arrow {
  color: var(--red);
  font-size: 0.9rem;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 1rem;
}

.hero-trust-text {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.hero-trust-text strong {
  color: var(--dark);
  font-weight: 700;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #e0e0e0, #f0f0f0);
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #E8E8E8 0%, #D5D5D5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-mid);
  box-shadow: var(--shadow-lg);
}

.hero-img-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

.hero-card-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.hero-card-float--tl {
  top: 52%;
  left: -30px;
}

.hero-card-float--br {
  bottom: 40px;
  right: -20px;
}

.card-float-label {
  font-size: 0.7rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.card-float-value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.card-float-value span {
  color: var(--red);
}

.card-float-sub {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ── STATS BAR ────────────────────────────────────────────── */
#stats {
  padding: 40px 0;
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item {
  padding: 32px 24px;
  background: var(--dark);
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SERVICES ─────────────────────────────────────────────── */
#services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(145deg, #e0e0e0, #d0d0d0);
}

.service-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(145deg, #E8E8E8, #D5D5D5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gray-light);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--red-alpha);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 1.3rem;
}

.service-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}

.service-card-link:hover { gap: 10px; }

/* ── METHOD / PILLARS ─────────────────────────────────────── */
#methode {
  background: var(--bg-light);
}

.methode-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.methode-img-wrap {
  position: relative;
}

.methode-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(145deg, #E0E0E0, #D0D0D0);
}

.methode-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #E8E8E8, #D8D8D8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.methode-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-red);
}

.methode-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.methode-badge-txt {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 4px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.pillar-content {}

.pillar-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about {
  background: var(--bg-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #E8E8E8, #D8D8D8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--red-alpha);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-deco-2 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-text {}

.about-quote {
  background: var(--red-alpha);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 28px;
  font-style: italic;
  font-size: 1rem;
  color: var(--red-dark);
  font-weight: 500;
}

.about-body {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.skill-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-dark);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#temoignages {
  background: var(--bg-light);
}

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

.temoignage-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

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

.temoignage-quote-icon {
  font-size: 3.5rem;
  color: var(--red);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.3;
}

.temoignage-text {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.temoignage-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.temoignage-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.temoignage-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.temoignage-info {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.temoignage-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ── GOOGLE REVIEWS ───────────────────────────────────────── */
#avis-google {
  background: var(--bg-white);
}

.google-rating-header {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
}

.g-blue   { color: #4285F4; }
.g-red    { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green  { color: #34A853; }

.google-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.google-score-big {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.google-stars-row {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  font-size: 1.3rem;
  margin: 8px 0 4px;
}

.google-review-count {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.google-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.google-review-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: #E0E0E0;
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.google-reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.google-reviewer-date {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 2px;
}

.google-review-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.google-review-text {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

/* ── PRICING ──────────────────────────────────────────────── */
#tarifs {
  background: var(--bg-light);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tarif-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

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

.tarif-card--featured {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-8px);
}

.tarif-card--featured:hover {
  transform: translateY(-12px);
}

.tarif-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.tarif-card--featured .tarif-header {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.tarif-badge {
  display: inline-block;
  background: var(--red-alpha);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.tarif-card--featured .tarif-badge {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.tarif-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tarif-card--featured .tarif-name { color: #fff; }

.tarif-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 4px;
}

.tarif-card--featured .tarif-price { color: #fff; }

.tarif-price-note {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.tarif-card--featured .tarif-price-note { color: rgba(255,255,255,0.75); }

.tarif-body {
  padding: 24px 28px 28px;
}

.tarif-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.tarif-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.tarif-feature-check {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── BLOG ─────────────────────────────────────────────────── */
#blog {
  background: var(--bg-white);
}

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

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(145deg, #E5E5E5, #D5D5D5);
}

.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(145deg, #E8E8E8, #D8D8D8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-cat {
  display: inline-block;
  background: var(--red-alpha);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--gray-light);
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-card-link:hover { gap: 8px; }

/* ── CTA SECTION ──────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-title span { color: var(--red); }

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* ── LOCALISATION ─────────────────────────────────────────── */
#localisation {
  padding: 0;
}

.localisation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.localisation-map {
  height: 450px;
}

.localisation-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.localisation-info {
  background: var(--dark);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.localisation-info .section-tag { color: rgba(255,255,255,0.5); }
.localisation-info .section-tag::before { background: rgba(255,255,255,0.2); }

.localisation-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
}

.contact-item-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-item-value a {
  color: #fff;
  transition: var(--transition);
}

.contact-item-value a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--red);
  color: #fff;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #0A0A0A;
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

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

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--red); }

/* ── FLOATING WHATSAPP ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-tooltip {
  background: var(--dark);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,51,41,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-light);
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── BREADCRUMB / PAGE HERO ───────────────────────────────── */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.page-hero-title span { color: var(--red); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.breadcrumb a { color: var(--red); }

/* ── ANIMATIONS (initial states) ─────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.anim-fade-in {
  opacity: 0;
}

.anim-scale-up {
  opacity: 0;
  transform: scale(0.95);
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-content { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .methode-content { gap: 48px; }
  .about-content { gap: 48px; }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .tarif-card--featured { transform: none; }
  .tarif-card--featured:hover { transform: translateY(-4px); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .cta-content { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; flex-direction: row; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; --nav-h: 68px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn { display: none; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-title { font-size: 2.2rem; }

  .methode-content { grid-template-columns: 1fr; }
  .methode-img-wrap { display: none; }

  .about-content { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }

  .temoignages-grid { grid-template-columns: 1fr; }

  .localisation-grid { grid-template-columns: 1fr; }
  .localisation-info { padding: 40px 24px; }
  .localisation-map { height: 300px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .blog-grid { grid-template-columns: 1fr; }

  .google-rating-header { flex-direction: column; gap: 24px; text-align: center; }
  .google-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; max-width: 100%; }

  .hero-ctas { flex-direction: column; }
  .cta-content { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }

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

  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-float-btn { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .tarifs-grid { max-width: 100%; }
  .stat-number { font-size: 1.8rem; }
}
