/* ===== Woldius SARL — Feuille de style partagée pour les pages de service ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #2D7A3A;
  --green-dark: #1F5929;
  --green-light: #E8F5EA;
  --yellow: #F5A623;
  --yellow-light: #FEF3DC;
  --white: #FFFFFF;
  --off-white: #F7F8F6;
  --charcoal: #1C1C1C;
  --mid-grey: #6B7280;
  --border: #E5E7EB;
  --radius: 12px;
  --transition: 0.25s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.2; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1180px; margin: 0 auto; }

/* Topbar */
.topbar { background: var(--green-dark); color: rgba(255,255,255,0.9); font-size: 0.8rem; padding: 8px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,0.9); text-decoration: none; }
.topbar a:hover { color: var(--yellow); }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-badge { background: var(--yellow); color: var(--charcoal); font-weight: 700; padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; }

/* Nav */
nav.main-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 5%; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.nav-logo svg { height: 40px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.92rem; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--charcoal); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { background: var(--green); color: white !important; padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.88rem; white-space: nowrap; transition: background var(--transition); }
.nav-cta:hover { background: var(--green-dark); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Breadcrumb */
.breadcrumb { padding: 14px 5%; font-size: 0.82rem; color: var(--mid-grey); background: var(--off-white); }
.breadcrumb a { color: var(--mid-grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

/* Hero */
.service-hero { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; padding: 64px 5% 56px; }
.service-hero .container { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.service-hero-text { flex: 1 1 480px; }
.service-hero-text .eyebrow { color: var(--yellow); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.service-hero-text h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.service-hero-text p { font-size: 1.05rem; color: rgba(255,255,255,0.92); max-width: 560px; margin-bottom: 26px; }
.service-hero-img { flex: 1 1 400px; }
.service-hero-img img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--yellow); color: var(--charcoal); padding: 13px 26px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 0.92rem; transition: transform var(--transition); display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.6); color: white; padding: 11px 24px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Sections */
section { padding: 64px 5%; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }
.section-lead { color: var(--mid-grey); max-width: 700px; margin-bottom: 40px; font-size: 1.02rem; }
.eyebrow-sm { color: var(--green); font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: block; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.feature-card .icon { width: 46px; height: 46px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card .icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 2; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { color: var(--mid-grey); font-size: 0.92rem; }

.split { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.split > div { flex: 1 1 420px; }
.split img { border-radius: var(--radius); }
.split ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.split ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.split ul li svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }

.bg-off { background: var(--off-white); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding-left: 8px; }
.step .num { font-family: 'Syne',sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); opacity: 0.35; margin-bottom: 6px; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--mid-grey); }

.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--green); }
.faq details[open] summary::after { content: '−'; }
.faq p { color: var(--mid-grey); margin-top: 12px; font-size: 0.94rem; }

.related { display: flex; flex-wrap: wrap; gap: 16px; }
.related a { background: white; border: 1px solid var(--border); border-radius: 30px; padding: 10px 20px; text-decoration: none; color: var(--charcoal); font-size: 0.88rem; font-weight: 600; transition: border-color var(--transition), color var(--transition); }
.related a:hover { border-color: var(--green); color: var(--green); }

.cta-banner { background: var(--green-dark); color: white; border-radius: var(--radius); padding: 48px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.cta-banner h2 { font-size: 1.5rem; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }

footer.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 48px 5% 24px; }
footer.site-footer .footer-cols { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; margin-bottom: 32px; }
footer.site-footer h4 { color: white; font-size: 0.9rem; margin-bottom: 14px; }
footer.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer.site-footer a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; }
footer.site-footer a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }

@media (max-width: 720px) {
  nav.main-nav { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 14px 20px; }
  .service-hero .container { flex-direction: column; }
  .cta-banner { flex-direction: column; text-align: center; }
}
