/* ============================================
   HELPCAR Depannage - Main Stylesheet
   Mobile-first | Modern | Conversion-focused
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #CF5706;
  --primary-dark: #b04d05;
  --primary-light: #e8732a;
  --success: #059669;
  --success-light: #10B981;
  --dark: #1A1A1A;
  --dark-light: #2a2a2a;
  --dark-medium: #333333;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 72px; /* Space for floating CTA */
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }

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

.section {
  padding: 48px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(207, 87, 6, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
}

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

.text-orange { color: var(--primary); }
.text-green { color: var(--success-light); }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 80px;
  width: auto;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
}

.header__logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.header__logo-text span {
  color: var(--primary);
}

.header__phone-desktop {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--transition);
}

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

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

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Mobile Nav --- */
.nav-mobile {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  padding: 16px;
}

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

.nav-mobile a {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--primary);
}

.nav-mobile__cta {
  display: block;
  margin-top: 16px;
  padding: 16px;
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: none !important;
}

/* --- Desktop Nav --- */
.nav-desktop {
  display: none;
}

/* --- Hero --- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 48px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(207,87,6,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero--placeholder::before {
  background: linear-gradient(to bottom, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.88) 100%);
}

.hero__bg-hint {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  color: var(--gray-400);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__bg-hint svg {
  width: 14px;
  height: 14px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 150, 105, 0.2);
  color: var(--success-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray-300);
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(207, 87, 6, 0.4);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--white {
  background: white;
  color: var(--dark);
}

.btn--white:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.btn--green {
  background: var(--success);
  color: white;
}

.btn--green:hover {
  background: #047857;
  color: white;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
}

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.section--dark .service-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.section--dark .service-card:hover {
  border-color: var(--primary);
}

.service-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--dark .service-card__photo {
  background: linear-gradient(135deg, var(--dark-medium) 0%, var(--dark) 100%);
  border-bottom-color: rgba(255,255,255,0.08);
}

.service-card__photo-icon {
  width: 32px;
  height: 32px;
  color: var(--gray-400);
  margin-bottom: 6px;
}

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

.service-card__photo-hint {
  font-size: 0.7rem;
  color: var(--gray-400);
  line-height: 1.3;
  max-width: 90%;
}

.section--dark .service-card__photo-hint {
  color: var(--gray-500);
}

.service-card__body {
  padding: 16px 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(207, 87, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__content {
  flex: 1;
  min-width: 0;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.section--dark .service-card__title {
  color: var(--white);
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.service-card__arrow {
  color: var(--gray-400);
  flex-shrink: 0;
  align-self: center;
}

.service-card:hover .service-card__arrow {
  color: var(--primary);
}

/* --- Why Us / Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.section--dark .feature-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(207, 87, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.section--dark .feature-card__desc {
  color: var(--gray-400);
}

/* --- Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step-counter;
}

.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-card__number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-card__content h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.step-card__content p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.section--dark .step-card__content p {
  color: var(--gray-400);
}

/* --- Reviews --- */
.reviews-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 280px;
  max-width: 320px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.section--dark .review-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.review-card__stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

.section--dark .review-card__text {
  color: var(--gray-300);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* --- Google Rating Badge --- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 20px;
}

.section--dark .google-badge {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.google-badge__rating {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.google-badge__stars {
  color: #FBBF24;
  font-size: 0.9rem;
}

.google-badge__count {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* --- Alternating Sections (image+text) --- */
.alternating-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.alternating-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
}

.alternating-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alternating-section__content .section-label {
  margin-bottom: 10px;
}

.alternating-section__content h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.alternating-section__content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.alternating-section__points {
  list-style: none;
  margin-bottom: 20px;
}

.alternating-section__points li {
  padding: 4px 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* --- CTA Final --- */
.cta-final {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.cta-final h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-final p {
  color: var(--gray-400);
  margin-bottom: 24px;
  font-size: 1rem;
}

.cta-final .btn {
  font-size: 1.15rem;
  padding: 16px 32px;
}

/* --- Zones Grid --- */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.zone-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.zone-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.section--dark .zone-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.zone-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zone-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(207, 87, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.zone-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.zone-card__cp {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.zone-card__arrow {
  color: var(--gray-400);
}

.zone-card:hover .zone-card__arrow {
  color: var(--primary);
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
}

.section--dark .faq-item {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  font-family: var(--font-primary);
  gap: 12px;
}

.section--dark .faq-item__question {
  color: var(--white);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item.open .faq-item__question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.section--dark .faq-item__answer-inner {
  color: var(--gray-400);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--gray-400);
}

.footer__contact-item a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  text-align: center;
}

.footer__bottom a {
  color: var(--gray-400);
}

.footer__bottom a:hover {
  color: var(--primary);
}

/* --- Floating CTA (Mobile) --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  display: flex;
  gap: 8px;
}

.floating-cta .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.9rem;
}

/* --- Pricing Factors Grid --- */
.factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.factor-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.section--dark .factor-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.factor-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(207, 87, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.factor-card__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.factor-card__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(207, 87, 6, 0.1);
}

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

/* --- Axes Routiers --- */
.axes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.axe-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.section--dark .axe-item {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.axe-item__emoji {
  font-size: 1.3rem;
}

.axe-item__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.axe-item__desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* --- Callout box --- */
.callout {
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}

.callout--green {
  border-left-color: var(--success-light);
}

.callout p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- Values / Guarantee List --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.value-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.section--dark .value-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.value-card__emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 20px 16px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.section--dark .stat-card {
  background: var(--dark-light);
  border-color: rgba(255,255,255,0.1);
}

.stat-card__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* --- Toggle Tabs --- */
.toggle-tabs {
  display: flex;
  gap: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
  overflow-x: auto;
}

.toggle-tab {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-500);
  white-space: nowrap;
  transition: all var(--transition);
}

.toggle-tab.active {
  background: var(--primary);
  color: white;
}

.toggle-tab__count {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 4px;
}

/* --- Service Detail Page --- */
.service-content {
  padding: 32px 0;
}

.service-content h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-top: 20px;
}

.service-content p {
  margin-bottom: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

.service-content strong {
  color: var(--dark);
}

/* Timeline steps inside service content */
.timeline-steps {
  margin: 20px 0;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.timeline-content {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-top: 4px;
}

.phone-link {
  color: var(--primary) !important;
  font-weight: 700;
}

/* --- Contact Info Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(207, 87, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card__label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.contact-card__value {
  font-weight: 600;
  font-size: 1rem;
}

/* --- Legal Pages --- */
.legal-content {
  padding: 32px 0;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--gray-600);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- Image Placeholder Frames --- */
.img-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border: 2px dashed var(--gray-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  min-height: 200px;
}

.img-placeholder--hero {
  aspect-ratio: 16/9;
  min-height: 220px;
  background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-medium) 100%);
  border-color: rgba(255,255,255,0.15);
}

.img-placeholder--square {
  aspect-ratio: 1/1;
}

.img-placeholder--landscape {
  aspect-ratio: 4/3;
}

.img-placeholder--wide {
  aspect-ratio: 16/9;
}

.img-placeholder__icon {
  width: 48px;
  height: 48px;
  background: rgba(207, 87, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--primary);
}

.img-placeholder--hero .img-placeholder__icon {
  background: rgba(207, 87, 6, 0.2);
}

.img-placeholder__icon svg {
  width: 24px;
  height: 24px;
}

.img-placeholder__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.img-placeholder--hero .img-placeholder__label {
  color: var(--gray-300);
}

.img-placeholder__suggestion {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.4;
  max-width: 220px;
}

.img-placeholder--hero .img-placeholder__suggestion {
  color: var(--gray-500);
}

.img-placeholder__dimensions {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.65rem;
  color: var(--gray-400);
  background: rgba(255,255,255,0.7);
  padding: 2px 6px;
  border-radius: 4px;
}

.img-placeholder--hero .img-placeholder__dimensions {
  background: rgba(0,0,0,0.4);
  color: var(--gray-400);
}

/* --- Photo Section (alternating text/image) --- */
.photo-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .photo-section {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .photo-section--reverse .photo-section__image {
    order: -1;
  }
}

@media (min-width: 1024px) {
  .photo-section {
    gap: 60px;
    padding: 80px 0;
  }
}

.photo-section__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.photo-section__image .img-placeholder {
  width: 100%;
}

.photo-section__content h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.photo-section__content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.photo-section__points {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.photo-section__points li {
  padding: 5px 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .photo-section__content h2 { font-size: 1.6rem; }
}

/* --- Quote / Citation --- */
.blockquote {
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  font-style: italic;
  color: var(--gray-600);
}

.blockquote-signature {
  font-style: normal;
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container { padding: 0 24px; }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 64px 0; }
  .section-title { font-size: 1.75rem; }
  .hero h1 { font-size: 2.25rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .factors-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .axes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }

  .hero__cta { flex-direction: row; }
  .btn--full { width: auto; }

  .alternating-section { grid-template-columns: 1fr 1fr; gap: 40px; }
  .alternating-section--reverse .alternating-section__image { order: 2; }

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

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container { padding: 0 32px; }

  h1 { font-size: 2.75rem; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 72px; }
  .hero h1 { font-size: 2.75rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .factors-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }

  .header__burger { display: none; }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .nav-desktop a {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
  }
  .nav-desktop a:hover,
  .nav-desktop a.active {
    color: var(--white);
  }
  .header__phone-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 16px;
    padding: 10px 18px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
  }
  .header__phone-desktop:hover {
    background: var(--primary-dark);
    color: white;
  }
  .header__phone-desktop svg {
    width: 18px;
    height: 18px;
  }

  .header__phone-btn { display: none; }

  .floating-cta { display: none; }
  body { padding-bottom: 0; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }

  .review-card { min-width: 340px; max-width: 380px; }
}
