/* ============================================================
   PetPilote — Feuille de style partagée
   petpilote.stockpilote.fr
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --green:    #2D6A4F;
  --green-d:  #1B4332;
  --green-l:  #40916C;
  --green-xl: #74C69D;
  --gold:     #D4A017;
  --bg:       #F0F7F4;
  --white:    #FFFFFF;
  --text:     #1A2E25;
  --muted:    #5C7A6B;
  --border:   #C8DDD5;
  --radius:   14px;
  --shadow:   0 2px 12px rgba(45,106,79,.08);
  --shadow-lg: 0 8px 32px rgba(45,106,79,.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 32px; width: 32px; border-radius: 7px; object-fit: contain; background: var(--bg); padding: 2px; }
.nav-logo span { font-size: 1.05rem; font-weight: 700; color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); font-weight: 600; }
.nav-cta {
  background: var(--green); color: #fff;
  padding: 9px 20px; border-radius: 999px;
  font-size: .87rem; font-weight: 600;
  transition: background .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-d); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; display: block; }
.nav-mobile {
  display: none; position: absolute; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 24px; flex-direction: column; gap: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 4px 0; border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border: none; }

/* ── NAV DROPDOWN (site-nav) ── */
.site-nav .nav-dd { position: relative; }
.site-nav .nav-dd-btn {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 4px; font-family: inherit;
  transition: color .15s;
}
.site-nav .nav-dd-btn:hover { color: var(--green); font-weight: 600; }
.site-nav .nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  min-width: 210px; padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 200;
}
.site-nav .nav-dd-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-nav .nav-dd-item {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--text);
  transition: background .12s, color .12s;
}
.site-nav .nav-dd-item:hover { background: var(--bg); color: var(--green); }

/* ── FOOTER ── */
.site-footer {
  background: var(--green-d); color: rgba(255,255,255,.65);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-wrap img { height: 32px; width: 32px; border-radius: 7px; background: rgba(255,255,255,.1); padding: 2px; }
.footer-logo-wrap span { font-size: 1rem; font-weight: 700; color: #fff; }
.footer-brand-desc { font-size: .87rem; line-height: 1.7; max-width: 240px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); transition: all .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.2); color: #fff; }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 28px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }
.footer-bottom-links { display: flex; gap: 18px; }

/* ── LAYOUT ── */
.container    { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }
.container-xs { max-width: 600px; margin: 0 auto; }
section { padding: 72px 24px; }
.bg-light { background: var(--bg); }

.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--muted); max-width: 560px; margin-bottom: 48px; line-height: 1.7;
}

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 100%);
  color: #fff; padding: 80px 24px 64px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 560px; line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; font-weight: 600; font-size: .95rem;
  padding: 12px 24px; transition: all .15s;
  cursor: pointer; border: none; text-align: center;
}
.btn-primary { background: var(--gold); color: var(--green-d); box-shadow: 0 4px 16px rgba(212,160,23,.25); }
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover  { background: var(--green-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--green); background: var(--bg); }
.btn-white { background: #fff; color: var(--green-d); }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .84rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── TODO BADGES ── */
.todo {
  display: inline; background: #fff8e1; color: #7c5c00;
  padding: 1px 8px; border-radius: 4px; font-size: .88em;
  font-family: 'Courier New', monospace; font-style: normal;
  border: 1px dashed #f0c040; white-space: nowrap;
}
.todo-block {
  background: #fff8e1; border: 1px dashed #f0c040; border-radius: 10px;
  padding: 12px 16px; margin: 10px 0;
  color: #7c5c00; font-size: .9rem; display: flex; align-items: flex-start; gap: 8px;
}

/* ── LEGAL ── */
.legal-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
  max-width: 1100px; margin: 0 auto; padding: 56px 24px 80px; align-items: start;
}
.legal-sidebar {
  position: sticky; top: 84px;
  background: var(--bg); border-radius: var(--radius);
  padding: 20px 18px; border: 1px solid var(--border);
}
.legal-sidebar h3 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 14px;
}
.legal-sidebar ul { list-style: none; }
.legal-sidebar li { margin-bottom: 7px; }
.legal-sidebar li a { font-size: .87rem; color: var(--muted); transition: color .15s; display: block; }
.legal-sidebar li a:hover, .legal-sidebar li a.active { color: var(--green); font-weight: 600; }
.legal-update { font-size: .75rem; color: var(--muted); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.legal-body h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--text);
  margin: 48px 0 14px; padding-top: 24px; scroll-margin-top: 84px;
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; }
.legal-body h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.legal-body p { color: var(--muted); margin-bottom: 14px; line-height: 1.78; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 22px; }
.legal-body li { color: var(--muted); margin-bottom: 7px; line-height: 1.7; }
.legal-body strong { color: var(--text); font-weight: 600; }
hr.legal-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── PRICING ── */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 48px; }
.pricing-toggle-track {
  width: 52px; height: 28px; background: var(--green); border-radius: 999px;
  position: relative; cursor: pointer; transition: background .2s;
}
.pricing-toggle-thumb {
  position: absolute; top: 3px; left: 3px; right: auto;
  width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: left .2s;
}
.pricing-toggle span { font-size: .9rem; font-weight: 500; color: var(--muted); }
.pricing-toggle .active-label { font-weight: 700; color: var(--text); }
.pricing-badge-save { background: var(--gold); color: var(--green-d); font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 20px; padding: 32px 28px; position: relative;
  transition: box-shadow .25s, transform .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--green);
  box-shadow: 0 12px 48px rgba(45,106,79,.18);
  transform: scale(1.04);
}
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.pricing-tier { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.pricing-price-row { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; }
.pricing-price-num { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-price-cur { font-size: 1.4rem; font-weight: 600; color: var(--text); align-self: flex-start; margin-top: 10px; }
.pricing-price-per { font-size: .88rem; color: var(--muted); margin-bottom: 4px; }
.pricing-tagline { font-size: .88rem; color: var(--muted); margin-bottom: 28px; min-height: 40px; line-height: 1.5; }
.pricing-sep { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pricing-features-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 16px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text); margin-bottom: 11px; line-height: 1.4;
}
.pricing-feature.off { color: var(--muted); }
.pricing-feature.off svg { color: var(--border); }
.pricing-feature svg { flex-shrink: 0; margin-top: 1px; }
.pricing-cta { margin-top: 28px; display: block; }
.pricing-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── BLOG ── */
.blog-featured {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 48px;
  transition: box-shadow .25s, transform .25s;
}
.blog-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-featured-img {
  aspect-ratio: auto; background: linear-gradient(135deg, var(--green-d) 0%, var(--green-l) 100%);
  display: flex; align-items: center; justify-content: center; min-height: 280px;
  position: relative;
}
.blog-featured-img svg { color: rgba(255,255,255,.25); }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .category-badge { margin-bottom: 16px; }
.blog-featured-body h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.blog-featured-body p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-size: .95rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green-l) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.blog-card-img svg { color: rgba(255,255,255,.25); }
.blog-card-img .category-badge { position: absolute; top: 12px; left: 12px; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: .75rem; color: var(--muted); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; flex: 1; }
.blog-card-body p { font-size: .87rem; color: var(--muted); line-height: 1.65; }
.blog-card-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; flex-shrink: 0; }
.blog-author-name { font-size: .8rem; font-weight: 600; }
.blog-read-more { font-size: .82rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 3px; }
.category-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  color: #fff; font-size: .7rem; font-weight: 700;
  padding: 4px 11px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: .06em;
}
.category-badge.light {
  background: rgba(45,106,79,.1); color: var(--green);
  border-color: rgba(45,106,79,.2); backdrop-filter: none;
}

/* ── ARTICLE ── */
.article-layout { max-width: 1100px; margin: 0 auto; padding: 56px 24px 80px; display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }
.article-header { margin-bottom: 40px; }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-header h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.article-intro { font-size: 1.1rem; color: var(--muted); line-height: 1.8; }
.article-cover {
  border-radius: 20px; overflow: hidden; aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green-l) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 48px;
}
.article-cover svg { color: rgba(255,255,255,.2); }
.article-body h2 { font-size: 1.45rem; font-weight: 800; margin: 44px 0 14px; line-height: 1.25; scroll-margin-top: 84px; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; }
.article-body p { color: var(--muted); margin-bottom: 18px; line-height: 1.82; font-size: 1.02rem; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--muted); margin-bottom: 8px; line-height: 1.72; font-size: 1.02rem; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body .callout {
  background: var(--bg); border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 28px 0;
}
.article-body .callout p { margin: 0; font-size: .97rem; }
.article-sidebar { position: sticky; top: 84px; }
.article-sidebar .sidebar-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.article-sidebar .sidebar-card h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.sidebar-toc li { margin-bottom: 8px; }
.sidebar-toc li a { font-size: .87rem; color: var(--muted); transition: color .15s; }
.sidebar-toc li a:hover { color: var(--green); }
.sidebar-cta-card { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; border-radius: var(--radius); padding: 22px; text-align: center; }
.sidebar-cta-card h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 10px; }
.sidebar-cta-card p { font-size: .83rem; color: rgba(255,255,255,.75); margin-bottom: 18px; line-height: 1.5; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; max-width: 1100px; margin: 0 auto; }
.contact-info h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(45,106,79,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-body .item-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.contact-item-body .item-value { font-size: .92rem; font-weight: 500; color: var(--text); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-required { color: #E74C3C; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 6px; }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.faq-sidebar { position: sticky; top: 84px; align-self: start; }
.faq-sidebar .sidebar-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.faq-sidebar .sidebar-card h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.faq-sidebar .sidebar-card li { margin-bottom: 8px; }
.faq-sidebar .sidebar-card li a { font-size: .87rem; color: var(--muted); transition: color .15s; display: flex; align-items: center; gap: 6px; }
.faq-sidebar .sidebar-card li a:hover { color: var(--green); }
.faq-group { margin-bottom: 40px; }
.faq-group-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; scroll-margin-top: 84px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 17px 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--text);
  transition: background .15s;
}
.faq-btn:hover { background: var(--bg); }
.faq-icon { flex-shrink: 0; color: var(--green); transition: transform .25s; width: 20px; height: 20px; }
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: .92rem; color: var(--muted); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ── BLOG ARTICLE EXTRAS ── */
.blog-img-placeholder {
  background: linear-gradient(135deg, #e8f4ee 0%, #d1e8dc 100%);
  border-radius: 16px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--muted); font-size: .82rem; font-weight: 500;
  text-align: center; padding: 24px;
}
.blog-img-placeholder--sm { aspect-ratio: 16/9; }
.article-img-main { aspect-ratio: 16/7; margin-bottom: 48px; }
.blog-featured-title { font-size: 1.5rem; font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.blog-featured-title a { color: var(--text); transition: color .15s; }
.blog-featured-title a:hover { color: var(--green); }
.blog-featured-excerpt { color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-size: .95rem; }
.blog-card-link { font-size: .88rem; font-weight: 600; color: var(--green); transition: opacity .15s; }
.blog-card-link:hover { opacity: .75; }
.blog-card-img-wrap { display: block; }
.blog-card--coming-soon { opacity: .65; pointer-events: none; }
.blog-category--soon { background: #f3f4f6; color: #9CA3AF; }

.article-quote {
  border-left: 3px solid var(--gold); margin: 32px 0;
  padding: 18px 24px; background: rgba(212,160,23,.06); border-radius: 0 12px 12px 0;
}
.article-quote p { font-size: 1.05rem; font-style: italic; color: var(--text); margin-bottom: 10px; line-height: 1.7; }
.article-quote cite { font-size: .82rem; color: var(--muted); font-style: normal; }

.article-cta-block {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green-l) 100%);
  border-radius: 20px; padding: 36px; color: #fff; margin: 48px 0;
}
.article-cta-block h3 { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.article-cta-block p { color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.7; }

.article-nav {
  display: flex; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--border); padding-top: 32px; margin-top: 48px;
}
.article-nav-prev, .article-nav-next {
  display: flex; flex-direction: column; gap: 4px; max-width: 48%;
  transition: opacity .15s;
}
.article-nav-next { align-items: flex-end; text-align: right; }
.article-nav-prev:hover, .article-nav-next:hover { opacity: .75; }
.article-nav-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.article-nav-title { font-size: .9rem; font-weight: 600; color: var(--green); line-height: 1.4; }

.article-sidebar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; margin-bottom: 20px;
}
.article-sidebar-card h4 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: 14px;
}
.article-sidebar-cta {
  background: linear-gradient(135deg, var(--green-d), var(--green));
  border: none; text-align: center; color: #fff;
}
.article-sidebar-cta h4 { color: rgba(255,255,255,.7); }
.article-sidebar-cta p { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.sidebar-cta-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.15); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
}
.author-block { display: flex; align-items: flex-start; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.author-bio { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.article-toc { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.article-toc li a { font-size: .85rem; color: var(--muted); transition: color .15s; }
.article-toc li a:hover { color: var(--green); }
.article-related { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.article-related li a { font-size: .87rem; color: var(--green); line-height: 1.4; transition: opacity .15s; }
.article-related li a:hover { opacity: .75; }

/* ── LEGAL TABLE ── */
.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .9rem; }
.legal-table th { background: var(--bg); font-weight: 600; text-align: left; padding: 10px 14px; border: 1px solid var(--border); color: var(--text); }
.legal-table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--muted); vertical-align: top; }
.legal-table tr:hover td { background: rgba(45,106,79,.03); }

/* ── BTN GOLD ── */
.btn-gold {
  background: var(--gold); color: var(--green-d);
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: .92rem; display: inline-block;
  transition: opacity .15s, transform .15s; border: none; cursor: pointer;
}
.btn-gold:hover { opacity: .9; transform: translateY(-1px); }

/* ── METIER PAGES ── */
.metier-hero {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 100%);
  color: #fff;
  padding: 100px 24px 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.metier-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.metier-hero .breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.metier-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.metier-hero .breadcrumb a:hover { color: #fff; }
.metier-hero .breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }
.metier-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 5px 14px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 22px;
}
.metier-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 18px;
}
.metier-hero p {
  font-size: 1.08rem; color: rgba(255,255,255,.8);
  margin-bottom: 32px; line-height: 1.65;
}
.metier-hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 12px 24px; border-radius: 999px;
  font-weight: 600; font-size: .92rem; display: inline-block;
  transition: border-color .15s, background .15s;
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.metier-hero-proof {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.metier-hero-proof span {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500;
}

/* ── PROBLEMS GRID ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: #fff;
  border: 1.5px solid #fee2b3;
  border-radius: var(--radius);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.problem-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #fff8ed;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #b45309;
}
.problem-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.problem-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── STEPS GRID ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── METIER PRICING CARD ── */
.metier-pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 460px; margin: 48px auto 0;
  text-align: center;
}
.metier-pricing-card .price { font-size: 2.6rem; font-weight: 800; color: var(--green-d); }
.metier-pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.metier-pricing-card ul { list-style: none; text-align: left; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.metier-pricing-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.metier-pricing-card ul li svg { flex-shrink: 0; margin-top: 2px; }

/* ── COMPAT METIERS GRID (reservation-en-ligne.html) ── */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.compat-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: .88rem; color: var(--text);
  transition: border-color .15s, background .15s;
}
.compat-card:hover { border-color: var(--green); background: #fff; }
.compat-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(45,106,79,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { gap: 16px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .blog-featured { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 52px 20px; }
  .page-hero { padding: 64px 20px 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  .metier-hero { padding: 80px 20px 60px; }
  .metier-hero-actions { flex-direction: column; }
  .metier-hero-actions .btn-gold,
  .metier-hero-actions .btn-white-outline { text-align: center; }
  .problems-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: 1fr 1fr; }
}
