/* ═══════════════════════════════════════════════════
   SMARTECH — Site Vitrine Pro
   Thème clair, accents bleu tech + vert vif
   Inter, 15px body, animations soignées
   ═══════════════════════════════════════════════════ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f8fafc;
  --card:      #ffffff;
  --text:      #1e293b;
  --text2:     #475569;
  --text3:     #94a3b8;
  --accent:    #0494fc;
  --accent-dk: #0370c0;
  --accent-lt: #cce8ff;
  --green:     #34fc04;
  --green-dk:  #1fb500;
  --green-lt:  #d4ffcc;
  --eco:       #34fc04;
  --eco-dk:    #1fb500;
  --eco-lt:    #d4ffcc;
  --red:       #ef4444;
  --red-lt:    #fee2e2;
  --border:    #e2e8f0;
  --border-lt: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.10);
  --radius:    16px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.page { width: 100%; max-width: 1440px; margin: 0 auto; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dk); }
em { font-style: normal; color: var(--green); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; width: 100%; max-width: 1440px; z-index: 1000;
  background: rgba(255,255,255,.94); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 6%, 80px); height: 72px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; }
.header-nav { display: flex; gap: 30px; align-items: center; }
.header-nav a {
  color: var(--text2); font-size: 14px; font-weight: 500;
  letter-spacing: .01em; white-space: nowrap; position: relative;
  padding: 6px 0; transition: color .2s;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width .25s ease;
}
.header-nav a:hover, .header-nav a.active { color: var(--accent); }
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }

.header-cta {
  background: var(--eco); color: #fff !important; font-weight: 600;
  font-size: 14px; padding: 10px 22px; border-radius: 50px;
  white-space: nowrap; transition: all .25s;
  box-shadow: 0 2px 8px rgba(52,252,4,.25);
}
.header-cta:hover {
  background: var(--green-dk); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,252,4,.35);
}

/* Hamburger */
.hamburger { display: none; position: relative; }
.hamburger summary {
  list-style: none; cursor: pointer; padding: 8px;
  display: flex; flex-direction: column; gap: 5px;
}
.hamburger summary::-webkit-details-marker { display: none; }
.hamburger summary span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .25s;
}
.hamburger[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.hamburger[open] summary span:nth-child(2) { opacity: 0; }
.hamburger[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }
.hamburger-drop {
  position: absolute; top: 52px; right: 0; width: 240px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 0; z-index: 200;
  box-shadow: var(--shadow-xl);
}
.hamburger-drop a {
  display: block; padding: 13px 24px; color: var(--text);
  font-size: 15px; font-weight: 500; transition: all .15s;
}
.hamburger-drop a:hover { background: var(--accent-lt); color: var(--accent); }
.hamburger-drop a.active { color: var(--accent); font-weight: 600; }
.hamburger-cta {
  background: var(--green-lt) !important; color: var(--green-dk) !important;
  margin: 8px 16px; border-radius: 50px !important; text-align: center; font-weight: 600 !important;
}

/* ===== HERO ===== */
.hero {
  position: relative; padding: clamp(130px, 16vw, 180px) 6% clamp(70px, 10vw, 110px);
  text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(160deg, #012d4a 0%, #025a8c 40%, #037cc4 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero_repair-8b931fc3.jpg') center/cover no-repeat;
  opacity: .13;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(4,148,252,.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px); color: #fff;
  font-size: 13px; font-weight: 600; padding: 8px 22px;
  border-radius: 50px; margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.25);
  animation: fadeInUp .6s ease;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); font-weight: 900;
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 22px;
  animation: fadeInUp .6s ease .1s both;
}
.hero-desc {
  font-size: clamp(16px, 2.2vw, 19px); opacity: .9;
  margin-bottom: 38px; line-height: 1.7; max-width: 600px;
  margin-left: auto; margin-right: auto;
  animation: fadeInUp .6s ease .2s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp .6s ease .3s both;
}
.hero-trust {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px; font-size: 13px; opacity: .75; font-weight: 500;
  animation: fadeInUp .6s ease .4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all .25s ease; cursor: pointer; border: none;
  line-height: 1.2;
}
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-primary {
  background: var(--eco); color: #fff;
  box-shadow: 0 4px 16px rgba(52,252,4,.30);
}
.btn-primary:hover { background: var(--green-dk); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(52,252,4,.40); }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--accent-dk); border-color: #fff; transform: translateY(-3px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(4,148,252,.25); }
.btn-accent:hover { background: var(--accent-dk); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(4,148,252,.35); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.25); }
.btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,.35); }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1000px; margin: -50px auto 0;
  position: relative; z-index: 10;
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  overflow: hidden;
}
.stat-item {
  text-align: center; padding: 28px 16px;
  border-right: 1px solid var(--border-lt);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--accent-lt); }
.stat-num {
  display: block; font-size: 28px; font-weight: 800; color: var(--accent);
  margin-bottom: 4px;
}
.stat-label { display: block; font-size: 13px; color: var(--text2); font-weight: 500; }

/* ===== SECTION BASICS ===== */
.section { padding: clamp(60px, 8vw, 90px) clamp(20px, 6%, 80px); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; color: var(--accent); font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px; background: var(--accent-lt);
  padding: 6px 16px; border-radius: 50px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 700;
  letter-spacing: -.01em; margin-bottom: 14px; color: var(--text);
}
.section-subtitle {
  color: var(--text2); font-size: 17px; max-width: 540px;
  margin: 0 auto; line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent-lt); }
.card-img-wrap { position: relative; }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--eco); color: #fff; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 50px;
}
.card-badge.accent { background: var(--accent); }
.card-body { padding: 24px 26px 26px; }
.card-body h3 { font-size: 20px; margin-bottom: 8px; font-weight: 700; letter-spacing: -.01em; }
.card-body p { color: var(--text2); font-size: 14px; margin-bottom: 18px; line-height: 1.65; }
.card-price-row { display: flex; align-items: center; justify-content: space-between; }
.card-price {
  display: inline-block; background: var(--green-lt); color: var(--green-dk);
  font-weight: 700; font-size: 19px; padding: 6px 14px; border-radius: 50px;
}
.card-link {
  color: var(--accent); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px; transition: gap .2s;
}
.card-link:hover { gap: 8px; color: var(--accent-dk); }

/* ===== PRICING ===== */
.pricing-section { background: linear-gradient(180deg, var(--bg) 0%, var(--card) 100%); }
.pricing-grid { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 24px;
  transition: all .25s; flex-wrap: wrap; gap: 12px; position: relative; overflow: hidden;
}
.price-row:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateX(4px); }
.price-row.highlight { border-color: var(--green); background: var(--green-lt); }
.price-tag {
  position: absolute; top: -1px; right: -1px;
  background: var(--eco); color: #fff; font-size: 10px; font-weight: 700;
  text-transform: uppercase; padding: 6px 14px 6px 18px;
  border-radius: 0 var(--radius-sm) 0 var(--radius-sm);
}
.price-info { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 200px; }
.price-icon-wrap { font-size: 28px; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent-lt); border-radius: 12px; }
.price-detail h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.price-detail span { font-size: 13px; color: var(--text2); }
.price-amount { font-size: 26px; font-weight: 800; color: var(--accent); white-space: nowrap; }
.price-amount .from { font-size: 13px; font-weight: 500; color: var(--text2); }
.price-amount .devis { font-size: 16px; font-weight: 600; color: var(--green-dk); background: var(--green-lt); padding: 6px 14px; border-radius: 50px; }
.pricing-note { text-align: center; margin-top: 28px; color: var(--text2); font-size: 14px; }

/* ===== WHY US ===== */
.why-section { background: var(--card); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.why-card {
  text-align: center; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px 26px; transition: all .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-lt); }
.why-icon { font-size: 44px; margin-bottom: 16px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.why-card p { color: var(--text2); font-size: 14px; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%); }
.testimonials-rating { color: var(--green); font-weight: 600; font-size: 15px; margin-top: 8px; }
.testimonials-rating .stars { font-size: 20px; letter-spacing: 2px; margin-right: 6px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow); transition: transform .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--green); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { color: var(--accent); font-size: 13px; font-weight: 600; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }
.faq-grid { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: all .2s;
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--accent);
  transition: transform .3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--text2); font-size: 14px; line-height: 1.7; }

/* ===== CTA URGENCE ===== */
.cta-urgence {
  background: linear-gradient(135deg, #012d4a, #025a8c, #037cc4);
  color: #fff; position: relative; overflow: hidden;
}
.cta-urgence::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(52,252,4,.15) 0%, transparent 50%);
}
.cta-urgence-content {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-urgence-text h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin-bottom: 10px; }
.cta-urgence-text h2 em { color: var(--green); }
.cta-urgence-text p { opacity: .85; font-size: 16px; }
.cta-urgence-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a; color: #cbd5e1;
  padding: 56px clamp(20px, 6%, 80px) 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { color: #94a3b8; font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.footer-trust { display: flex; gap: 16px; font-size: 12px; color: #64748b; }
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 18px; color: #fff; font-weight: 700;
}
.footer-col p, .footer-col a {
  display: block; color: #94a3b8; font-size: 13px;
  text-decoration: none; margin-bottom: 10px; line-height: 1.6; transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 13px; color: #64748b;
}
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: #1e293b; color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-icon:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ===== SERVICES PAGE ===== */
.services-hero {
  padding: 160px 6% 60px; text-align: center;
  background: linear-gradient(135deg, var(--accent-lt) 0%, var(--bg) 100%);
}
.services-hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; margin-bottom: 14px; }
.services-hero p { color: var(--text2); font-size: 17px; max-width: 500px; margin: 0 auto; }

.service-detail-block {
  max-width: 1000px; margin: 50px auto 30px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.service-detail-block img { width: 100%; height: 260px; object-fit: cover; }
.service-detail-body { padding: 34px 30px; }
.service-detail-body h2 { font-size: 25px; margin-bottom: 12px; font-weight: 700; }
.service-detail-body > p { color: var(--text2); margin-bottom: 24px; line-height: 1.7; }

.price-list { list-style: none; margin-bottom: 24px; display: grid; gap: 2px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 16px; border-bottom: 1px solid var(--border-lt);
  flex-wrap: wrap; gap: 8px; border-radius: 8px; transition: background .15s;
}
.price-list li:hover { background: var(--accent-lt); }
.price-list li:last-child { border-bottom: none; }
.price-list .item-name { font-weight: 500; }
.price-list .item-price { font-weight: 700; color: var(--accent); font-size: 17px; white-space: nowrap; }

.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-lt); color: #1fb500;
  padding: 10px 20px; border-radius: 50px;
  font-weight: 600; font-size: 14px; margin-top: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 160px 6% 80px; max-width: 1100px; margin: 0 auto; }
.contact-section h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 56px; text-align: center; font-weight: 800; letter-spacing: -.02em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h3 { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; font-weight: 700; }
.contact-info p, .contact-info a { display: block; color: var(--text2); margin-bottom: 26px; font-size: 16px; text-decoration: none; line-height: 1.6; }
.contact-info a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form h2 { font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.contact-form input, .contact-form textarea {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 15px 18px; color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(4,148,252,.08); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { background: var(--eco); color: #fff; border: none; padding: 16px; border-radius: 50px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .25s; }
.contact-form button:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(52,252,4,.30); }
.contact-map { margin-top: 56px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

/* ===== ECOLOGIE PAGE ===== */
.eco-hero {
  padding: 160px 6% 80px;
  background: linear-gradient(150deg, #0d3d01, #1a7a02, #34fc04);
  text-align: center; color: #fff;
}
.eco-hero h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 20px; font-weight: 800; }
.eco-hero p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto; font-style: italic; }
.eco-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; max-width: 1000px; margin: -40px auto 60px;
  position: relative; z-index: 2;
}
.eco-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-lg); transition: transform .25s;
}
.eco-card:hover { transform: translateY(-6px); }
.eco-card .eco-icon { font-size: 52px; margin-bottom: 18px; }
.eco-card h3 { font-size: 20px; margin-bottom: 10px; font-weight: 700; }
.eco-card p { color: var(--text2); font-size: 14px; line-height: 1.7; }
.eco-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; max-width: 800px; margin: 50px auto; }
.eco-stat { text-align: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; box-shadow: var(--shadow); }
.eco-stat .stat-num { font-size: 36px; font-weight: 800; color: var(--accent); }
.eco-stat .stat-desc { font-size: 13px; color: var(--text2); margin-top: 6px; }
.eco-impact { max-width: 700px; margin: 0 auto 60px; text-align: center; padding: 44px; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.eco-impact h2 { font-size: 26px; margin-bottom: 20px; font-weight: 700; }
.eco-impact p { color: var(--text2); font-size: 15px; line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: block; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); border-radius: 0; margin: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .cta-urgence-content { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 14px; font-size: 12px; }
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .price-row { padding: 16px; }
  .price-amount { font-size: 22px; }
}