/* ==========================================================
   CERIZE 95 — Landing Page (scrollable, Windows 95 styled)
   ========================================================== */

* { box-sizing: border-box; }

:root {
  --w95-bg: #008080;
  --w95-gray: #c0c0c0;
  --w95-gray-light: #dfdfdf;
  --w95-gray-dark: #808080;
  --w95-black: #000000;
  --w95-white: #ffffff;
  --w95-blue: #000080;
  --w95-blue-light: #1084d0;
  --w95-text: #000000;
  --w95-cerize: #cc0000;
  --w95-cerize-dark: #880000;
  --w95-yellow: #ffff80;
  --w95-font: "MS Sans Serif", Tahoma, Geneva, sans-serif;
  --w95-mono: "Courier New", Courier, monospace;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--w95-bg);
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px);
  font-family: var(--w95-font);
  font-size: 13px;
  color: var(--w95-text);
  -webkit-font-smoothing: none;
  scroll-behavior: smooth;
}
body { padding: 36px 0 70px; }

a { color: var(--w95-blue); text-decoration: underline; }
a:hover { color: var(--w95-cerize); }
button { font-family: var(--w95-font); font-size: 12px; }
h1, h2, h3, h4 { margin: 0; }

/* ==========================================================
   BOOT
   ========================================================== */
#boot-screen {
  position: fixed; inset: 0;
  background: #000;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: opacity .4s ease;
}
#boot-screen.fade-out { opacity: 0; pointer-events: none; }
.boot-content { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.boot-logo img {
  width: 120px; height: 120px;
  image-rendering: pixelated;
  filter: drop-shadow(2px 2px 0 #cc0000);
}
.boot-text { text-align: center; }
.boot-title { font-size: 32px; font-weight: bold; letter-spacing: 2px; }
.boot-subtitle { font-size: 13px; color: #aaa; margin-top: 6px; }
.boot-progress { width: 320px; }
.boot-progress-bar {
  height: 18px; border: 2px inset #444; background: #222; padding: 2px;
}
.boot-progress-fill {
  height: 100%; width: 0%;
  background-image: repeating-linear-gradient(90deg, #cc0000 0 14px, transparent 14px 16px), linear-gradient(#cc0000, #cc0000);
  transition: width .2s linear;
}
.boot-status {
  text-align: center; margin-top: 12px;
  font-family: var(--w95-mono); color: #ccc; font-size: 11px;
}

/* ==========================================================
   TOP BAR (sticky nav)
   ========================================================== */
#top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: var(--w95-gray);
  border-bottom: 2px solid var(--w95-black);
  box-shadow: inset 0 1px 0 var(--w95-white), 0 2px 0 var(--w95-gray-dark);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 16px;
  z-index: 500;
}
.top-bar-left { display: flex; align-items: center; gap: 8px; }
.top-logo { width: 22px; height: 22px; image-rendering: pixelated; }
.top-title { font-weight: bold; font-size: 13px; }
.top-sub { color: var(--w95-gray-dark); font-weight: normal; font-size: 11px; }
.top-nav { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.top-nav a {
  text-decoration: none;
  color: #000;
  padding: 4px 10px;
  font-size: 12px;
  border: 2px solid transparent;
}
.top-nav a:hover {
  background: var(--w95-blue);
  color: #fff;
}
.top-nav .top-cta {
  background: var(--w95-gray);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-black);
  border-bottom: 2px solid var(--w95-black);
  font-weight: bold;
  color: var(--w95-cerize);
}
.top-nav .top-cta:hover {
  background: var(--w95-cerize);
  color: #fff;
}

/* ==========================================================
   SECTIONS / WINDOW FRAMES
   ========================================================== */
.section {
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 0 16px;
  scroll-margin-top: 50px;
}
.window-frame {
  background: var(--w95-gray);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-black);
  border-bottom: 2px solid var(--w95-black);
  box-shadow:
    inset -1px -1px 0 var(--w95-gray-dark),
    inset 1px 1px 0 var(--w95-gray-light),
    3px 3px 0 rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

/* Title bars (shared with hero-window, footer, rdv) */
.win-title {
  background: linear-gradient(90deg, var(--w95-blue) 0%, var(--w95-blue-light) 100%);
  color: #fff;
  font-weight: bold;
  padding: 4px 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
}
.win-title-icon { width: 16px; height: 16px; background-size: contain; background-repeat: no-repeat; flex-shrink: 0; image-rendering: pixelated; }
.win-title-text { flex: 1; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-controls { display: flex; gap: 2px; }
.win-ctrl {
  width: 18px; height: 16px;
  background: var(--w95-gray);
  border-top: 1px solid var(--w95-white);
  border-left: 1px solid var(--w95-white);
  border-right: 1px solid var(--w95-black);
  border-bottom: 1px solid var(--w95-black);
  color: #000;
  font-size: 10px; font-weight: bold;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  line-height: 1;
}

.win-menubar {
  background: var(--w95-gray);
  display: flex;
  gap: 2px;
  padding: 3px 4px;
  border-bottom: 1px solid var(--w95-gray-dark);
  font-size: 12px;
}
.win-menubar > span { padding: 2px 8px; cursor: pointer; }
.win-menubar > span:hover { background: var(--w95-blue); color: #fff; }

.explorer-address {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px;
  background: var(--w95-gray);
  border-bottom: 1px solid var(--w95-gray-dark);
  font-size: 12px;
}
.address-input {
  flex: 1;
  background: #fff;
  padding: 3px 6px;
  border-top: 2px solid var(--w95-gray-dark);
  border-left: 2px solid var(--w95-gray-dark);
  border-right: 2px solid var(--w95-white);
  border-bottom: 2px solid var(--w95-white);
  font-family: var(--w95-mono);
  font-size: 11px;
}

.frame-body {
  padding: 24px 28px;
  flex: 1;
}

.section-intro {
  text-align: center;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro h2 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-intro p { color: #333; font-size: 14px; }
.section-intro.tight { margin-bottom: 16px; text-align: left; }
.section-intro.tight h2 { font-size: 20px; }

.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 4px 8px;
  background: var(--w95-gray);
  border-top: 1px solid var(--w95-gray-dark);
  font-size: 11px;
}
.status-bar span {
  border: 1px inset var(--w95-gray);
  padding: 2px 10px;
  background: var(--w95-gray);
}

/* ==========================================================
   ICONS (reused)
   ========================================================== */
.icon-computer  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' shape-rendering='crispEdges'><rect x='4' y='4' width='24' height='18' fill='%23c0c0c0' stroke='%23000'/><rect x='6' y='6' width='20' height='14' fill='%23008080'/><rect x='8' y='8' width='4' height='2' fill='%23fff'/><rect x='8' y='12' width='10' height='1' fill='%23fff'/><rect x='10' y='22' width='12' height='2' fill='%23808080'/><rect x='6' y='24' width='20' height='3' fill='%23c0c0c0' stroke='%23000'/></svg>"); }
.icon-folder    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M3 8h10l3 3h13v17H3z' fill='%23ffcc00' stroke='%23000'/><path d='M3 11h26v17H3z' fill='%23ffd84d' stroke='%23000'/></svg>"); }
.icon-mail      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='3' y='7' width='26' height='18' fill='%23fff' stroke='%23000'/><path d='M3 7l13 10L29 7' fill='none' stroke='%23000'/><rect x='20' y='3' width='8' height='8' fill='%23cc0000' stroke='%23000'/></svg>"); }
.icon-calendar  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='4' y='6' width='24' height='22' fill='%23fff' stroke='%23000'/><rect x='4' y='6' width='24' height='6' fill='%23cc0000' stroke='%23000'/><rect x='9' y='3' width='2' height='6' fill='%23000'/><rect x='21' y='3' width='2' height='6' fill='%23000'/><text x='16' y='23' font-family='sans-serif' font-size='10' font-weight='bold' fill='%23000' text-anchor='middle'>06</text></svg>"); }
.icon-portfolio { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='3' y='8' width='26' height='20' fill='%23884400' stroke='%23000'/><rect x='12' y='5' width='8' height='4' fill='%23884400' stroke='%23000'/><rect x='3' y='14' width='26' height='2' fill='%23000'/></svg>"); }
.icon-text      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M6 3h14l6 6v20H6z' fill='%23fff' stroke='%23000'/><path d='M20 3v6h6' fill='none' stroke='%23000'/><rect x='9' y='14' width='14' height='1' fill='%23000'/><rect x='9' y='17' width='14' height='1' fill='%23000'/><rect x='9' y='20' width='10' height='1' fill='%23000'/></svg>"); }
.icon-help      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='13' fill='%23ffcc00' stroke='%23000'/><text x='16' y='23' font-family='sans-serif' font-size='18' font-weight='bold' fill='%23000' text-anchor='middle'>?</text></svg>"); }

.icon-web       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='12' fill='%23fff' stroke='%23000'/><ellipse cx='16' cy='16' rx='12' ry='5' fill='none' stroke='%23000'/><ellipse cx='16' cy='16' rx='5' ry='12' fill='none' stroke='%23000'/><line x1='4' y1='16' x2='28' y2='16' stroke='%23000'/></svg>"); }
.icon-webapp    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='3' y='5' width='26' height='20' fill='%23fff' stroke='%23000'/><rect x='3' y='5' width='26' height='4' fill='%23cc0000'/><rect x='6' y='12' width='6' height='3' fill='%23000080'/><rect x='14' y='12' width='12' height='3' fill='%23808080'/><rect x='6' y='17' width='20' height='2' fill='%23808080'/><rect x='6' y='21' width='14' height='2' fill='%23808080'/></svg>"); }
.icon-mobile    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='9' y='3' width='14' height='26' rx='2' fill='%23000' stroke='%23000'/><rect x='10' y='6' width='12' height='17' fill='%23008080'/><circle cx='16' cy='26' r='1.5' fill='%23fff'/></svg>"); }
.icon-ia        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='6' y='8' width='20' height='16' fill='%23c0c0c0' stroke='%23000'/><circle cx='12' cy='15' r='2' fill='%23cc0000'/><circle cx='20' cy='15' r='2' fill='%23cc0000'/><rect x='12' y='19' width='8' height='1' fill='%23000'/><rect x='15' y='4' width='2' height='4' fill='%23000'/><circle cx='16' cy='3' r='1.5' fill='%23ffcc00'/></svg>"); }
.icon-marketing { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M5 12l8-4v16l-8-4z' fill='%23cc0000' stroke='%23000'/><path d='M13 8l14-4v24l-14-4z' fill='%23ff8800' stroke='%23000'/><rect x='6' y='20' width='4' height='8' fill='%23808080' stroke='%23000'/></svg>"); }

/* ==========================================================
   HERO
   ========================================================== */
#hero { padding-top: 16px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-left { padding: 8px; }
.hero-badge {
  display: inline-block;
  background: var(--w95-cerize);
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  padding: 4px 10px;
  border-top: 2px solid #ff5555;
  border-left: 2px solid #ff5555;
  border-right: 2px solid var(--w95-cerize-dark);
  border-bottom: 2px solid var(--w95-cerize-dark);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0 var(--w95-cerize-dark), 4px 4px 0 rgba(0,0,0,0.3);
  margin-bottom: 18px;
}
.hero-accent {
  background: var(--w95-yellow);
  color: #000;
  text-shadow: none;
  padding: 0 8px;
  border-top: 2px solid #fffacc;
  border-left: 2px solid #fffacc;
  border-right: 2px solid #aa8800;
  border-bottom: 2px solid #aa8800;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  margin: 0 0 24px;
}
.hero-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 12px;
  text-shadow: 1px 1px 0 #000;
}
.meta-item { background: rgba(0,0,0,0.25); padding: 3px 8px; border: 1px solid rgba(255,255,255,0.3); }

.hero-window {
  background: var(--w95-gray);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-black);
  border-bottom: 2px solid var(--w95-black);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
  transform: rotate(-1.5deg);
  transition: transform .3s ease;
}
.hero-window:hover { transform: rotate(0deg) translateY(-2px); }
.hero-window-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.hero-logo-cell {
  background: #000;
  border: 2px inset var(--w95-gray);
  padding: 16px;
  text-align: center;
}
.hero-logo-cell img {
  width: 140px; height: 140px;
  image-rendering: pixelated;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--w95-gray-dark);
  padding: 1px;
}
.hero-stats .stat {
  background: var(--w95-gray);
  padding: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px outset var(--w95-gray);
}
.hero-stats .stat b { font-size: 22px; color: var(--w95-cerize); font-family: var(--w95-mono); }
.hero-stats .stat span { font-size: 11px; color: #333; }

.hero-marquee {
  background: #000;
  color: var(--w95-yellow);
  padding: 6px 0;
  overflow: hidden;
  border-top: 2px solid var(--w95-gray-dark);
  border-left: 2px solid var(--w95-gray-dark);
  border-right: 2px solid var(--w95-white);
  border-bottom: 2px solid var(--w95-white);
}
.hero-marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--w95-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-left: 100%;
}
@keyframes marquee {
  to { transform: translateX(-100%); }
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.win95-btn {
  background: var(--w95-gray);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-black);
  border-bottom: 2px solid var(--w95-black);
  box-shadow: inset -1px -1px 0 var(--w95-gray-dark), inset 1px 1px 0 var(--w95-gray-light);
  padding: 6px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: var(--w95-font);
}
.win95-btn:hover { color: #000; }
.win95-btn:active {
  border-color: var(--w95-black) var(--w95-white) var(--w95-white) var(--w95-black);
  padding: 7px 15px 5px 17px;
}
.win95-btn.primary {
  font-weight: bold;
  background: var(--w95-cerize);
  color: #fff;
  border-top-color: #ff5555;
  border-left-color: #ff5555;
  border-right-color: var(--w95-cerize-dark);
  border-bottom-color: var(--w95-cerize-dark);
}
.win95-btn.primary:hover { color: #fff; background: #dd0000; }
.win95-btn.big { padding: 10px 22px; font-size: 14px; min-width: 200px; }
.win95-btn.full { width: 100%; }
.win95-btn.small { padding: 3px 10px; font-size: 11px; }

/* ==========================================================
   SERVICES GRID
   ========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-tile {
  background: var(--w95-gray-light);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-gray-dark);
  border-bottom: 2px solid var(--w95-gray-dark);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .15s ease;
}
.service-tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--w95-cerize-dark);
}
.service-tile.featured {
  background: var(--w95-yellow);
  border-top: 2px solid #ffffaa;
  border-left: 2px solid #ffffaa;
  border-right: 2px solid #aa8800;
  border-bottom: 2px solid #aa8800;
}
.service-tile-icon {
  width: 40px; height: 40px;
  background-size: contain; background-repeat: no-repeat;
  image-rendering: pixelated;
}
.service-tile h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tile h3 .badge {
  font-size: 10px;
  background: var(--w95-cerize);
  color: #fff;
  padding: 2px 6px;
  font-weight: normal;
}
.service-tile p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #333;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service-tag {
  margin-top: auto;
  background: var(--w95-gray);
  border-top: 1px solid var(--w95-gray-dark);
  padding-top: 8px;
  font-size: 11px;
  color: var(--w95-gray-dark);
  font-style: italic;
}
.service-tag a {
  color: var(--w95-cerize-dark);
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}
.service-tag a:hover { color: var(--w95-cerize); text-decoration: underline; }

.cta-tile {
  background: var(--w95-blue);
  color: #fff;
  border-top-color: #4444aa;
  border-left-color: #4444aa;
  border-right-color: #000044;
  border-bottom-color: #000044;
  text-align: center;
  align-items: center;
}
.cta-tile p { color: #d8e2ff; }
.cta-tile h3 { color: #fff; }
.cta-icon {
  width: 48px; height: 48px;
  background: var(--w95-yellow);
  color: #000;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #fffacc;
  border-left: 2px solid #fffacc;
  border-right: 2px solid #aa8800;
  border-bottom: 2px solid #aa8800;
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  background: #fff;
  border-top: 2px solid var(--w95-gray-dark);
  border-left: 2px solid var(--w95-gray-dark);
  border-right: 2px solid var(--w95-white);
  border-bottom: 2px solid var(--w95-white);
  padding: 18px;
  position: relative;
}
.step-num {
  font-family: var(--w95-mono);
  font-size: 32px;
  font-weight: bold;
  color: var(--w95-cerize);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 12px; line-height: 1.5; margin: 0; color: #333; }

/* ==========================================================
   POURQUOI / PROBLÈME
   ========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: #fff;
  border-top: 2px solid var(--w95-gray-dark);
  border-left: 2px solid var(--w95-gray-dark);
  border-right: 2px solid var(--w95-white);
  border-bottom: 2px solid var(--w95-white);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-tag {
  font-family: var(--w95-mono);
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: var(--w95-cerize);
  align-self: flex-start;
  padding: 2px 8px;
  letter-spacing: 1px;
}
.why-card h3 { font-size: 16px; line-height: 1.25; }
.why-pain { font-size: 12px; line-height: 1.5; color: #333; margin: 0; }
.why-fix {
  margin-top: auto;
  background: var(--w95-yellow);
  border: 2px solid #aa8800;
  border-top-color: #fffacc;
  border-left-color: #fffacc;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
  color: #000;
}
.why-fix-label { display: block; font-weight: bold; margin-bottom: 3px; }
.why-cta {
  margin-top: 18px;
  background: var(--w95-blue);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid #4444aa;
  border-left: 2px solid #4444aa;
  border-right: 2px solid #000044;
  border-bottom: 2px solid #000044;
}
.why-cta-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 240px; }
.why-cta-text b { font-size: 15px; }
.why-cta-text span { font-size: 12px; color: #d8e2ff; }

/* Service "pourquoi" line */
.service-why {
  font-size: 12px;
  line-height: 1.45;
  color: #222;
  margin: 0;
  border-left: 3px solid var(--w95-cerize);
  padding-left: 8px;
}
.service-why span { font-weight: bold; color: var(--w95-cerize-dark); }
.service-tile.featured .service-why { border-left-color: var(--w95-cerize-dark); }

/* ==========================================================
   POURQUOI CERIZE / RAISONS
   ========================================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.reason {
  background: var(--w95-gray-light);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-gray-dark);
  border-bottom: 2px solid var(--w95-gray-dark);
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.reason-icon {
  width: 48px; height: 48px;
  background: var(--w95-blue);
  color: var(--w95-yellow);
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #4444aa;
  border-left: 2px solid #4444aa;
  border-right: 2px solid #000044;
  border-bottom: 2px solid #000044;
}
.reason h3 { font-size: 15px; margin-bottom: 6px; grid-column: 2; }
.reason p { font-size: 12px; line-height: 1.5; margin: 0; color: #333; grid-column: 2; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  background: #fff;
  border: 2px inset var(--w95-gray);
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: var(--w95-gray-light);
  border-top: 1px solid var(--w95-white);
  border-left: 1px solid var(--w95-white);
  border-right: 1px solid var(--w95-gray-dark);
  border-bottom: 1px solid var(--w95-gray-dark);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--w95-yellow); }
.faq-q { font-size: 13px; font-weight: bold; color: #000; }
.faq-toggle {
  font-family: var(--w95-mono);
  font-weight: bold;
  font-size: 14px;
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--w95-gray);
  border-top: 1px solid var(--w95-white);
  border-left: 1px solid var(--w95-white);
  border-right: 1px solid var(--w95-black);
  border-bottom: 1px solid var(--w95-black);
}
.faq-item[open] > summary { background: var(--w95-blue); color: #fff; }
.faq-item[open] > summary .faq-q { color: #fff; }
.faq-a {
  padding: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #222;
  background: #fff;
  border-top: 1px solid var(--w95-gray-dark);
}
.faq-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: bold;
}

/* ==========================================================
   TESTIMONIALS / MAILBOX
   ========================================================== */
.mailbox {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 2px inset var(--w95-gray);
  padding: 4px;
}
.mail-item {
  background: var(--w95-gray-light);
  padding: 14px 16px;
  border-bottom: 1px solid var(--w95-gray-dark);
}
.mail-item:last-child { border-bottom: none; }
.mail-item:hover { background: #fff; }
.mail-from {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.mail-from b { font-size: 13px; }
.mail-from span { font-size: 11px; color: var(--w95-gray-dark); display: block; }
.avatar {
  width: 40px; height: 40px;
  background: var(--w95-cerize);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #ff5555;
  border-left: 2px solid #ff5555;
  border-right: 2px solid var(--w95-cerize-dark);
  border-bottom: 2px solid var(--w95-cerize-dark);
}
.mail-date { font-size: 11px; color: var(--w95-gray-dark); }
.mail-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #222;
  font-style: italic;
}

/* ==========================================================
   CONTACT GRID
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
/* Formulaire seul (fenêtre Calendly masquée) : une colonne, centrée */
.contact-grid.solo {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

/* Form */
fieldset {
  border: 1px solid var(--w95-white);
  border-top-color: var(--w95-gray-dark);
  border-left-color: var(--w95-gray-dark);
  padding: 12px 14px;
  margin: 0 0 14px;
}
fieldset legend { padding: 0 6px; font-size: 12px; }
.form-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.form-row.align-top { align-items: start; }
.form-row label { font-size: 12px; }
input[type="text"], input[type="email"], textarea {
  font-family: var(--w95-font); font-size: 12px;
  padding: 4px 5px;
  background: #fff;
  border-top: 2px solid var(--w95-gray-dark);
  border-left: 2px solid var(--w95-gray-dark);
  border-right: 2px solid var(--w95-white);
  border-bottom: 2px solid var(--w95-white);
  outline: none;
  color: #000;
  width: 100%;
}
textarea { resize: vertical; min-height: 90px; }
input[type="checkbox"], input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 13px; height: 13px;
  background: #fff;
  border-top: 1px solid var(--w95-gray-dark);
  border-left: 1px solid var(--w95-gray-dark);
  border-right: 1px solid var(--w95-white);
  border-bottom: 1px solid var(--w95-white);
  margin: 0 4px 0 0;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
input[type="radio"] { border-radius: 50%; }
input[type="checkbox"]:checked::after {
  content: "✔"; position: absolute; top: -2px; left: 1px; font-size: 11px; color: #000;
}
input[type="radio"]:checked::after {
  content: ""; position: absolute; inset: 3px; background: #000; border-radius: 50%;
}
.checkbox-grid, .radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.cb, .rb { display: flex; align-items: center; cursor: pointer; font-size: 12px; }

.form-footer { display: flex; gap: 8px; justify-content: flex-end; }
.form-success {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px;
  background: var(--w95-yellow);
  border: 2px outset var(--w95-gray);
  margin-top: 12px;
}
.form-success[hidden] { display: none; }
.success-icon {
  width: 36px; height: 36px;
  background: #008000; color: #fff;
  font-size: 22px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* RDV */
.rdv-frame .frame-body { padding: 0; }
.rdv-banner {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--w95-blue);
  color: #fff;
  padding: 14px 20px;
}
.rdv-banner h2 { margin: 0; font-size: 16px; }
.rdv-banner p { margin: 2px 0 0; font-size: 12px; }
.rdv-icon { font-size: 32px; }
.cp-mock {
  background: var(--w95-gray);
  margin: 14px 20px;
  padding: 10px;
  border: 2px inset var(--w95-gray);
}
.cp-month {
  text-align: center;
  font-weight: bold;
  padding: 5px;
  background: var(--w95-blue);
  color: #fff;
  font-size: 12px;
}
.cp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-top: 4px;
  font-size: 11px;
  text-align: center;
}
.cp-grid > span { padding: 5px 2px; background: #fff; }
.cp-grid > span:nth-child(-n+7) { background: var(--w95-gray-dark); color: #fff; font-weight: bold; }
.cp-d { cursor: pointer; }
.cp-d:hover { background: var(--w95-yellow) !important; }
.cp-d.dim { color: var(--w95-gray-dark); }
.cp-d.off { color: var(--w95-gray-dark); cursor: not-allowed; background: #e0e0e0 !important; }
.cp-d.active { background: var(--w95-cerize) !important; color: #fff; font-weight: bold; }
.cp-slots-label { margin-top: 10px; font-size: 11px; font-weight: bold; }
.cp-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.cp-slot {
  background: #fff;
  border-top: 1px solid var(--w95-white);
  border-left: 1px solid var(--w95-white);
  border-right: 1px solid var(--w95-black);
  border-bottom: 1px solid var(--w95-black);
  text-align: center;
  padding: 5px;
  font-size: 11px;
  cursor: pointer;
}
.cp-slot:hover { background: var(--w95-yellow); }
.cp-slot.selected { background: var(--w95-cerize); color: #fff; font-weight: bold; }
.rdv-frame .win95-btn.full { margin: 0 20px; }
.rdv-foot { padding: 8px 20px 16px; font-size: 11px; color: var(--w95-gray-dark); margin: 0; }

/* ==========================================================
   FOOTER
   ========================================================== */
#footer { margin-bottom: 0; }
.footer-frame {
  background: var(--w95-gray);
  border-top: 2px solid var(--w95-white);
  border-left: 2px solid var(--w95-white);
  border-right: 2px solid var(--w95-black);
  border-bottom: 2px solid var(--w95-black);
  padding: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--w95-gray-dark);
}
.footer-col h4 { font-size: 13px; margin-bottom: 10px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; font-size: 12px; }
.footer-col li { padding: 3px 0; }
.footer-col p { font-size: 12px; line-height: 1.5; margin: 8px 0 0; }
.footer-logo { width: 56px; height: 56px; image-rendering: pixelated; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  color: var(--w95-gray-dark);
}

/* ==========================================================
   BOTTOM BAR (sticky CTA)
   ========================================================== */
#bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 58px;
  background: var(--w95-gray);
  border-top: 2px solid var(--w95-white);
  box-shadow: 0 -2px 0 var(--w95-black), 0 -3px 0 var(--w95-gray-dark);
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 500;
  gap: 16px;
}
.bb-left { display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 13px; }
.bb-left img { width: 28px; height: 28px; image-rendering: pixelated; }
.bb-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .top-nav a:not(.top-cta) { display: none; }
}
@media (max-width: 600px) {
  body { padding-bottom: 90px; }
  .hero-title { font-size: 28px; }
  .services-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .reason { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 4px; }
  .checkbox-grid, .radio-grid { grid-template-columns: 1fr 1fr; }
  .frame-body { padding: 16px; }
  .top-sub { display: none; }
  #bottom-bar { flex-wrap: wrap; height: auto; padding: 8px 12px; }
  .bb-right { width: 100%; justify-content: stretch; }
  .bb-right .win95-btn { flex: 1; }
  .hero-meta { gap: 8px; }
  .mail-from { grid-template-columns: 36px 1fr; }
  .mail-date { grid-column: 2; font-size: 10px; }
}

/* ==========================================================
   LISIBILITÉ — texte de contenu agrandi
   (placé en dernier pour primer sur les règles ci-dessus ;
    ajustez les valeurs ici si vous voulez + ou - gros)
   ========================================================== */
body { font-size: 15px; }

/* Intro de section + corps de texte des cartes */
.section-intro p { font-size: 16px; }
.service-tile p,
.service-why,
.step p,
.why-pain,
.reason p,
.rdv-banner p { font-size: 14px; line-height: 1.55; }

/* Listes à puces des services */
.check-list { font-size: 14px; }

/* FAQ */
.faq-q { font-size: 15px; }
.faq-a { font-size: 15px; }

/* Formulaire : libellés, options et champs de saisie */
fieldset legend { font-size: 14px; }
.form-row label { font-size: 14px; }
.cb, .rb { font-size: 14px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea { font-size: 15px; }

/* Pied de page */
.footer-col p { font-size: 13px; }
.footer-col li { font-size: 14px; }
