* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #B8410E;
  --primary-dark: #8E2F08;
  --primary-light: #D45A26;
  --secondary: #1C2B3A;
  --secondary-light: #2D4256;
  --cream: #F5F1EC;
  --sand: #D4A574;
  --white: #FFFFFF;
  --text: #2A2A2A;
  --text-light: #666666;
  --border: #E5DED4;
  --shadow: 0 4px 20px rgba(28,43,58,0.08);
  --shadow-lg: 0 12px 40px rgba(28,43,58,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--secondary); }

.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  position: relative;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo img { height: 50px; width: auto; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.menu-toggle { display: none; cursor: pointer; }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  font-weight: 500; font-size: 0.95rem;
  color: var(--secondary);
  position: relative; padding: 8px 0;
  transition: color 0.3s;
}

.nav a:not(.btn-cta-nav)::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s;
}

.nav a:not(.btn-cta-nav):hover { color: var(--primary); }

.nav a:not(.btn-cta-nav):hover::after { width: 100%; }

.nav .btn-cta-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(184,65,14,0.25);
}

.nav .btn-cta-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184,65,14,0.35);
}

.trust-bar {
  background: var(--secondary);
  color: var(--cream);
  padding: 8px 0;
  font-size: 0.85rem;
  position: fixed;
  top: 78px; left: 0; right: 0;
  z-index: 999;
}

.trust-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}

.trust-bar-inner span i { color: var(--sand); margin-right: 6px; }

.trust-bar-inner a { color: var(--white); font-weight: 600; }

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(28,43,58,0.85) 0%, rgba(184,65,14,0.65) 100%), url('https://webflash.pro/images/hero_1777932196_69f917a470b69.webp') center/cover no-repeat;
  color: var(--white);
  display: flex; align-items: center;
  overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
}

.hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 50px; align-items: center;
  position: relative; z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(212,165,116,0.2);
  border-left: 3px solid var(--sand);
  padding: 8px 16px;
  font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--sand);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span { color: var(--sand); font-style: italic; }

.hero p.lead {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 580px;
  opacity: 0.95;
}

.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  font-weight: 600; font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184,65,14,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

.hero-devis-card {
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  transform: rotate(-1deg);
}

.hero-devis-card::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: 8px; bottom: 8px;
  background: var(--sand);
  border-radius: 12px;
  z-index: -1;
}

.hero-devis-card h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.hero-devis-card .sub {
  color: var(--text-light); font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--secondary); margin-bottom: 5px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--cream);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

.btn-form-submit:hover { background: var(--primary-dark); }

.form-status { margin-top: 12px; text-align: center; font-size: 0.9rem; }

.stats {
  background: var(--cream);
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  border-bottom: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.stat-card:hover { transform: translateY(-6px); }

.stat-icon {
  width: 60px; height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 500;
}

section { padding: 90px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding: 0 30px;
}

.section-eyebrow::before, .section-eyebrow::after {
  content: ''; position: absolute; top: 50%;
  width: 20px; height: 2px; background: var(--primary);
}

.section-eyebrow::before { left: 0; }

.section-eyebrow::after { right: 0; }

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 14px;
}

.section-header p { color: var(--text-light); font-size: 1.05rem; }

.services { background: var(--white); }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}

.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,43,58,0.5));
  transition: opacity 0.3s;
}

.service-card:hover .service-img { transform: scale(1.03); }

.service-content { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.3rem;
  margin-bottom: 16px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.service-content p { color: var(--text-light); font-size: 0.95rem; flex: 1; }

.service-link {
  margin-top: 18px;
  color: var(--primary);
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}

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

.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  background: var(--cream);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,43,58,0.55));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item::before {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item:hover::after { opacity: 1; }

.gallery-item:hover::before { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(28,43,58,0.95);
  z-index: 3000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}

.lightbox:target { display: flex; }

.lightbox img {
  max-width: 92%; max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: var(--primary); }

.why-us {
  background: var(--secondary);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(184,65,14,0.15));
  pointer-events: none;
}

.why-us h2 { color: var(--white); }

.why-us .section-eyebrow { color: var(--sand); }

.why-us .section-eyebrow::before, .why-us .section-eyebrow::after { background: var(--sand); }

.why-us .section-header p { color: rgba(245,241,236,0.8); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 35px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(184,65,14,0.15);
  border-color: var(--sand);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--sand));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.7rem;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(245,241,236,0.85);
}

.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%; height: 500px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 100%; height: 100%;
  border: 3px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
}

.about-content h2 { font-size: 2.4rem; margin-bottom: 20px; }

.about-content p { margin-bottom: 18px; color: var(--text); font-size: 1.02rem; }

.about-features { margin-top: 28px; }

.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 3px;
}

.about-feature strong { color: var(--secondary); display: block; margin-bottom: 3px; }

.about-feature span { color: var(--text-light); font-size: 0.95rem; }

.zones { background: var(--white); }

.zones-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.zones-text h2 { margin-bottom: 20px; }

.zones-text p { color: var(--text-light); margin-bottom: 24px; }

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.zone-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s;
}

.zone-pill i { color: var(--primary); }

.zone-pill:hover { background: var(--primary); color: var(--white); transform: translateX(5px); }

.zone-pill:hover i { color: var(--white); }

.zones-visual {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 50px 35px;
  border-radius: 12px;
  color: var(--white);
  text-align: center;
}

.zones-visual i {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: var(--sand);
}

.zones-visual h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.zones-visual p { color: rgba(255,255,255,0.9); margin-bottom: 0; }

.faq { background: var(--cream); }

.faq-list { max-width: 850px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  transition: transform 0.3s;
  font-size: 0.85rem;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item[open] summary { background: var(--cream); border-bottom: 1px solid var(--border); }

.faq-content {
  padding: 22px 28px;
  color: var(--text-light);
  line-height: 1.7;
}

.hours { background: var(--white); }

.hours-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hours-card h3 {
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

.hours-card h3 i { color: var(--sand); }

.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,241,236,0.15);
}

.hours-row:last-child { border-bottom: none; }

.hours-row.today {
  background: rgba(184,65,14,0.2);
  padding: 14px 18px;
  border-radius: 6px;
  margin: 4px 0;
  border-bottom: 1px solid transparent;
}

.hours-day { font-weight: 600; }

.hours-time { color: var(--cream); }

.hours-row.closed .hours-time { color: rgba(245,241,236,0.5); font-style: italic; }

.hours-row.today .hours-day::before {
  content: '\f111';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #4ade80;
  margin-right: 8px;
  font-size: 0.6rem;
  vertical-align: middle;
}

.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.contact-info-card h3 { font-size: 1.6rem; margin-bottom: 24px; }

.contact-item {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-item-text span.label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-item-text span.value {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
}

.contact-item-text a { color: var(--secondary); }

.contact-item-text a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 24px; }

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe { display: block; }

.footer {
  background: var(--secondary);
  color: rgba(245,241,236,0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand .footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p { font-size: 0.92rem; line-height: 1.7; }

.footer-col p.col-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-col p.col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(245,241,236,0.7);
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}

.footer-col a:hover { color: var(--sand); padding-left: 5px; }

.footer-col li i { color: var(--primary); width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(245,241,236,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.88rem;
}

.footer-bottom a { color: var(--sand); }

.footer-bottom a:hover { color: var(--white); }

.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28,43,58,0.85);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}

.modal-overlay:target { display: flex; }

.modal-content {
  background: var(--white);
  max-width: 700px; width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.5rem;
  color: var(--text-light);
  background: none;
  text-decoration: none;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--cream); }

.modal-content p.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.modal-content .modal-section {
  margin-bottom: 18px;
}

.modal-content .modal-section strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 4px;
}

.modal-content .modal-section span {
  color: var(--text-light);
}

.floating-buttons {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  display: flex; flex-direction: column; gap: 12px;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}

.float-btn:hover { transform: scale(1.1); }

.float-btn.phone { background: var(--primary); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.8s ease both; }

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 380px; }
  .zones-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem; padding: 8px; color: var(--primary);
    background: transparent; border: none;
  }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 12px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    align-items: stretch;
  }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
  .nav .btn-cta-nav { text-align: center; margin-top: 8px; }
  .menu-check:checked ~ .nav { display: flex; }
  .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
  .logo-text { font-size: 1.2rem; }
  .logo img { height: 40px; }
  .trust-bar { display: none; }
  .hero { padding-top: 110px; padding-bottom: 60px; min-height: auto; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-devis-card { padding: 24px; transform: none; }
  .hero-devis-card::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 2.2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .zones-list { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .contact-info-card, .contact-form-card { padding: 28px 22px; }
  .hours-card { padding: 28px 22px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.7rem; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

html, body { overflow-x: hidden; max-width: 100%; }

img { max-width: 100%; height: auto; }

.sct-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 640px) { .sct-container { padding: 0 18px; } }

.sct-tpl-zone section { padding: 90px 0; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_1_1777932216_69f917b837ec6.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #F5F1EC);
    z-index: 1;
}

.sct-tpl-zone .sct-hero-container { position: relative; z-index: 2; }

.sct-tpl-zone .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-zone .sct-hero-grid > * { min-width: 0; }

.sct-tpl-zone .sct-hero-text,
.sct-tpl-zone .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-zone .sct-breadcrumb a {
    color: #D4A574;
    text-decoration: none;
    transition: color 0.2s;
}

.sct-tpl-zone .sct-breadcrumb a:hover { color: #FFFFFF; }

.sct-tpl-zone .sct-bc-sep { color: rgba(255,255,255,0.4); }

.sct-tpl-zone .sct-bc-current { color: #FFFFFF; font-weight: 500; }

.sct-tpl-zone .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px;
    background: rgba(212,165,116,0.18);
    border-left: 3px solid #D4A574;
    color: #F5F1EC;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-hero-badge i { color: #D4A574; }

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 18px;
    font-weight: 800;
}

.sct-tpl-zone .sct-hero-text h1 .sct-h1-accent {
    color: #D4A574; font-style: italic;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 600px;
    color: rgba(255,255,255,0.95);
}

.sct-tpl-zone .sct-hero-btns {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 26px;
}

.sct-tpl-zone .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px;
    font-weight: 600; font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.sct-tpl-zone .sct-btn-primary {
    background: #B8410E;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #8E2F08;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.5);
}

.sct-tpl-zone .sct-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.sct-tpl-zone .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #1C2B3A;
}

.sct-tpl-zone .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.92);
}

.sct-tpl-zone .sct-hero-trust span {
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-zone .sct-hero-trust i { color: #D4A574; }

.sct-tpl-zone .sct-hero-card {
    background: #FFFFFF;
    color: #2A2A2A;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: 8px; bottom: 8px;
    background: #D4A574;
    border-radius: 12px;
    z-index: -1;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #1C2B3A;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-card-info {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-card-info-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-zone .sct-card-info-row:last-child { border-bottom: none; padding-bottom: 0; }

.sct-tpl-zone .sct-card-info-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    background: #F5F1EC;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #B8410E;
    font-size: 1rem;
}

.sct-tpl-zone .sct-card-info-text { font-size: 0.92rem; }

.sct-tpl-zone .sct-card-info-text strong {
    display: block;
    color: #1C2B3A;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.sct-tpl-zone .sct-card-info-text span,
.sct-tpl-zone .sct-card-info-text a {
    color: #666666;
    text-decoration: none;
}

.sct-tpl-zone .sct-card-info-text a:hover { color: #B8410E; }

.sct-tpl-zone .sct-card-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    background: #B8410E;
    color: #FFFFFF;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.sct-tpl-zone .sct-card-cta:hover { background: #8E2F08; }

.sct-tpl-zone .sct-stats-band {
    background: #F5F1EC;
    padding: 60px 0;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-zone .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-zone .sct-stats-grid > * { min-width: 0; }

.sct-tpl-zone .sct-stat-card {
    text-align: center;
    padding: 28px 18px;
    background: #FFFFFF;
    border-radius: 10px;
    border-bottom: 4px solid #B8410E;
    box-shadow: 0 4px 20px rgba(28,43,58,0.08);
    transition: transform 0.3s;
}

.sct-tpl-zone .sct-stat-card:hover { transform: translateY(-6px); }

.sct-tpl-zone .sct-stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #B8410E, #D45A26);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 1.4rem;
}

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    color: #1C2B3A;
    line-height: 1;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.92rem;
    color: #666666;
    margin-top: 8px;
    font-weight: 500;
}

.sct-tpl-zone .sct-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.sct-tpl-zone .sct-section-eyebrow {
    display: inline-block;
    color: #B8410E;
    font-size: 0.82rem; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding: 0 30px;
}

.sct-tpl-zone .sct-section-eyebrow::before,
.sct-tpl-zone .sct-section-eyebrow::after {
    content: ''; position: absolute; top: 50%;
    width: 20px; height: 2px; background: #B8410E;
}

.sct-tpl-zone .sct-section-eyebrow::before { left: 0; }

.sct-tpl-zone .sct-section-eyebrow::after { right: 0; }

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    color: #1C2B3A;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section-text {
    color: #666666;
    font-size: 1.02rem;
}

.sct-tpl-zone .sct-intro-section { background: #FFFFFF; }

.sct-tpl-zone .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2A2A2A;
}

.sct-tpl-zone .sct-intro-content strong {
    color: #1C2B3A;
    font-weight: 600;
}

.sct-tpl-zone .sct-services-section { background: #F5F1EC; }

.sct-tpl-zone .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sct-tpl-zone .sct-services-grid > * { min-width: 0; }

.sct-tpl-zone .sct-zones-section { background: #FFFFFF; }

.sct-tpl-zone .sct-zones-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-zones-list > * { min-width: 0; }

.sct-tpl-zone .sct-zone-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: #F5F1EC;
    border-left: 3px solid #B8410E;
    border-radius: 4px;
    font-weight: 500;
    color: #1C2B3A;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zone-pill i { color: #B8410E; flex-shrink: 0; }

.sct-tpl-zone .sct-zone-pill:hover {
    background: #B8410E;
    color: #FFFFFF;
    transform: translateX(5px);
}

.sct-tpl-zone .sct-zone-pill:hover i { color: #FFFFFF; }

.sct-tpl-zone .sct-usecase-section { background: #F5F1EC; }

.sct-tpl-zone .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-zone .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28,43,58,0.15);
}

.sct-tpl-zone .sct-usecase-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.sct-tpl-zone .sct-usecase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1C2B3A;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-usecase-content p {
    margin-bottom: 16px;
    color: #2A2A2A;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-usecase-content strong { color: #1C2B3A; }

.sct-tpl-zone .sct-usecase-content ul {
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.sct-tpl-zone .sct-usecase-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #2A2A2A;
    line-height: 1.6;
}

.sct-tpl-zone .sct-usecase-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: #B8410E;
}

.sct-tpl-zone .sct-engagements-section { background: #FFFFFF; }

.sct-tpl-zone .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-zone .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-zone .sct-engagement-card {
    padding: 36px 28px;
    background: #F5F1EC;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #D4A574;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-6px);
    border-top-color: #B8410E;
    box-shadow: 0 12px 30px rgba(28,43,58,0.12);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #1C2B3A, #2D4256);
    color: #D4A574;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1C2B3A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-zone .sct-engagement-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.65;
}

.sct-tpl-zone .sct-local-spec {
    background: #1C2B3A;
    color: #F5F1EC;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-local-spec::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: linear-gradient(135deg, transparent, rgba(184,65,14,0.15));
    pointer-events: none;
}

.sct-tpl-zone .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px 44px;
    border-radius: 12px;
    border-left: 5px solid #D4A574;
    position: relative;
    z-index: 2;
}

.sct-tpl-zone .sct-local-spec-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}

.sct-tpl-zone .sct-local-spec-inner h2 i { color: #D4A574; }

.sct-tpl-zone .sct-local-spec-inner p {
    color: rgba(245,241,236,0.9);
    line-height: 1.75;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-local-spec-inner strong { color: #FFFFFF; }

.sct-tpl-zone .sct-faq-section { background: #F5F1EC; }

.sct-tpl-zone .sct-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(28,43,58,0.06);
    overflow: hidden;
    border-left: 3px solid #B8410E;
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.03rem;
    color: #1C2B3A;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    list-style: none;
    transition: background 0.2s;
}

.sct-tpl-zone .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #B8410E;
    transition: transform 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-zone .sct-faq-item[open] summary {
    background: #F5F1EC;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-zone .sct-faq-content {
    padding: 22px 28px;
    background: #FFFFFF;
    color: #2A2A2A;
    line-height: 1.75;
    font-size: 0.97rem;
}

.sct-tpl-zone .sct-faq-content strong { color: #1C2B3A; }

.sct-tpl-zone .sct-maillage-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.sct-tpl-zone .sct-maillage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-maillage-grid a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: #F5F1EC;
    border: 1px solid #E5DED4;
    border-radius: 50px;
    color: #1C2B3A;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-maillage-grid a:hover {
    background: #B8410E;
    color: #FFFFFF;
    border-color: #B8410E;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-grid a i { color: #B8410E; transition: color 0.3s; }

.sct-tpl-zone .sct-maillage-grid a:hover i { color: #FFFFFF; }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #1C2B3A 0%, #B8410E 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,165,116,0.15), transparent 60%);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.93);
    line-height: 1.65;
}

.sct-tpl-zone .sct-cta-final-btns {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}

.sct-tpl-zone .sct-cta-final .sct-btn-primary {
    background: #D4A574;
    color: #1C2B3A;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.sct-tpl-zone .sct-cta-final .sct-btn-primary:hover {
    background: #FFFFFF;
    color: #B8410E;
}

.sct-tpl-zone .sct-float-phone {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 998;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #B8410E;
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s;
    text-decoration: none;
}

.sct-tpl-zone .sct-float-phone:hover { transform: scale(1.1); }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-list { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-usecase-image img { height: 360px; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-zone section { padding: 70px 0; }
    .sct-tpl-zone .sct-maillage-section { padding: 60px 0; }
    .sct-tpl-zone .sct-local-spec { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero {
        padding: 120px 0 60px;
    }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
    .sct-tpl-zone .sct-hero-card::before { display: none; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; gap: 14px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-list { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-usecase-image img { height: 260px; }
    .sct-tpl-zone .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-section-title { font-size: 1.6rem; }
    .sct-tpl-zone .sct-local-spec-inner { padding: 28px 22px; }
    .sct-tpl-zone .sct-local-spec-inner h2 { font-size: 1.35rem; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 0.97rem; }
    .sct-tpl-zone .sct-faq-content { padding: 18px 20px; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone section { padding: 56px 0; }
    .sct-tpl-zone .sct-maillage-section { padding: 50px 0; }
    .sct-tpl-zone .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-zone .sct-float-phone { width: 50px; height: 50px; font-size: 1.2rem; }
}

.sct-tpl-service-hub section { padding: 90px 0; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_1_1777932216_69f917b837ec6.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #F5F1EC);
    z-index: 1;
}

.sct-tpl-service-hub .sct-hero-container { position: relative; z-index: 2; }

.sct-tpl-service-hub .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-hub .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-hero-text,
.sct-tpl-service-hub .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: #D4A574;
    text-decoration: none;
    transition: color 0.2s;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: #FFFFFF; }

.sct-tpl-service-hub .sct-bc-sep { color: rgba(255,255,255,0.4); }

.sct-tpl-service-hub .sct-bc-current { color: #FFFFFF; font-weight: 500; }

.sct-tpl-service-hub .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px;
    background: rgba(212,165,116,0.18);
    border-left: 3px solid #D4A574;
    color: #F5F1EC;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sct-tpl-service-hub .sct-hero-badge i { color: #D4A574; }

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 18px;
    font-weight: 800;
}

.sct-tpl-service-hub .sct-hero-text h1 .sct-h1-accent {
    color: #D4A574; font-style: italic;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 600px;
    color: rgba(255,255,255,0.95);
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 26px;
}

.sct-tpl-service-hub .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px;
    font-weight: 600; font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #B8410E;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #8E2F08;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.5);
}

.sct-tpl-service-hub .sct-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #1C2B3A;
}

.sct-tpl-service-hub .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.92);
}

.sct-tpl-service-hub .sct-hero-trust span {
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-service-hub .sct-hero-trust i { color: #D4A574; }

.sct-tpl-service-hub .sct-hero-card {
    background: #FFFFFF;
    color: #2A2A2A;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
}

.sct-tpl-service-hub .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: 8px; bottom: 8px;
    background: #D4A574;
    border-radius: 12px;
    z-index: -1;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #1C2B3A;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-card-info {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-card-info-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-service-hub .sct-card-info-row:last-child { border-bottom: none; padding-bottom: 0; }

.sct-tpl-service-hub .sct-card-info-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    background: #F5F1EC;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #B8410E;
    font-size: 1rem;
}

.sct-tpl-service-hub .sct-card-info-text { font-size: 0.92rem; }

.sct-tpl-service-hub .sct-card-info-text strong {
    display: block;
    color: #1C2B3A;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.sct-tpl-service-hub .sct-card-info-text span,
.sct-tpl-service-hub .sct-card-info-text a {
    color: #666666;
    text-decoration: none;
}

.sct-tpl-service-hub .sct-card-info-text a:hover { color: #B8410E; }

.sct-tpl-service-hub .sct-card-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    background: #B8410E;
    color: #FFFFFF;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.sct-tpl-service-hub .sct-card-cta:hover { background: #8E2F08; }

.sct-tpl-service-hub .sct-stats-band {
    background: #F5F1EC;
    padding: 60px 0;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-service-hub .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-hub .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-stat-card {
    text-align: center;
    padding: 28px 18px;
    background: #FFFFFF;
    border-radius: 10px;
    border-bottom: 4px solid #B8410E;
    box-shadow: 0 4px 20px rgba(28,43,58,0.08);
    transition: transform 0.3s;
}

.sct-tpl-service-hub .sct-stat-card:hover { transform: translateY(-6px); }

.sct-tpl-service-hub .sct-stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #B8410E, #D45A26);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 1.4rem;
}

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    color: #1C2B3A;
    line-height: 1;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.92rem;
    color: #666666;
    margin-top: 8px;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.sct-tpl-service-hub .sct-section-eyebrow {
    display: inline-block;
    color: #B8410E;
    font-size: 0.82rem; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding: 0 30px;
}

.sct-tpl-service-hub .sct-section-eyebrow::before,
.sct-tpl-service-hub .sct-section-eyebrow::after {
    content: ''; position: absolute; top: 50%;
    width: 20px; height: 2px; background: #B8410E;
}

.sct-tpl-service-hub .sct-section-eyebrow::before { left: 0; }

.sct-tpl-service-hub .sct-section-eyebrow::after { right: 0; }

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    color: #1C2B3A;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-section-text {
    color: #666666;
    font-size: 1.02rem;
}

.sct-tpl-service-hub .sct-intro-section { background: #FFFFFF; }

.sct-tpl-service-hub .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2A2A2A;
}

.sct-tpl-service-hub .sct-intro-content strong {
    color: #1C2B3A;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-services-section { background: #F5F1EC; }

.sct-tpl-service-hub .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-hub .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-service-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28,43,58,0.08);
    transition: all 0.4s;
    border: 1px solid #E5DED4;
    display: flex; flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(28,43,58,0.15);
    border-color: #B8410E;
}

.sct-tpl-service-hub .sct-service-img {
    height: 220px;
    background-size: cover; background-position: center;
    position: relative;
}

.sct-tpl-service-hub .sct-service-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(28,43,58,0.4));
}

.sct-tpl-service-hub .sct-service-content {
    padding: 26px;
    flex: 1;
    display: flex; flex-direction: column;
}

.sct-tpl-service-hub .sct-service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1C2B3A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-service-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-processus-section { background: #FFFFFF; }

.sct-tpl-service-hub .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    counter-reset: process;
}

.sct-tpl-service-hub .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-process-step {
    text-align: center;
    padding: 30px 18px;
    background: #F5F1EC;
    border-radius: 10px;
    border-top: 3px solid #B8410E;
    position: relative;
    counter-increment: process;
    transition: transform 0.3s;
}

.sct-tpl-service-hub .sct-process-step:hover { transform: translateY(-4px); }

.sct-tpl-service-hub .sct-process-step::before {
    content: counter(process, decimal-leading-zero);
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    background: #B8410E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.sct-tpl-service-hub .sct-process-icon {
    width: 56px; height: 56px;
    margin: 8px auto 16px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #B8410E;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(184,65,14,0.18);
}

.sct-tpl-service-hub .sct-process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1C2B3A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-process-step p {
    color: #666666;
    font-size: 0.88rem;
    line-height: 1.55;
}

.sct-tpl-service-hub .sct-why-section {
    background: #1C2B3A;
    color: #F5F1EC;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-why-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: linear-gradient(135deg, transparent, rgba(184,65,14,0.15));
    pointer-events: none;
}

.sct-tpl-service-hub .sct-why-section .sct-section-title { color: #FFFFFF; }

.sct-tpl-service-hub .sct-why-section .sct-section-eyebrow { color: #D4A574; }

.sct-tpl-service-hub .sct-why-section .sct-section-eyebrow::before,
.sct-tpl-service-hub .sct-why-section .sct-section-eyebrow::after { background: #D4A574; }

.sct-tpl-service-hub .sct-why-section .sct-section-text { color: rgba(245,241,236,0.85); }

.sct-tpl-service-hub .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-hub .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-why-card {
    padding: 32px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,165,116,0.2);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    background: rgba(184,65,14,0.15);
    border-color: #D4A574;
    transform: translateY(-5px);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #B8410E, #D4A574);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 1.5rem;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: rgba(245,241,236,0.85);
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-usecase-section { background: #F5F1EC; }

.sct-tpl-service-hub .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28,43,58,0.15);
}

.sct-tpl-service-hub .sct-usecase-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1C2B3A;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-usecase-content p {
    margin-bottom: 16px;
    color: #2A2A2A;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-usecase-content strong { color: #1C2B3A; }

.sct-tpl-service-hub .sct-usecase-content ul {
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.sct-tpl-service-hub .sct-usecase-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #2A2A2A;
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-usecase-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: #B8410E;
}

.sct-tpl-service-hub .sct-engagements-section { background: #FFFFFF; }

.sct-tpl-service-hub .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-hub .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-engagement-card {
    padding: 36px 28px;
    background: #F5F1EC;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #D4A574;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-6px);
    border-top-color: #B8410E;
    box-shadow: 0 12px 30px rgba(28,43,58,0.12);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #1C2B3A, #2D4256);
    color: #D4A574;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1C2B3A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-engagement-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-faq-section { background: #F5F1EC; }

.sct-tpl-service-hub .sct-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(28,43,58,0.06);
    overflow: hidden;
    border-left: 3px solid #B8410E;
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.03rem;
    color: #1C2B3A;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    list-style: none;
    transition: background 0.2s;
}

.sct-tpl-service-hub .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #B8410E;
    transition: transform 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-service-hub .sct-faq-item[open] summary {
    background: #F5F1EC;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-service-hub .sct-faq-content {
    padding: 22px 28px;
    background: #FFFFFF;
    color: #2A2A2A;
    line-height: 1.75;
    font-size: 0.97rem;
}

.sct-tpl-service-hub .sct-faq-content strong { color: #1C2B3A; }

.sct-tpl-service-hub .sct-maillage-section {
    background: #FFFFFF;
    padding: 90px 0;
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt {
    background: #F5F1EC;
}

.sct-tpl-service-hub .sct-maillage-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-maillage-cities-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-maillage-cities-grid a {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: #F5F1EC;
    border-left: 3px solid #B8410E;
    border-radius: 6px;
    color: #1C2B3A;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-cities-grid a:hover {
    background: #B8410E;
    color: #FFFFFF;
    transform: translateX(5px);
}

.sct-tpl-service-hub .sct-maillage-cities-grid a i { color: #B8410E; flex-shrink: 0; transition: color 0.3s; }

.sct-tpl-service-hub .sct-maillage-cities-grid a:hover i { color: #FFFFFF; }

.sct-tpl-service-hub .sct-maillage-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-maillage-services-grid a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #FFFFFF;
    border: 1px solid #E5DED4;
    border-radius: 50px;
    color: #1C2B3A;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-services-grid a:hover {
    background: #B8410E;
    color: #FFFFFF;
    border-color: #B8410E;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-services-grid a i { color: #B8410E; transition: color 0.3s; }

.sct-tpl-service-hub .sct-maillage-services-grid a:hover i { color: #FFFFFF; }

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #1C2B3A 0%, #B8410E 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,165,116,0.15), transparent 60%);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.93);
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-cta-final-btns {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary {
    background: #D4A574;
    color: #1C2B3A;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary:hover {
    background: #FFFFFF;
    color: #B8410E;
}

.sct-tpl-service-hub .sct-float-phone {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 998;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #B8410E;
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s;
    text-decoration: none;
}

.sct-tpl-service-hub .sct-float-phone:hover { transform: scale(1.1); }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 360px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-maillage-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub section { padding: 70px 0; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero {
        padding: 120px 0 60px;
    }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
    .sct-tpl-service-hub .sct-hero-card::before { display: none; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; gap: 14px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 260px; }
    .sct-tpl-service-hub .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-maillage-cities-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 0.97rem; }
    .sct-tpl-service-hub .sct-faq-content { padding: 18px 20px; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub section { padding: 56px 0; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 56px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-hub .sct-float-phone { width: 50px; height: 50px; font-size: 1.2rem; }
}

.sct-tpl-service-city section { padding: 90px 0; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_5_1777932291_69f918039d37d.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #F5F1EC);
    z-index: 1;
}

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 2; }

.sct-tpl-service-city .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-city .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-hero-text,
.sct-tpl-service-city .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: #D4A574;
    text-decoration: none;
    transition: color 0.2s;
}

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #FFFFFF; }

.sct-tpl-service-city .sct-bc-sep { color: rgba(255,255,255,0.4); }

.sct-tpl-service-city .sct-bc-current { color: #FFFFFF; font-weight: 500; }

.sct-tpl-service-city .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px;
    background: rgba(212,165,116,0.18);
    border-left: 3px solid #D4A574;
    color: #F5F1EC;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-hero-badge i { color: #D4A574; }

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 18px;
    font-weight: 800;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-h1-accent {
    color: #D4A574; font-style: italic;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 600px;
    color: rgba(255,255,255,0.95);
}

.sct-tpl-service-city .sct-hero-btns {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 26px;
}

.sct-tpl-service-city .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px;
    font-weight: 600; font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #B8410E;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #8E2F08;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.5);
}

.sct-tpl-service-city .sct-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.sct-tpl-service-city .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #1C2B3A;
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.92);
}

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-service-city .sct-hero-trust i { color: #D4A574; }

.sct-tpl-service-city .sct-hero-card {
    background: #FFFFFF;
    color: #2A2A2A;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: 8px; bottom: 8px;
    background: #D4A574;
    border-radius: 12px;
    z-index: -1;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #1C2B3A;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-card-info {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-card-info-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-service-city .sct-card-info-row:last-child { border-bottom: none; padding-bottom: 0; }

.sct-tpl-service-city .sct-card-info-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    background: #F5F1EC;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #B8410E;
    font-size: 1rem;
}

.sct-tpl-service-city .sct-card-info-text { font-size: 0.92rem; }

.sct-tpl-service-city .sct-card-info-text strong {
    display: block;
    color: #1C2B3A;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-card-info-text span,
.sct-tpl-service-city .sct-card-info-text a {
    color: #666666;
    text-decoration: none;
}

.sct-tpl-service-city .sct-card-info-text a:hover { color: #B8410E; }

.sct-tpl-service-city .sct-card-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    background: #B8410E;
    color: #FFFFFF;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.sct-tpl-service-city .sct-card-cta:hover { background: #8E2F08; }

.sct-tpl-service-city .sct-stats-band {
    background: #F5F1EC;
    padding: 60px 0;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-service-city .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-city .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-stat-card {
    text-align: center;
    padding: 28px 18px;
    background: #FFFFFF;
    border-radius: 10px;
    border-bottom: 4px solid #B8410E;
    box-shadow: 0 4px 20px rgba(28,43,58,0.08);
    transition: transform 0.3s;
}

.sct-tpl-service-city .sct-stat-card:hover { transform: translateY(-6px); }

.sct-tpl-service-city .sct-stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #B8410E, #D45A26);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 1.4rem;
}

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    color: #1C2B3A;
    line-height: 1;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.92rem;
    color: #666666;
    margin-top: 8px;
    font-weight: 500;
}

.sct-tpl-service-city .sct-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.sct-tpl-service-city .sct-section-eyebrow {
    display: inline-block;
    color: #B8410E;
    font-size: 0.82rem; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding: 0 30px;
}

.sct-tpl-service-city .sct-section-eyebrow::before,
.sct-tpl-service-city .sct-section-eyebrow::after {
    content: ''; position: absolute; top: 50%;
    width: 20px; height: 2px; background: #B8410E;
}

.sct-tpl-service-city .sct-section-eyebrow::before { left: 0; }

.sct-tpl-service-city .sct-section-eyebrow::after { right: 0; }

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    color: #1C2B3A;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-section-text {
    color: #666666;
    font-size: 1.02rem;
}

.sct-tpl-service-city .sct-intro-section { background: #FFFFFF; }

.sct-tpl-service-city .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2A2A2A;
}

.sct-tpl-service-city .sct-intro-content strong {
    color: #1C2B3A;
    font-weight: 600;
}

.sct-tpl-service-city .sct-services-section { background: #F5F1EC; }

.sct-tpl-service-city .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-service-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28,43,58,0.08);
    transition: all 0.4s;
    border: 1px solid #E5DED4;
    display: flex; flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(28,43,58,0.15);
    border-color: #B8410E;
}

.sct-tpl-service-city .sct-service-img {
    height: 220px;
    background-size: cover; background-position: center;
    position: relative;
}

.sct-tpl-service-city .sct-service-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(28,43,58,0.4));
}

.sct-tpl-service-city .sct-service-content {
    padding: 26px;
    flex: 1;
    display: flex; flex-direction: column;
}

.sct-tpl-service-city .sct-service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1C2B3A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-service-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-processus-section { background: #FFFFFF; }

.sct-tpl-service-city .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    counter-reset: process;
}

.sct-tpl-service-city .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 30px 18px;
    background: #F5F1EC;
    border-radius: 10px;
    border-top: 3px solid #B8410E;
    position: relative;
    counter-increment: process;
    transition: transform 0.3s;
}

.sct-tpl-service-city .sct-process-step:hover { transform: translateY(-4px); }

.sct-tpl-service-city .sct-process-step::before {
    content: counter(process, decimal-leading-zero);
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    background: #B8410E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.sct-tpl-service-city .sct-process-icon {
    width: 56px; height: 56px;
    margin: 8px auto 16px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #B8410E;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(184,65,14,0.18);
}

.sct-tpl-service-city .sct-process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1C2B3A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-process-step p {
    color: #666666;
    font-size: 0.88rem;
    line-height: 1.55;
}

.sct-tpl-service-city .sct-why-section {
    background: #1C2B3A;
    color: #F5F1EC;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-why-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: linear-gradient(135deg, transparent, rgba(184,65,14,0.15));
    pointer-events: none;
}

.sct-tpl-service-city .sct-why-section .sct-section-title { color: #FFFFFF; }

.sct-tpl-service-city .sct-why-section .sct-section-eyebrow { color: #D4A574; }

.sct-tpl-service-city .sct-why-section .sct-section-eyebrow::before,
.sct-tpl-service-city .sct-why-section .sct-section-eyebrow::after { background: #D4A574; }

.sct-tpl-service-city .sct-why-section .sct-section-text { color: rgba(245,241,236,0.85); }

.sct-tpl-service-city .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-city .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-why-card {
    padding: 32px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,165,116,0.2);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    background: rgba(184,65,14,0.15);
    border-color: #D4A574;
    transform: translateY(-5px);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #B8410E, #D4A574);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 1.5rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.9rem;
    color: rgba(245,241,236,0.85);
    line-height: 1.6;
}

.sct-tpl-service-city .sct-zones-section { background: #FFFFFF; }

.sct-tpl-service-city .sct-zones-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-zones-list > * { min-width: 0; }

.sct-tpl-service-city .sct-zone-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: #F5F1EC;
    border-left: 3px solid #B8410E;
    border-radius: 4px;
    font-weight: 500;
    color: #1C2B3A;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zone-pill i { color: #B8410E; flex-shrink: 0; }

.sct-tpl-service-city .sct-zone-pill:hover {
    background: #B8410E;
    color: #FFFFFF;
    transform: translateX(5px);
}

.sct-tpl-service-city .sct-zone-pill:hover i { color: #FFFFFF; }

.sct-tpl-service-city .sct-usecase-section { background: #F5F1EC; }

.sct-tpl-service-city .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28,43,58,0.15);
}

.sct-tpl-service-city .sct-usecase-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1C2B3A;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-usecase-content p {
    margin-bottom: 16px;
    color: #2A2A2A;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-usecase-content strong { color: #1C2B3A; }

.sct-tpl-service-city .sct-usecase-content ul {
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.sct-tpl-service-city .sct-usecase-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #2A2A2A;
    line-height: 1.6;
}

.sct-tpl-service-city .sct-usecase-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: #B8410E;
}

.sct-tpl-service-city .sct-engagements-section { background: #FFFFFF; }

.sct-tpl-service-city .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-engagement-card {
    padding: 36px 28px;
    background: #F5F1EC;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #D4A574;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-6px);
    border-top-color: #B8410E;
    box-shadow: 0 12px 30px rgba(28,43,58,0.12);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #1C2B3A, #2D4256);
    color: #D4A574;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1C2B3A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-engagement-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-local-spec {
    background: #F5F1EC;
    padding: 70px 0;
}

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px 44px;
    border-radius: 12px;
    border-left: 5px solid #B8410E;
    box-shadow: 0 4px 20px rgba(28,43,58,0.08);
}

.sct-tpl-service-city .sct-local-spec-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1C2B3A;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}

.sct-tpl-service-city .sct-local-spec-inner h2 i { color: #B8410E; }

.sct-tpl-service-city .sct-local-spec-inner p {
    color: #2A2A2A;
    line-height: 1.75;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec-inner strong { color: #1C2B3A; }

.sct-tpl-service-city .sct-faq-section { background: #FFFFFF; }

.sct-tpl-service-city .sct-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-faq-item {
    background: #F5F1EC;
    border-radius: 8px;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(28,43,58,0.06);
    overflow: hidden;
    border-left: 3px solid #B8410E;
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.03rem;
    color: #1C2B3A;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    list-style: none;
    transition: background 0.2s;
}

.sct-tpl-service-city .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #B8410E;
    transition: transform 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-service-city .sct-faq-item[open] summary {
    background: #FFFFFF;
    border-bottom: 1px solid #E5DED4;
}

.sct-tpl-service-city .sct-faq-content {
    padding: 22px 28px;
    background: #FFFFFF;
    color: #2A2A2A;
    line-height: 1.75;
    font-size: 0.97rem;
}

.sct-tpl-service-city .sct-faq-content strong { color: #1C2B3A; }

.sct-tpl-service-city .sct-maillage-section {
    background: #F5F1EC;
    padding: 70px 0;
}

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section {
    padding-top: 0;
}

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1C2B3A;
    text-align: center;
    margin-bottom: 24px;
}

.sct-tpl-service-city .sct-maillage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-maillage-grid a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #FFFFFF;
    border: 1px solid #E5DED4;
    border-radius: 50px;
    color: #1C2B3A;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-grid a:hover {
    background: #B8410E;
    color: #FFFFFF;
    border-color: #B8410E;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-maillage-grid a i { color: #B8410E; transition: color 0.3s; }

.sct-tpl-service-city .sct-maillage-grid a:hover i { color: #FFFFFF; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #1C2B3A 0%, #B8410E 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,165,116,0.15), transparent 60%);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.93);
    line-height: 1.65;
}

.sct-tpl-service-city .sct-cta-final-btns {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}

.sct-tpl-service-city .sct-cta-final .sct-btn-primary {
    background: #D4A574;
    color: #1C2B3A;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-cta-final .sct-btn-primary:hover {
    background: #FFFFFF;
    color: #B8410E;
}

.sct-tpl-service-city .sct-float-phone {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 998;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #B8410E;
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s;
    text-decoration: none;
}

.sct-tpl-service-city .sct-float-phone:hover { transform: scale(1.1); }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-usecase-image img { height: 360px; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-city section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero {
        padding: 120px 0 60px;
    }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-hero-card::before { display: none; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr; gap: 14px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-usecase-image img { height: 260px; }
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-local-spec-inner { padding: 28px 22px; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 20px; font-size: 0.97rem; }
    .sct-tpl-service-city .sct-faq-content { padding: 18px 20px; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city section { padding: 56px 0; }
    .sct-tpl-service-city .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-city .sct-float-phone { width: 50px; height: 50px; font-size: 1.2rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_1_1777932216_69f917b837ec6.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_2_1777932234_69f917cab066e.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_2_1777932234_69f917cab066e.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_4_1777932272_69f917f0d01f0.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_3_1777932253_69f917dd67673.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_6_1777932310_69f91816e1d90.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_3_1777932253_69f917dd67673.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_4_1777932272_69f917f0d01f0.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_2_1777932234_69f917cab066e.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_5_1777932291_69f918039d37d.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_4_1777932272_69f917f0d01f0.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_5_1777932291_69f918039d37d.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_6_1777932310_69f91816e1d90.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_3_1777932253_69f917dd67673.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28,43,58,0.88) 0%, rgba(184,65,14,0.7) 100%), url('/images/service_6_1777932310_69f91816e1d90.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, rgba(28,43,58,0.92) 0%, rgba(184,65,14,0.78) 100%), url('https://webflash.pro/images/hero_1777932196_69f917a470b69.webp') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero .eyebrow {
  display: inline-block;
  background: rgba(212,165,116,0.2);
  border-left: 3px solid var(--sand);
  padding: 8px 16px;
  font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--sand);
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.page-hero h1 span { color: var(--sand); font-style: italic; }

.page-hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.95;
}

.breadcrumb {
  margin-top: 26px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.breadcrumb a { color: var(--sand); font-weight: 600; }

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

.breadcrumb i { margin: 0 8px; font-size: 0.7rem; opacity: 0.7; }

.sitemap { background: var(--cream); padding: 90px 0; }

.sitemap-block {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  border-top: 4px solid var(--primary);
}

.sitemap-block-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sitemap-block-header .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(184,65,14,0.3);
}

.sitemap-block-header h2 {
  font-size: 1.7rem;
  margin-bottom: 4px;
}

.sitemap-block-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s;
}

.chip i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s;
}

.chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(184,65,14,0.3);
}

.chip:hover i { color: var(--white); transform: translateX(3px); }

.chip-home {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: var(--primary);
}

.chip-home i { color: var(--white); }

.chip-home:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.subgroup {
  margin-bottom: 32px;
}

.subgroup:last-child { margin-bottom: 0; }

.subgroup-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--sand);
}

.subgroup-title i {
  color: var(--primary);
  font-size: 1rem;
}

.subgroup .chip {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.subgroup .chip i {
  color: var(--sand);
}

.chip-long {
  border-radius: 8px;
  padding: 14px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  text-align: left;
  flex: 1 1 100%;
  max-width: 100%;
}

.chip-long-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.chip-long-grid .chip-long {
  flex: unset;
  max-width: unset;
}

.sitemap-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.summary-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--primary);
  transition: transform 0.3s;
}

.summary-card:hover { transform: translateY(-5px); }

.summary-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.summary-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.summary-card .lbl {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sitemap-cta {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.sitemap-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(184,65,14,0.4), transparent 70%);
  border-radius: 50%;
}

.sitemap-cta h2 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 12px;
  position: relative;
}

.sitemap-cta p {
  color: rgba(245,241,236,0.9);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.sitemap-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(184,65,14,0.4);
  transition: all 0.3s;
  position: relative;
}

.sitemap-cta .btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184,65,14,0.5);
}

.floating-buttons {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s;
  background: var(--primary);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .sitemap-summary { grid-template-columns: repeat(2, 1fr); }
  .chip-long-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem; padding: 8px; color: var(--primary);
    background: transparent; border: none;
  }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 12px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    align-items: stretch;
  }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
  .nav .btn-cta-nav { text-align: center; margin-top: 8px; }
  .menu-check:checked ~ .nav { display: flex; }
  .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
  .logo-text { font-size: 1.2rem; }
  .logo img { height: 40px; }
  .page-hero { padding: 130px 0 70px; }
  .sitemap { padding: 60px 0; }
  .sitemap-block { padding: 28px 22px; }
  .sitemap-block-header { gap: 12px; }
  .sitemap-block-header h2 { font-size: 1.35rem; }
  .sitemap-block-header .icon-wrap { width: 48px; height: 48px; font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .sitemap-cta { padding: 36px 24px; }
  .sitemap-cta h2 { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .sitemap-summary { grid-template-columns: 1fr 1fr; gap: 12px; }
  .summary-card .num { font-size: 1.6rem; }
  .chip { padding: 10px 16px; font-size: 0.88rem; }
}