/* =========================================================
   BATIVO — Styles globaux
   Palette : bleu nuit + accent orange
   ========================================================= */

:root {
  --c-primary:        #0b2545;
  --c-primary-dark:   #061a36;
  --c-primary-light:  #133b73;
  --c-accent:         #f97316;
  --c-accent-dark:    #ea580c;
  --c-accent-light:   #fb923c;
  --c-bg:             #ffffff;
  --c-bg-alt:         #f5f7fb;
  --c-bg-dark:        #0b2545;
  --c-text:           #0f172a;
  --c-muted:          #475569;
  --c-border:         #e2e8f0;
  --c-success:        #16a34a;
  --c-danger:         #dc2626;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 6px rgba(11, 37, 69, .06);
  --shadow:    0 10px 30px rgba(11, 37, 69, .08);
  --shadow-lg: 0 25px 50px rgba(11, 37, 69, .15);

  --container: 1200px;
  --header-h:  78px;

  --ff-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-head: 'Poppins', 'Inter', system-ui, sans-serif;

  --tr: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--c-accent); }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-primary);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--c-muted); }
ul { padding-left: 1.2em; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: #cbd5e1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #cbd5e1; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: .8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .35);
}
.btn--primary:hover {
  background: var(--c-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, .45);
}
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}
.btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--c-primary);
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--c-primary);
  letter-spacing: -.02em;
}
.logo:hover { color: var(--c-primary); }
.logo__mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav__list {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-weight: 500;
  font-size: .95rem;
  color: var(--c-text);
  position: relative;
  padding: .3rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--c-accent);
  transition: width var(--tr);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--c-primary); font-weight: 600; }

.lang {
  display: flex;
  gap: .3rem;
  font-size: .85rem;
  font-weight: 600;
  align-items: center;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: .25rem;
}
.lang a {
  padding: .3rem .7rem;
  border-radius: 999px;
  color: var(--c-muted);
}
.lang a.is-active {
  background: var(--c-primary);
  color: #fff;
}

.header__cta { display: flex; gap: .6rem; align-items: center; }

.burger {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger span {
  position: relative;
  display: block;
  width: 22px; height: 2px;
  background: var(--c-primary);
  transition: all var(--tr);
}
.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--c-primary);
  transition: all var(--tr);
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5.5rem 0 6rem;
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(249,115,22,.18), transparent 60%),
    linear-gradient(135deg, #0b2545 0%, #133b73 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 10% 90%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: var(--c-accent-light); }
.hero p.lede {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__trust { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero__trust div {
  display: flex; align-items: center; gap: .55rem;
  color: #e2e8f0; font-size: .9rem;
}
.hero__trust svg { width: 20px; height: 20px; color: var(--c-accent-light); flex-shrink: 0; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}
.hero__card {
  position: absolute;
  background: #fff;
  color: var(--c-text);
  padding: 1.1rem 1.4rem 1.1rem 1.1rem;
  border-radius: 16px;
  box-shadow:
    0 25px 45px rgba(0, 0, 0, .25),
    inset 0 0 0 1px rgba(255, 255, 255, .6);
  display: flex;
  gap: .9rem;
  align-items: center;
  font-size: .9rem;
  z-index: 3;
}
.hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.4), transparent 60%);
  pointer-events: none;
}
.hero__card strong {
  color: var(--c-primary);
  font-family: var(--ff-head);
  font-size: 1.02rem;
  display: block;
}
.hero__card small { color: var(--c-muted); display: block; font-size: .78rem; }
.hero__card .icon {
  position: relative;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(249, 115, 22, .45);
}
.hero__card .icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(249, 115, 22, .35), transparent 70%);
  z-index: -1;
  border-radius: 50%;
}
.hero__card .icon::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px;
  height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
  border-radius: 10px 10px 0 0;
}
.hero__card .icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.hero__card--2 .icon { background: linear-gradient(135deg, #ef4444 0%, #c2410c 100%); box-shadow: 0 8px 18px rgba(220, 38, 38, .45); }
.hero__card--3 .icon { background: linear-gradient(135deg, #3b82f6 0%, var(--c-primary) 100%); box-shadow: 0 8px 18px rgba(59, 130, 246, .45); }
.hero__card .badge-dot {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: #16a34a;
  border: 3px solid #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(22, 163, 74, .4);
}
.hero__card--1 { top: 8%;  left: -20px; animation: float 6s ease-in-out infinite; }
.hero__card--2 { bottom: 12%; right: -10px; animation: float 6s ease-in-out infinite 2s; }
.hero__card--3 { top: 45%; right: 15%; animation: float 6s ease-in-out infinite 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__blob {
  position: absolute;
  inset: 10% 5%;
  background: linear-gradient(135deg, rgba(249,115,22,.3), rgba(249,115,22,.05));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  filter: blur(2px);
  animation: morph 12s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%; }
  50%      { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.service-card {
  position: relative;
  background: #fff;
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  text-decoration: none;
  color: inherit;
  transition: all var(--tr);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
  color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  transition: transform var(--tr);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  transform: scale(1.08) rotate(-3deg);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .95rem; margin-bottom: 1rem; flex-grow: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--c-accent);
  font-size: .9rem;
}

/* ---------- Features (USP) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: center;
  padding: 1.5rem 1rem;
}
.feature__icon {
  width: 70px; height: 70px;
  background: rgba(249, 115, 22, .12);
  color: var(--c-accent);
  border-radius: 20px;
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
}
.feature__icon svg { width: 32px; height: 32px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { font-size: .95rem; margin: 0; }

/* ---------- About split ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-primary);
}
.about__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(.85);
  z-index: 0;
}
.about__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 37, 69, .55), rgba(249, 115, 22, .35));
  mix-blend-mode: multiply;
}
.about__badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: #fff;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--ff-head);
  display: flex;
  gap: .9rem;
  align-items: center;
  z-index: 2;
}
.about__badge strong { color: var(--c-primary); font-size: 2rem; line-height: 1; }
.about__badge small { color: var(--c-muted); font-size: .8rem; display: block; max-width: 110px; }
.about ul.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.about ul.checklist li {
  display: flex;
  gap: .7rem;
  padding: .5rem 0;
  font-weight: 500;
  color: var(--c-text);
}
.about ul.checklist li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat__num {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--c-accent-light);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat__label { color: #cbd5e1; font-size: .95rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border: 80px solid rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: .4rem; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; max-width: 540px; }
.cta-banner .btn { background: #fff; color: var(--c-accent-dark); box-shadow: var(--shadow); }
.cta-banner .btn:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }

/* ---------- Service detail page ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -10%; top: -50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.25), transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #cbd5e1; max-width: 640px; font-size: 1.1rem; }
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.content-grid__main h2 { margin-top: 2rem; }
.content-grid__main h2:first-child { margin-top: 0; }
.content-grid__main ul li {
  margin-bottom: .5rem;
  color: var(--c-text);
}
.content-grid__main p { color: var(--c-text); line-height: 1.8; }
.aside-card {
  background: var(--c-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.aside-card h3 { margin-top: 0; }
.aside-card ul { list-style: none; padding: 0; }
.aside-card ul li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--c-border);
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem;
}
.aside-card ul li:last-child { border-bottom: 0; }
.aside-card ul li svg { width: 18px; height: 18px; color: var(--c-accent); flex-shrink: 0; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { background: var(--c-bg-dark); color: #fff; padding: 2.5rem; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,.3), transparent 70%);
  border-radius: 50%;
}
.contact-info h3 { color: #fff; }
.contact-info p { color: #cbd5e1; }
.contact-info ul { list-style: none; padding: 0; margin-top: 2rem; }
.contact-info ul li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: center;
}
.contact-info ul li:last-child { border-bottom: 0; }
.contact-info ul li .icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,.2);
  color: var(--c-accent-light);
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info ul li small { display: block; color: #94a3b8; font-size: .8rem; }
.contact-info ul li strong { color: #fff; font-size: 1rem; font-weight: 600; }
.contact-info ul li a { color: #fff; }
.contact-info ul li a:hover { color: var(--c-accent-light); }

.form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.2rem; }
.form__group label {
  display: block;
  margin-bottom: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-text);
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--c-text);
  transition: all var(--tr);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: 0;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .15);
}
.form__group textarea { resize: vertical; min-height: 130px; }
.form__group--check {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .85rem;
  color: var(--c-muted);
}
.form__group--check input { width: auto; margin-top: 4px; }
.form .btn { width: 100%; justify-content: center; }
.form__notice {
  font-size: .8rem;
  color: var(--c-muted);
  margin-top: 1rem;
  text-align: center;
}

.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  display: flex; gap: .6rem; align-items: center;
}
.alert--success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---------- Footer ---------- */
.footer {
  background: var(--c-primary-dark);
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: var(--ff-head);
}
.footer p { color: #94a3b8; font-size: .95rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .6rem; }
.footer ul li a { color: #94a3b8; font-size: .95rem; }
.footer ul li a:hover { color: var(--c-accent-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: #94a3b8;
}
.footer .logo { color: #fff; margin-bottom: 1rem; }

/* ---------- Floating phone button ---------- */
.float-phone {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 60px; height: 60px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(249, 115, 22, .5);
  z-index: 50;
  animation: pulse 2s ease-in-out infinite;
}
.float-phone svg { width: 26px; height: 26px; }
.float-phone:hover { color: #fff; background: var(--c-accent-dark); transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(249,115,22,.5), 0 0 0 0 rgba(249,115,22,.5); }
  50%      { box-shadow: 0 10px 30px rgba(249,115,22,.5), 0 0 0 14px rgba(249,115,22,0); }
}

/* ---------- Gallery / Realisations ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  background: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.3,1), filter .4s ease;
  filter: grayscale(45%) brightness(.92);
}
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, .55), rgba(249, 115, 22, .35));
  mix-blend-mode: multiply;
  z-index: 1;
  transition: opacity .3s ease;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(11, 37, 69, .9));
  z-index: 2;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.gallery__item:hover::before { opacity: .4; }
.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.3rem 1.4rem;
  z-index: 3;
  color: #fff;
}
.gallery__caption .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--c-accent);
  color: #fff;
  padding: .25rem .55rem;
  border-radius: 4px;
  margin-bottom: .5rem;
}
.gallery__caption strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.08rem;
  margin-bottom: .15rem;
}
.gallery__caption small {
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
}

/* ---------- Service page : Table of Contents ---------- */
.toc {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 0 0 2rem;
}
.toc__title {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--c-primary);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .5rem 1.5rem;
  counter-reset: toc-counter;
}
.toc ol li { counter-increment: toc-counter; }
.toc ol li a {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .4rem 0;
  color: var(--c-text);
  font-weight: 500;
  font-size: .92rem;
}
.toc ol li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  color: var(--c-accent);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .85rem;
}
.toc ol li a:hover { color: var(--c-accent); }

/* ---------- Service detail block ---------- */
.service-detail {
  padding: 2.5rem 0;
  border-top: 1px solid var(--c-border);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.service-detail:first-of-type { border-top: 0; padding-top: 1rem; }
.service-detail h2 {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.2rem;
}
.service-detail h2 .num {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  color: #fff;
  border-radius: 10px;
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(249, 115, 22, .35);
}
.service-detail > p { color: var(--c-text); line-height: 1.8; }

/* "Ce qui est inclus" list */
.detail-list {
  background: var(--c-bg-alt);
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--c-accent);
  list-style: none;
  margin: 1.5rem 0;
}
.detail-list__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .8rem;
  padding-left: 0;
}
.detail-list li {
  position: relative;
  padding: .35rem 0 .35rem 1.8rem;
  color: var(--c-text);
  font-size: .95rem;
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .7rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Inline mini CTA */
.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--c-accent);
  font-size: .95rem;
  margin-top: 1rem;
  text-decoration: none;
}
.mini-cta:hover { color: var(--c-accent-dark); gap: .55rem; }
.mini-cta svg { width: 16px; height: 16px; transition: transform var(--tr); }

/* ---------- Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.process-step {
  position: relative;
  padding: 1.8rem 1.4rem 1.4rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.process-step__num {
  position: absolute;
  top: -18px; left: 1.4rem;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 14px rgba(11, 37, 69, .35);
}
.process-step h4 {
  margin: .4rem 0 .5rem;
  color: var(--c-primary);
  font-family: var(--ff-head);
  font-size: 1.05rem;
}
.process-step p { font-size: .9rem; margin: 0; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { margin: 1.5rem 0 0; }
.faq__item {
  border-bottom: 1px solid var(--c-border);
}
.faq__item:first-of-type { border-top: 1px solid var(--c-border); }
.faq__item summary {
  cursor: pointer;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-weight: 600;
  font-family: var(--ff-head);
  color: var(--c-primary);
  position: relative;
  list-style: none;
  font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--tr);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 0 1.2rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Pricing table ---------- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  font-size: .95rem;
}
.price-table th,
.price-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.price-table th {
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .9rem;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(odd) { background: var(--c-bg-alt); }
.price-table td:last-child {
  font-weight: 600;
  color: var(--c-accent-dark);
  white-space: nowrap;
}

/* ---------- Pull quote ---------- */
.pull-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.8rem;
  background: linear-gradient(135deg, rgba(11, 37, 69, .04), rgba(249, 115, 22, .05));
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.7;
  font-style: italic;
}
.pull-quote strong { color: var(--c-primary); font-style: normal; }

/* ---------- Related links ---------- */
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.related a {
  display: block;
  padding: 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--tr);
}
.related a:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related a small {
  color: var(--c-accent);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.related a strong {
  display: block;
  font-family: var(--ff-head);
  color: var(--c-primary);
  font-size: 1rem;
  margin-top: .3rem;
}

/* ---------- Highlights row (trust signals on service page) ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.highlight {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.highlight__icon {
  width: 38px; height: 38px;
  background: rgba(249, 115, 22, .12);
  color: var(--c-accent);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.highlight__icon svg { width: 20px; height: 20px; }
.highlight strong { display: block; color: var(--c-primary); font-family: var(--ff-head); font-size: .95rem; margin-bottom: .1rem; }
.highlight small { color: var(--c-muted); font-size: .82rem; line-height: 1.4; }

/* ---------- Content photo (top of service pages) ---------- */
.content-photo {
  margin: 0 0 2rem;
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.content-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(.95);
}
.content-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, .35), rgba(249, 115, 22, .2));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual   { max-width: 380px; margin: 0 auto; }
  .about          { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid   { grid-template-columns: 1fr; }
  .aside-card     { position: static; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 3.5rem 0; }
  .hero    { padding: 3rem 0 4rem; }
  .nav     {
    position: fixed;
    top: var(--header-h); right: 0;
    width: min(320px, 90vw);
    height: calc(100vh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1rem;
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
    transform: translateX(110%);
    transition: transform var(--tr);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list   { flex-direction: column; gap: .6rem; width: 100%; }
  .nav__link   { font-size: 1.05rem; padding: .5rem 0; width: 100%; }
  .burger      { display: inline-flex; }
  .header__cta .btn:not(.btn--icon) { display: none; }
  .form__row   { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner  { padding: 2.5rem 1.8rem; text-align: center; justify-content: center; }
  .hero__card  { font-size: .8rem; padding: .8rem; }
  .hero__card .icon { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .hero__card--3 { display: none; }
  .footer__bottom { justify-content: center; text-align: center; }
}
