/* ───────── Page Service — long-form editorial ─────────
   Used by: Service-VideMaison.html (long-form), Service-Estimation.html (conversion)
   Tokens & shared components hérités de tokens.css + components.css                      */

/* HERO ───────── */
.svc-hero {
  position: relative;
  padding: 200px 0 120px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-line);
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 960px) { .svc-hero { padding: 160px 0 80px; } .svc-hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.svc-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-hero-eyebrow::before {
  content:"";
  width: 32px;
  height: 1px;
  background: var(--magenta);
}
.svc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink-deep);
  margin: 24px 0 0;
}
.svc-hero h1 em {
  font-style: normal;
  color: var(--magenta);
}
.svc-hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 32px;
  max-width: 56ch;
}
.svc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.svc-hero-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  position: relative;
}
.svc-hero-img-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-2);
}
.svc-hero-img-tag .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(255,26,108,0.18);
}
.svc-hero-meta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--magenta);
  letter-spacing: -0.03em;
  line-height: 1;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.svc-hero-meta span {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 10px;
  display: block;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .svc-hero-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 20px;
  }
  .svc-hero-meta > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: baseline;
  }
  .svc-hero-meta strong {
    font-size: 26px;
    min-width: 80px;
  }
  .svc-hero-meta span { margin-top: 0; }
}

/* BREADCRUMB ───────── */
.svc-breadcrumb {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  z-index: 5;
}
.svc-breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.svc-breadcrumb a:hover { color: var(--magenta); }
.svc-breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* FOR-WHO — cas d'usage ───────── */
.for-who {
  padding: 120px 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--ink-line);
}
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .for-who-grid { grid-template-columns: 1fr; } }

.fw-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.fw-card-icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--paper-warm);
  border: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta);
}
.fw-card-icon svg { width: 22px; height: 22px; }
.fw-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  line-height: 1.2;
  margin-top: 4px;
}
.fw-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.fw-card-tag {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ink-line);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
}

/* INCLUDED / NOT INCLUDED ───────── */
.included {
  padding: 120px 0;
  background: var(--paper);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 800px) { .included-grid { grid-template-columns: 1fr; } }

.incl-col {
  padding: 40px;
  border-radius: var(--r-md);
  border: 1px solid var(--ink-line);
}
.incl-col.yes { background: var(--paper-warm); }
.incl-col.no { background: transparent; }
.incl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.incl-col.yes .incl-head { color: var(--magenta); }
.incl-col.no .incl-head { color: var(--ink-muted); }
.incl-col h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-deep);
  margin-bottom: 32px;
}
.incl-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.incl-col li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--ink-line);
}
.incl-col li:last-child { border-bottom: none; padding-bottom: 0; }
.incl-col li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 999px;
  margin-top: 1px;
  flex: none;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.incl-col.yes li::before {
  background-color: var(--magenta);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.incl-col.no li::before {
  background-color: transparent;
  border: 1px solid var(--ink-muted);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2.5' stroke-linecap='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='18' y1='6' x2='6' y2='18'/></svg>");
}

/* EDITORIAL QUOTE ───────── */
.svc-quote {
  padding: 100px 0;
  background: var(--accent-navy);
  color: var(--paper);
  text-align: center;
}
.svc-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--brand-rose);
  margin-bottom: 24px;
}
.svc-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin: 0 auto;
}
.svc-quote blockquote em {
  font-style: normal;
  color: var(--brand-rose);
}
.svc-quote-author {
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.5);
}

/* FAQ — local section variation already covered by global .faq; we reuse */

/* ALTERNE — image gauche/droite + texte ───────── */
.svc-alterne {
  padding: 120px 0;
  background: var(--paper);
}
.svc-alterne + .svc-alterne {
  padding-top: 0;
}
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.alt-row.reverse .alt-img {
  order: 2;
}
@media (max-width: 900px) {
  .alt-row { grid-template-columns: 1fr; gap: 40px; }
  .alt-row.reverse .alt-img { order: 0; }
}
.alt-img {
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  position: relative;
}
.alt-img-stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}
.alt-img-stat strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--magenta);
  letter-spacing: -0.02em;
  line-height: 1;
}
.alt-img-stat span {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.alt-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  display: flex;
  align-items: center;
  gap: 12px;
}
.alt-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--magenta);
}
.alt-text h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink-deep);
  margin: 20px 0 28px;
}
.alt-text h3 em {
  font-style: normal;
  color: var(--magenta);
}
.alt-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 52ch;
}
.alt-text p strong {
  color: var(--ink-deep);
  font-weight: 600;
}
.alt-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.alt-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.alt-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--magenta);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
