/*
Theme Name: Alice Brouart
Theme URI: https://alice-brouart.com/
Author: Alice Brouart
Author URI: https://alice-brouart.com/
Description: Thème WordPress Alice Brouart
Version: 1.0.0
Text Domain: alice-brouart
*/

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

:root {
  --eucalyptus: #5F8575;
  --eucalyptus-light: #EDF2EF;
  --eucalyptus-dark: #3D5C4E;
  --cream: #FAF8F5;
  --terracotta: #C17A4A;
  --terracotta-dark: #A4633A;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #ffffff;
  --header-height: 70px;
}

html { scroll-behavior: smooth; max-width: 100%; }
body { font-family: 'DM Sans', sans-serif; font-size: 18px; color: var(--text); background: var(--cream); line-height: 1.6; overflow-x: hidden; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
img, svg { max-width: 100%; height: auto; }
main { max-width: 100%; overflow-x: clip; }
h1 { font-size: 64px; }
h2 { font-size: 44px; }
h3 { font-size: 30px; }


/* ============================
   HEADER — fixe + shrink scroll
   ============================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(95,133,117,0.15);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
  transition: height 0.3s ease;
}

.site-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 56px; width: auto; display: block; transition: height 0.3s ease; }

header.is-scrolled { height: 52px; }
header.is-scrolled .site-logo img { height: 40px; }
header.is-scrolled .nav-desktop a { font-size: 0.8rem; }
header.is-scrolled .header-cta { transform: scale(0.96); transform-origin: right center; }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nav-desktop a:hover { opacity: 1; }
.header-cta { margin-left: 0.5rem; flex-shrink: 0; }


/* ============================
   SOUS-MENU SERVICES (desktop)
   ============================ */

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-item > a { display: inline-flex; align-items: center; line-height: 1; }

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95,133,117,0.18);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: 0 18px 45px rgba(61,92,78,0.16);
  z-index: 200;
  display: none;
}
.submenu a { display: block; padding: 0.6rem 0; text-transform: none; letter-spacing: 0; font-size: 0.92rem; opacity: 0.85; }
.submenu a:hover { opacity: 1; }
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { display: block; }


/* ============================
   BURGER + MENU MOBILE
   ============================ */

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(95,133,117,0.25);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle svg { width: 18px; height: 18px; stroke: var(--eucalyptus-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(95,133,117,0.15);
  border-radius: 0 0 26px 26px;
  padding: 1.15rem 5% 1.4rem;
  box-shadow: 0 22px 60px rgba(26,39,33,0.22);
  max-height: calc(100vh - var(--header-height));
  overflow: auto;
  z-index: 99;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a { display: block; padding: 1rem 0; font-size: 0.9rem; text-decoration: none; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.9; }
.nav-mobile a + a { border-top: 1px solid rgba(95,133,117,0.10); }

.nav-mobile .mobile-submenu { display: none; margin-top: 0.35rem; padding-top: 0.35rem; border-top: 1px dashed rgba(95,133,117,0.18); padding-left: 1rem; }
.nav-mobile .mobile-submenu.is-open { display: block; }
.nav-mobile .mobile-submenu a { font-size: 0.86rem; text-transform: none; letter-spacing: 0; opacity: 0.85; padding: 0.8rem 0; }
.nav-mobile .mobile-cta { margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid rgba(95,133,117,0.12); }
.nav-mobile .mobile-cta .btn { width: 100%; text-align: center; }

body.menu-open::before { content: ""; position: fixed; inset: 0; background: rgba(10,16,13,0.82); z-index: 80; }
body.menu-open { overflow: hidden; }


/* ============================
   BOUTONS
   ============================ */

.btn { display: inline-block; padding: 0.7rem 1.6rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.25s ease; letter-spacing: 0.02em; }
.btn-primary { background: var(--terracotta); color: white; border: none; }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(193,122,74,0.35); }
.btn-secondary { background: transparent; color: var(--eucalyptus-dark); border: 1.5px solid var(--eucalyptus); }
.btn-secondary:hover { background: var(--eucalyptus-light); }
.btn-white { background: white; color: var(--eucalyptus-dark); border: none; }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }


/* ============================
   SECTIONS
   ============================ */

section { padding: 100px 5%; }
.section-tag { display: inline-block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 1rem; }
.section-title { font-size: 44px; margin-bottom: 1.2rem; font-weight: 300; }
.section-subtitle { color: var(--text-light); font-size: 1.17rem; max-width: 560px; line-height: 1.7; margin-bottom: 3rem; }
.center { text-align: center; }
.center .section-subtitle { margin: 0 auto 3rem; }


/* ============================
   HERO
   ============================ */

.hero { min-height: 86vh; display: flex; align-items: center; padding: calc(var(--header-height) + 10px) 5% 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(95,133,117,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-content { max-width: 580px; position: relative; z-index: 1; }
.hero-tag { display: inline-flex; max-width: 100%; white-space: normal; background: var(--eucalyptus-light); color: var(--eucalyptus-dark); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 500; }
.hero h1 { font-size: 64px; color: var(--text); margin-bottom: 1.2rem; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--eucalyptus); }
.hero p { font-size: 1.12rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 460px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 400px; height: 500px; border-radius: 200px 200px 120px 120px; overflow: hidden; box-shadow: 0 30px 80px rgba(61,92,78,0.2); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(0.9); }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(61,92,78,0.15) 100%); }


/* ============================
   CONFIANCE
   ============================ */

.confiance { background: var(--eucalyptus-dark); padding: 2.5rem 5%; display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.stat { text-align: center; color: white; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; display: block; color: white; }
.stat-label { font-size: 0.8rem; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase; }
.confiance-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }


/* ============================
   PROBLÈME / SOLUTION
   ============================ */

.pb-solution { background: var(--white); }
.pb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.pb-col h3 { font-size: 30px; margin-bottom: 1.5rem; font-style: italic; }
.pb-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pb-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; color: var(--text-light); line-height: 1.5; }
.pb-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.pb-icon.problem { background: #FDECEA; color: #D64545; }
.pb-icon.solution { background: var(--eucalyptus-light); color: var(--eucalyptus-dark); }


/* ============================
   ABOUT
   ============================ */

.about { background: var(--eucalyptus-light); }
.about-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-inner .section-title { margin-bottom: 1.5rem; }
.about-values { display: flex; justify-content: center; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.value-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; color: var(--eucalyptus-dark); }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }


/* ============================
   SERVICES
   ============================ */

.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.service-card { background: white; border-radius: 20px; padding: 2rem 1.5rem; transition: all 0.3s ease; border: 1px solid rgba(95,133,117,0.1); cursor: pointer; display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(95,133,117,0.15); border-color: var(--eucalyptus); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--eucalyptus-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; flex-shrink: 0; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--eucalyptus-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 30px; margin-bottom: 0.6rem; font-style: italic; }
.service-card p { font-size: 1rem; color: var(--text-light); line-height: 1.6; margin-bottom: auto; padding-bottom: 1.2rem; }
.service-link { font-size: 0.82rem; color: var(--eucalyptus-dark); text-decoration: none; font-weight: 500; letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; margin-top: auto; }
.service-link:hover { gap: 0.7rem; }


/* ============================
   MÉTHODE / STEPS
   ============================ */

.methode { background: var(--white); }
.steps { display: flex; max-width: 1000px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, var(--eucalyptus-light), var(--eucalyptus), var(--eucalyptus-light)); }
.step { flex: 1; text-align: center; padding: 0 1rem; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--eucalyptus); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin: 0 auto 1.2rem; position: relative; z-index: 1; }
.step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-style: italic; }
.step p { font-size: 0.97rem; color: var(--text-light); line-height: 1.5; }


/* ============================
   DIFF CARDS
   ============================ */

.diff { background: var(--eucalyptus-light); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.diff-card { background: white; border-radius: 20px; padding: 2rem; border-bottom: 3px solid var(--eucalyptus); transition: transform 0.3s; }
.diff-card:hover { transform: translateY(-4px); }
.diff-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--eucalyptus-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.diff-icon svg { width: 20px; height: 20px; stroke: var(--eucalyptus-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.diff-card h4 { font-size: 1.15rem; margin-bottom: 0.6rem; font-style: italic; }
.diff-card p { font-size: 1rem; color: var(--text-light); line-height: 1.6; }


/* ============================
   TÉMOIGNAGES — responsive fix
   ============================ */
@media (max-width: 1100px) {
  .temoignages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 820px) {
  .temoignages-grid {
    grid-template-columns: 1fr !important;
  }
  .temoignage-card blockquote {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
  }
}

/* ============================
   FORMATION
   ============================ */

.formation { background: var(--white); }
.formation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.formation-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 1.5rem 0 2rem; }
.formation-benefits li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; }
.check { width: 22px; height: 22px; background: var(--eucalyptus-light); color: var(--eucalyptus-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check svg { width: 11px; height: 11px; stroke: var(--eucalyptus-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.formation-visual { border-radius: 24px; background: linear-gradient(135deg, var(--eucalyptus) 0%, var(--eucalyptus-dark) 100%); padding: 3rem 2rem; text-align: center; color: white; }
.formation-visual h3 { font-size: 1.98rem; font-style: italic; margin-bottom: 0.5rem; color: white; }
.formation-visual p { opacity: 0.8; font-size: 0.9rem; margin-bottom: 1.5rem; }


/* ============================
   CTA FINAL
   ============================ */

.cta-final { background: var(--eucalyptus); text-align: center; padding: 100px 5%; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1rem; font-weight: 300; }
.cta-final p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2.5rem; }


/* ============================
   RÉSULTATS (pages services)
   ============================ */

.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.result-card { background: white; border-radius: 20px; padding: 1.6rem; border: 1px solid rgba(95,133,117,0.1); text-align: center; }
.result-number { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--eucalyptus-dark); }
.result-label { display: block; margin-top: 0.35rem; font-size: 0.95rem; color: var(--text-light); }
.partner-badge img { height: 48px; width: auto; display: inline-block; }


/* ============================
   TABLEAU COMPARATIF
   ============================ */

.comparatif { background: #FAF8F5; padding: 90px 5%; }
.comparatif .section-tag { display: inline-block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: #C17A4A; font-weight: 500; margin-bottom: 1rem; }
.comparatif .section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.2rem; font-weight: 300; text-align: center; }
.comparatif .section-subtitle { color: #6B6B6B; font-size: 1.05rem; max-width: 600px; line-height: 1.7; margin: 0 auto 3rem; text-align: center; }
.table-wrap { max-width: 860px; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(61,92,78,0.12); }
.table-wrap table { width: 100%; border-collapse: collapse; }
.table-wrap thead tr { background: #3D5C4E; }
.table-wrap thead th { padding: 1.2rem 1.5rem; text-align: center; color: white; font-family: "DM Sans", sans-serif; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.05em; }
.table-wrap thead th:first-child { text-align: left; width: 40%; }
.table-wrap thead th.col-alice { background: #C17A4A; font-size: 1rem; }
.table-wrap tbody tr { border-bottom: 1px solid rgba(95,133,117,0.1); }
.table-wrap tbody tr:last-child { border-bottom: none; }
.table-wrap tbody tr:nth-child(even) { background: rgba(237,242,239,0.5); }
.table-wrap tbody tr:nth-child(odd) { background: white; }
.table-wrap tbody td { padding: 1.1rem 1.5rem; font-size: 0.92rem; text-align: center; color: #6B6B6B; }
.table-wrap tbody td:first-child { text-align: left; font-weight: 500; color: #2C2C2C; }
.check-yes { color: #3D5C4E !important; font-size: 1.1rem; font-weight: 700; }
.check-no { color: #D64545 !important; font-size: 1.1rem; font-weight: 700; }
.check-partial { color: #C17A4A !important; font-size: 0.9rem; font-weight: 500; }


/* ============================
   FORMULAIRE WPFORMS
   ============================ */

.wpforms-container { margin: 0 !important; }
.wpforms-form { background: white; border: 1px solid rgba(95,133,117,0.14); border-radius: 22px; padding: 1.4rem; box-shadow: 0 18px 45px rgba(61,92,78,0.10); }
.wpforms-form .wpforms-field-label { font-weight: 600; color: var(--eucalyptus-dark); }
.wpforms-form input[type="text"], .wpforms-form input[type="email"], .wpforms-form input[type="tel"], .wpforms-form textarea { width: 100% !important; border-radius: 14px !important; border: 1px solid rgba(95,133,117,0.18) !important; padding: 0.9rem 0.95rem !important; font-size: 1rem !important; background: rgba(237,242,239,0.55) !important; }
.wpforms-form textarea { min-height: 140px; }
.wpforms-form button[type="submit"] { border-radius: 999px !important; padding: 0.9rem 1.35rem !important; background: var(--terracotta) !important; color: white !important; border: none !important; font-weight: 600 !important; }
.wpforms-form button[type="submit"]:hover { background: var(--terracotta-dark) !important; }


/* ============================
   PORTFOLIO
   ============================ */

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }


/* ============================
   FOOTER
   ============================ */

.site-footer { display: block; background: #2C2C2C; color: rgba(255,255,255,0.78); padding: 4rem 5% 2rem; }
.site-footer, .site-footer * { box-sizing: border-box; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer p { margin: 0; }
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: var(--eucalyptus); }
.site-footer nav { display: block; gap: 0; }

.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1.1fr 0.9fr 1.2fr; gap: 2.25rem; align-items: start; width: 100%; }
.footer-col { min-width: 0; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(255,255,255,0.92); margin-bottom: 1rem; font-style: italic; }
.footer-list { list-style: none; display: grid; gap: 0.65rem; }
.footer-list li { line-height: 1.5; }
.footer-brand-top { display: flex; gap: 1.25rem; align-items: flex-start; }
.footer-brand-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: rgba(255,255,255,0.95); margin-bottom: 0.4rem; }
.footer-brand-desc { color: rgba(255,255,255,0.7); max-width: 460px; line-height: 1.7; font-size: 1rem; }

/* Logo footer — badge rond AB */
.site-footer .footer-logo { display: inline-flex; text-decoration: none; flex-shrink: 0; }
.site-footer .footer-logo img { width: 110px; height: 110px; object-fit: contain; display: block; border-radius: 50%; }

.footer-badge { margin-top: 1.2rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 1rem; display: inline-flex; }
.footer-badge img { height: 56px; width: auto; display: block; }
.footer-cta { display: inline-flex; align-items: center; justify-content: center; margin-top: 1.1rem; padding: 0.85rem 1.15rem; border-radius: 999px; background: var(--eucalyptus); color: white !important; font-weight: 600; letter-spacing: 0.02em; box-shadow: 0 18px 40px rgba(61,92,78,0.28); border: 1px solid rgba(255,255,255,0.12); transition: transform 0.2s ease, background 0.2s ease; }
.footer-cta:hover { background: var(--eucalyptus-dark); transform: translateY(-1px); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.9rem 1.5rem; }
.footer-credit { font-size: 0.95rem; color: rgba(255,255,255,0.72); }
.footer-heart { color: var(--terracotta); margin: 0 0.2rem; }
.footer-bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.95rem; }


/* ============================
   ANIMATIONS
   ============================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag  { animation: fadeUp 0.6s ease 0.1s both; }
.hero h1   { animation: fadeUp 0.6s ease 0.2s both; }
.hero p    { animation: fadeUp 0.6s ease 0.3s both; }
.hero-ctas { animation: fadeUp 0.6s ease 0.4s both; }
.hero-image { animation: fadeUp 0.8s ease 0.2s both; }


/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1100px) {
  .hero-image { width: 340px; height: 430px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-col:nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  header { padding: 0 5%; }
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-logo img { height: 46px; }

  section { padding: 72px 5%; }

  .hero { padding: 120px 5% 70px; min-height: auto; flex-direction: column; align-items: flex-start; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.1rem, 7vw, 2.8rem); }
  .hero p { font-size: 1rem; max-width: 100%; }
  .hero-ctas { gap: 0.8rem; }
  .hero-tag { font-size: 0.72rem; padding: 0.35rem 0.85rem; }
  .btn { width: auto; padding: 0.75rem 1.35rem; }

  .hero-image { position: relative; right: auto; top: auto; transform: none; width: min(420px, 92vw); height: 520px; margin-top: 2rem; }

  .confiance { gap: 2rem; padding: 2.2rem 5%; }
  .confiance-divider { display: none; }

  .pb-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .formation-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid[style] { grid-template-columns: 1fr !important; }
  .diff-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .diff-grid[style] { grid-template-columns: 1fr !important; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; gap: 1.6rem; }
  .steps::before { display: none; }
  .step { padding: 0; }

  h1, .hero h1 { font-size: clamp(2.1rem, 7vw, 2.8rem); }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }

  .site-footer { padding: 3rem 5% 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-badge { width: 100%; justify-content: center; }
  .footer-cta { width: 100%; }
  .footer-bottom { align-items: flex-start; }
  .site-footer .footer-logo img { width: 80px; height: 80px; }

  .googleads-longterm { padding: 72px 5% !important; }
  .googleads-longterm-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

@media (max-width: 480px) {
  header { padding: 0 5%; }
  section { padding: 64px 5%; }
  .hero { padding: 110px 5% 60px; }
  .btn { width: 100%; text-align: center; }
  .hero-image { height: 440px; width: 100%; }
  .service-card { padding: 1.6rem 1.25rem; }
  .diff-card { padding: 1.6rem; }
  .temoignage-card { padding: 1.6rem; }
  .formation-visual { padding: 2.4rem 1.6rem; }
  .results-grid { grid-template-columns: 1fr; }
  .comparatif table { min-width: 620px; }
}

/* ============================
   WPFORMS — style personnalisé
   ============================ */

/* Cases à cocher */
.wpforms-field-checkbox .wpforms-field-label-inline,
.wpforms-field-radio .wpforms-field-label-inline {
  font-size: 1rem;
  color: var(--text);
  padding-left: 0.5rem;
}

.wpforms-field-checkbox li,
.wpforms-field-radio li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(95,133,117,0.15);
  margin-bottom: 0.5rem;
  background: rgba(237,242,239,0.3);
  transition: background 0.2s;
  cursor: pointer;
}

.wpforms-field-checkbox li:hover,
.wpforms-field-radio li:hover {
  background: rgba(95,133,117,0.1);
  border-color: var(--eucalyptus);
}

.wpforms-field-checkbox input[type="checkbox"],
.wpforms-field-radio input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--eucalyptus-dark);
  flex-shrink: 0;
}

/* Labels des champs */
.wpforms-form .wpforms-field-label {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.1rem !important;
  font-style: italic;
  font-weight: 400 !important;
  color: var(--text) !important;
  margin-bottom: 0.6rem !important;
}

/* Description sous les cases */
.wpforms-field-description {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  margin-top: 0.5rem;
}

/* Champs texte */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
  width: 100% !important;
  border-radius: 14px !important;
  border: 1px solid rgba(95,133,117,0.18) !important;
  padding: 0.9rem 1.1rem !important;
  font-size: 1rem !important;
  background: rgba(237,242,239,0.4) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  font-family: 'DM Sans', sans-serif !important;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form textarea:focus {
  border-color: var(--eucalyptus) !important;
  box-shadow: 0 0 0 3px rgba(95,133,117,0.12) !important;
  outline: none !important;
}

/* Bouton submit */
.wpforms-form .wpforms-submit-container { text-align: center; margin-top: 1rem; }
.wpforms-form button[type="submit"] {
  border-radius: 999px !important;
  padding: 1rem 3rem !important;
  background: var(--terracotta) !important;
  color: white !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 20px rgba(193,122,74,0.3) !important;
}
.wpforms-form button[type="submit"]:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px) !important;
}

/* Étoile obligatoire */
.wpforms-required-label { color: var(--terracotta) !important; }

/* ============================
   WPFORMS â€” override complet
   ============================ */

/* Conteneur global */
.wpforms-container { margin: 0 !important; }

.wpforms-form {
  background: white !important;
  border: 1px solid rgba(95,133,117,0.14) !important;
  border-radius: 22px !important;
  padding: 2.5rem !important;
  box-shadow: 0 18px 45px rgba(61,92,78,0.10) !important;
  max-width: 680px !important;
  margin: 0 auto !important;
}

/* Labels */
.wpforms-form .wpforms-field-label {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.1rem !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  margin-bottom: 0.6rem !important;
  display: block !important;
}

/* Champs texte, email, tel */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="url"],
.wpforms-form input[type="number"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100% !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(95,133,117,0.2) !important;
  padding: 0.9rem 1.1rem !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  background: rgba(237,242,239,0.35) !important;
  color: var(--text) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form textarea:focus {
  border-color: var(--eucalyptus) !important;
  box-shadow: 0 0 0 3px rgba(95,133,117,0.12) !important;
  outline: none !important;
  background: white !important;
}

.wpforms-form textarea { min-height: 140px !important; resize: vertical !important; }

/* Champ nom (2 colonnes) */
.wpforms-field-name .wpforms-field-row { display: flex !important; gap: 1rem !important; }
.wpforms-field-name .wpforms-field-row > span { flex: 1 !important; }

/* Cases Ã  cocher et radio */
.wpforms-form .wpforms-field-checkbox ul,
.wpforms-form .wpforms-field-radio ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.wpforms-form .wpforms-field-checkbox ul li,
.wpforms-form .wpforms-field-radio ul li {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(95,133,117,0.15) !important;
  background: rgba(237,242,239,0.3) !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  margin: 0 !important;
}

.wpforms-form .wpforms-field-checkbox ul li:hover,
.wpforms-form .wpforms-field-radio ul li:hover {
  background: rgba(95,133,117,0.08) !important;
  border-color: var(--eucalyptus) !important;
}

.wpforms-form .wpforms-field-checkbox input[type="checkbox"],
.wpforms-form .wpforms-field-radio input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  accent-color: var(--eucalyptus-dark) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 4px !important;
}

.wpforms-form .wpforms-field-checkbox .wpforms-field-label-inline,
.wpforms-form .wpforms-field-radio .wpforms-field-label-inline {
  font-size: 0.95rem !important;
  color: var(--text) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  cursor: pointer !important;
}

/* Description sous un champ */
.wpforms-form .wpforms-field-description {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  margin-top: 0.4rem !important;
  font-style: italic !important;
}

/* Ã‰toile obligatoire */
.wpforms-required-label { color: var(--terracotta) !important; }

/* Espacement entre champs */
.wpforms-form .wpforms-field { margin-bottom: 1.4rem !important; padding: 0 !important; }

/* Bouton submit */
.wpforms-form .wpforms-submit-container {
  text-align: center !important;
  margin-top: 1.5rem !important;
  padding: 0 !important;
}

.wpforms-form button[type="submit"],
.wpforms-form input[type="submit"] {
  display: inline-block !important;
  border-radius: 999px !important;
  padding: 1rem 3rem !important;
  background: var(--terracotta) !important;
  color: white !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 20px rgba(193,122,74,0.3) !important;
  letter-spacing: 0.02em !important;
  width: auto !important;
}

.wpforms-form button[type="submit"]:hover,
.wpforms-form input[type="submit"]:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 28px rgba(193,122,74,0.4) !important;
}

/* Messages d'erreur */
.wpforms-form .wpforms-error-container,
.wpforms-form label.wpforms-error {
  color: #D64545 !important;
  font-size: 0.85rem !important;
  margin-top: 0.3rem !important;
  font-family: 'DM Sans', sans-serif !important;
}

.wpforms-form input.wpforms-error,
.wpforms-form textarea.wpforms-error {
  border-color: #D64545 !important;
}

/* Message de succÃ¨s */
.wpforms-confirmation-container-full {
  background: var(--eucalyptus-light) !important;
  border: 1px solid rgba(95,133,117,0.2) !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  text-align: center !important;
  color: var(--eucalyptus-dark) !important;
}

/* Fix cases à cocher — supprimer les bullets */
.wpforms-form .wpforms-field-checkbox ul,
.wpforms-form .wpforms-field-radio ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.wpforms-form .wpforms-field-checkbox ul li,
.wpforms-form .wpforms-field-radio ul li {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(95,133,117,0.15) !important;
  background: rgba(237,242,239,0.3) !important;
  margin-bottom: 0.5rem !important;
  text-align: left !important;
}

/* Fix champ Nom — supprimer la bordure tableau */
.wpforms-form .wpforms-field-name,
.wpforms-form .wpforms-field-row-block {
  border: none !important;
  padding: 0 !important;
}

/* Fix checkbox collée au texte */
.wpforms-form .wpforms-field-checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  margin-right: 0 !important;
  accent-color: var(--eucalyptus-dark) !important;
}

/* Fix FINAL cases à cocher WPForms */
#wpforms-191 .wpforms-field-checkbox ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#wpforms-191 .wpforms-field-checkbox ul li {
  list-style-type: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(95,133,117,0.15) !important;
  background: rgba(237,242,239,0.3) !important;
  margin-bottom: 0.5rem !important;
  text-align: left !important;
}

#wpforms-191 .wpforms-field-checkbox ul li::before,
#wpforms-191 .wpforms-field-checkbox ul li::marker {
  display: none !important;
  content: none !important;
}

/* Fix bordure champ Nom */
#wpforms-191 .wpforms-field-name {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* NUCLEAR RESET wpforms */
.wpforms-form ul,
.wpforms-form ul li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.wpforms-form .wpforms-field-row {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Supprimer bordures tableau */
.wpforms-form .wpforms-field-row,
.wpforms-form table,
.wpforms-form table td,
.wpforms-form table tr,
.wpforms-form .wpforms-field-checkbox,
.wpforms-form .wpforms-field-name {
  border: none !important;
  border-collapse: unset !important;
}

/* Espacer checkbox du texte */
.wpforms-form .wpforms-field-checkbox input[type="checkbox"] {
  margin-right: 8px !important;
  vertical-align: middle !important;
}

/* Centrer les items à gauche */
.wpforms-form .wpforms-field-checkbox ul li {
  text-align: left !important;
  justify-content: flex-start !important;
  padding-left: 1rem !important;
}

/* ============================
   HERO — nouveau design décoratif
   ============================ */

/* Éléments décoratifs */
.hero-deco-blob {
  position: absolute;
  right: 3%; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 580px;
  background: radial-gradient(ellipse at 60% 40%, rgba(95,133,117,0.13) 0%, rgba(237,242,239,0.6) 50%, transparent 75%);
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  pointer-events: none; z-index: 0;
}
.hero-deco-circle-1 {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  border: 1.5px solid rgba(95,133,117,0.12);
  pointer-events: none; z-index: 0;
}
.hero-deco-circle-2 {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(95,133,117,0.08);
  pointer-events: none; z-index: 0;
}
.hero-deco-line {
  position: absolute; top: 20%; left: 48%;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(95,133,117,0.3), transparent);
  pointer-events: none; z-index: 0;
}
.hero-deco-leaf {
  position: absolute; pointer-events: none; z-index: 0;
}
.hero-deco-leaf-1 { top: 8%; right: 28%; opacity: 0.12; width: 90px; transform: rotate(-25deg); }
.hero-deco-leaf-2 { bottom: 10%; right: 14%; opacity: 0.10; width: 70px; transform: rotate(40deg); }
.hero-deco-leaf-3 { top: 15%; left: 3%; opacity: 0.07; width: 60px; transform: rotate(-10deg); }

.hero-deco-dots {
  position: absolute; bottom: 15%; left: 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; opacity: 0.15; pointer-events: none; z-index: 0;
}
.hero-deco-dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--eucalyptus-dark); display: block; }

/* Photo wrap */
.hero-image-wrap {
  position: absolute; right: 24%; top: 20%;
  transform: translateY(-50%);
  z-index: 2;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-image {
  width: 420px; height: 540px;
  border-radius: 210px 210px 140px 140px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(61,92,78,0.18), 0 0 0 8px rgba(237,242,239,0.7);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Badge flottant */
.hero-badge {
  position: absolute; bottom: 30px; left: -30px;
  background: white; border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 12px 35px rgba(61,92,78,0.15);
  display: flex; align-items: center; gap: 0.7rem; z-index: 3;
}
.hero-badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4CAF50; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
}
.hero-badge-text { font-size: 0.78rem; line-height: 1.3; color: var(--text); }
.hero-badge-text strong { display: block; font-weight: 600; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

/* Responsive hero */
@media (max-width: 1000px) {
  .hero { flex-direction: column; align-items: flex-start; padding: 100px 6% 60px; min-height: auto; gap: 3rem; }
  .hero-content { max-width: 100%; }
  .hero-image-wrap { position: relative; right: auto; top: auto; transform: none; width: 100%; display: flex; justify-content: center; animation: none; }
  .hero-image { width: min(340px, 80vw); height: 400px; }
  .hero-badge { left: auto; right: -10px; bottom: 20px; }
  .hero-deco-circle-1 { width: 350px; height: 350px; right: -60px; top: auto; bottom: 5%; transform: none; }
  .hero-deco-circle-2 { display: none; }
  .hero-deco-blob { width: 320px; height: 380px; right: 0; top: auto; bottom: 0; transform: none; }
  .hero-deco-leaf-1 { right: 10%; top: 5%; width: 60px; }
  .hero-deco-leaf-2 { display: none; }
  .hero-deco-dots { display: none; }
  .hero-deco-line { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 5% 50px; gap: 2rem; }
  .hero-image { width: 90vw; height: 340px; }
  .hero-badge { right: 0; bottom: 16px; }
  .hero-deco-circle-1 { display: none; }
  .hero-deco-blob { opacity: 0.5; }
}

/* ============================
   TÉMOIGNAGES
   ============================ */

.temoignages { background: var(--cream); }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.temoignage-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(95,133,117,0.1);
}
.stars { color: var(--terracotta); font-size: 1rem; margin-bottom: 1rem; }
.temoignage-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.temoignage-author { display: flex; align-items: center; gap: 0.8rem; }
.author-photo { width: 44px; height: 44px; border-radius: 50%; background: var(--eucalyptus-light); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--eucalyptus-dark); flex-shrink: 0; }
.author-info { font-size: 0.85rem; }
.author-name { font-weight: 500; }
.author-company { color: var(--text-light); }

@media (max-width: 1100px) {
  .temoignages-grid {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Meilleure lisibilité desktop */
.hero h1 { 
  font-size: 56px; 
  letter-spacing: -0.01em; 
  font-weight: 400;
}
h2 { 
  font-size: 40px; 
  letter-spacing: -0.01em; 
}
.section-subtitle { 
  font-size: 1.1rem; 
  color: #555555; /* plus de contraste que #6B6B6B */
}

/* Hiérarchie visuelle — textes de cartes */
.diff-card p,
.step p {
  font-size: 0.97rem;
  color: #777;
  line-height: 1.65;
}

/* Timeline fond sombre — lisibilité terracotta */
.timeline-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #E8A870;
  display: block;
  margin-bottom: 0.4rem;
}

<!-- ============================
     CSS — coller dans votre feuille de style
     ============================ -->
<style>
.service-card-new {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(95,133,117,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(95,133,117,0.15);
  border-color: var(--eucalyptus);
}
.scn-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--eucalyptus-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
}
.scn-icon svg {
  width: 20px; height: 20px;
  stroke: var(--eucalyptus-dark); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.scn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.scn-promise {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.scn-ideal {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.5;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(95,133,117,0.1);
  margin-top: auto;
}
.scn-link {
  font-size: 0.88rem;
  color: var(--eucalyptus-dark);
  font-weight: 600;
  margin-top: 0.4rem;
}
</style>

<!-- 
  =====================================================
  HERO SERVICES — Direction A, version EUCALYPTUS VERT
  À coller dans chaque page service (Google Ads, etc.)
  Remplacer [TITRE], [SOUS-TITRE], [MOT-FANTOME], 
  [TAG], [CTA1], [STAT1/2/3] selon la page.
  =====================================================
-->

<style>
/* =============================================
   HERO SERVICES — Eucalyptus dégradé profond
   ============================================= */
.service-hero {
  min-height: 88vh;
  background: linear-gradient(145deg, #1A2E25 0%, #2D4A3B 35%, #3D5C4E 65%, #5F8575 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: calc(var(--header-height) + 60px) 7% 80px;
}
/* Grain texture */
.service-hero::before {
  content: '';
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.055; pointer-events: none; z-index: 0;
}
/* Lumière radiale douce */
.service-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 80% 45%, rgba(180,220,200,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 10% 80%, rgba(10,25,18,0.65) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
/* Mot fantôme en bas à gauche */
.hero-service-word {
  position: absolute;
  bottom: -6%; left: -1%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(9rem, 18vw, 18rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.02em; line-height: 1;
  pointer-events: none; white-space: nowrap; z-index: 0;
  user-select: none;
}
.sh-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  max-width: 1100px; width: 100%; margin: 0 auto;
}
.sh-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 50px;
  margin-bottom: 2rem; width: fit-content;
}
.sh-eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(180,220,180,0.9); flex-shrink: 0;
}
.sh-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 300; color: white;
  line-height: 1.06; margin-bottom: 1.8rem;
}
.sh-left h1 em { font-style: italic; color: #A8CEBC; }
.sh-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem; line-height: 1.85;
  max-width: 520px; margin-bottom: 2.5rem;
}
.sh-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-service-primary {
  background: #F0F7F4; color: #1A2E25;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.btn-service-primary:hover { background: white; }
.btn-service-ghost {
  background: transparent; color: rgba(255,255,255,0.78);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 1rem 2.2rem; border-radius: 50px;
  font-size: 0.9rem; text-decoration: none; display: inline-block;
}
.sh-badges {
  display: flex; flex-direction: column; gap: 1rem; min-width: 190px;
}
.sh-badge {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px; padding: 1.4rem 1.6rem; text-align: center;
}
.sh-badge.accent {
  background: rgba(95,133,117,0.25);
  border-color: rgba(168,206,188,0.3);
}
.sh-badge .sb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; color: white; font-weight: 300; line-height: 1;
}
.sh-badge.accent .sb-num { color: #A8CEBC; }
.sh-badge .sb-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-top: 0.3rem; line-height: 1.4;
}

@media (max-width: 860px) {
  .service-hero { padding: calc(var(--header-height) + 40px) 5% 60px; }
  .sh-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sh-badges { flex-direction: row; flex-wrap: wrap; min-width: auto; }
  .sh-badge { flex: 1; min-width: 120px; }
  .hero-service-word { font-size: 5rem; bottom: -2%; }
}
</style>

<!-- ============================
     HERO PAGE SERVICE — Exemple : Google Ads
     (adapter [TAG], [TITRE], [DESC], [MOT], badges)
     ============================ -->
<section class="service-hero">
  <div class="hero-service-word">google ads</div><!-- ← changer selon la page -->
  <div class="sh-inner">
    <div class="sh-left">
      <div class="sh-eyebrow">Service · Gestion Google Ads</div><!-- ← adapter -->
      <h1>Apparaissez en tête de Google<br/><em>quand vos clients vous cherchent.</em></h1><!-- ← adapter -->
      <p class="sh-desc">Je gère vos campagnes Google Ads de A à Z — ciblage, annonces, suivi, optimisation. Vous recevez des contacts qualifiés, pas des clics vides.</p><!-- ← adapter -->
      <div class="sh-ctas">
        <a class="btn-service-primary" href="#comment-ca-marche">Découvrir comment ça marche</a>
        <a class="btn-service-ghost" href="<?php echo esc_url(home_url('/contact/')); ?>">Me contacter</a>
      </div>
    </div>
    <div class="sh-badges">
      <div class="sh-badge accent">
        <div class="sb-num">65%</div>
        <div class="sb-lbl">de contacts en plus<br/>en moyenne</div>
      </div>
      <div class="sh-badge">
        <div class="sb-num">−45%</div>
        <div class="sb-lbl">de coût par contact</div>
      </div>
      <div class="sh-badge">
        <div class="sb-num">7j</div>
        <div class="sb-lbl">pour les premières<br/>demandes</div>
      </div>
    </div>
  </div>
</section>

<!--
  INSTRUCTIONS :
  1. Coller ce bloc au début de chaque page service (après get_header())
  2. Changer .hero-service-word > text selon la page :
     - "google ads", "réseaux sociaux", "analytics", etc.
  3. Adapter .sh-eyebrow, h1, .sh-desc
  4. Adapter les badges (.sb-num + .sb-lbl) avec les stats de la page
  5. Adapter les hrefs des boutons
  Le CSS peut être mis dans style.css du thème (une seule fois pour toutes les pages).
-->