:root {
  --primary: #071a3d;
  --secondary: #075bd8;
  --accent: #00b7d9;
  --accent-green: #00a651;
  --accent-orange: #ff8a00;
  --accent-red: #ef174c;
  --accent-purple: #8e35d3;
  --light: #f5f8fc;
  --white: #ffffff;
  --text: #142033;
  --muted: #64748b;
  --border: #dbe4ef;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 18px 45px rgba(7, 26, 61, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
}
.skip-link:focus { left: 12px; top: 12px; }

.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,228,233,.9);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  font-size: 1.25rem;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--accent), var(--accent-green));
  box-shadow: 0 8px 20px rgba(15,107,120,.25);
}
.logo small {
  display: block;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.1;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-weight: 650;
  font-size: .96rem;
  color: #283746;
}
.nav a:hover, .nav a.active { color: var(--secondary); }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 85% 20%, rgba(24,169,153,.20), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(15,107,120,.14), transparent 30%),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -130px;
  bottom: -160px;
  border: 60px solid rgba(15,107,120,.06);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--secondary);
  background: linear-gradient(90deg, rgba(7,91,216,.10), rgba(0,183,217,.10), rgba(0,166,81,.10));
  font-weight: 750;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 {
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.35rem, 5vw, 4.3rem); margin: 20px 0; }
h2 { font-size: clamp(1.9rem, 3vw, 2.85rem); margin: 0 0 16px; }
h3 { font-size: 1.3rem; margin: 0 0 10px; }
.lead {
  color: #4d5d6b;
  font-size: 1.16rem;
  max-width: 720px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #153754; }
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--secondary); }
.btn-accent { background: var(--accent); color: #062925; }

.hero-card {
  position: relative;
  border-radius: 28px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #0b3b8f 58%, #087c9c);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  pointer-events: none;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.metric {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 15px;
  background: rgba(255,255,255,.08);
}
.metric strong { display: block; font-size: 1.55rem; color: #8ff0e4; }
.metric span { font-size: .9rem; color: rgba(255,255,255,.74); }

.section { padding: 84px 0; }
.section-alt { background: var(--light); }
.section-intro {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-intro p { color: var(--muted); font-size: 1.05rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(11,31,51,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(15,107,120,.35);
  box-shadow: var(--shadow);
}
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--secondary);
  background: linear-gradient(135deg, rgba(7,91,216,.12), rgba(0,183,217,.12));
  font-size: 1.35rem;
}
.card p { color: var(--muted); }
.card-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 750;
}
.service-card {
  display: block;
  color: inherit;
  cursor: pointer;
}
.service-card:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
}
.service-card:hover .card-link,
.service-card:focus-visible .card-link {
  text-decoration: underline;
}
.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #4b5b68;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}
.process-step {
  counter-increment: steps;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.process-step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.4rem;
}

.banner {
  padding: 42px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #075bd8, #071a3d 65%, #00a651);
}
.banner h2 { color: #fff; }
.banner p { color: rgba(255,255,255,.78); margin: 0; }

.page-hero {
  padding: 72px 0 58px;
  background: linear-gradient(180deg, #f6fafb, #fff);
  border-bottom: 1px solid var(--border);
}
.page-hero .lead { max-width: 800px; }
.breadcrumb {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--secondary); }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.panel {
  padding: 32px;
  border-radius: 22px;
  background: var(--light);
  border: 1px solid var(--border);
}
.highlight {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, #eef6ff, #f0fffb);
  border-radius: 0 14px 14px 0;
}
.highlight strong { color: var(--primary); }

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
}
.contact-card {
  padding: 30px;
  border-radius: 22px;
  color: #fff;
  background: var(--primary);
}
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card p { color: rgba(255,255,255,.76); }
.contact-item {
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field { margin-bottom: 16px; }
label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  color: var(--primary);
}
input, textarea, select {
  width: 100%;
  border: 1px solid #cbd6dc;
  border-radius: 11px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(24,169,153,.15);
  border-color: var(--accent);
}
textarea { min-height: 150px; resize: vertical; }
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: .9rem;
  color: var(--muted);
}
.consent input { width: auto; margin-top: 5px; }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
}
.form-status.success { display: block; background: #ecfdf3; color: var(--success); }
.form-status.error { display: block; background: #fef3f2; color: var(--danger); }
.hp { position: absolute !important; left: -9999px !important; }

footer {
  padding: 52px 0 22px;
  color: rgba(255,255,255,.74);
  background: #071522;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .8fr);
  gap: 32px;
}
footer h3 { color: #fff; font-size: 1rem; }
footer a { display: block; padding: 5px 0; }
footer a:hover { color: #83e3d7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}

@media (max-width: 920px) {
  .hero-grid, .feature-split, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .hero, .section { padding: 62px 0; }
  .grid-3, .grid-2, .process, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .banner { grid-template-columns: 1fr; padding: 30px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: 2.45rem; }
}


/* Identité visuelle DOOZEN Consulting */
.logo {
  min-width: 155px;
}
.brand-logo {
  display: block;
  width: 168px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  border-radius: 10px;
}
.brand-logo-footer {
  width: 185px;
  height: 74px;
  object-position: left center;
}
.legal-summary {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--light);
}
.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--secondary);
  font-size: .92rem;
}
.legal-content {
  min-width: 0;
}
.legal-article {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-article h2 {
  font-size: 1.55rem;
}
.company-status {
  display: inline-flex;
  margin: 8px 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff6e5;
  color: #8a4b00;
  font-weight: 750;
  font-size: .88rem;
}
@media (max-width: 820px) {
  .legal-summary { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .brand-logo { width: 145px; }
}

/* CGV intégrales : lecture longue et mise en page contractuelle */
.cgv-page-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(0,183,217,.16), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(239,23,76,.08), transparent 26%),
    linear-gradient(180deg, #f7faff, #fff);
}
.cgv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cgv-meta span {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: var(--primary);
  font-size: .84rem;
  font-weight: 750;
}
.cgv-layout {
  grid-template-columns: minmax(230px,.3fr) minmax(0,1fr);
}
.cgv-toc {
  max-height: calc(100vh - 132px);
  overflow: auto;
  scrollbar-width: thin;
}
.cgv-toc h3 { margin-bottom: 14px; }
.cgv-toc a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(219,228,239,.75);
  line-height: 1.35;
}
.cgv-document {
  padding: clamp(24px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cgv-document > h1 {
  scroll-margin-top: 125px;
  margin: 48px 0 22px;
  padding: 26px 0 14px;
  border-top: 1px solid var(--border);
  font-size: clamp(1.55rem,3vw,2.15rem);
}
.cgv-document > h1:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.cgv-document > h1::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  margin-top: 13px;
  border-radius: 99px;
  background: linear-gradient(90deg,var(--secondary),var(--accent),var(--accent-green),var(--accent-orange),var(--accent-red));
}
.cgv-document h2 {
  margin: 30px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--secondary);
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
.cgv-document h3 { margin: 24px 0 10px; font-size: 1.08rem; }
.cgv-document h4 { margin: 20px 0 8px; color: var(--accent-purple); }
.cgv-document p { margin: 0 0 1em; }
.cgv-document ul,
.cgv-document ol { padding-left: 25px; margin: 8px 0 20px; }
.cgv-document li { margin: 6px 0; }
.cgv-document table {
  display: block;
  width: 100% !important;
  overflow-x: auto;
  margin: 22px 0;
  border-collapse: collapse;
  font-size: .9rem;
}
.cgv-document td,
.cgv-document th { min-width: 145px; padding: 11px 13px; border: 1px solid var(--border); vertical-align: top; }
.cgv-document tr:first-child td,
.cgv-document th { background: var(--primary); color: #fff; font-weight: 750; }
.cgv-document tr:nth-child(even) td { background: #f8faff; }
.cgv-document a { color: var(--secondary); text-decoration: underline; text-underline-offset: 2px; }
.print-cgv { position: fixed; right: 22px; bottom: 22px; z-index: 50; }
@media (max-width: 820px) {
  .cgv-layout { grid-template-columns: 1fr; }
  .cgv-toc { max-height: none; }
  .cgv-document { padding: 24px 18px; border-radius: 18px; }
  .print-cgv { position: static; margin: 0 18px 28px; }
}
@media print {
  .topbar, .site-header, footer, .cgv-page-hero, .cgv-toc, .print-cgv { display: none !important; }
  .section { padding: 0; }
  .container, .cgv-layout { width: 100%; max-width: none; display: block; }
  .cgv-document { border: 0; box-shadow: none; padding: 12mm; }
  .cgv-document > h1 { break-before: page; }
  .cgv-document > h1:first-of-type { break-before: auto; }
  .cgv-document h1, .cgv-document h2, .cgv-document h3 { break-after: avoid; }
  .cgv-document p, .cgv-document li { orphans: 3; widows: 3; }
}


/* Palette visuelle inspirée du logo DOOZEN */
.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(0,183,217,.20), transparent 31%),
    radial-gradient(circle at 12% 88%, rgba(239,23,76,.10), transparent 27%),
    radial-gradient(circle at 70% 90%, rgba(0,166,81,.08), transparent 25%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.eyebrow {
  border: 1px solid rgba(7,91,216,.10);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent), var(--accent-green));
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 25px rgba(7,91,216,.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0b2555, #064fc0);
}
.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
}
.btn-accent:hover {
  filter: brightness(.97);
}
.card::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--accent-green));
}
.process-step:nth-child(1)::before { color: var(--secondary); }
.process-step:nth-child(2)::before { color: var(--accent); }
.process-step:nth-child(3)::before { color: var(--accent-green); }
.process-step:nth-child(4)::before { color: var(--accent-red); }
.site-header {
  border-bottom: 1px solid rgba(7,91,216,.12);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    #075bd8 0%,
    #075bd8 20%,
    #00b7d9 35%,
    #00a651 52%,
    #ffd400 68%,
    #ff8a00 82%,
    #ef174c 100%
  );
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.metric strong {
  color: #7ee8ff;
}
.contact-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(0,183,217,.24), transparent 34%),
    linear-gradient(145deg, var(--primary), #0b3b8f);
}
footer {
  background:
    radial-gradient(circle at 90% 0%, rgba(0,183,217,.12), transparent 30%),
    #06142f;
}
.footer-bottom {
  position: relative;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, #075bd8, #00b7d9, #00a651, #ff8a00, #ef174c);
}


/* Logo renforcé et illustrations */
.brand-logo {
  width: 205px;
  height: 72px;
}
.site-header .nav-wrap {
  min-height: 92px;
}
.nav {
  gap: 18px;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 60px rgba(7,26,61,.16);
  border: 1px solid rgba(7,91,216,.10);
}
.hero-illustration {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-logo-watermark {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(7,26,61,.12);
  backdrop-filter: blur(8px);
}
.service-illustration {
  width: calc(100% + 56px);
  height: 190px;
  margin: -28px -28px 22px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid var(--border);
}
.service-card-body {
  display: block;
}
.about-doozen {
  align-items: center;
}
.about-logo-panel {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,183,217,.16), transparent 27%),
    radial-gradient(circle at 85% 80%, rgba(239,23,76,.12), transparent 30%),
    #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-logo-panel img {
  width: min(100%, 520px);
}
.brand-promise {
  margin-top: 18px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .82rem;
}
.brand-promise span:nth-child(1) { color: var(--accent-red); }
.brand-promise span:nth-child(2) { color: var(--accent-green); }
.about-illustration {
  width: 100%;
  max-height: 260px;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(7,26,61,.12);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
}
.page-hero-visual {
  position: relative;
}
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(7,91,216,.18), rgba(0,183,217,.12), rgba(0,166,81,.12));
}
.page-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
footer {
  position: relative;
  overflow: hidden;
}
.footer-logo-watermark {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 330px;
  opacity: .08;
  pointer-events: none;
}
.footer-grid, .footer-bottom {
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .hero-illustration { min-height: 420px; }
  .brand-logo { width: 175px; height: 64px; }
}
@media (max-width: 640px) {
  .service-illustration { height: 170px; }
  .hero-logo-watermark { width: 82px; height: 82px; }
  .about-logo-panel { min-height: 300px; padding: 28px; }
  .page-hero-visual img { height: 230px; }
}


/* Correctifs v5 : proportions des images et pied de page */
.service-illustration {
  width: 100%;
  height: 210px;
  margin: -28px 0 22px;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid var(--border);
}

.card {
  overflow: hidden;
}

.card .service-card-body {
  padding: 0;
}

.hero-illustration {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.page-hero-visual img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.about-illustration {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  padding: 14px;
}

.about-logo-panel {
  min-height: 330px;
}

.about-logo-panel img {
  width: min(100%, 620px);
  max-height: 270px;
  object-fit: contain;
}

footer .brand-logo-footer {
  width: 280px;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 12px 28px rgba(0, 183, 217, .16));
}

footer .logo {
  display: inline-flex;
  min-width: 280px;
  margin-bottom: 18px;
}

footer .footer-grid > div:first-child {
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,183,217,.18), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(239,23,76,.12), transparent 35%),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}

.footer-bottom {
  justify-content: center;
  text-align: center;
}

.footer-logo-watermark {
  width: 420px;
  opacity: .055;
}

@media (max-width: 920px) {
  .service-illustration {
    height: 190px;
  }
  footer .brand-logo-footer {
    width: 230px;
  }
  footer .logo {
    min-width: 230px;
  }
}

@media (max-width: 640px) {
  .service-illustration {
    height: 180px;
  }
  .page-hero-visual img {
    height: 260px;
  }
  footer .brand-logo-footer {
    width: 210px;
  }
}


/* Section Odoo */
.odoo-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(142,53,211,.16), transparent 35%),
    linear-gradient(180deg, #ffffff, #faf7ff);
}
.odoo-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(142,53,211,.08);
}
.odoo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .12em;
  background: linear-gradient(135deg, #714b67, #8e35d3);
  box-shadow: 0 10px 24px rgba(113,75,103,.24);
}
.odoo-module-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.odoo-module-group {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(113,75,103,.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(113,75,103,.10), transparent 42%),
    #fff;
  box-shadow: 0 12px 32px rgba(7,26,61,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.odoo-module-group:hover {
  transform: translateY(-3px);
  border-color: rgba(113,75,103,.34);
  box-shadow: 0 18px 40px rgba(7,26,61,.10);
}
.odoo-module-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.odoo-module-heading h3 {
  margin: 0;
  font-size: 1.2rem;
}
.odoo-module-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #714b67, #017e84);
  box-shadow: 0 8px 20px rgba(113,75,103,.20);
  font-size: 1.25rem;
  font-weight: 850;
}
.odoo-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.odoo-app {
  min-width: 0;
  min-height: 92px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(113,75,103,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: var(--primary);
  text-align: left;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.odoo-app:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 18px rgba(113,75,103,.10);
}
.odoo-app img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}
.odoo-app h4 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: .96rem;
  line-height: 1.2;
}
.odoo-app p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.4;
}

/* Prise de rendez-vous stratégique */
.appointment-hero {
  background:
    radial-gradient(circle at 88% 20%, rgba(0,183,217,.14), transparent 25%),
    radial-gradient(circle at 72% 90%, rgba(0,166,81,.10), transparent 24%),
    var(--light);
}
.appointment-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.appointment-facts span {
  padding: 10px 14px;
  border: 1px solid rgba(7,91,216,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--muted);
}
.appointment-facts strong { color: var(--primary); }
.appointment-section { background: #fff; }
.appointment-layout {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: start;
}
.appointment-intro {
  position: sticky;
  top: 120px;
}
.appointment-intro h2 { margin-top: 18px; }
.appointment-intro > p { color: var(--muted); }
.appointment-benefits {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}
.appointment-benefits li {
  position: relative;
  padding-left: 28px;
}
.appointment-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 900;
}
.appointment-benefits strong,
.appointment-benefits span { display: block; }
.appointment-benefits span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .92rem;
}
.appointment-hours {
  display: grid;
  gap: 5px;
  padding: 20px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #0b3b8f);
}
.appointment-hours span { color: rgba(255,255,255,.84); }
.appointment-hours small { color: rgba(255,255,255,.66); line-height: 1.45; }
.booking-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(7,26,61,.10);
}
.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--light);
}
.booking-progress span {
  padding: 15px 10px;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
  font-weight: 750;
}
.booking-progress span.active {
  color: var(--secondary);
  background: rgba(7,91,216,.06);
}
.booking-picker {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, .65fr);
  min-height: 460px;
}
.booking-calendar-panel,
.booking-slots-panel { padding: 26px; }
.booking-slots-panel {
  border-left: 1px solid var(--border);
  background: #fbfcff;
}
.booking-slots-panel h3 {
  font-size: 1rem;
  line-height: 1.35;
}
.calendar-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}
.calendar-toolbar h2 {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
}
.calendar-nav {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-size: 1.15rem;
}
.calendar-nav:hover:not(:disabled) {
  border-color: var(--secondary);
  color: var(--secondary);
}
.calendar-nav:disabled { opacity: .35; cursor: not-allowed; }
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}
.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.calendar-day,
.calendar-empty {
  aspect-ratio: 1;
  min-width: 0;
}
.calendar-day {
  position: relative;
  border: 0;
  border-radius: 12px;
  color: #a1aab4;
  background: transparent;
  font-weight: 700;
}
.calendar-day.available {
  color: var(--primary);
  background: rgba(7,91,216,.07);
  cursor: pointer;
}
.calendar-day.available::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-green);
  transform: translateX(-50%);
}
.calendar-day.available:hover {
  color: var(--secondary);
  background: rgba(7,91,216,.13);
}
.calendar-day.selected {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.calendar-day.selected::after { background: #fff; }
.calendar-day:focus-visible,
.booking-slot:focus-visible,
.calendar-nav:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.calendar-help {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}
.calendar-loading,
.calendar-error {
  grid-column: 1 / -1;
  padding: 45px 10px;
  color: var(--muted);
  text-align: center;
}
.calendar-error { color: #a51d3d; }
.booking-slots {
  display: grid;
  gap: 9px;
}
.booking-slot {
  min-height: 44px;
  border: 1px solid rgba(7,91,216,.20);
  border-radius: 11px;
  color: var(--secondary);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.booking-slot:hover {
  border-color: var(--secondary);
  background: rgba(7,91,216,.05);
}
.booking-slot.selected {
  color: #fff;
  border-color: var(--secondary);
  background: var(--secondary);
}
.slots-placeholder {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}
.appointment-form {
  padding: 28px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.selected-appointment {
  display: grid;
  gap: 3px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--accent-green);
  border-radius: 0 14px 14px 0;
  background: rgba(0,166,81,.06);
}
.selected-appointment span,
.selected-appointment small { color: var(--muted); }
.selected-appointment strong { color: var(--primary); }
.booking-confirmation {
  padding: 64px 30px;
  text-align: center;
}
.booking-confirmation-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-green);
  font-size: 1.8rem;
  font-weight: 900;
}
.booking-confirmation h2 { margin-bottom: 12px; }
.booking-confirmation strong {
  display: block;
  color: var(--secondary);
  font-size: 1.3rem;
}
.booking-confirmation p:last-child {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
}

@media (max-width: 920px) {
  .appointment-layout { grid-template-columns: 1fr; }
  .appointment-intro { position: static; }
}

@media (max-width: 640px) {
  .booking-picker { grid-template-columns: 1fr; }
  .booking-slots-panel {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .booking-slots { grid-template-columns: repeat(3, 1fr); }
  .booking-calendar-panel,
  .booking-slots-panel,
  .appointment-form { padding: 20px; }
  .booking-progress span { font-size: .72rem; }
}

@media (max-width: 760px) {
  .odoo-module-groups {
    grid-template-columns: 1fr;
  }
  .odoo-module-group {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .odoo-app {
    align-items: flex-start;
  }
  .odoo-app img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}


/* Illustrations services v7 : images propres sans texte intégré */
.service-illustration {
  width: 100%;
  height: 230px;
  margin: -28px 0 22px;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.page-hero-visual img {
  width: 100%;
  height: 320px;
  padding: 24px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

@media (max-width: 920px) {
  .service-illustration {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .service-illustration {
    height: 190px;
  }
  .page-hero-visual img {
    height: 260px;
  }
}


/* Illustrations SVG vectorielles v8 */
.service-illustration,
.page-hero-visual img {
  background: transparent;
  padding: 0;
  object-fit: contain;
}
.service-illustration {
  height: 220px;
  margin: -18px 0 18px;
}
.page-hero-visual img {
  height: 330px;
}


/* Hero v9 : illustration recadrée sans logo en doublon */
.hero-visual {
  min-height: 520px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  background: #ffffff;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
  background: transparent;
}

.hero-logo-watermark {
  display: none !important;
}

@media (max-width: 920px) {
  .hero-visual { min-height: 420px; }
  .hero-illustration { min-height: 420px; }
}

@media (max-width: 640px) {
  .hero-visual { min-height: 340px; }
  .hero-illustration { min-height: 340px; }
}

.odoo-brand{
margin:20px 0 28px;
display:flex;
align-items:center;
}
.odoo-brand img{
height:64px;
width:auto;
display:block;
filter:drop-shadow(0 8px 18px rgba(0,0,0,.08));
}
/* Questions fréquentes : contenu visible et structuré pour les visiteurs et moteurs. */
.seo-faq{background:#f5f8fc}.seo-faq h2{max-width:760px}.faq-grid{display:grid;gap:12px;margin-top:24px}.faq-item{background:#fff;border:1px solid var(--border);border-radius:14px;padding:0 18px}.faq-item summary{cursor:pointer;color:var(--primary);font-weight:750;padding:18px 28px 18px 0;position:relative}.faq-item summary::marker{color:var(--secondary)}.faq-item p{color:var(--muted);line-height:1.7;margin:0;padding:0 0 18px}
.team-intro{max-width:850px}.team-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;margin-top:32px;align-items:start}.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:28px;box-shadow:0 12px 30px rgba(7,26,61,.07)}#gilles-gardy{order:-1}.team-card-head{display:flex;align-items:center;gap:18px;margin-bottom:20px}.team-avatar{width:72px;height:72px;flex:0 0 72px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(135deg,var(--secondary),var(--accent));color:#fff;font-size:1.35rem;font-weight:800}.team-card h2{margin:0}.team-role{color:var(--secondary);font-weight:700;margin:.25rem 0 0}.team-card p{color:var(--muted);line-height:1.75}.team-points{padding-left:20px;color:var(--text);line-height:1.7}.linkedin-link{display:inline-flex;align-items:center;gap:8px;margin-top:10px}.team-complementarity{margin-top:28px;background:var(--primary);color:#fff;border-radius:var(--radius);padding:30px}.team-complementarity h2{color:#fff;margin-top:0}.team-complementarity p{color:rgba(255,255,255,.82);line-height:1.75}@media(max-width:900px){.team-grid{grid-template-columns:1fr}.team-points{columns:1}}
.experience-highlight{display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:center;margin:20px 0;padding:16px;border-radius:12px;background:var(--light);border:1px solid var(--border)}.experience-number{color:var(--secondary);font-size:1.7rem;font-weight:850;line-height:1}.experience-highlight strong{display:block;color:var(--primary)}.experience-highlight span{color:var(--muted);font-size:.9rem}.company-history{margin:20px 0;padding-left:18px;border-left:3px solid var(--accent)}.company-history h3{margin:0 0 6px;color:var(--primary);font-size:1rem}.company-history p{margin:0}.source-note{font-size:.82rem;color:var(--muted)}
.career-timeline{display:grid;gap:16px;margin:24px 0}.career-step{position:relative;padding:0 0 16px 22px;border-left:2px solid var(--border)}.career-step::before{content:"";position:absolute;left:-6px;top:5px;width:10px;height:10px;border-radius:50%;background:var(--secondary);box-shadow:0 0 0 4px #e8f1ff}.career-step:last-child{padding-bottom:0}.career-step h3{margin:0;color:var(--primary);font-size:1.02rem}.career-company{display:block;color:var(--secondary);font-weight:750;margin:3px 0}.career-date{display:block;color:var(--muted);font-size:.86rem;margin-bottom:6px}.career-step p{margin:0;font-size:.93rem}
