/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  --forest:       #2E6345;
  --forest-dark:  #1A3323;
  --forest-mid:   #3E7B55;
  --forest-light: #EBF4EF;
  --orange:       #E8711A;
  --orange-light: #fff7ed;
  --text:         #1E2E24;
  --muted:        #6b7280;
  --border:       #e2e8f0;
  --white:        #ffffff;
  --bg:           #EBF4EF;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 12px rgba(0,0,0,.07);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.12);
  --max-w:        1100px;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --cream:        #F5F0EB;
  --serif:        'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --forest-deep:  #243D2C;
  --forest-pale:  #D8EDE0;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout helpers ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; background: var(--cream); }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Navbar ─────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: box-shadow .2s;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--forest);
}
.navbar-logo span { color: var(--orange); }
.logo-icon {
  width: 38px; height: 38px; background: var(--forest); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.navbar-nav { display: flex; align-items: center; gap: 2px; }
.navbar-nav a {
  padding: 8px 14px; border-radius: var(--radius); font-size: .9rem; font-weight: 500;
  color: var(--muted); transition: all .15s;
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--forest); background: var(--forest-light); }
.navbar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: var(--orange); color: var(--white) !important;
  border-radius: var(--radius); font-weight: 600; font-size: .875rem;
  transition: background .15s; white-space: nowrap;
}
.navbar-cta:hover { background: #d4621a; }
.navbar-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.navbar-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: .9375rem;
  cursor: pointer; transition: all .15s; border: none; font-family: var(--font); text-decoration: none;
}
.btn-primary   { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d4621a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,113,26,.3); }
.btn-forest    { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: .8125rem; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-mid) 100%);
  color: #fff; padding: 88px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px;
  background: rgba(232,113,26,.2); border: 1px solid rgba(232,113,26,.4);
  border-radius: 20px; font-size: .78rem; font-weight: 600; color: #FFB074;
  margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: #FFB074; }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap;
}
.hero-stat-num  { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-lbl  { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* Page hero (pages secondaires) */
.page-hero {
  background: var(--cream);
  color: var(--forest-deep);
  padding: 52px 0 48px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--forest-deep);
  line-height: 1.2;
}
.page-hero p { color: var(--muted); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--forest); }
.breadcrumb a:hover { color: var(--forest-mid); }
.breadcrumb-sep { color: var(--border); }

/* ── Section titles ─────────────────────────────────────────────────── */
.section-tag { display: inline-block; padding: 4px 12px; background: var(--forest-light); color: var(--forest); border-radius: 20px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--forest-deep); margin-bottom: 12px; letter-spacing: -.01em; }
.section-sub   { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-head  { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── Service cards ──────────────────────────────────────────────────── */
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all .2s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--forest); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #c7e8d3; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--forest-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.service-link { font-size: .8125rem; font-weight: 600; color: var(--forest); display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { color: var(--orange); }

/* ── Pricing cards ──────────────────────────────────────────────────── */
.price-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all .2s;
}
.price-card:hover { border-color: var(--forest); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--forest); background: var(--forest); color: #fff; }
.price-card-icon { font-size: 28px; margin-bottom: 12px; }
.price-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.price-card.featured h3 { color: rgba(255,255,255,.9); }
.price-amount { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--forest); line-height: 1; }
.price-card.featured .price-amount { color: #FFB074; }
.price-amount sup { font-size: 1rem; font-weight: 600; vertical-align: top; margin-top: .3em; }
.price-ht { font-size: .75rem; color: var(--muted); margin-top: 4px; }
.price-card.featured .price-ht { color: rgba(255,255,255,.5); }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,.15); }
.price-features { display: flex; flex-direction: column; gap: 8px; }
.price-feature { display: flex; align-items: flex-start; gap: 8px; font-size: .8125rem; }
.price-feature::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-feature::before { color: #86efac; }
.price-card.featured .price-feature { color: rgba(255,255,255,.85); }
.price-note { font-size: .75rem; color: var(--muted); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.price-card.featured .price-note { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.15); }

/* ── Why us cards ───────────────────────────────────────────────────── */
.why-card {
  text-align: center; padding: 32px 20px;
}
.why-icon {
  width: 64px; height: 64px; background: var(--forest-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  margin: 0 auto 16px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── CTA banner ─────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  color: #fff; text-align: center; padding: 72px 24px;
}
.cta-banner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-banner .btn { min-width: 200px; }

/* ── Process steps ──────────────────────────────────────────────────── */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(16.6% + 28px); right: calc(16.6% + 28px);
  height: 2px; background: var(--border);
}
.process-step { flex: 1; text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--forest);
  color: #fff; font-weight: 800; font-size: 1.25rem; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 1;
}
.process-step h4 { font-size: .9375rem; font-weight: 700; margin-bottom: 6px; }
.process-step p  { font-size: .8125rem; color: var(--muted); line-height: 1.5; }

/* ── Form ────────────────────────────────────────────────────────────── */
.form-section { background: var(--cream); }
.devis-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.form-card h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); color: var(--forest-deep); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-label .req { color: var(--orange); }
.form-control {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: .9rem; color: var(--text); background: var(--white);
  transition: border-color .15s; outline: none;
}
.form-control:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(27,77,46,.1); }
.form-control::placeholder { color: #9ca3af; }
.form-control.error { border-color: #dc2626; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: .75rem; color: #dc2626; margin-top: 4px; }
.form-hint  { font-size: .75rem; color: var(--muted); margin-top: 4px; }
.form-submit-bar { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.form-captcha { font-size: .75rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* Summary card */
.summary-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; box-shadow: var(--shadow); position: sticky; top: 100px;
}
.summary-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; }
.summary-row + .summary-row { border-top: 1px solid #f3f4f6; }
.summary-label { font-size: .8125rem; color: var(--muted); }
.summary-value { font-size: .9rem; font-weight: 600; }
.summary-total { border-top: 2px solid var(--border) !important; margin-top: 8px; padding-top: 12px !important; }
.summary-total .summary-label { font-weight: 700; color: var(--text); }
.summary-total .summary-value { font-size: 1.25rem; color: var(--forest); font-weight: 800; }
.summary-placeholder { text-align: center; padding: 24px 0; color: var(--muted); font-size: .875rem; }
.summary-validity { background: var(--forest-light); border-radius: var(--radius); padding: 10px 14px; margin-top: 14px; font-size: .78rem; color: var(--forest); font-weight: 500; text-align: center; }
.summary-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

/* Alert */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; margin-bottom: 16px; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info    { background: var(--forest-light); color: var(--forest); border: 1px solid #bbf7d0; }

/* ── Suivi devis ──────────────────────────────────────────────────────── */
.suivi-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.suivi-main { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.suivi-header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.suivi-num { font-size: 1.25rem; font-weight: 800; }
.suivi-date { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px; font-size: .8125rem; font-weight: 600;
}
.status-brouillon { background: #f1f5f9; color: #475569; }
.status-envoye    { background: #ddf2fe; color: #0369a1; }
.status-accepte   { background: #dcfce7; color: #15803d; }
.status-refuse    { background: #fee2e2; color: #b91c1c; }
.status-expire    { background: #fef3c7; color: #b45309; }
.suivi-body { padding: 28px; }
.devis-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.devis-table th { text-align: left; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 8px 12px; background: var(--bg); border-bottom: 1px solid var(--border); }
.devis-table td { padding: 12px; border-bottom: 1px solid #f3f4f6; font-size: .875rem; }
.devis-table tr:last-child td { border-bottom: none; }
.devis-totals { background: var(--bg); border-radius: var(--radius); padding: 16px 20px; }
.devis-total-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .875rem; }
.devis-total-row.main { font-weight: 800; font-size: 1.05rem; padding-top: 10px; margin-top: 5px; border-top: 2px solid var(--border); color: var(--forest); }
.suivi-side { display: flex; flex-direction: column; gap: 16px; }
.suivi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.suivi-card h4 { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; }
.info-row { display: flex; flex-direction: column; gap: 2px; padding: 7px 0; border-bottom: 1px solid #f3f4f6; }
.info-row:last-child { border-bottom: none; }
.info-label { font-size: .72rem; color: var(--muted); }
.info-val { font-size: .875rem; font-weight: 500; }
.suivi-actions { display: flex; flex-direction: column; gap: 10px; }
.suivi-timeline { padding: 20px; }
.timeline-item { display: flex; gap: 14px; padding: 8px 0; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); flex-shrink: 0; margin-top: 6px; }
.timeline-dot.done { background: var(--forest); }
.timeline-dot.current { background: var(--orange); box-shadow: 0 0 0 3px rgba(232,113,26,.2); }
.timeline-text { font-size: .8125rem; }
.timeline-text strong { display: block; font-weight: 600; }
.timeline-text span { color: var(--muted); font-size: .75rem; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--gs-dark); color: rgba(238,240,235,.55); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-wrap img { filter: brightness(0) invert(1); mix-blend-mode: normal; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; color: rgba(238,240,235,.45); }
.footer h4 { color: rgba(238,240,235,.9); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .875rem; color: rgba(238,240,235,.45); transition: color .15s; }
.footer-links a:hover { color: rgba(238,240,235,.9); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; margin-bottom: 10px; color: rgba(238,240,235,.45); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gs-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 8px; color: rgba(238,240,235,.3); }
.footer-bottom a { color: rgba(238,240,235,.3); }
.footer-bottom a:hover { color: rgba(238,240,235,.7); }

/* ── Print styles ────────────────────────────────────────────────────── */
@media print {
  .navbar, .cta-banner, .footer, .suivi-actions, .no-print { display: none !important; }
  .suivi-layout { grid-template-columns: 1fr; }
  .suivi-side .suivi-card:not(.print-show) { display: none; }
  body { background: #fff; }
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .devis-layout { grid-template-columns: 1fr; }
  .suivi-layout { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 56px; }
  .section { padding: 52px 0; }
  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: var(--white);
    border-top: 1px solid var(--border); padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .navbar-nav.open a { padding: 10px 24px; border-radius: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ══════════════════════════════════════════════════════════════════════
   Koox editorial layout — homepage redesign
   ══════════════════════════════════════════════════════════════════════ */

/* ── Split sections (photo + text, full viewport height) ─────────────── */
.kx-split {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: 100vh;
  overflow: hidden;
}
.kx-split-rev {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 100vh;
  overflow: hidden;
}

/* Photo pane */
.kx-img {
  position: relative;
  overflow: hidden;
}
.kx-img img,
.kx-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.kx-img:hover img,
.kx-img:hover video { transform: scale(1.03); }

/* Text pane */
.kx-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--cream);
}
.kx-txt-dark {
  background: var(--forest-deep);
  color: #fff;
}
.kx-txt-dark .kx-num { color: rgba(255,255,255,.35); }
.kx-txt-dark .kx-h2  { color: #fff; }
.kx-txt-dark .kx-body { color: rgba(255,255,255,.65); }

/* Section label ". 01 ." */
.kx-num {
  display: block;
  font-size: .7rem;
  letter-spacing: .28em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Headings */
.kx-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--forest-deep);
  margin-bottom: 24px;
}
.kx-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest-deep);
  margin-bottom: 24px;
}
.kx-h1 em, .kx-h2 em {
  font-style: italic;
  color: var(--forest-mid);
}

/* Body text */
.kx-body {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 380px;
}

/* CTA row in hero */
.kx-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.kx-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1.5px solid var(--forest);
  padding-bottom: 2px;
  letter-spacing: .04em;
  transition: color .15s, border-color .15s;
}
.kx-link:hover { color: var(--forest-mid); border-color: var(--forest-mid); }

/* Scroll hint at bottom of hero */
.kx-scroll-hint {
  margin-top: auto;
  padding-top: 40px;
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  animation: kx-bounce 1.4s ease-in-out 3 forwards;
}
@keyframes kx-bounce {
  0%   { transform: translateY(0);   opacity: 1; }
  50%  { transform: translateY(8px); opacity: .7; }
  100% { transform: translateY(0);   opacity: 1; }
}

/* ── Services list (section 01) ──────────────────────────────────────── */
.kx-service-list { list-style: none; margin-bottom: 40px; }
.kx-service-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  transition: gap .2s;
}
.kx-service-list li:hover { gap: 24px; }
.kx-service-list strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 3px;
  color: #fff;
}
.kx-service-list span {
  display: block;
  font-size: .775rem;
  color: rgba(255,255,255,.5);
  line-height: 1.45;
}
.kx-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,.35);
  opacity: 1;
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
.kx-service-list li:hover .kx-arrow { color: #fff; transform: translateX(5px); }

/* ── Why us items (section 02) ───────────────────────────────────────── */
.kx-why-list { display: flex; flex-direction: column; gap: 0; }
.kx-why-item {
  padding: 22px 0 22px 20px;
  border-left: 2px solid var(--forest-mid);
  border-bottom: 1px solid rgba(46,99,69,.1);
  transition: border-left-color .2s, padding-left .2s;
}
.kx-why-item:last-child { border-bottom: none; }
.kx-why-item:hover { border-left-color: var(--forest); padding-left: 26px; }
.kx-why-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.kx-why-item p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Process section (section 03, cream bg) ──────────────────────────── */
.kx-process-section {
  background: var(--cream);
  padding: 104px 0;
}
.kx-process-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.kx-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}
.kx-step-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(27,77,46,.15);
  line-height: 1;
  margin-bottom: 16px;
}
.kx-step h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--forest-deep);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.kx-step p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA (section 04, dark green bg) ────────────────────────────────── */
.kx-cta {
  background: var(--forest-deep);
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kx-cta .kx-h2 { color: #fff; margin-bottom: 20px; }
.kx-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 44px;
  line-height: 1.7;
}
.btn-light {
  background: var(--cream);
  color: var(--forest-deep);
  border: none;
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ── Stat bar (between sections) ────────────────────────────────────── */
.kx-stats {
  background: var(--forest);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.kx-stat {
  flex: 1;
  min-width: 160px;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.kx-stat:last-child { border-right: none; }
.kx-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.kx-stat-num sup { font-size: 1rem; vertical-align: super; }
.kx-stat-lbl {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Stat vedette (48h) */
.kx-stat--feature {
  flex: 0 0 auto;
  padding: 36px 48px 36px 32px;
  border-right: none;
}
.kx-stat--feature .kx-stat-num {
  font-size: 3.6rem;
}
.kx-stat--feature .kx-stat-lbl {
  color: rgba(255,255,255,.7);
}
.kx-stats-rule {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.2);
  align-self: center;
  flex-shrink: 0;
  margin-right: 8px;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .kx-txt { padding: 64px 48px; }
  .kx-process-inner { gap: 48px; }
}
@media (max-width: 860px) {
  .kx-split, .kx-split-rev {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .kx-img {
    height: 60vw;
    min-height: 260px;
    max-height: 440px;
  }
  .kx-split-rev .kx-img { order: -1; }
  .kx-txt { padding: 56px 32px; }
  .kx-body { max-width: 100%; }
  .kx-scroll-hint { display: none; }
  .kx-process-inner { grid-template-columns: 1fr; gap: 40px; }
  .kx-steps { gap: 32px; }
  .kx-stats { gap: 0; }
  .kx-stat { min-width: 50%; }
  .kx-stat--feature { flex: 1; min-width: 100%; padding: 32px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .kx-stats-rule { display: none; }
}
@media (max-width: 560px) {
  .kx-txt { padding: 44px 24px; }
  .kx-steps { grid-template-columns: 1fr; }
  .kx-cta { padding: 80px 24px; }
  .kx-process-section { padding: 72px 0; }
  .kx-stat { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ══════════════════════════════════════════════════════════════════════
   Hamburger navbar + menu plein écran
   ══════════════════════════════════════════════════════════════════════ */

/* Barre de navigation */
.kx-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
  height: 80px;
  display: flex;
  align-items: center;
}
.kx-nav--scrolled,
.kx-nav--inner {
  border-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.kx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.kx-nav-logo { display: flex; align-items: center; }

/* Bouton hamburger */
.kx-hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 600;
}
.kx-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.76,0,.24,1),
              opacity .25s,
              width .25s;
  transform-origin: center;
}
.kx-hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #fff;
}
.kx-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
  background: #fff;
}
.kx-hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #fff;
}

/* Overlay plein écran */
body.kx-no-scroll { overflow: hidden; }

.kx-overlay {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--forest-deep);
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.76,0,.24,1);
  display: flex;
  align-items: center;
}
.kx-overlay.open { transform: translateY(0); }

.kx-overlay-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

/* Liens du menu */
.kx-overlay-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 0;
}
.kx-overlay-nav a {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.2vw, 4.2rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: .02em;
  color: rgba(255,255,255,.25);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .25s;
}
.kx-overlay-nav a:last-child { border-bottom: none; }
.kx-overlay-nav a:hover     { color: #fff; padding-left: 16px; }
.kx-overlay-nav a.kx-ov-active { color: rgba(255,255,255,.55); }

/* Pied du menu : connexion */
.kx-overlay-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.kx-ov-name {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-right: 8px;
}
.kx-ov-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 40px;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s;
}
.kx-ov-pill:hover { background: rgba(255,255,255,.1); color: #fff; }
.kx-ov-dim {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .2s;
}
.kx-ov-dim:hover { color: rgba(255,255,255,.7); }

/* Responsive hamburger */
@media (max-width: 560px) {
  .kx-nav-inner { padding: 0 20px; }
  .kx-overlay-nav a { font-size: clamp(1.4rem, 7vw, 2.6rem); }
  .kx-overlay-wrap { padding-top: 80px; padding-bottom: 40px; }
}

/* ── Checklist inside kx panels (pages intérieures) ─────────────────── */
.kx-checklist {
  list-style: none;
  margin-bottom: 36px;
}
.kx-checklist li {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(46,99,69,.1);
  font-size: .875rem;
  line-height: 1.55;
  color: var(--muted);
}
.kx-checklist li:last-child { border-bottom: none; }
.kx-checklist li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: 2px;
}
.kx-txt-dark .kx-checklist li {
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
}
.kx-txt-dark .kx-checklist li::before {
  color: rgba(255,255,255,.3);
}

/* ── Prix dans les panneaux kx ───────────────────────────────────────── */
.kx-price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.kx-txt-dark .kx-price { color: #fff; }
.kx-price-sub {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.kx-txt-dark .kx-price-sub { color: rgba(255,255,255,.35); }

/* ── Cartes prestations dynamiques ──────────────────────────────────── */
.presta-vitrine-section { background: var(--cream); padding: 56px 0 64px; }
.presta-vitrine-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.presta-vitrine-title::after { content:''; flex:1; height:1px; background:rgba(46,99,69,.12); }
.presta-vitrine-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.presta-vitrine-card { background: var(--white); border: 1px solid rgba(46,99,69,.12); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; transition: box-shadow .15s; }
.presta-vitrine-card:hover { box-shadow: 0 4px 20px rgba(46,99,69,.1); }
.presta-vitrine-card h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 8px; }
.presta-vitrine-card p { font-size: .82rem; color: var(--muted); flex: 1; margin-bottom: 18px; line-height: 1.55; }
.presta-vitrine-prix { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--forest); line-height: 1; }
.presta-vitrine-prix-sub { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 3px; margin-bottom: 16px; }
@media (max-width: 600px) { .presta-vitrine-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════════
   Geodiag Studio · Homepage Redesign — gs- prefix
   Squarespace-inspired: dark/cream, Cormorant 300, breathing space
   ══════════════════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────────────── */
:root {
  --gs-dark:        #0B1A10;
  --gs-cream:       #F7F4EF;
  --gs-orange:      #E8711A;
  --gs-txt-light:   #EEF0EB;
  --gs-muted-light: rgba(238,240,235,.5);
}

/* ── Scroll reveal ──────────────────────────────────────────────────── */
.gs-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.gs-reveal.visible { opacity: 1; transform: none; }
.gs-reveal-d1 { transition-delay: .12s; }
.gs-reveal-d2 { transition-delay: .24s; }
.gs-reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .gs-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Nav : transparente sur le hero ────────────────────────────────── */
.gs-nav-hero {
  background: transparent;
  border-color: transparent !important;
  box-shadow: none !important;
  transition: background .35s, border-color .35s, box-shadow .35s;
}
.gs-nav-hero .kx-hamburger span  { background: rgba(255,255,255,.85); }
.gs-nav-hero .kx-nav-logo img    { mix-blend-mode: normal; filter: brightness(0) invert(1); }
.gs-nav-hero.kx-nav--scrolled {
  background: #fff;
  border-color: var(--border) !important;
  box-shadow: 0 1px 8px rgba(0,0,0,.05) !important;
}
.gs-nav-hero.kx-nav--scrolled .kx-hamburger span { background: var(--forest-deep); }
.gs-nav-hero.kx-nav--scrolled .kx-nav-logo img   { filter: none; mix-blend-mode: multiply; }

/* ── Nav desktop (liens visibles) ──────────────────────────────────── */
.gs-desktop-nav {
  display: flex; align-items: center; gap: 2px;
}
.gs-desktop-nav a {
  font-size: .82rem; font-weight: 500; padding: 8px 14px;
  border-radius: var(--radius); color: rgba(255,255,255,.6);
  transition: color .15s, background .15s; letter-spacing: .02em; white-space: nowrap;
}
.gs-desktop-nav a:hover { color: #fff; }
.gs-desktop-nav .gs-nav-cta {
  background: var(--gs-orange); color: #fff !important; padding: 9px 20px;
  font-weight: 600; border-radius: var(--radius); margin-left: 8px;
}
.gs-desktop-nav .gs-nav-cta:hover { background: #d4621a; }
/* État scrollé / pages intérieures : texte sombre sur fond blanc */
.kx-nav--scrolled .gs-desktop-nav a,
.kx-nav--inner    .gs-desktop-nav a { color: var(--muted); }
.kx-nav--scrolled .gs-desktop-nav a:hover,
.kx-nav--inner    .gs-desktop-nav a:hover { color: var(--forest); background: var(--forest-light); }
.kx-nav--scrolled .gs-desktop-nav .gs-nav-cta,
.kx-nav--inner    .gs-desktop-nav .gs-nav-cta { color: #fff !important; background: var(--gs-orange); }
/* Visibilité selon viewport */
@media (min-width: 701px) { .kx-hamburger { display: none !important; } }
@media (max-width: 700px) { .gs-desktop-nav { display: none; } }

/* ── Boutons gs- ────────────────────────────────────────────────────── */
.gs-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; background: var(--gs-orange); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: .9375rem;
  transition: background .15s, transform .15s; white-space: nowrap;
}
.gs-btn-primary:hover { background: #d4621a; transform: translateY(-1px); }
.gs-btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.75);
  border-radius: var(--radius); font-weight: 500; font-size: .9375rem;
  transition: border-color .15s, color .15s;
}
.gs-btn-outline-light:hover { border-color: #fff; color: #fff; }
.gs-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; background: var(--gs-dark); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: .9375rem;
  transition: opacity .15s;
}
.gs-btn-dark:hover { opacity: .82; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.gs-hero {
  position: relative; height: 100vh; min-height: 580px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.gs-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.gs-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,26,16,.6) 0%,
    rgba(11,26,16,.35) 50%,
    rgba(11,26,16,.82) 100%
  );
}
@media (prefers-reduced-motion: reduce) {
  .gs-hero-video { display: none; }
  .gs-hero { background: var(--gs-dark); }
}
.gs-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 860px;
}
.gs-eyebrow {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 32px;
}
.gs-hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; color: #fff; line-height: 1.04;
  letter-spacing: -.02em; margin-bottom: 28px;
}
.gs-hero-title em { font-style: italic; color: rgba(255,255,255,.55); }
.gs-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 48px;
}
.gs-hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.gs-hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.28); z-index: 2;
  animation: gs-scroll-bounce 1.8s ease-in-out 3 forwards;
}
@keyframes gs-scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0);   }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats ──────────────────────────────────────────────────────────── */
.gs-stats {
  background: var(--gs-cream); padding: 100px 48px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
}
.gs-stat-feature {
  text-align: center; padding: 0 72px 0 0;
  border-right: 1px solid rgba(11,26,16,.12); flex-shrink: 0;
}
.gs-stat-feature-num {
  font-family: var(--serif); font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 300; color: var(--gs-dark); line-height: 1; letter-spacing: -.04em;
}
.gs-stat-feature-num sup { font-size: 2rem; vertical-align: super; }
.gs-stat-feature-lbl {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(11,26,16,.38); margin-top: 12px;
}
.gs-stats-others {
  display: flex; gap: 56px; padding-left: 72px; flex-wrap: wrap; align-items: center;
}
.gs-stat-other { text-align: center; }
.gs-stat-other-num {
  font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--gs-dark); line-height: 1; letter-spacing: -.02em;
}
.gs-stat-other-num sup { font-size: .85rem; vertical-align: super; }
.gs-stat-other-lbl {
  font-size: .67rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(11,26,16,.36); margin-top: 6px;
}

/* ── Services ───────────────────────────────────────────────────────── */
.gs-services { background: var(--gs-dark); padding: 100px 0; }
.gs-services-header {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px; margin-bottom: 56px;
}
.gs-services-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: var(--gs-txt-light); line-height: 1.1;
}
.gs-services-title em { font-style: italic; opacity: .45; }
.gs-service-list { list-style: none; }
.gs-service-item {
  border-top: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.gs-service-item:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.gs-service-item:hover { background: rgba(255,255,255,.03); }
.gs-service-item-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 32px 48px;
  display: flex; align-items: center; gap: 40px;
  transition: padding-left .3s ease;
}
.gs-service-item:hover .gs-service-item-inner { padding-left: 64px; }
.gs-service-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
  min-width: 100px; flex-shrink: 0;
}
.gs-service-name {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 300; color: rgba(255,255,255,.55); min-width: 220px;
  transition: color .25s;
}
.gs-service-item:hover .gs-service-name { color: #fff; }
.gs-service-desc {
  font-size: .85rem; color: rgba(255,255,255,.28); flex: 1; line-height: 1.65;
  transition: color .25s;
}
.gs-service-item:hover .gs-service-desc { color: rgba(255,255,255,.6); }
.gs-service-arrow {
  font-size: 1.5rem; color: rgba(255,255,255,.45); flex-shrink: 0;
  transition: color .25s, transform .25s;
}
.gs-service-item:hover .gs-service-arrow { color: var(--gs-orange); transform: translateX(8px); }

/* ── Pourquoi nous ──────────────────────────────────────────────────── */
.gs-why { background: var(--gs-cream); padding: 100px 48px; }
.gs-why-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start;
}
.gs-section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: var(--gs-dark); line-height: 1.1; letter-spacing: -.01em;
}
.gs-section-title em { font-style: italic; opacity: .4; }
.gs-section-title--light { color: var(--gs-txt-light); }
.gs-why-sub {
  font-size: .9rem; color: var(--muted); line-height: 1.78; margin-top: 20px;
}
.gs-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.gs-why-item {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid rgba(11,26,16,.1);
}
.gs-why-item:nth-child(odd)  { border-right: 1px solid rgba(11,26,16,.1); }
.gs-why-item:nth-child(even) { padding-left: 28px; padding-right: 0; }
.gs-why-item:nth-last-child(-n+2) { border-bottom: none; }
.gs-why-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 8px;
}
.gs-why-text { font-size: .875rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ── Process ────────────────────────────────────────────────────────── */
.gs-process { background: var(--gs-dark); padding: 100px 48px; }
.gs-process-inner { max-width: var(--max-w); margin: 0 auto; }
.gs-process-header { margin-bottom: 72px; }
.gs-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.gs-process-step {
  padding: 40px 32px 0 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.gs-process-step:last-child { border-right: none; padding-right: 0; }
.gs-step-num {
  font-family: var(--serif); font-size: 5rem; font-weight: 300;
  color: rgba(255,255,255,.05); line-height: 1; margin-bottom: 24px; letter-spacing: -.05em;
}
.gs-step-title {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.gs-step-text { font-size: .85rem; color: rgba(255,255,255,.28); line-height: 1.68; }

/* ── CTA final ──────────────────────────────────────────────────────── */
.gs-cta { background: var(--gs-cream); padding: 120px 48px; text-align: center; }
.gs-cta-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300; color: var(--gs-dark); line-height: 1.08;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.gs-cta-title em { font-style: italic; opacity: .35; }
.gs-cta-sub {
  font-size: .8rem; color: rgba(11,26,16,.38);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 48px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .gs-why-inner { grid-template-columns: 1fr; gap: 48px; }
  .gs-service-tag { display: none; }
  .gs-service-name { min-width: 160px; }
}
@media (max-width: 760px) {
  .gs-stats { flex-direction: column; padding: 72px 32px; gap: 48px; }
  .gs-stat-feature { padding: 0 0 48px; border-right: none; border-bottom: 1px solid rgba(11,26,16,.12); }
  .gs-stats-others { padding-left: 0; justify-content: center; gap: 32px; }
  .gs-process-steps { grid-template-columns: 1fr 1fr; }
  .gs-process-step { border-right: none; padding-right: 0; }
  .gs-service-item-inner { flex-wrap: wrap; padding: 24px 32px; gap: 12px; }
  .gs-service-name { min-width: auto; flex: 1; }
  .gs-service-desc { width: 100%; }
}
@media (max-width: 500px) {
  .gs-hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .gs-why-grid { grid-template-columns: 1fr; }
  .gs-why-item:nth-child(odd) { border-right: none; }
  .gs-why-item:nth-child(even) { padding-left: 0; }
  .gs-why-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(11,26,16,.1); }
  .gs-why-item:last-child { border-bottom: none; }
  .gs-process-steps { grid-template-columns: 1fr; }
  .gs-service-desc { display: none; }
  .gs-services-header, .gs-process-inner { padding-left: 24px; padding-right: 24px; }
  .gs-service-item-inner { padding: 24px; }
  .gs-stats-others { gap: 24px; }
  .gs-why, .gs-process, .gs-cta { padding-left: 24px; padding-right: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   GS — PAGES SECONDAIRES  (v12)
   ═══════════════════════════════════════════════════════════════ */

/* ── Sections image / texte ──────────────────────────────────── */
.gs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.gs-split-img { overflow: hidden; position: relative; }
.gs-split-img img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform 7s ease;
}
.gs-split-img:hover img { transform: scale(1.04); }
.gs-split-txt {
  padding: clamp(52px, 7vw, 96px) clamp(40px, 5.5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--gs-cream);
}
.gs-split-txt--dark { background: var(--gs-dark); }

.gs-split-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gs-orange); margin-bottom: 20px;
}
.gs-split-txt--dark .gs-split-tag { color: rgba(255,255,255,.3); }

.gs-split-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--gs-dark);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.gs-split-txt--dark .gs-split-h2 { color: var(--gs-txt-light); }

.gs-split-body {
  font-size: .9rem; color: rgba(11,26,16,.52); line-height: 1.78; margin-bottom: 28px;
}
.gs-split-txt--dark .gs-split-body { color: rgba(255,255,255,.4); }

.gs-split-list { list-style: none; padding: 0; margin: 0 0 32px; }
.gs-split-list li {
  padding: 11px 0 11px 20px;
  border-bottom: 1px solid rgba(11,26,16,.07);
  font-size: .875rem; color: rgba(11,26,16,.62);
  position: relative; line-height: 1.5;
}
.gs-split-list li:last-child { border-bottom: none; }
.gs-split-list li::before {
  content: '→'; position: absolute; left: 0;
  font-size: .7rem; color: var(--gs-orange); top: 13px;
}
.gs-split-txt--dark .gs-split-list li {
  border-color: rgba(255,255,255,.07);
  color: rgba(255,255,255,.45);
}
.gs-split-txt--dark .gs-split-list li::before { color: rgba(255,255,255,.25); }

.gs-split-price-wrap { margin-bottom: 36px; }
.gs-split-price {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--gs-dark); line-height: 1;
}
.gs-split-txt--dark .gs-split-price { color: var(--gs-txt-light); }
.gs-split-price-sub {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(11,26,16,.35); margin-top: 6px;
}
.gs-split-txt--dark .gs-split-price-sub { color: rgba(255,255,255,.28); }

@media (max-width: 860px) {
  .gs-split { grid-template-columns: 1fr; min-height: auto; }
  .gs-split-img { min-height: 300px; order: -1; }
  .gs-split-txt { padding: 48px 32px; }
}
@media (max-width: 500px) {
  .gs-split-img { min-height: 220px; }
  .gs-split-txt { padding: 40px 24px; }
}

/* ── En-tête de page ─────────────────────────────────────────── */
.gs-page-hero {
  background: var(--gs-dark);
  padding: clamp(72px, 10vw, 112px) 48px clamp(56px, 7vw, 88px);
  text-align: center;
}
.gs-page-hero .gs-eyebrow { margin-bottom: 20px; }
.gs-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.gs-page-hero h1 em { font-style: italic; color: rgba(255,255,255,.35); }
.gs-page-hero p {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── kx-txt-dark: cohérence avec gs-dark ────────────────────── */
.kx-txt-dark { background: var(--gs-dark) !important; }

/* ── Bloc étapes foncé (process pages secondaires) ───────────── */
.gs-split-process {
  background: var(--gs-dark);
  padding: clamp(72px, 9vw, 104px) 48px;
}
.gs-split-process-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: start;
}
.gs-split-process-left .gs-section-title { color: var(--gs-txt-light); }
.gs-split-process-left .gs-section-title em { opacity: .35; }
.gs-split-process-intro {
  font-size: .88rem; color: rgba(255,255,255,.35); line-height: 1.75; margin: 16px 0 32px;
}
.gs-split-process-steps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.gs-sps {
  padding: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
}
.gs-sps:nth-child(2n) { border-right: none; }
.gs-sps:nth-last-child(-n+2) { border-bottom: none; }
.gs-sps-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,.07); line-height: 1; margin-bottom: 18px; letter-spacing: -.04em;
}
.gs-sps-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 10px;
}
.gs-sps-text { font-size: .82rem; color: rgba(255,255,255,.28); line-height: 1.7; }

/* ── Formulaire de contact (fond crème) ──────────────────────── */
.gs-form-section {
  background: var(--gs-cream);
  padding: clamp(64px, 8vw, 96px) 48px;
}
.gs-form-section .form-card {
  background: #fff;
  border: 1px solid rgba(11,26,16,.08);
  box-shadow: 0 2px 24px rgba(11,26,16,.06);
}
.gs-form-section .form-card h2 {
  font-size: 1.6rem; font-weight: 300;
  color: var(--gs-dark); border-color: rgba(11,26,16,.08);
}

@media (max-width: 900px) {
  .gs-split-process-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .gs-split-process-steps { grid-template-columns: 1fr; }
  .gs-sps { border-right: none; }
  .gs-sps:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .gs-sps:last-child { border-bottom: none; }
  .gs-split-process { padding: 64px 24px; }
  .gs-page-hero { padding: 64px 24px 52px; }
  .gs-form-section { padding: 56px 24px; }
}
