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

:root {
  /* Palette professionnelle */
  --navy:        #1b3a5c;   /* titres, header, boutons */
  --navy-dark:   #122840;   /* hover boutons */
  --navy-light:  #e8eef5;   /* backgrounds légers */
  --teal:        #1d6fa4;   /* accents, liens */
  --teal-light:  #ddeef7;   /* badges, tags hover */
  --green:       #15803d;   /* succès */
  --green-bg:    #dcfce7;
  --gray-50:     #f5f7fa;   /* fond page */
  --gray-100:    #eef0f4;
  --gray-200:    #dde1e8;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1e293b;
  --white:       #ffffff;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(27,58,92,.08), 0 1px 2px rgba(27,58,92,.05);
  --shadow:      0 2px 8px rgba(27,58,92,.10), 0 1px 3px rgba(27,58,92,.07);
  --shadow-lg:   0 6px 24px rgba(27,58,92,.13);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
  height: 101px;
}
.sh-inner {
  max-width: 1040px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 0 1.5rem; height: 101px;
  width: 100%; box-sizing: border-box;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-weight: 700; font-size: .95rem;
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
  width: auto; min-width: 220px;
}
.logo:hover { opacity: .8; text-decoration: none; }
.logo-icon {
  width: 84px; height: 84px;
  object-fit: contain; flex-shrink: 0;
}
.logo-text { white-space: nowrap; }
.sh-nav { display: none; }
.sh-search-toggle { display: none; }
.sh-search-mobile { display: none; }

@media (max-width: 720px) {
  .logo { min-width: auto; gap: 0; }
  .logo-icon { width: 54px; height: 54px; }
  .logo-text { display: none; }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 2.5rem 1.25rem; margin-top: 5rem; font-size: .85rem;
}
.site-footer .inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between;
}
.site-footer a { color: rgba(255,255,255,.6); }
.site-footer a:hover { color: #fff; }
.site-footer strong { color: #fff; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24527a 100%);
  color: #fff;
  padding: 3.5rem 1.25rem 3rem;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: .75rem;
}
.hero p { font-size: 1.05rem; opacity: .88; max-width: 580px; }

/* ── Hero with region/city photo ───────────────────────────────────────── */
.hero--with-image {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--with-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,.85) 0%, rgba(36,82,122,.72) 100%);
}
.hero--with-image .container { position: relative; z-index: 1; }

/* ── Homepage hero search ───────────────────────────────────────────────── */
.hero--home {
  position: relative; overflow: hidden;
  min-height: 650px;
  width: 100%;
  display: flex; align-items: center;
  padding: 2rem 1.25rem 6rem;
  background: var(--gray-50);
}
.hero--home::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,120 1080,120 1440,40 L1440,120 L0,120 Z' fill='%23f5f7fa'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

/* ── Local-approach card (bas du hero, à cheval sur la wave, façon Bilik) ── */
.local-approach-card {
  position: relative; left: 50%;
  transform: translateX(-50%);
  margin-top: -170px; margin-bottom: 0;
  z-index: 5;
  width: 90%; max-width: 700px;
  background: #f5e6e2;
  border-radius: 15px;
  box-shadow: 0 3px 26px rgba(0,0,0,.08);
  padding: 32px;
  text-align: center;
}
.local-approach-card h2 { color: var(--navy); }
.local-approach-card .benefits-list { text-align: left; display: inline-block; }
@media (max-width: 720px) {
  .local-approach-card { margin-top: -150px; padding: 24px; width: 92%; }
}

/* ── Variante pages ville/région : ne pas chevaucher la searchbar du hero ── */
.local-approach-card--page {
  margin-top: -51px;
}
@media (max-width: 720px) {
  .local-approach-card--page { margin-top: 1.5rem; padding: 24px; width: 92%; }
}
.hero-carousel { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-carousel-track {
  display: flex;
  width: 700%;
  height: 100%;
  animation: heroSlide 14s infinite ease-in-out;
}
.hero-slide {
  position: relative;
  flex: 0 0 calc(100% / 7);
  height: 100%;
  background-size: cover; background-position: center;
}
.hero-slide--1 { background-image: url("hero-carousel/hero-1.webp"); }
.hero-slide--2 { background-image: url("hero-carousel/hero-2.webp"); }
.hero-slide--3 { background-image: url("hero-carousel/hero-3.webp"); }
.hero-slide--4 { background-image: url("hero-carousel/hero-4.webp"); }
.hero-slide--5 { background-image: url("hero-carousel/hero-5.webp"); }
.hero-slide--6 { background-image: url("hero-carousel/hero-6.webp"); }
.hero-carousel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,.82) 0%, rgba(29,111,164,.72) 100%);
}
@keyframes heroSlide {
  0%, 11.429%   { transform: translateX(0%); }
  14.286%, 25.714% { transform: translateX(-14.286%); }
  28.571%, 40.000% { transform: translateX(-28.571%); }
  42.857%, 54.286% { transform: translateX(-42.857%); }
  57.143%, 68.571% { transform: translateX(-57.143%); }
  71.429%, 82.857% { transform: translateX(-71.429%); }
  85.714%, 97.143% { transform: translateX(-85.714%); }
  100% { transform: translateX(-100%); }
}
.hero-inner { position: relative; z-index: 1; }

/* ── Hero compact (pages ville/région — même style que la homepage, sans carrousel) ── */
.hero--compact { min-height: 420px; padding: 2.5rem 1.25rem 5.5rem; }
.hero--compact h1 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.hero--no-photo { background: linear-gradient(135deg, var(--navy) 0%, #24527a 100%); }
.hero--no-photo h1, .hero--no-photo p { color: #fff; }
.hero--photo {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(27,58,92,.82) 0%, rgba(29,111,164,.7) 100%);
}
.hero--photo h1, .hero--photo p { color: #fff; }

.hero--home.hero { text-align: center; }
.hero--home h1 { font-size: clamp(1.8rem, 4.2vw, 2.7rem); max-width: 916px; margin-left: auto; margin-right: auto; }
.hero--home p { max-width: 640px; margin-bottom: 1.75rem; margin-left: auto; margin-right: auto; }
.hero--home .hero-search-card { margin-left: auto; margin-right: auto; }
.hero-search-card {
  background: #fff;
  border-radius: 60px;
  padding: .5rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 916px;
}
.hero-search-form { display: flex; align-items: center; gap: 0; width: 100%; }
.hero-search-field {
  display: flex; flex-direction: column;
  flex: 1 1 0; min-width: 0;
  padding: .35rem 1.5rem;
}
.hero-search-field label {
  font-size: .8rem; font-weight: 700; color: var(--navy);
  margin-bottom: .15rem;
}
.hero-search-divider {
  width: 1px; align-self: stretch; margin: .5rem 0;
  background: var(--gray-200);
  flex: 0 0 1px;
}
.hero-search-form .search-input {
  width: 100%; max-width: 100%;
  border: none; padding: 0; height: auto;
  font-size: .95rem; background: transparent;
}
.hero-search-form .search-input:focus { box-shadow: none; outline: none; }
.hero-search-form .search-btn {
  width: auto; height: 60px; padding: 0 2.25rem;
  border-radius: 30px; font-size: 1rem; font-weight: 700;
  flex: 0 0 auto;
}
.hero-search-form .search-btn::after { content: none; }
@media (max-width: 720px) {
  .hero-search-card { display: flex; width: 100%; border-radius: var(--radius-lg); }
  .hero-search-form { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-search-field { padding: .6rem 1rem; }
  .hero-search-divider { width: auto; height: 1px; align-self: stretch; margin: 0 1rem; }
  .hero-search-form .search-input { width: 100%; }
  .hero-search-form .search-btn { width: 100%; }
}

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem;
}
.step-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.step-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.5; }

/* ── Region hero (section pages) ────────────────────────────────────────── */
.region-hero {
  background: var(--navy-light);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 1.25rem;
}
.region-hero h1 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy); }
.region-hero p  { color: var(--gray-600); margin-top: .5rem; }

/* ── Region hero with photo ────────────────────────────────────────────── */
.region-hero--with-image {
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: none;
}
.region-hero--with-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,.82) 0%, rgba(36,82,122,.68) 100%);
}
.region-hero--with-image .container { position: relative; z-index: 1; }
.region-hero--with-image h1, .region-hero--with-image p { color: #fff; }

/* ── Form wrapper ────────────────────────────────────────────────────────── */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 2rem;
  max-width: 640px;
  margin: -1.5rem auto 2.5rem;
  position: relative; z-index: 10;
  border: 1px solid var(--gray-200);
}
.form-wrap h2 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.25rem;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group > label:not(.consent-label) {
  font-size: .78rem; font-weight: 600;
  color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em;
}

.form-group input:not(.consent-check),
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .6rem .85rem;
  font-size: .95rem;
  width: 100%;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234b5563' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.2rem; }
.form-group input:not(.consent-check):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,111,164,.15);
}
.form-group textarea { resize: vertical; min-height: 78px; }

/* Consent row */
/* ── Consent row ─────────────────────────────────────────────────────────── */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

/* Custom checkbox — SVG checkmark as background-image */
.consent-check {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
}
.consent-check:checked {
  background-color: var(--navy);
  border-color: var(--navy);
  /* white checkmark SVG */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1.5%2C5.5 4.5%2C8.5 10.5%2C1.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.consent-check:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.consent-label {
  flex: 1;
  min-width: 0;
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}
.consent-label a { color: var(--teal); }

/* ── Validation errors ───────────────────────────────────────────────────── */
.field-error {
  display: block;
  font-size: .78rem;
  color: #dc2626;
  margin-top: .3rem;
}
.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12) !important;
}
/* Checkbox error: red border on the custom checkbox */
.consent-check.input-error {
  border-color: #dc2626 !important;
  box-shadow: none !important;
}

/* Submit */
.btn-submit {
  width: 100%; padding: .8rem 1rem;
  background: var(--navy);
  color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; margin-top: .65rem;
  transition: background .18s, transform .1s;
  letter-spacing: .01em;
}
.btn-submit:hover  { background: var(--navy-dark); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; }

/* Success message */
.form-success {
  display: none;
  background: var(--green-bg);
  border: 1px solid #86efac;
  color: var(--green);
  padding: .9rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  margin-top: .85rem;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 2.5rem 0; }
.section + .section { border-top: 1px solid var(--gray-200); }
.section h2 {
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.1rem;
}

/* ── SEO intro ───────────────────────────────────────────────────────────── */
.seo-intro { max-width: 760px; }
.seo-intro p { color: var(--gray-600); margin-bottom: .75rem; }

/* ── Price block ─────────────────────────────────────────────────────────── */
.price-block {
  background: var(--navy-light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.price-tag { font-size: 1.9rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.price-desc { color: var(--gray-600); font-size: .9rem; max-width: 280px; }

/* ── Benefits ────────────────────────────────────────────────────────────── */
.benefits-list { list-style: none; display: flex; flex-wrap: wrap; gap: .65rem; }
.benefits-list li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .55rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .92rem; box-shadow: var(--shadow-sm);
}
.benefits-list li::before { content: "✓"; color: var(--green); font-weight: 700; font-size: 1rem; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: .9rem 0;
}
.faq-question {
  font-weight: 600; font-size: .97rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; gap: 1rem;
}
.faq-question::after {
  content: "+"; font-size: 1.25rem; color: var(--teal);
  flex-shrink: 0; font-weight: 400;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer {
  color: var(--gray-600); font-size: .93rem;
  padding-top: .6rem; display: none; line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* ── Companies ───────────────────────────────────────────────────────────── */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.company-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
  display: flex; flex-direction: column;
}
.company-card:hover { box-shadow: var(--shadow); }
.company-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.company-card p  { font-size: .84rem; color: var(--gray-600); margin-bottom: .4rem; }
.company-card a  { font-size: .84rem; color: var(--teal); }

/* Company card v2: avatar + service badge + CTA button */
.cc-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.cc-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.cc-head-text h3 { margin-bottom: .25rem; }
.cc-badge {
  display: inline-block;
  background: var(--teal-light, var(--orange-light));
  color: var(--teal);
  border-radius: 999px;
  padding: .15rem .65rem;
  font-size: .72rem; font-weight: 600;
}
.cc-btn {
  display: block; text-align: center;
  margin-top: auto;
  background: var(--orange); color: #fff !important;
  border-radius: var(--radius);
  padding: .5rem 1rem;
  font-size: .85rem !important; font-weight: 600;
  text-decoration: none; transition: background .15s;
}
.cc-btn:hover { background: var(--orange-light); color: var(--orange) !important; }

/* ── Reviews placeholder ─────────────────────────────────────────────────── */
.reviews-placeholder {
  background: var(--gray-100);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
  color: var(--gray-400); font-style: italic;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.review-card {
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.review-stars { color: var(--gray-300); font-size: 1.2rem; letter-spacing: .15rem; margin-bottom: .5rem; }
.review-ph-text { color: var(--gray-400); font-style: italic; font-size: .88rem; }

/* ── Card grids ──────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .3rem; font-weight: 600; }
.card p  { font-size: .83rem; color: var(--gray-600); line-height: 1.5; }

/* City card with skyline illustration */
.city-card { padding: 0; overflow: hidden; }
.city-card-img { height: 130px; background: var(--gray-100); }
.city-card-svg { width: 100%; height: 100%; display: block; }
.city-card-img--photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.city-card-body { padding: 1rem 1.25rem 1.1rem; }

/* ── Carousels (horizontal scroll) ──────────────────────────────────────── */
.carousel-track {
  display: flex; flex-wrap: nowrap; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory;
  gap: 1rem; padding-bottom: .75rem;
  -webkit-overflow-scrolling: touch;
}
.carousel-track > * {
  flex: 0 0 auto; scroll-snap-align: start;
  align-self: stretch;
}
.carousel-track.cards-grid > .city-card { width: 240px; }
.carousel-track.companies-grid > .company-card { width: 280px; }
.carousel-track.reviews-grid > .review-card { width: 280px; }
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }
.carousel-track { scrollbar-width: thin; scrollbar-color: var(--gray-400) var(--gray-100); }

/* ── Carousel arrows ─────────────────────────────────────────────────────── */
.carousel-wrap { position: relative; }
.carousel-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0; line-height: 1; color: var(--navy);
  cursor: pointer; z-index: 3;
}
.carousel-arrow::before {
  content: '';
  width: 9px; height: 9px;
  border-style: solid; border-color: currentColor;
  border-width: 2px 2px 0 0;
}
.carousel-arrow--prev { left: -8px; }
.carousel-arrow--prev::before { transform: rotate(-135deg) translate(1px, -1px); }
.carousel-arrow--next { right: -8px; }
.carousel-arrow--next::before { transform: rotate(45deg) translate(-1px, 1px); }
.carousel-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
@media (max-width: 720px) {
  .carousel-arrow { display: none; }
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  min-height: 7.3rem;
}
.testimonial-text { font-size: .92rem; color: var(--gray-800); line-height: 1.5; margin: 0; }
.testimonial-author { font-size: .8rem; color: var(--gray-400); font-style: italic; }

/* ── How it works (steps + FAQ) ─────────────────────────────────────────── */
.how-it-works {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem; align-items: start;
}
.how-steps { display: flex; flex-direction: column; gap: 1rem; }
.how-faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) {
  .how-it-works { grid-template-columns: 1fr; }
}

/* ── Catalog (Услуги/Регионы/Гиды, fin de page) ─────────────────────────── */
.catalog-section { border-top: 1px solid var(--gray-200); padding: 1.5rem 0 2rem; }
.catalog-title { font-size: .8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; font-weight: 600; }
.catalog-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem 1.5rem;
}
.catalog-cols h4 { font-size: .8rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; font-weight: 600; }
.catalog-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.catalog-links a { font-size: .82rem; color: var(--gray-600); text-decoration: none; }
.catalog-links a:hover { color: var(--orange); text-decoration: underline; }

/* ── Tag cloud ───────────────────────────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .84rem;
  color: var(--gray-800);
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.tag:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  text-decoration: none;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: .8rem; color: var(--gray-600);
  padding: .75rem 0; display: flex; flex-wrap: wrap; align-items: center; gap: .1rem;
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 .2rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sh-nav { display: none; }
  .hero { padding: 2.25rem 1.25rem 2rem; }
  .form-wrap { margin: .75rem 1rem 2rem; padding: 1.35rem 1.25rem; }
  .form-wrap h2 { font-size: 1.05rem; }
}
@media (max-width: 400px) {
  .form-wrap { margin: .5rem .5rem 1.5rem; padding: 1.1rem 1rem; }
}

/* ── Category cards ─────────────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.categories-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .categories-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .categories-grid--3col { grid-template-columns: 1fr; }
}
.category-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s;
  user-select: none;
}
.category-card:hover, .category-card:focus {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(29,111,164,.12);
  outline: none;
}
.category-card-icon { display: block; font-size: 1.8rem; margin-bottom: .5rem; line-height: 1; }
.category-card h3 { margin: 0 0 .35rem; font-size: 1rem; color: var(--navy); }
.category-count { margin: 0; font-size: .82rem; color: var(--gray-500); }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-box h2 { margin: 0 0 1.25rem; font-size: 1.15rem; color: var(--navy); }
.modal-close {
  position: absolute; top: .85rem; right: 1rem;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--gray-500); line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal-services { display: flex; flex-direction: column; gap: .6rem; }
.modal-service-link {
  display: block;
  padding: .65rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: .95rem;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.modal-service-link:hover { background: var(--teal); color: #fff; }

/* ── Search bar ─────────────────────────────────────────────────────────── */
.site-search {
  display: flex; align-items: center; gap: .4rem;
  width: 600px; height: 60px; flex: none;
}
.search-input {
  flex: 1; min-width: 0;
  height: 60px;
  padding: 0 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: 30px;
  background: var(--gray-50);
  color: var(--gray-800);
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color .15s;
}
.search-input--city { max-width: 180px; flex: 0 1 180px; }
.search-input::placeholder { color: var(--gray-400); }
.search-input:focus { outline: none; border-color: var(--orange); background: #fff; }
.sh-search-mobile .search-input { background: var(--gray-50); }
.sh-search-mobile .search-input:focus { background: #fff; }
.search-btn {
  width: 60px; height: 60px; padding: 0; flex-shrink: 0;
  background: var(--orange);
  color: #fff; border: none;
  border-radius: 50%;
  font-size: 0; cursor: pointer; white-space: nowrap;
  transition: background .15s;
  position: relative;
}
.search-btn::after { content: '🔍'; font-size: 1.1rem; line-height: 1; }
.search-btn:hover { background: var(--orange-light); }

/* Mobile header */
@media (max-width: 860px) {
  .site-search { display: none; }
  .sh-nav { display: none; }
  .sh-search-toggle {
    display: flex; align-items: center; justify-content: center;
    margin-left: auto;
    width: 34px; height: 34px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    background: none; cursor: pointer; font-size: 1rem; color: var(--navy);
  }
  .sh-search-mobile {
    padding: .5rem 1.25rem .75rem;
    border-top: 1px solid var(--gray-100);
    background: #fff;
  }
  .sh-search-mobile.open { display: block; }
  .site-search--mobile {
    flex-direction: column; display: flex; gap: .5rem;
    width: 100%; height: auto;
  }
  .site-search--mobile .search-input {
    width: 100%; max-width: none; height: 42px; border-radius: var(--radius); font-size: .875rem;
  }
  .site-search--mobile .search-btn {
    width: 100%; height: 42px; border-radius: var(--radius);
    font-size: .875rem; font-weight: 600;
  }
  .site-search--mobile .search-btn::after { content: none; }
}

/* ── Service+City page ──────────────────────────────────────────────────── */
.sc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5c8a 100%);
  padding: 2.5rem 0;
  color: #fff;
}
.sc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.sc-hero-text h1 { color: #fff; margin-bottom: .75rem; }
.sc-subtitle { color: rgba(255,255,255,.85); margin-bottom: 1.25rem; }
.trust-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.trust-list li { font-size: .9rem; color: rgba(255,255,255,.9); }

/* listing + sidebar */
.sc-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sc-listing h2 { margin-bottom: 1.25rem; }
.listing-cards { display: flex; flex-direction: column; gap: 1rem; }
.listing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .18s;
}
.listing-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.listing-card-body { flex: 1; min-width: 0; }
.listing-name { margin: 0 0 .35rem; font-size: 1rem; color: var(--navy); }
.listing-desc { margin: 0 0 .3rem; font-size: .88rem; color: var(--gray-600); }
.listing-addr { margin: 0; font-size: .82rem; color: var(--gray-500); }
.listing-card-actions {
  display: flex; flex-direction: column; gap: .5rem;
  flex-shrink: 0;
}
.btn-outline {
  display: inline-block;
  padding: .45rem .9rem;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: .85rem;
  text-decoration: none;
  text-align: center;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-cta {
  display: inline-block;
  padding: .45rem .9rem;
  background: var(--teal);
  border-radius: var(--radius);
  color: #fff;
  font-size: .85rem;
  text-decoration: none;
  text-align: center;
  transition: background .15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--navy); }

/* sticky sidebar */
.sc-sidebar { position: sticky; top: 1.5rem; }
.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: .95rem;
}

/* SEO long text */
.seo-long p { margin-bottom: .85rem; line-height: 1.75; }

@media (max-width: 900px) {
  .sc-hero-inner { grid-template-columns: 1fr; }
  .sc-main { grid-template-columns: 1fr; }
  .sc-sidebar { position: static; }
  .listing-card { flex-direction: column; }
  .listing-card-actions { flex-direction: row; }
}

/* ── SC hero v2 (minimal) ───────────────────────────────────────────────── */
.sc-hero { padding: 2rem 0 1.5rem; background: var(--navy); color: #fff; }
.sc-hero h1 { color: #fff; margin-bottom: .5rem; }
.sc-subtitle { color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.trust-list--inline {
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: .5rem 1.5rem !important;
}
/* sidebar contient le form-wrap directement */
.sc-sidebar .form-wrap { margin: 0; }
@media (max-width: 900px) {
  .trust-list--inline { flex-direction: column !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICE + CITY PAGE v3 — annuaire layout
   ══════════════════════════════════════════════════════════════════════════ */
:root { --orange: #e87722; --orange-light: #fff4ec; }

/* page header */
.sc-page-header {
  padding: 1.75rem 0 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.sc-h1 { font-size: 1.6rem; color: var(--gray-800); margin-bottom: .4rem; }
.sc-subtitle { color: var(--gray-600); font-size: .95rem; margin-bottom: .85rem; }
.sc-trust-bar {
  display: flex; flex-wrap: wrap; gap: .4rem 1.25rem;
  font-size: .82rem; color: var(--gray-600);
}
.sc-trust-bar span::before { content: ''; }

/* 2-col body */
.sc-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.75rem;
  align-items: start;
  padding-top: 1.75rem;
  padding-bottom: 2rem;
}
.sc-section-title { font-size: 1.1rem; color: var(--gray-800); margin-bottom: 1.1rem; }

/* listing cards (annuaire) */
.lc {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  margin-bottom: .85rem;
  transition: box-shadow .15s, border-color .15s;
}
.lc:hover { box-shadow: var(--shadow); border-color: var(--gray-400); }
.lc-rank {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.lc-body { flex: 1; min-width: 0; }
.lc-name { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: .3rem; }
.lc-desc { font-size: .88rem; color: var(--gray-600); margin-bottom: .4rem; line-height: 1.5; }
.lc-meta { display: flex; flex-wrap: wrap; gap: .3rem .85rem; }
.lc-addr, .lc-svc, .lc-tel, .lc-url { font-size: .8rem; color: var(--gray-500); }
.lc-tel a, .lc-url a { color: var(--teal); text-decoration: none; }
.lc-tel a:hover, .lc-url a:hover { text-decoration: underline; }
.lc-actions {
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: .45rem;
  align-items: flex-end;
}
.lc-empty { color: var(--gray-500); font-size: .9rem; padding: 1rem 0; }

.lc-empty-state {
  border: 1px dashed var(--gray-300, #d8dde3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.lc-empty-title { font-size: 1.1rem; font-weight: 600; margin: 0 0 .5rem; }
.lc-empty-text { color: var(--gray-500); font-size: .95rem; margin: 0 0 1rem; }
.lc-empty-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.lc-empty-links-label { font-weight: 600; margin: .75rem 0 .5rem; text-align: left; }
.lc-empty-state .tag-cloud { justify-content: flex-start; }

.lc-empty-state--premium {
  border: 1px solid var(--gray-200, #e6e9ee);
  background: var(--gray-50, #f8f9fb);
  box-shadow: 0 3px 20px rgba(0,0,0,.04);
}
.lc-empty-state--premium .lc-empty-title { font-size: 1.25rem; }
.lc-pro-block {
  background: #fff;
  border: 1px solid var(--gray-200, #e6e9ee);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  text-align: center;
}
.lc-pro-badge {
  display: inline-block;
  background: #e6f4ea; color: #1e7a3a;
  font-size: .75rem; font-weight: 600;
  border-radius: 20px; padding: .25rem .85rem;
  margin-bottom: .75rem;
}
.lc-pro-block h3 { margin: 0 0 .35rem; color: var(--navy); }
.lc-pro-block p { color: var(--gray-500); margin: 0 0 1rem; }
.lc-pro-fields {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .75rem;
  margin: 0 0 1.25rem; padding: 0;
}
.lc-pro-fields li {
  font-size: .8rem; color: var(--gray-500);
  background: var(--gray-50, #f8f9fb);
  border: 1px solid var(--gray-200, #e6e9ee);
  border-radius: 20px;
  padding: .3rem .85rem;
}
.lc-empty-back { margin-top: .75rem; }

/* sidebar */
.sc-sidebar-inner { position: sticky; top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.sc-sidebar .form-wrap { margin: 0; padding: 1.25rem; }
.sc-sidebar .form-wrap h2 { font-size: 1rem; margin-bottom: .85rem; }
.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: .9rem;
  border: 1px dashed var(--gray-200);
}
.sc-price-box {
  background: var(--orange-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--orange);
}
.sc-price-amount { font-size: 1.3rem; font-weight: 700; color: var(--orange); }
.sc-price-note   { font-size: .8rem; color: var(--gray-600); margin-top: .2rem; }

/* mobile */
@media (max-width: 900px) {
  .sc-body { grid-template-columns: 1fr; }
  .sc-sidebar { order: 3; }
  .sc-sidebar-inner { position: static; }
  .lc { flex-wrap: wrap; }
  .lc-actions { flex-direction: row; width: 100%; justify-content: flex-start; margin-top: .5rem; }
}

/* ── Form modal ─────────────────────────────────────────────────────────── */
.modal-form-box { max-width: 520px; }
.modal-form-box h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.modal-form-box .form-wrap { margin: 0; padding: 0; box-shadow: none; border-radius: 0; }

/* ── SC page header v4 (compact, no bg) ─────────────────────────────────── */
.sc-page-header { padding: 1.5rem 0 1rem; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.sc-page-header .sc-h1 { font-size: 1.5rem; color: var(--gray-800); margin-bottom: .35rem; }
.sc-page-header .sc-subtitle { color: var(--gray-600); font-size: .9rem; margin-bottom: .6rem; }
.sc-page-header .sc-trust-bar { display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .8rem; color: var(--gray-500); }

/* sc-body reset */
.sc-body { display: grid; grid-template-columns: 1fr 300px; gap: 1.75rem; align-items: start; padding-top: 1.75rem; padding-bottom: 2rem; }
.sc-sidebar-inner { position: sticky; top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.sc-sidebar-cta { width: 100%; }
.sc-reviews, .sc-popular { margin-top: 2rem; }
.sc-reviews h2, .sc-popular h2 { font-size: 1.1rem; margin-bottom: .75rem; }
.reviews-empty { color: var(--gray-400); font-size: .88rem; font-style: italic; }
.seo-long { margin-top: 2rem; }
.seo-long h2 { font-size: 1.1rem; margin-bottom: .85rem; }
.seo-long p  { margin-bottom: .75rem; line-height: 1.75; color: var(--gray-700); font-size: .93rem; }

/* ── Company page ───────────────────────────────────────────────────────── */
/* ── Company page ─────────────────────────────────────────────────────────── */
/* ── Company profile page ─────────────────────────────────────────────────── */
.cp-container { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }

/* Hero */
.cp-hero { background: #f0f4f8; border-bottom: 1px solid var(--gray-200); padding: 2.5rem 0 2rem; }
.cp-name { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gray-800); margin-bottom: .875rem; line-height: 1.12; letter-spacing: -.02em; }
.cp-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .75rem; }
.cp-badge  { background: #fff; color: var(--navy); font-size: .78rem; font-weight: 600; padding: .3rem .85rem; border-radius: 20px; border: 1px solid var(--gray-200); }
.cp-badge--city    { background: var(--orange-light); color: var(--orange); border-color: rgba(232,119,34,.2); }
.cp-badge--vip     { background: #fef3c7; color: #92400e; font-weight: 700; }
.cp-badge--premium { background: #ede9fe; color: #5b21b6; font-weight: 600; }
.cp-free-banner { margin-top: .75rem; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius); padding: .6rem 1rem; font-size: .9rem; color: #1d4ed8; }

/* Layout */
.cp-body { display: grid; grid-template-columns: 1fr 290px; gap: 2.25rem; align-items: start; padding: 2.5rem 0 5rem; }

/* Main content */
.cp-section { margin-bottom: 0; border-bottom: 1px solid var(--gray-100); padding-bottom: 2.25rem; margin-bottom: 2.25rem; }
.cp-section:last-child { border-bottom: none; margin-bottom: 0; }
.cp-section h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--gray-800);
  margin-bottom: 1.25rem; padding-bottom: .6rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.cp-section p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.85; }
.cp-ph { color: var(--gray-400) !important; font-style: italic; }

/* Сфера работ */
.cp-sfera { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.cp-sfera-item { display: flex; align-items: center; gap: .75rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: .85rem 1.1rem; font-size: 1rem; color: var(--gray-700); font-weight: 500; }
.cp-sfera-icon { font-size: 1.35rem; flex-shrink: 0; }

/* Что нам нравится */
.cp-like-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.cp-like-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1.05rem; color: var(--gray-700); line-height: 1.5; }
.cp-like-icon { flex-shrink: 0; width: 22px; height: 22px; background: #dcfce7; color: #15803d; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; margin-top: .1rem; }

/* Квалификации */
.cp-quals { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.cp-qual-item { display: flex; align-items: flex-start; gap: .85rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem 1.1rem; }
.cp-qual-icon { font-size: 1.5rem; flex-shrink: 0; }
.cp-qual-item strong { display: block; color: var(--gray-800); font-size: .95rem; margin-bottom: .2rem; }
.cp-qual-item div { font-size: .875rem; color: var(--gray-500); line-height: 1.4; }

/* Reviews */
.cp-review-ph { text-align: center; padding: 2.5rem 1.5rem; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.cp-review-ph-icon { font-size: 2.75rem; margin-bottom: .75rem; }
.cp-review-ph-title { font-size: 1.1rem; font-weight: 600; color: var(--gray-800); margin-bottom: .35rem; }
.cp-review-ph-sub { font-size: .9rem; color: var(--gray-400); }

/* Zone */
.cp-zone { display: flex; flex-direction: column; gap: 1.25rem; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 1.5rem; }
.cp-zone-text p { margin-bottom: .4rem; font-size: 1rem; color: var(--gray-700); line-height: 1.6; }
.cp-zone-address { font-size: .85rem; color: var(--gray-400); }

/* Coллеги / entreprises similaires */
.cp-colleagues-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cp-colleague-card { display: block; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem 1.1rem; text-decoration: none; transition: border-color .15s, transform .15s; }
.cp-colleague-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.cp-colleague-name { font-size: 1rem; color: var(--navy); margin: 0 0 .5rem; }
.cp-colleague-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.cp-colleague-city { font-size: .82rem; color: var(--gray-500); }
@media (max-width: 600px) {
  .cp-colleagues-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.cp-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cp-gallery-item { aspect-ratio: 16/9; background: var(--gray-100); border-radius: var(--radius); border: 2px dashed var(--gray-200); display: flex; align-items: center; justify-content: center; }
.cp-gallery-ph { font-size: 2.25rem; opacity: .35; }

/* Plan badges in listings */
.plan-badge   { display: inline-block; font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: 10px; margin-left: .4rem; vertical-align: middle; }
.plan-vip     { background: #fef3c7; color: #92400e; }
.plan-premium { background: #ede9fe; color: #5b21b6; }
.lc--vip     { border-left: 3px solid #f59e0b; }
.lc--premium { border-left: 3px solid #8b5cf6; }
.lc-no-leads { font-size: .8rem; color: var(--gray-500); font-style: italic; }
.lc-contact-fallback { font-size: .78rem; color: var(--gray-400); }
.lc-contact-fallback a { color: var(--gray-400); text-decoration: underline; text-underline-offset: 2px; }
.lc-contact-fallback a:hover { color: var(--teal); }
.cp-no-leads       { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0; color: var(--gray-600); }
.cp-no-leads p     { margin: 0; font-size: .95rem; }
.cp-no-leads-small { font-size: .8rem; color: var(--gray-500); font-style: italic; margin-top: .75rem; text-align: center; }

/* Sidebar */
.cp-sidebar-inner { position: sticky; top: 5rem; }
.cp-contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
}
.cp-avatar-wrap { background: linear-gradient(135deg, var(--navy) 0%, #24527a 100%); padding: 2rem 1.75rem 3rem; text-align: center; }
.cp-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 3px solid rgba(255,255,255,.5);
  color: #fff; font-size: 1.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.cp-card-name { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); line-height: 1.3; text-align: center; margin: -1.5rem 1.25rem 0; padding: 1rem 1rem .75rem; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.08); position: relative; z-index: 1; }
.cp-card-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem; padding: .75rem 1.25rem 0; }
.cp-card-info { padding: 1rem 1.25rem; border-top: 1px solid var(--gray-100); margin-top: .75rem; }
.cp-card-row { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--gray-600); padding: .45rem 0; border-bottom: 1px solid var(--gray-100); }
.cp-card-row:last-child { border-bottom: none; }
.cp-card-icon { flex-shrink: 0; width: 1.2rem; }
.cp-tel { font-size: 1.05rem; font-weight: 700; color: var(--navy) !important; }
.cp-card-row a { color: var(--teal); }
.cp-cta-btn {
  display: block; width: calc(100% - 2.5rem); margin: 0 1.25rem 1rem;
  padding: 1rem 1.5rem;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; text-align: center;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 4px 12px rgba(232,119,34,.35);
}
.cp-cta-btn:hover { background: #d06010; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(232,119,34,.45); }
.open-lead-modal { cursor: pointer; }

/* Map card (Зона обслуживания) — breaks out of the content column to span the full .cp-container width */
.cp-map-wrap { width: calc(100% + 290px + 2.25rem); }
.cp-map-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
}
.cp-map-frame { display: block; border: 0; width: 100%; height: 400px; }
.cp-map-info { padding: 1rem 1.25rem; }
.cp-map-note { font-size: .85rem; color: var(--gray-400); font-style: italic; margin-bottom: .5rem; }
.cp-map-link { display: inline-block; font-size: .9rem; font-weight: 600; color: var(--teal); }

@media (max-width: 960px) {
  .sc-body  { grid-template-columns: 1fr; }
  .cp-body  { grid-template-columns: 1fr; }
  .cp-gallery { grid-template-columns: repeat(2, 1fr); }
  .cp-quals { grid-template-columns: 1fr; }
  .cp-sfera { grid-template-columns: 1fr; }
  .sc-sidebar-inner, .cp-sidebar-inner { position: static; }
  .cp-map-wrap { width: 100%; }
  .cp-map-frame { height: 280px; }
}
