/* ==== ERA CORNELIS — BRAND GUIDE COMPLIANT ==== */
:root {
  --era-red: #D70A28;
  --era-red-dark: #960E34;
  --era-blue: #000086;
  --era-blue-dark: #00003C;
  --era-dark: #00003C;
  --era-gray: #6D6E71;
  --era-gray-light: #E6E7E8;
  --era-warm: #FAFAFA;
  --era-border: #E5E5E5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--era-gray);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Gotham', sans-serif;
  color: var(--era-blue-dark);
  letter-spacing: -0.02em;
  font-weight: 900;
}
h1 { text-transform: uppercase; }
img { max-width: 100%; display: block; }
a { color: var(--era-red); text-decoration: none; }
a:hover { color: var(--era-red-dark); }

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--era-border);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo img { height: 55px; width: auto; }
nav { display: flex; gap: 32px; align-items: center; }
nav a {
  color: var(--era-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--era-red); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--era-red);
}
nav .btn-nav {
  background: var(--era-red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
nav .btn-nav:hover { background: var(--era-red-dark); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--era-dark);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.btn-primary, .btn:not(.btn-outline):not(.btn-white):not(.btn-white-outline) {
  background: var(--era-red);
  color: #fff !important;
}
.btn-primary:hover { background: var(--era-red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(215,10,40,0.3); }
.btn-outline {
  background: transparent;
  border-color: var(--era-red);
  color: var(--era-red) !important;
}
.btn-outline:hover { background: var(--era-red); color: #fff !important; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--era-red) !important;
}
.btn-white:hover { background: var(--era-warm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white-outline {
  background: transparent;
  border-color: #fff;
  color: #fff !important;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* === HERO SPLIT === */
.hero-split {
  background: linear-gradient(135deg, var(--era-red) 0%, #a00820 100%);
  color: #fff;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-split::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.hero-accent {
  font-style: italic;
  opacity: 0.95;
  background: linear-gradient(90deg, #fff, #FFEEE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.95;
}
.hero-trust span { font-weight: 600; }

/* === HERO PHOTOS === */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  z-index: 2;
}
.hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 4px solid rgba(255,255,255,0.2);
  transition: transform 0.4s;
}
.hero-photo:hover { transform: translateY(-6px); }
.hero-photo-raphael { transform: translateY(-30px); }
.hero-photo-eloise { transform: translateY(30px); }
.hero-photo:hover.hero-photo-raphael { transform: translateY(-36px); }
.hero-photo:hover.hero-photo-eloise { transform: translateY(24px); }
.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.hero-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  padding: 20px 16px 14px;
  text-align: center;
}
.hero-photo-label strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-photo-label small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--era-warm);
  padding: 24px 24px;
  border-bottom: 1px solid var(--era-border);
}
.trust-items {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--era-gray);
}
.trust-icon { font-size: 1.3rem; }

/* === SECTION === */
.section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-light { background: #fff; }
.section-warm { background: var(--era-warm); max-width: none; }
.section-warm > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-stats { background: var(--era-gray-light); max-width: none; padding: 80px 24px; }
.section-stats > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--era-blue-dark);
}
.section-header p {
  font-size: 1.1rem;
  color: var(--era-gray);
  max-width: 600px;
  margin: 0 auto;
}
.accent-line {
  width: 60px;
  height: 4px;
  background: var(--era-red);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  padding: 32px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--era-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat.animated, .stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(215,10,40,0.15);
  border-color: var(--era-red);
}
.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--era-red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-family: 'Montserrat', sans-serif;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--era-gray);
  font-weight: 600;
}

/* === GRID CARDS === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--era-border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--era-red);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p {
  color: var(--era-gray);
  font-size: 0.95rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--era-red);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--era-border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.pricing-card-featured {
  border-color: var(--era-red);
  border-width: 3px;
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(215,10,40,0.15);
  z-index: 2;
}
.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 70px rgba(215,10,40,0.25);
}
.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--era-red);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(215,10,40,0.3);
}
.pricing-card-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--era-border);
  margin-bottom: 24px;
}
.pricing-card-header h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--era-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.pricing-card-desc {
  font-size: 0.9rem;
  color: var(--era-gray);
}
.pricing-card-price {
  text-align: center;
  margin-bottom: 32px;
}
.pricing-card-price .price {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--era-red);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.pricing-card-price .price small {
  font-size: 1.8rem;
  font-weight: 800;
  margin-left: 4px;
}
.pricing-card-price .price-combo {
  font-size: 2.6rem;
  letter-spacing: -0.02em;
}
.pricing-card-price .price-combo small {
  font-size: 2rem;
}
.pricing-card-price .price-unit strong {
  color: var(--era-red);
  font-weight: 800;
}
.pricing-card-price .price-unit {
  display: block;
  font-size: 0.85rem;
  color: var(--era-gray);
  margin-top: 6px;
  font-weight: 500;
}
.pricing-card-price .price-unit small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--era-dark);
  border-bottom: 1px solid var(--era-gray-light);
}
.pricing-features li.disabled {
  color: #bbb;
  text-decoration: line-through;
}
.pricing-card-cta {
  text-align: center;
}
.pricing-card-cta .btn {
  width: 100%;
}
.pricing-note {
  text-align: center;
  color: var(--era-gray);
  font-size: 0.9rem;
  max-width: 700px;
  margin: 24px auto 0;
  font-style: italic;
}

/* === REVIEWS CAROUSEL === */
.google-rating-header {
  text-align: center;
  margin-bottom: 40px;
}
.google-stars {
  font-size: 1.8rem;
  color: #FFA500;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.google-score {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--era-gray);
}
.reviews-carousel {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: flex;
  gap: 24px;
  animation: scroll-reviews 80s linear infinite;
  width: max-content;
}
.reviews-track:hover {
  animation-play-state: paused;
}
.testimonial {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--era-border);
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #FFA500;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.testimonial p {
  color: var(--era-dark);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.55;
}
.testimonial-author {
  font-weight: 700;
  color: var(--era-dark);
  font-size: 0.95rem;
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--era-gray);
  margin-top: 2px;
}
@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-384px * 10)); }
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--era-dark) 0%, #2a2a2a 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--era-red);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CONTACT FORM === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--era-border);
}
.contact-form h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-form .form-intro {
  color: var(--era-gray);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--era-dark);
}
.form-group label .req { color: var(--era-red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--era-border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--era-red);
  box-shadow: 0 0 0 3px rgba(215,10,40,0.1);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--era-gray);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--era-red);
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  background: var(--era-red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}
.form-submit:hover {
  background: var(--era-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(215,10,40,0.3);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--era-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-info-card .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-card p, .contact-info-card a {
  color: var(--era-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--era-red); }
.contact-info-map {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--era-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-info-map iframe { width: 100%; height: 100%; border: 0; }

/* === FOOTER === */
.footer {
  background: var(--era-dark);
  color: #fff;
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
}
.footer p, .footer li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

/* === RESPONSIVE === */

/* Tablette (<= 1024px) */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-buttons, .hero-trust { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-8px); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .section-stats { padding: 60px 20px; }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  body { font-size: 15px; }

  /* HEADER */
  .header-inner { padding: 12px 16px; }
  .logo img { height: 44px; }
  nav {
    display: none;
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 0;
    gap: 0;
  }
  nav.open { display: flex; }
  nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--era-gray-light);
    width: 100%;
  }
  nav a:last-child { border-bottom: none; }
  nav .btn-nav {
    margin-top: 8px;
    text-align: center;
  }
  nav a.active::after { display: none; }
  .menu-toggle { display: flex; }

  /* HERO */
  .hero-split {
    padding: 50px 18px 60px;
    gap: 32px;
  }
  .hero-content h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.1;
  }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; }
  .hero-trust { justify-content: center; gap: 14px; font-size: 0.82rem; }
  .hero-badge { font-size: 0.78rem; margin-bottom: 16px; }

  /* HERO PHOTOS — plus équilibré sur mobile */
  .hero-photos {
    max-width: 340px;
    margin: 0 auto;
    gap: 14px;
  }
  .hero-photo { border-width: 3px; border-radius: 16px; }
  .hero-photo-raphael { transform: translateY(-12px); }
  .hero-photo-eloise { transform: translateY(12px); }
  .hero-photo:hover.hero-photo-raphael,
  .hero-photo:hover.hero-photo-eloise { transform: translateY(0); }
  .hero-photo-label { padding: 14px 8px 10px; }
  .hero-photo-label strong { font-size: 0.95rem; }
  .hero-photo-label small { font-size: 0.68rem; }

  /* TRUST BAR */
  .trust-bar { padding: 18px 16px; }
  .trust-items { gap: 14px; flex-direction: column; align-items: flex-start; }
  .trust-item { font-size: 0.88rem; }

  /* SECTIONS */
  .section { padding: 50px 18px; }
  .section-stats { padding: 50px 18px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header p { font-size: 1rem; }

  /* STATS */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat { padding: 24px 12px; border-radius: 12px; }
  .stat-number { font-size: clamp(2rem, 8vw, 2.6rem); }
  .stat-label { font-size: 0.82rem; }

  /* CARDS */
  .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 26px 20px; }
  .card h3 { font-size: 1.1rem; }
  .card p { font-size: 0.92rem; }

  /* PRICING */
  .pricing-grid { gap: 20px; max-width: 100%; }
  .pricing-card { padding: 32px 22px; border-radius: 16px; }
  .pricing-card-featured { padding: 36px 24px; }
  .pricing-ribbon { font-size: 0.68rem; padding: 5px 16px; top: -12px; }
  .pricing-card-header h3 { font-size: 1.2rem; }
  .pricing-card-desc { font-size: 0.85rem; }
  .pricing-card-price .price { font-size: 3rem; }
  .pricing-card-price .price small { font-size: 1.4rem; }
  .pricing-card-price .price-combo { font-size: 2rem; }
  .pricing-card-price .price-combo small { font-size: 1.5rem; }
  .pricing-card-price .price-unit { font-size: 0.82rem; }
  .pricing-features li { padding: 8px 0; font-size: 0.88rem; }
  .pricing-note { font-size: 0.82rem; padding: 0 10px; }

  /* REVIEWS CAROUSEL */
  .testimonial {
    flex: 0 0 280px;
    padding: 22px 18px;
  }
  .testimonial p { font-size: 0.88rem; }
  .google-stars { font-size: 1.5rem; }
  .google-score { font-size: 0.95rem; }
  @keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-304px * 10)); }
  }

  /* CTA */
  .cta-banner { padding: 50px 18px; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-banner p { font-size: 1rem; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons .btn { width: 100%; }

  /* CONTACT */
  .contact-wrap { gap: 28px; }
  .contact-form { padding: 24px 18px; border-radius: 16px; }
  .contact-form h2 { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 14px; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    font-size: 16px; /* évite zoom auto iOS */
  }
  .form-submit { padding: 14px; font-size: 1rem; }

  .contact-info-card { padding: 22px 18px; }
  .contact-info-map { height: 200px; }

  /* FOOTER */
  .footer { padding: 40px 18px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer h4 { font-size: 1rem; }
  .footer p, .footer li { font-size: 0.88rem; }

  /* TEAM */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-member-info { padding: 14px 10px; }
  .team-member-info h3 { font-size: 0.98rem; }
  .team-member-info p { font-size: 0.75rem; }
}

/* Très petit mobile (<= 380px) */
@media (max-width: 380px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-photos { max-width: 280px; }
  .stats { grid-template-columns: 1fr; }
  .trust-bar { padding: 14px; }
  .pricing-card-price .price { font-size: 2.5rem; }
}
