:root {
  --primary: #171A22;
  --primary-dark: #0E1016;
  --primary-light: #3A4254;
  --accent: #C4533A;
  --accent-hover: #9A3C2A;
  --gold: #C4533A;
  --gold-soft: #D4B07A;
  --bg: #F4F0EA;
  --bg-alt: #E6E0D6;
  --text: #16181F;
  --gray: #5C5854;
  --white: #FFFFFF;
  --border: #D2CBC0;
  --shadow: 0 8px 30px rgba(23,26,34,0.08);
  --radius: 14px;
  --font: 'Instrument Sans', 'Source Sans 3', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
.container { width: min(1140px, 92%); margin: 0 auto; }

.privacy-strip { background: var(--primary-dark); color: #fff; text-align: center; font-size: 0.8rem; padding: 8px 16px; }
.privacy-strip a { color: var(--gold-soft); text-decoration: underline; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--white); box-shadow: 0 -8px 40px rgba(0,0,0,.15); padding: 20px; transform: translateY(110%); transition: transform .35s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 960px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.cookie-inner p { flex: 1; min-width: 240px; font-size: 0.9rem; color: var(--gray); }
.cookie-inner a { color: var(--primary); font-weight: 600; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-accept { background: var(--primary); color: #fff; border: none; padding: 12px 22px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 0.9rem; }
.btn-accept:hover { background: var(--primary-dark); }
.btn-reject { background: var(--white); color: var(--primary); border: 2px solid var(--primary); padding: 12px 22px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 0.9rem; }
.btn-reject:hover { background: var(--bg-alt); }
.cookie-change { background: none; border: none; color: var(--gold-soft); text-decoration: underline; cursor: pointer; font: inherit; font-size: inherit; padding: 0; }

.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img.logo-img { height: 42px; width: 42px; object-fit: cover; border-radius: 50%; }
.logo-text { font-weight: 800; font-size: 1.25rem; color: var(--primary); letter-spacing: -0.02em; }
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a { color: var(--gray); font-weight: 500; font-size: 0.9rem; padding: 8px 12px; border-radius: 8px; transition: all .2s; }
.nav a:hover, .nav a.active { color: var(--primary); background: var(--bg-alt); }
.lang-switch { display: flex; gap: 2px; margin-left: 8px; background: var(--bg-alt); border-radius: 8px; padding: 3px; }
.lang-switch a { padding: 5px 10px !important; font-size: 0.75rem !important; font-weight: 700 !important; border-radius: 6px !important; color: var(--gray) !important; background: transparent !important; }
.lang-switch a.active { background: var(--primary) !important; color: #fff !important; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all .2s; text-align: center; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-gold { background: var(--accent); color: #fff; }
.btn-gold:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

.hero { position: relative; padding: 72px 0 64px; overflow: hidden; background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%); color: #fff; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.hero .subtitle { font-size: 1.1rem; opacity: 0.92; margin-bottom: 28px; max-width: 540px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
.hero-form { background: var(--white); border-radius: 18px; padding: 28px; box-shadow: 0 20px 50px rgba(0,0,0,.2); color: var(--text); }
.hero-form h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 18px; font-weight: 700; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.95rem; font-family: inherit; background: var(--bg); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; }
.checkbox-group input { margin-top: 3px; flex-shrink: 0; }
.checkbox-group a { font-weight: 600; }

.section { padding: 72px 0; }
.section.bg-light { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--primary); margin-bottom: 12px; letter-spacing: -0.02em; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(23,26,34,0.12); }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; }
.card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--gray); font-size: 0.92rem; }

.clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; }
.client-logo { font-weight: 700; font-size: 0.95rem; color: var(--gray); opacity: 0.55; letter-spacing: 0.04em; text-transform: uppercase; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--white); border-radius: 18px; padding: 32px 28px; border: 1.5px solid var(--border); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 12px 40px rgba(196,83,58,0.28); position: relative; }
.price-card.featured::before { content: 'Calendrier'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.price { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin: 8px 0; }
.price span { font-size: 1rem; font-weight: 500; color: var(--gray); }
.period { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.price-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.price-card ul li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--gray); font-size: 0.92rem; border-bottom: 1px solid var(--bg-alt); }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.case-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.case-card img { width: 100%; height: 180px; object-fit: cover; }
.case-body { padding: 20px; }
.case-tag { display: inline-block; background: var(--bg-alt); color: var(--primary); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.case-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
.case-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 12px; }
.case-result { font-weight: 700; color: var(--primary); font-size: 0.9rem; border-top: 1px solid var(--border); padding-top: 12px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial p { color: var(--gray); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; line-height: 1.65; }
.author { display: flex; align-items: center; gap: 12px; }
.author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; }
.author strong { display: block; font-size: 0.9rem; color: var(--text); }
.author span { font-size: 0.8rem; color: var(--gray); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center; }
.team-card img { width: 100%; height: 300px; object-fit: cover; object-position: top center; background: var(--primary-dark); }
.team-info { padding: 24px 20px; }
.team-info h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 4px; }
.team-info .role { color: var(--accent); font-weight: 600; font-size: 0.85rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.team-info p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.linkedin-btn { display: inline-block; padding: 8px 16px; border: 1.5px solid var(--primary); border-radius: 8px; font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.linkedin-btn:hover { background: var(--primary); color: #fff; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-body { padding: 18px; }
.news-meta { display: flex; gap: 12px; font-size: 0.75rem; color: var(--gray); margin-bottom: 8px; flex-wrap: wrap; }
.news-body h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.news-body p { color: var(--gray); font-size: 0.88rem; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; padding: 20px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.step p { color: var(--gray); font-size: 0.88rem; }

.cta-block { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; text-align: center; padding: 72px 20px; }
.cta-block h2 { font-size: 2rem; margin-bottom: 12px; font-weight: 800; }
.cta-block p { opacity: 0.9; margin-bottom: 28px; font-size: 1.1rem; }

.page-hero { background: linear-gradient(145deg, var(--primary-dark), var(--primary)); color: #fff; padding: 56px 0; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { opacity: 0.9; font-size: 1.1rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.icon-box { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-alt); color: var(--primary); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--primary); margin-bottom: 2px; }
.contact-item div { color: var(--gray); font-size: 0.95rem; }

.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 20px; color: var(--gray); font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 900px; padding-bottom: 18px; }
.article { max-width: 760px; margin: 0 auto; }
.article .lead { font-size: 1.15rem; color: var(--gray); margin-bottom: 28px; }
.article h2 { color: var(--primary); font-size: 1.35rem; margin: 28px 0 12px; }
.article p { color: var(--gray); margin-bottom: 14px; }
.article ul { padding-left: 20px; color: var(--gray); margin-bottom: 18px; }
.article ul li { margin-bottom: 8px; }
.article-hero-img { width: 100%; height: 280px; object-fit: cover; border-radius: 16px; margin-bottom: 28px; }
.prose-wide { max-width: 900px; margin: 0 auto; }
.prose-wide p { color: var(--gray); margin-bottom: 14px; }
.prose-wide h2 { color: var(--primary); font-size: 1.4rem; margin: 32px 0 12px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 20px; text-align: center; }
.stat-box strong { display: block; font-size: 1.6rem; color: var(--primary); }
.stat-box span { font-size: 0.85rem; color: var(--gray); }
@media (max-width: 600px) { .stat-row { grid-template-columns: 1fr; } }

.legal-content { max-width: 800px; margin: 0 auto; padding: 48px 20px 72px; }
.legal-content h1 { color: var(--primary); margin-bottom: 8px; font-size: 2rem; }
.expanded-block { margin-bottom: 28px; }
.expanded-block h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.2rem; }
.expanded-block p, .expanded-block li { color: var(--gray); margin-bottom: 10px; }
.expanded-block ul { padding-left: 20px; margin-bottom: 16px; }

.footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 40px 0 24px; }
.footer-legal { font-size: 0.82rem; line-height: 1.7; opacity: 0.9; }
.footer-legal a { display: inline; color: var(--gold-soft); }

.ty-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%); }
.ty-card { background: #fff; border-radius: 20px; padding: 48px 40px; max-width: 560px; width: 100%; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.ty-icon { width: 88px; height: 88px; margin: 0 auto 24px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--gold-soft)); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(196,83,58,.35); }
.ty-icon svg { width: 44px; height: 44px; }
.ty-card h1 { font-size: 1.85rem; color: var(--primary); margin: 0 0 12px; font-weight: 800; }
.ty-card .lead { color: var(--gray); font-size: 1.05rem; line-height: 1.6; margin-bottom: 28px; }
.ty-steps { text-align: left; background: var(--bg-alt); border-radius: 14px; padding: 20px 22px; margin-bottom: 28px; }
.ty-steps h3 { font-size: 0.95rem; color: var(--primary); margin: 0 0 12px; font-weight: 700; }
.ty-steps ol { margin: 0; padding-left: 20px; color: var(--gray); font-size: 0.92rem; line-height: 1.7; }
.ty-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ty-actions .btn { min-width: 160px; }

@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-3, .pricing-grid, .testimonial-grid, .team-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .cards-4, .process-steps { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.1); border-top: 1px solid var(--border); }
  .mobile-toggle { display: block; }
  .header-inner { position: relative; }
}
@media (max-width: 600px) {
  .cards-3, .pricing-grid, .testimonial-grid, .team-grid, .news-grid, .cards-4, .process-steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
}

.article-wrap { max-width: 760px; margin: 0 auto; padding: 48px 20px 72px; }
.article-wrap .news-meta { margin-bottom: 18px; }
.article-wrap h1 { color: var(--primary); font-size: clamp(1.7rem,3vw,2.3rem); margin-bottom: 18px; }
.article-wrap p { color: var(--gray); margin-bottom: 14px; font-size: 1.02rem; }
.article-hero-img { width: 100%; height: 280px; object-fit: cover; border-radius: 14px; margin: 8px 0 28px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .method-grid { grid-template-columns: 1fr; } }
