/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  --primary:       #E8630A;
  --primary-dark:  #C4520A;
  --secondary:     #1B3A5C;
  --accent:        #27AE60;
  --accent-light:  #E8F5E9;
  --light:         #F5F7FA;
  --gray-100:      #F8F9FA;
  --gray-200:      #E9ECEF;
  --gray-400:      #CED4DA;
  --gray-600:      #6C757D;
  --gray-800:      #343A40;
  --dark:          #1A1A2E;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.15);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    0.2s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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; font-size: inherit; }
textarea, input, select { font-family: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { line-height: 1.75; }
.highlight { color: var(--primary); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--secondary); color: var(--white); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn--secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn--secondary:hover {
  background: #14304E;
  border-color: #14304E;
  transform: translateY(-2px);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn--full { width: 100%; }
.btn--large { padding: 18px 40px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,99,10,0.12);
}
.form-control.is-invalid { border-color: #E74C3C; }
.form-control::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* Honeypot */
.honeypot { display: none !important; visibility: hidden !important; position: absolute; }

/* Choice buttons */
.choice-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.choice-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
}
.choice-btn:hover {
  border-color: var(--primary);
  background: #FFF5F0;
  color: var(--primary);
  transform: translateX(4px);
}
.choice-btn.selected {
  border-color: var(--primary);
  background: #FFF5F0;
  color: var(--primary);
}
.choice-icon { font-size: 1.4rem; width: 36px; text-align: center; flex-shrink: 0; }

/* Form card (hero) */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.form-card__header { margin-bottom: 24px; }
.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar__fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.form-step-label { font-size: 0.82rem; color: var(--gray-600); font-weight: 500; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--secondary);
}
.form-legal {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 12px;
  line-height: 1.6;
}
.form-legal a { color: var(--primary); text-decoration: underline; }

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 9px 0;
  font-size: 0.85rem;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--primary); }
.top-bar__phone { font-weight: 700; font-size: 0.92rem; }
.top-bar__badges { display: flex; gap: 20px; align-items: center; }
.top-bar__badge { display: flex; align-items: center; gap: 5px; opacity: 0.9; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.site-logo__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--secondary);
  line-height: 1.2;
  display: block;
}
.site-logo__tagline {
  font-size: 0.68rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
}
.primary-nav { display: flex; align-items: center; gap: 0; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 24px;
}
.primary-nav a {
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.93rem;
  transition: color var(--transition);
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.primary-nav a:hover { color: var(--primary); }
.primary-nav a:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(140deg, var(--secondary) 0%, #243B55 55%, #1a3350 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 550px; height: 550px;
  background: var(--primary);
  opacity: 0.07;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -80px;
  width: 420px; height: 420px;
  background: var(--accent);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}
.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band { background: var(--primary); padding: 28px 0; }
.stats-band__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-item__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.stat-item__label { font-size: 0.82rem; opacity: 0.9; margin-top: 4px; }

/* ═══════════════════════════════════════════
   AIDS CARDS
═══════════════════════════════════════════ */
.aids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.aid-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.aid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-400);
}
.aid-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.aid-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--secondary);
}
.aid-card__amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.aid-card__desc { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0.25;
}
.step-item { text-align: center; }
.step-item__number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(232,99,10,0.3);
}
.step-item__title { font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.step-item__desc { color: var(--gray-600); font-size: 0.92rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   SERVICES CARDS
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.service-card__body { padding: 24px; }
.service-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--secondary);
}
.service-card__desc { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.65; }
.service-card__price { font-size: 0.83rem; color: var(--primary); font-weight: 700; }

/* ═══════════════════════════════════════════
   PRICE TABLE
═══════════════════════════════════════════ */
.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.price-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.price-table th {
  background: var(--secondary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.price-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.price-table tr:nth-child(even) td { background: var(--gray-100); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .price-cell { font-weight: 800; color: var(--primary); white-space: nowrap; }

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 36px;
}
.why-item { text-align: center; }
.why-item__icon { font-size: 3rem; margin-bottom: 14px; }
.why-item__title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--secondary); }
.why-item__desc { color: var(--gray-600); font-size: 0.88rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card__stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card__text {
  color: var(--gray-800);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.88rem; }
.testimonial-card__location { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }

/* ═══════════════════════════════════════════
   ZONES
═══════════════════════════════════════════ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.zones-list { columns: 2; gap: 16px; }
.zones-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  break-inside: avoid;
  color: var(--gray-800);
}
.zones-list li::before { content: '📍'; font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  background: var(--white);
  transition: background var(--transition);
  color: var(--secondary);
  width: 100%;
  text-align: left;
  gap: 16px;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.active { background: #FFF5F0; color: var(--primary); }
.faq-chevron {
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--gray-600);
}
.faq-question.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}
.faq-answer.active { display: block; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col__title {
  color: var(--white);
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}
.footer-col p { font-size: 0.87rem; line-height: 1.75; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--primary); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════
   PAGE DEVIS
═══════════════════════════════════════════ */
.devis-hero {
  background: linear-gradient(140deg, var(--secondary) 0%, #243B55 100%);
  padding: 60px 0;
  text-align: center;
}
.devis-hero h1 { color: var(--white); margin-bottom: 10px; }
.devis-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.devis-content { padding: 60px 0; background: var(--light); min-height: 70vh; }
.devis-wrapper { max-width: 680px; margin: 0 auto; }
.devis-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  padding: 0 20px;
}
.devis-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gray-200);
  transform: translateY(-50%);
  z-index: 0;
}
.devis-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--gray-600);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}
.devis-step-dot.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(232,99,10,0.2);
}
.devis-step-dot.completed {
  background: var(--accent);
  color: var(--white);
}
.devis-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.devis-step { display: none; }
.devis-step.active { display: block; }
.devis-step h2 {
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
.devis-step .step-desc { color: var(--gray-600); margin-bottom: 26px; font-size: 0.93rem; }
.devis-step .choice-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.devis-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}
.btn-back {
  background: none;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-back:hover { border-color: var(--gray-400); color: var(--gray-800); }

/* ═══════════════════════════════════════════
   PAGE SERVICES (sections alternées)
═══════════════════════════════════════════ */
.services-hero {
  background: linear-gradient(140deg, var(--secondary) 0%, #243B55 100%);
  padding: 60px 0;
  text-align: center;
}
.services-hero h1 { color: var(--white); margin-bottom: 10px; }
.services-hero p { color: rgba(255,255,255,0.85); }
.service-section { padding: 80px 0; }
.service-section:nth-child(even) { background: var(--light); }
.service-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.service-section__img {
  border-radius: var(--radius);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
}
.service-section h2 { margin-bottom: 14px; color: var(--secondary); }
.service-section p { color: var(--gray-600); margin-bottom: 14px; line-height: 1.75; }
.feature-list { margin: 16px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 0.93rem;
  color: var(--gray-800);
  line-height: 1.6;
}
.feature-list li::before { content: '✅'; flex-shrink: 0; margin-top: 1px; }
.price-range {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.price-range__label { font-size: 0.87rem; color: var(--gray-600); }
.price-range__value { font-weight: 800; font-size: 1.15rem; color: var(--primary); white-space: nowrap; }

/* ═══════════════════════════════════════════
   PAGE CONTACT
═══════════════════════════════════════════ */
.contact-content { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h2 { margin-bottom: 14px; color: var(--secondary); }
.contact-info p { color: var(--gray-600); margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item__icon {
  width: 46px;
  height: 46px;
  background: #FFF5F0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item__label { font-weight: 700; margin-bottom: 3px; color: var(--secondary); font-size: 0.9rem; }
.contact-info-item__value { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 36px;
}

/* ═══════════════════════════════════════════
   PAGE MERCI
═══════════════════════════════════════════ */
.merci-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: var(--light);
}
.merci-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 580px;
  width: 100%;
}
.merci-icon { font-size: 3.5rem; margin-bottom: 20px; }
.merci-card h1 { color: var(--secondary); margin-bottom: 14px; }
.merci-card p { color: var(--gray-600); font-size: 1.02rem; margin-bottom: 28px; line-height: 1.75; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-hero {
  background: linear-gradient(140deg, var(--secondary) 0%, #243B55 100%);
  padding: 60px 0;
  text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 10px; }
.blog-hero p { color: rgba(255,255,255,0.85); }
.blog-content { padding: 64px 0; background: var(--light); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__thumb {
  height: 190px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.blog-card__body { padding: 22px; }
.blog-card__meta {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 9px;
  display: flex;
  gap: 12px;
}
.blog-card__title {
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 10px;
  color: var(--secondary);
  line-height: 1.4;
}
.blog-card__title a:hover { color: var(--primary); }
.blog-card__excerpt { color: var(--gray-600); font-size: 0.88rem; line-height: 1.65; margin-bottom: 14px; }
.blog-card__link { font-size: 0.88rem; color: var(--primary); font-weight: 600; }
.blog-card__link:hover { text-decoration: underline; }

/* Single post */
.single-hero { background: var(--secondary); padding: 60px 0; }
.single-hero h1 { color: var(--white); max-width: 760px; margin-bottom: 14px; }
.post-meta { color: rgba(255,255,255,0.65); font-size: 0.87rem; }
.post-content-area { max-width: 780px; margin: 0 auto; padding: 56px 20px 80px; }
.post-content-area h2 { color: var(--secondary); margin: 44px 0 16px; }
.post-content-area h3 { color: var(--secondary); margin: 32px 0 12px; }
.post-content-area p { color: var(--gray-800); margin-bottom: 20px; line-height: 1.8; }
.post-content-area ul, .post-content-area ol { margin: 14px 0 20px 22px; color: var(--gray-800); }
.post-content-area li { margin-bottom: 7px; line-height: 1.7; }
.post-content-area table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.93rem; }
.post-content-area table th { background: var(--secondary); color: var(--white); padding: 11px 14px; text-align: left; }
.post-content-area table td { padding: 9px 14px; border-bottom: 1px solid var(--gray-200); }
.post-content-area table tr:nth-child(even) td { background: var(--gray-100); }
.post-cta-box {
  background: linear-gradient(140deg, var(--secondary) 0%, #243B55 100%);
  border-radius: var(--radius);
  padding: 36px;
  margin: 48px 0;
  text-align: center;
}
.post-cta-box h3 { color: var(--white); margin-bottom: 10px; }
.post-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.text-center { text-align: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge--accent { background: var(--accent-light); color: var(--accent); }
.badge--primary { background: #FFF5F0; color: var(--primary); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  z-index: 999;
  gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 13px; font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   NAVIGATION OVERLAY (mobile)
═══════════════════════════════════════════ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.active { display: block; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (992px)
═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__text { text-align: center; }
  .hero__trust { justify-content: center; }
  .hero { padding: 64px 0 80px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .zones-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-section__inner[style*="rtl"] { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .devis-step .choice-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .top-bar__badges { display: none; }

  /* Mobile nav */
  .primary-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 28px 28px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
  }
  .primary-nav.open {
    display: flex;
    transform: translateX(0);
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .primary-nav a { font-size: 1rem; }
  .hamburger { display: flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }

  .form-card { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .devis-form-card { padding: 22px; }
  .merci-card { padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-band__inner { gap: 20px; }
  .contact-form-wrapper { padding: 24px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL (480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .aids-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .devis-progress { padding: 0; gap: 4px; }
  .devis-step-dot { width: 28px; height: 28px; font-size: 0.78rem; }
  .zones-list { columns: 1; }
  .stats-band__inner { flex-direction: column; }
  .price-range { flex-direction: column; align-items: flex-start; gap: 4px; }
}
