/*
Theme Name:   Mon Electromenager - Astra Child
Theme URI:    https://www.mon-electromenager.ch
Description:  Thème enfant Astra pour mon-electromenager.ch
Author:       Mon Electromenager
Template:     astra
Version:      1.0.0
Text Domain:  mon-electromenager
*/

/* ═══════════════════════════════════════════════════════════
   IMPORT GOOGLE FONTS
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500&display=swap');

/* ═══════════════════════════════════════════════════════════
   VARIABLES GLOBALES
═══════════════════════════════════════════════════════════ */
:root {
  --navy:      #0A2342;
  --navy-l:    #0E3060;
  --teal:      #00A896;
  --teal-l:    #00C4B0;
  --orange:    #F05A1A;
  --orange-l:  #FF6B2B;
  --bg:        #F5F6F8;
  --white:     #FFFFFF;
  --text:      #1A1F36;
  --muted:     #6B7489;
  --border:    #E2E5ED;
  --r:         8px;
  --r-lg:      16px;
  --r-xl:      24px;
  --shadow:    0 2px 12px rgba(10,35,66,.10);
  --shadow-l:  0 8px 32px rgba(10,35,66,.14);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; }
h2 { font-size: clamp(22px, 3vw, 36px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2vw, 24px); margin-bottom: 12px; }

p { margin-bottom: 16px; color: var(--text); }
a { color: var(--teal); text-decoration: none; transition: color .18s; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 9px 0;
  width: 100%;
}
.topbar .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar-items { display: flex; gap: 20px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 5px; }

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header,
.ast-site-header-wrap {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(10,35,66,.07);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
.ast-site-identity .site-title a,
.ast-site-identity .site-title {
  font-family: var(--font-head) !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  color: var(--navy) !important;
}

/* Navigation principale */
.main-navigation .menu-item > a,
.ast-header-navigation .menu-item > a {
  font-family: var(--font-head) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  padding: 8px 14px !important;
  border-radius: var(--r) !important;
  transition: all .18s !important;
}
.main-navigation .menu-item > a:hover,
.main-navigation .current-menu-item > a,
.ast-header-navigation .menu-item > a:hover {
  color: var(--navy) !important;
  background: var(--bg) !important;
}

/* Dropdown menu */
.main-navigation .sub-menu {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: var(--shadow-l) !important;
  padding: 8px !important;
  min-width: 220px !important;
}
.main-navigation .sub-menu .menu-item > a {
  border-radius: var(--r) !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
}

/* Bouton CTA dans le menu */
.menu-item-cta > a {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.menu-item-cta > a:hover {
  background: var(--orange-l) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(240,90,26,.35) !important;
}

/* ═══════════════════════════════════════════════════════════
   BOUTONS GLOBAUX
═══════════════════════════════════════════════════════════ */
.btn-primary,
.wp-block-button__link,
a.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff !important;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,90,26,.35);
  color: #fff !important;
}

.btn-secondary,
a.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   BARRE DE CONFIANCE (TRUST BAR)
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  width: 100%;
}
.trust-bar .inside {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.trust-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTIONS
═══════════════════════════════════════════════════════════ */
.hero-ville,
.hero-croisee {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  padding: 60px 0 72px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero-ville::before,
.hero-croisee::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-ville h1,
.hero-croisee h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-ville .btn-secondary,
.hero-croisee .btn-secondary {
  color: #fff !important;
  border-color: rgba(255,255,255,.4);
}
.hero-ville .btn-secondary:hover,
.hero-croisee .btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.badges span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════
   GRILLE SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.service-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-item:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-l);
}
.service-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.service-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.service-item a {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
   PROCESSUS 3 ÉTAPES
═══════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.7% + 10px);
  right: calc(16.7% + 10px);
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg, var(--teal) 0, var(--teal) 10px,
    transparent 10px, transparent 22px
  );
}
.step {
  text-align: center;
  padding: 20px 16px;
}
.step strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0,168,150,.4);
  position: relative;
  z-index: 1;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   ENGAGEMENTS / TARIFS
═══════════════════════════════════════════════════════════ */
.entry-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.entry-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.entry-content ul li:last-child { border-bottom: none; }
.entry-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq { margin: 32px 0; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 10px;
  background: var(--white);
  transition: border-color .18s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  cursor: pointer;
}
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTIONS
═══════════════════════════════════════════════════════════ */
.cta-final,
.cta-top,
.cta-code {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before,
.cta-code::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,168,150,.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final h2,
.cta-final h3,
.cta-code h2,
.cta-code h3 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.cta-final p,
.cta-code p {
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
  font-size: 16px;
  position: relative;
}
.cta-final a,
.cta-top a,
.cta-code a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   CODE ERREUR BOX
═══════════════════════════════════════════════════════════ */
.code-box,
.code-erreur-box {
  background: #E1F5EE;
  border: 1.5px solid #5DCAA5;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin: 24px 0;
}
.code-box h2,
.code-erreur-box h2 {
  color: #085041;
  font-size: 18px;
  margin-bottom: 8px;
}
.code-box p,
.code-erreur-box p {
  color: #0F6E56;
  margin: 0;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   CONTAINERS & SECTIONS (shortcodes)
═══════════════════════════════════════════════════════════ */
.me-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.me-section {
  padding: 64px 24px;
}
.me-section-alt {
  background: var(--bg);
  width: 100%;
}
.me-section-alt .me-section {
  padding: 64px 24px;
}

/* Override Astra container */
.entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ast-container {
  max-width: 1160px !important;
}

/* Hero pleine largeur */
.hero-ville,
.hero-croisee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.hero-ville .me-container,
.hero-croisee .me-container {
  padding: 64px 24px 72px;
}

/* CTA final pleine largeur */
.cta-final {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  padding: 64px 24px;
}

/* Section alt pleine largeur */
.me-section-alt {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer,
.ast-small-footer {
  background: #070F1E !important;
  color: rgba(255,255,255,.6) !important;
}
.site-footer a,
.ast-small-footer a {
  color: rgba(255,255,255,.55) !important;
  transition: color .18s !important;
}
.site-footer a:hover,
.ast-small-footer a:hover {
  color: var(--teal-l) !important;
}
.footer-widget-area {
  background: #070F1E !important;
  padding: 56px 0 32px !important;
}
.footer-widget-area .widget-title {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  margin-bottom: 16px !important;
}
.footer-widget-area .widget ul li a {
  font-size: 13px !important;
  color: rgba(255,255,255,.5) !important;
  padding: 4px 0 !important;
  display: block !important;
}
.ast-small-footer-wrap {
  border-top: 1px solid rgba(255,255,255,.08) !important;
  padding: 20px 0 !important;
  font-size: 12px !important;
}

/* ═══════════════════════════════════════════════════════════
   BADGE LABEL (sections)
═══════════════════════════════════════════════════════════ */
.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,168,150,.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   FORMULAIRE WPFORMS
═══════════════════════════════════════════════════════════ */
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field select,
.wpforms-container .wpforms-field textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 11px 14px !important;
  transition: border-color .18s !important;
  width: 100% !important;
}
.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field select:focus,
.wpforms-container .wpforms-field textarea:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(0,168,150,.12) !important;
  outline: none !important;
}
.wpforms-submit {
  background: var(--orange) !important;
  color: #fff !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all .2s !important;
  width: 100% !important;
}
.wpforms-submit:hover {
  background: var(--orange-l) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(240,90,26,.3) !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .trust-bar .inside { justify-content: flex-start; gap: 16px; }
  .trust-divider { display: none; }
  .hero-ville, .hero-croisee { padding: 40px 24px 52px; }
  .cta-final, .cta-code { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER 4 COLONNES
═══════════════════════════════════════════════════════════ */
.me-footer {
  background: #070F1E;
  color: rgba(255,255,255,.6);
  width: 100%;
}
.me-footer-top {
  padding: 56px 0 40px;
}
.me-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.me-footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.me-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.me-footer-col ul li {
  padding: 0;
  border: none;
  margin-bottom: 10px;
}
.me-footer-col ul li::before { display: none; }
.me-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5) !important;
  transition: color .15s;
}
.me-footer-col ul li a:hover {
  color: var(--teal-l) !important;
}
.me-footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.5);
}
.me-footer-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}
.me-footer-logo-text span { color: var(--teal-l); }
.me-footer-logo-link img { height: 40px; width: auto; margin-bottom: 16px; }
.me-footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #fff !important;
  margin-bottom: 6px;
}
.me-footer-hours {
  font-size: 12px;
  color: rgba(255,255,255,.35) !important;
  margin: 0 !important;
}
.me-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.me-footer-bottom .me-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.me-footer-legal {
  display: flex;
  gap: 20px;
}
.me-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.3) !important;
  transition: color .15s;
}
.me-footer-legal a:hover { color: rgba(255,255,255,.6) !important; }

/* Cacher le footer Astra par défaut */
.site-footer .ast-small-footer,
.site-footer .footer-widget-area,
.ast-site-footer-wrap {
  display: none !important;
}

@media (max-width: 900px) {
  .me-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .me-footer-grid { grid-template-columns: 1fr; }
  .me-footer-bottom .me-container { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE
═══════════════════════════════════════════════════════════ */

/* HERO */
.hp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0E3060 60%, #1B4A80 100%);
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  overflow: hidden;
}
.hp-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  padding: 72px 24px 80px;
  position: relative;
  z-index: 1;
}
.hp-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hp-pill {
  background: rgba(0,168,150,.2);
  border: 1px solid rgba(0,200,180,.3);
  color: var(--teal-l);
  font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.hp-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.hp-loc { font-size: 13px; color: rgba(255,255,255,.5); }
.hp-hero-left h1 {
  color: #fff;
  font-size: clamp(30px,4vw,54px);
  font-weight: 800;
  margin-bottom: 18px;
}
.hp-hero-left h1 em {
  color: var(--teal-l);
  font-style: normal;
}
.hp-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hp-trust-pills span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero card */
.hp-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.hp-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hp-card-icon {
  width: 42px; height: 42px;
  background: rgba(0,168,150,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hp-card-title {
  font-family: var(--font-head);
  font-weight: 700; font-size: 16px;
  color: var(--navy); margin: 0 0 2px;
}
.hp-card-sub { font-size: 12px; color: var(--muted); margin: 0; }
.hp-form-group { margin-bottom: 12px; }
.hp-form-group label {
  font-size: 12px; font-weight: 500;
  color: var(--muted); display: block; margin-bottom: 5px;
}
.hp-form-group select,
.hp-form-group input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body); font-size: 14px;
  color: var(--text); appearance: none;
  transition: border-color .15s; background: #fff;
}
.hp-form-group select:focus,
.hp-form-group input:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,.1);
}
.hp-card-note {
  text-align: center; font-size: 11px;
  color: var(--muted); margin-top: 10px;
}

/* VILLES */
.hp-villes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-ville-pill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all .15s;
  display: flex; align-items: center; gap: 8px;
}
.hp-ville-pill:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
}
.hp-ville-main {
  font-weight: 600;
  background: rgba(0,168,150,.06);
  border-color: rgba(0,168,150,.3);
  color: var(--teal) !important;
}
.hp-ville-canton {
  font-size: 10px; font-weight: 600;
  background: rgba(0,168,150,.15);
  color: #085041; padding: 2px 6px;
  border-radius: 4px;
}
.hp-ville-more {
  font-weight: 600; color: var(--navy) !important;
  border-color: var(--navy);
}
.hp-ville-more:hover { background: var(--navy); color: #fff !important; }

/* MARQUES */
.hp-marques-grid {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
}
.hp-marque-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all .15s;
}
.hp-marque-pill:hover {
  border-color: var(--teal);
  background: rgba(0,168,150,.06);
  color: var(--teal) !important;
}

/* CONFIANCE */
.hp-confiance {
  background: linear-gradient(135deg, var(--navy) 0%, #0E3060 100%);
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  padding: 72px 24px;
}
.hp-confiance .me-container { max-width: 1160px; margin: 0 auto; }
.hp-conf-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.hp-conf-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
}
.hp-conf-icon { font-size: 32px; margin-bottom: 14px; }
.hp-conf-card h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.hp-conf-card p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.65; margin: 0;
}

/* RESPONSIVE HOMEPAGE */
@media (max-width: 960px) {
  .hp-hero-inner { grid-template-columns: 1fr; }
  .hp-card { max-width: 480px; }
  .hp-conf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .hp-hero-inner { padding: 48px 24px 56px; }
  .hp-conf-grid { grid-template-columns: 1fr; }
}
