/*
Theme Name: Alpes Solutions Nettoyage
Theme URI: https://www.alpes-solutions-nettoyage.fr
Author: Alpes Solutions Nettoyage
Author URI: https://www.alpes-solutions-nettoyage.fr
Description: Thème vitrine pour Alpes Solutions Nettoyage — Spécialiste nettoyage panneaux solaires et enseignes publicitaires à Annecy, Haute-Savoie (74).
Version: 1.0.0
License: Proprietary
Text Domain: alpes-solutions
Tags: business, one-page, responsive
*/

/* ============================================================
   GOOGLE FONTS — chargées via functions.php
   ============================================================ */

:root {
  --dark:         #012728;
  --teal:         #035d65;
  --green:        #07db87;
  --green-bright: #18fc69;
  --light:        #ededed;
  --white:        #ffffff;
  --text-muted:   #567a7b;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(1, 39, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(7, 219, 135, 0.12);
}

.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: rgba(237, 237, 237, 0.72);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--green);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 7px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--green-bright) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(237,237,237,0.3);
  color: var(--white);
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   BOUTONS GLOBAUX
   ============================================================ */
.btn-green {
  background: var(--green);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-green:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  border: 1.5px solid rgba(237, 237, 237, 0.28);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-content {
  padding-top: 70px; /* hauteur navbar fixe */
}

/* ============================================================
   HERO — PAGE D'ACCUEIL
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 110px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: 0;
  width: 55%;
  height: 110%;
  background: radial-gradient(ellipse at 70% 40%, rgba(7,219,135,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at 30% 60%, rgba(3,93,101,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,219,135,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,219,135,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7,219,135,0.1);
  border: 1px solid rgba(7,219,135,0.28);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-desc {
  font-size: 17px;
  color: rgba(237,237,237,0.62);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 540px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(237,237,237,0.48);
  font-weight: 300;
}

.hero-trust-item strong {
  color: var(--green);
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 560px;
  z-index: 0;
  opacity: 0.9;
}

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
.section         { padding: 88px 6%; }
.section-light   { padding: 88px 6%; background: var(--light); }
.section-dark    { padding: 88px 6%; background: var(--dark); }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.section-h {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 52px;
}

.section-dark .section-h  { color: var(--white); }
.section-dark .section-sub { color: rgba(237,237,237,0.52); }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #dce9e8;
  border-radius: 18px;
  padding: 40px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  border-color: rgba(7,219,135,0.45);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(1,39,40,0.09);
}

.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 54px;
  height: 54px;
  background: rgba(7,219,135,0.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 22px;
  font-weight: 300;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feature-list li {
  font-size: 13.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.feature-list li svg { flex-shrink: 0; }

/* ============================================================
   PROCESSUS 4 ÉTAPES
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: rgba(7,219,135,0.18);
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.proc-num {
  width: 54px;
  height: 54px;
  background: var(--dark);
  border: 2px solid rgba(7,219,135,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
}

.proc-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 13px;
  color: rgba(237,237,237,0.42);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 28px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(1,39,40,0.07);
  transition: all 0.2s;
}

.why-card:hover {
  border-color: rgba(7,219,135,0.32);
  transform: translateY(-3px);
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(7,219,135,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.72; font-weight: 300; }

/* ============================================================
   BANDE CTA
   ============================================================ */
.cta-band {
  background: var(--teal);
  padding: 72px 6%;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 32px;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 60px 6% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(237,237,237,0.4);
  line-height: 1.85;
  margin-top: 14px;
  font-weight: 300;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; margin-top: 18px; }

.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237,237,237,0.5);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}

.social-btn:hover { background: rgba(7,219,135,0.15); color: var(--green); }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li,
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(237,237,237,0.4);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 12px; color: rgba(237,237,237,0.26); }
.footer-bottom a { color: rgba(237,237,237,0.26); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   EN-TÊTE DES PAGES INTÉRIEURES
   ============================================================ */
.page-hdr {
  background: var(--dark);
  padding: 130px 6% 72px;
  position: relative;
  overflow: hidden;
}

.page-hdr::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(7,219,135,0.06) 0%, transparent 65%);
}

.page-hdr::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,219,135,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,219,135,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hdr-badge {
  display: inline-block;
  background: rgba(7,219,135,0.1);
  border: 1px solid rgba(7,219,135,0.25);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.page-hdr h1 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}

.page-hdr p {
  font-size: 16px;
  color: rgba(237,237,237,0.52);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 72px 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-title { font-size: 26px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.2px; }
.form-desc  { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #d4e2e2;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7,219,135,0.1);
}

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

.rgpd-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.rgpd-row input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.rgpd-row label { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.rgpd-row a { color: var(--teal); text-decoration: underline; }

.wpcf7-submit {
  width: 100%;
  justify-content: center;
  padding: 16px !important;
  font-size: 15px !important;
  background: var(--green) !important;
  color: var(--dark) !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-family: 'Lato', sans-serif !important;
  cursor: pointer;
  transition: all 0.2s !important;
}
.wpcf7-submit:hover { background: var(--green-bright) !important; }

/* ============================================================
   CONTACT FORM 7 — Espacement & mise en forme
   ============================================================ */

/* Chaque champ CF7 = un bloc espacé */
.wpcf7-form p {
  margin-bottom: 16px;
}

/* Labels au-dessus des champs */
.wpcf7-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Tous les inputs, selects, textareas */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #d4e2e2;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 219, 135, 0.1);
}

.wpcf7-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

/* Case RGPD / acceptance */
.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: var(--green);
  cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Messages de validation */
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #e05252;
  font-weight: 400;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.1);
}

.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 14px 18px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-family: 'Lato', sans-serif !important;
  border: none !important;
}

/* Message succès */
.wpcf7-mail-sent-ok.wpcf7-response-output {
  background: rgba(7, 219, 135, 0.1) !important;
  color: #035d65 !important;
  border-left: 3px solid var(--green) !important;
}

/* Message erreur */
.wpcf7-mail-sent-ng.wpcf7-response-output,
.wpcf7-validation-errors.wpcf7-response-output,
.wpcf7-spam-blocked.wpcf7-response-output {
  background: rgba(224, 82, 82, 0.08) !important;
  color: #c0392b !important;
  border-left: 3px solid #e05252 !important;
}

/* Spinner chargement */
.wpcf7 .ajax-loader {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.sidebar-info {
  background: var(--dark);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 18px;
}

.sidebar-info h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 22px; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.info-ico {
  width: 36px; height: 36px;
  background: rgba(7,219,135,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.info-lbl { font-size: 11px; color: rgba(237,237,237,0.38); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; margin-bottom: 3px; }
.info-val { font-size: 13.5px; color: rgba(237,237,237,0.85); font-weight: 400; line-height: 1.5; }

.zone-box {
  background: rgba(7,219,135,0.07);
  border: 1px solid rgba(7,219,135,0.18);
  border-radius: 12px;
  padding: 22px;
}
.zone-box h4 { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ztag { background: rgba(3,93,101,0.1); color: var(--teal); padding: 4px 11px; border-radius: 20px; font-size: 12px; font-weight: 400; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-wrap { padding: 72px 6%; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid #dce9e8;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(1,39,40,0.1);
  border-color: rgba(7,219,135,0.4);
}

.blog-img {
  height: 198px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(1,39,40,0.45), transparent);
}

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: var(--dark);
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.blog-body { padding: 26px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12px; color: var(--text-muted); }

.blog-card h2,
.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.38;
}

.blog-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.72; font-weight: 300; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}
.read-more:hover { color: var(--green); }

/* Single post */
.single-post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 6%;
}
.single-post-wrap h1 { font-size: clamp(28px, 3vw, 42px); font-weight: 900; margin-bottom: 20px; line-height: 1.15; }
.single-post-wrap .post-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.single-post-wrap .post-content p { font-size: 16px; line-height: 1.85; color: #2a4a4b; margin-bottom: 20px; font-weight: 300; }
.single-post-wrap .post-content h2 { font-size: 24px; font-weight: 700; margin: 36px 0 14px; }
.single-post-wrap .post-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.single-post-wrap .post-content img { border-radius: 12px; margin: 28px 0; }
.single-post-wrap .post-thumbnail { border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.single-post-wrap .post-thumbnail img { width: 100%; height: 400px; object-fit: cover; }

.blog-cta {
  background: var(--dark);
  margin: 0 6% 72px;
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.blog-cta::before {
  content: '';
  position: absolute;
  right: -5%; top: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(7,219,135,0.07) 0%, transparent 65%);
}
.blog-cta h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--white);
  max-width: 420px;
  line-height: 1.28;
  position: relative;
  z-index: 1;
  letter-spacing: -0.2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: 1fr; }
  .process-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-line       { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap       { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .hero-visual        { display: none; }
  .blog-cta           { flex-direction: column; padding: 36px; text-align: center; }
  .form-row           { grid-template-columns: 1fr; }
  .main-navigation ul { display: none; }
  .main-navigation ul.toggled { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 20px 6%; border-bottom: 1px solid rgba(7,219,135,0.15); gap: 16px; }
  .menu-toggle        { display: block; }
}

@media (max-width: 480px) {
  .why-grid           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS — styles de base uniquement
   (le reste est géré en JS inline pour éviter les conflits)
   ============================================================ */

/* Glow sur les icônes au hover */
.why-icon-wrap,
.svc-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .why-icon-wrap,
.service-card:hover .svc-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 16px rgba(7, 219, 135, 0.35);
}

/* Bounce sur les numéros de process */
.proc-num {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Badge hero pulse */
.hero-badge {
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(7,219,135,0); }
  50%       { box-shadow: 0 0 12px 3px rgba(7,219,135,0.2); }
}

/* Sections avec position relative pour le squeegee */
.hero,
.section,
.section-light,
.section-dark,
.cta-band {
  position: relative;
  overflow: hidden;
}

/* Respect préférence accessibilité */
@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
}
