/* ============================================================
   SERVICES PAGES — Venezance
   Layout partagé par les 4 pages /services/*
   ============================================================ */

.service-page {
  padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  background: var(--bg);
}

.service-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.service-wrap .eyebrow { margin: 0; }

.service-page .section-title {
  margin-bottom: 8px;
  max-width: 900px;
}

/* Breadcrumb */
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  margin: 0 0 -16px;
}

.service-breadcrumb a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-breadcrumb a:hover { color: var(--text); }

.service-breadcrumb [aria-current="page"] {
  color: var(--text);
}

/* Lede */
.service-lede {
  font-family: var(--font);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 65ch;
  margin: 0;
}

/* Cover image */
.service-cover {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-card);
}

.service-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blocks (sections de contenu) */
.service-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--border);
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 8px;
  max-width: 22ch;
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
}

.service-block p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(237, 237, 237, 0.88);
  max-width: 65ch;
  margin: 0;
}

.service-block p strong { color: var(--text); font-weight: 500; }

.service-block a:not(.btn):not(.service-cta-secondary):not(.service-clients-link) {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(245, 197, 66, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.service-block a:not(.btn):not(.service-cta-secondary):not(.service-clients-link):hover {
  text-decoration-color: var(--accent);
}

/* Listes (bullets avec dash or) */
.service-block ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 65ch;
}

.service-block li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(237, 237, 237, 0.88);
}

.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.service-block li strong { color: var(--text); font-weight: 500; }

/* Steps (la méthode) */
.service-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 16px;
}

.service-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.service-step:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.service-step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 4px;
}

.service-step h3 { margin: 0; }

.service-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: none;
}

/* Clients section */
.service-clients-list {
  margin-top: 12px;
}

.service-clients-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: gap 0.25s var(--ease-out);
}

.service-clients-link:hover { gap: 14px; }

.service-clients-link svg {
  transition: transform 0.3s var(--ease-out);
}

.service-clients-link:hover svg { transform: translateX(3px); }

/* FAQ : on réutilise .faq-item du site principal,
   pas de styles supplémentaires nécessaires. */

.service-faq .faq-item {
  margin-bottom: 0;
}

/* CTA section */
.service-cta {
  padding: clamp(40px, 5vw, 56px);
  border: 1px solid var(--border);
  background: rgba(245, 197, 66, 0.03);
  margin-top: clamp(20px, 3vw, 40px);
  align-items: flex-start;
}

.service-cta h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  max-width: 24ch;
}

.service-cta p {
  max-width: 55ch;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.service-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mute);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
  padding: 14px 4px;
  transition: color 0.25s ease;
}

.service-cta-secondary:hover { color: var(--text); }

.service-cta-secondary svg {
  transition: transform 0.3s var(--ease-out);
}

.service-cta-secondary:hover svg { transform: translateX(4px); }

/* Responsive */
@media (max-width: 720px) {
  .service-breadcrumb { font-size: 11px; gap: 6px; }
  .service-steps { grid-template-columns: 1fr; gap: 16px; }
  .service-step { padding: 20px; }
  .service-cta { padding: 32px 24px; }
  .service-cta-actions { gap: 8px; flex-direction: column; align-items: flex-start; }
}
