/* ============================================================
   COMPACT'OUEST — style.css
   Partagé par index.html et reserver.html
   ============================================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #E05A1A;
  --orange-h:     #C84E16;
  --orange-light: rgba(224, 90, 26, 0.10);
  --dark:         #111827;
  --gray-700:     #374151;
  --gray-600:     #4B5563;
  --gray-400:     #9CA3AF;
  --gray-200:     #E5E7EB;
  --gray-100:     #F3F4F6;
  --gray-50:      #F9FAFB;
  --white:        #FFFFFF;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sh-sm:  0 1px 4px rgba(0,0,0,.08);
  --sh-md:  0 4px 14px rgba(0,0,0,.10);
  --sh-lg:  0 10px 32px rgba(0,0,0,.12);
  --r-sm:   8px;
  --r:      12px;
  --r-lg:   16px;
  --maxw:   1200px;
  --hh:     72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-sm);
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .2s ease; border: 2px solid transparent;
  white-space: nowrap; text-align: center;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(224,90,26,.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-dark:hover { background: var(--orange); color: var(--white); }
.btn-white    { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ---- Header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); height: var(--hh);
  border-bottom: 1px solid var(--gray-200); transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--sh-md); }
.header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 8px 14px; font-size: .88rem; font-weight: 500; color: var(--gray-600); border-radius: var(--r-sm); transition: all .15s; }
.nav a:hover { color: var(--orange); background: var(--orange-light); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: .9rem; font-weight: 600; color: var(--dark); }
.header-phone a { color: var(--orange); }
.header-phone a:hover { text-decoration: underline; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-nav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0;
  background: var(--white); z-index: 999; padding: 16px 24px 24px;
  flex-direction: column; gap: 4px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--sh-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 14px 16px; font-size: 1rem; font-weight: 500; color: var(--gray-700); border-radius: var(--r-sm); border-bottom: 1px solid var(--gray-100); }
.mobile-nav .btn { margin-top: 8px; justify-content: center; }

/* ---- Floating button ---- */
.float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--orange); color: var(--white);
  padding: 13px 20px; border-radius: 50px; font-weight: 700; font-size: .875rem;
  box-shadow: 0 4px 20px rgba(224,90,26,.42); display: flex; align-items: center; gap: 8px; transition: all .2s;
}
.float-btn:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(224,90,26,.52); }
.float-btn svg { width: 17px; height: 17px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; padding-top: var(--hh);
  background:
    linear-gradient(158deg, rgba(13,12,11,.80) 0%, rgba(28,20,10,.75) 50%, rgba(17,24,39,.82) 100%),
    url('images/image2.webp') center/cover no-repeat;
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 10% 60%, rgba(224,90,26,.10) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 740px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,90,26,.13); border: 1px solid rgba(224,90,26,.25); color: #F07240;
  padding: 6px 16px; border-radius: 50px; font-size: .81rem; font-weight: 600; letter-spacing: .03em; margin-bottom: 22px;
}
.hero-eyebrow span { opacity: .45; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.13; margin-bottom: 18px; letter-spacing: -.025em; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.62); margin-bottom: 34px; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-deps { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.hero-deps-label { font-size: .78rem; color: rgba(255,255,255,.38); font-weight: 500; margin-right: 4px; }
.dep-tag { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); padding: 5px 13px; border-radius: 50px; font-size: .78rem; font-weight: 600; }

/* ---- Reassurance strip ---- */
.reassurance { background: var(--orange); }
.reassurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.reassurance-item { padding: 22px 20px; text-align: center; color: var(--white); border-right: 1px solid rgba(255,255,255,.22); }
.reassurance-item:last-child { border-right: none; }
.reassurance-item strong { display: block; font-size: 1.28rem; font-weight: 800; margin-bottom: 2px; }
.reassurance-item span { font-size: .77rem; opacity: .85; }

/* ---- Sections base ---- */
section { padding: 88px 0; }
.bg-gray { background: var(--gray-50); }
.bg-dark { background: #0F0E0D; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-title { font-size: clamp(1.72rem, 3vw, 2.38rem); font-weight: 800; color: var(--dark); line-height: 1.2; letter-spacing: -.022em; margin-bottom: 14px; }
.section-desc { font-size: 1rem; color: var(--gray-600); max-width: 580px; line-height: 1.72; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ---- Services ---- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-lg); padding: 30px; transition: all .25s; }
.service-card:hover { border-color: var(--orange); box-shadow: var(--sh-lg); transform: translateY(-3px); }
.service-card:hover .s-icon { background: var(--orange); }
.service-card:hover .s-icon svg { stroke: var(--white); }
.s-icon { width: 50px; height: 50px; background: var(--orange-light); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .25s; }
.s-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.service-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: .895rem; color: var(--gray-600); line-height: 1.65; }

/* ---- Why us ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img-box {
  background: linear-gradient(150deg, #1a1510 0%, #2a1f15 42%, #111827 100%);
  border-radius: var(--r-lg); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.why-img-box img { width: 100%; height: 100%; object-fit: cover; }
.why-img-placeholder { text-align: center; padding: 40px; color: rgba(255,255,255,.2); }
.why-img-placeholder svg { width: 72px; height: 72px; stroke: rgba(255,255,255,.15); fill: none; margin: 0 auto 12px; display: block; }
.why-img-placeholder p { font-size: .8rem; font-style: italic; }
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.w-icon { width: 42px; height: 42px; min-width: 42px; background: var(--orange-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.w-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-item h4 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.why-item p { font-size: .855rem; color: var(--gray-600); line-height: 1.62; }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 26px; left: 14%; right: 14%; height: 2px; background: var(--gray-200); }
.process-step { padding: 0 20px; text-align: center; position: relative; }
.step-circle { width: 52px; height: 52px; background: var(--white); border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.05rem; font-weight: 800; color: var(--orange); position: relative; z-index: 1; }
.process-step h3 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: .83rem; color: var(--gray-600); line-height: 1.62; }

/* ---- Client types ---- */
.bg-dark .section-label { color: #F07240; }
.bg-dark .section-label::before { background: #F07240; }
.bg-dark .section-title { color: var(--white); }
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); padding: 28px; transition: all .25s; }
.client-card:hover { background: rgba(224,90,26,.09); border-color: rgba(224,90,26,.25); }
.client-card h3 { font-size: 1rem; font-weight: 700; color: var(--orange); margin-bottom: 10px; }
.client-card p { font-size: .875rem; color: rgba(255,255,255,.56); line-height: 1.72; }

/* ---- Zones ---- */
.zones-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 20px; }
.zone-card { border: 1.5px solid var(--gray-200); border-radius: var(--r); padding: 22px 12px; text-align: center; transition: all .25s; }
.zone-card:hover { border-color: var(--orange); background: var(--orange-light); transform: translateY(-3px); box-shadow: var(--sh-md); }
.zone-num { font-size: 2.1rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.zone-dept { font-size: .77rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.zone-city { font-size: .71rem; color: var(--gray-400); }
.zones-note { text-align: center; font-size: .82rem; color: var(--gray-400); font-style: italic; }

/* ---- Ils nous font confiance ---- */
.trust-section { background: var(--white); padding: 52px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trust-header { text-align: center; margin-bottom: 36px; }
.trust-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gray-400); }
.trust-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.trust-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 28px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  background: var(--white); transition: all .25s ease; cursor: default;
  min-width: 130px; height: 72px;
  position: relative;
}
.trust-logo img {
  max-height: 38px; max-width: 130px; width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.45);
  transition: filter .25s ease;
}
.trust-logo:hover { border-color: var(--orange); background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.trust-logo:hover img { filter: grayscale(0%) opacity(1); }
/* Tooltip nom au survol */
.trust-logo::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: .70rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 20;
}
.trust-logo:hover::after { opacity: 1; }
@media (max-width: 768px) {
  .trust-grid { gap: 10px; }
  .trust-logo { padding: 12px 20px; min-width: 110px; height: 64px; }
  .trust-logo img { max-height: 32px; max-width: 100px; }
}

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-lg); padding: 32px; position: relative; transition: all .25s; }
.pricing-card.featured { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(224,90,26,.08), var(--sh-lg); transform: scale(1.025); }
.pricing-card:hover:not(.featured) { box-shadow: var(--sh-md); }
.price-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); padding: 3px 14px; border-radius: 50px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.pricing-card h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 6px; }
.price-duration { font-size: .84rem; color: var(--gray-400); margin-bottom: 18px; }
.price-amount { font-size: 2.35rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.price-amount small { font-size: .88rem; font-weight: 400; color: var(--gray-400); }
.price-desc { font-size: .85rem; color: var(--gray-600); margin: 14px 0 20px; line-height: 1.62; }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.price-features li { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--gray-700); }
.price-features li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%;
  background: var(--orange-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9.5l3 3 7-7' stroke='%23E05A1A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-note { text-align: center; margin-top: 28px; font-size: .82rem; color: var(--gray-400); }
.pricing-note a { color: var(--orange); }

/* ---- CTA section ---- */
.cta-section { background: linear-gradient(135deg, #E05A1A 0%, #A03E12 100%); padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.38rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -.02em; }
.cta-section p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer { background: #0D0C0B; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .88; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.72; margin-top: 10px; max-width: 260px; }
.footer-col h4 { font-size: .71rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.54); transition: color .15s; }
.footer-links a:hover { color: var(--orange); }
.f-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.f-item svg { width: 15px; height: 15px; min-width: 15px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.f-item a, .f-item span { font-size: .84rem; color: rgba(255,255,255,.56); }
.f-item a:hover { color: var(--orange); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 22px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .77rem; color: rgba(255,255,255,.24); }
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--orange); }

/* ---- Booking page ---- */
.page-hero { background: linear-gradient(158deg, #0D0C0B 0%, #1C1410 100%); padding: calc(var(--hh) + 48px) 0 56px; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.45rem); font-weight: 800; color: var(--white); letter-spacing: -.022em; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.58); font-size: 1rem; }

.booking-wrap { padding: 60px 0 88px; }
.booking-layout { display: grid; grid-template-columns: 1fr 370px; gap: 48px; align-items: start; }

.booking-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 40px; }
.booking-form-card h2 { font-size: 1.28rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-subtitle { font-size: .875rem; color: var(--gray-600); margin-bottom: 32px; }
.form-section { margin-bottom: 28px; }
.form-section-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-100); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
label { font-size: .84rem; font-weight: 600; color: var(--dark); }
label .req { color: var(--orange); margin-left: 2px; }
input, select, textarea {
  font-family: var(--font); font-size: .92rem; color: var(--dark); background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); padding: 11px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s; outline: none; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,90,26,.08); }
input::placeholder, textarea::placeholder { color: var(--gray-400); }
textarea { resize: vertical; min-height: 96px; }

.service-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-opt { position: relative; }
.svc-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.svc-opt label { display: flex; align-items: flex-start; gap: 10px; padding: 13px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); cursor: pointer; transition: all .15s; font-weight: 500; font-size: .875rem; }
.svc-opt input:checked + label { border-color: var(--orange); background: var(--orange-light); }
.svc-opt label:hover { border-color: var(--orange); }
.radio-dot { width: 16px; height: 16px; min-width: 16px; border-radius: 50%; border: 2px solid var(--gray-300); margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.svc-opt input:checked + label .radio-dot { border-color: var(--orange); background: var(--orange); }
.svc-opt input:checked + label .radio-dot::after { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--white); }

.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-legal { font-size: .74rem; color: var(--gray-400); text-align: center; margin-top: 10px; line-height: 1.5; }

.booking-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 24px; }
.sidebar-card.orange { background: var(--orange); border-color: var(--orange); }
.sidebar-card h3 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.sidebar-card.orange h3 { color: var(--white); }
.sc-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sc-item:last-child { margin-bottom: 0; }
.sc-item svg { width: 16px; height: 16px; min-width: 16px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.orange .sc-item svg { stroke: rgba(255,255,255,.8); }
.sc-item a, .sc-item span { font-size: .875rem; color: var(--gray-700); }
.orange .sc-item a, .orange .sc-item span { color: var(--white); font-weight: 500; }
.sc-item a:hover { color: var(--orange); }
.orange .sc-item a:hover { opacity: .8; }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .855rem; color: var(--gray-700); line-height: 1.5; }
.check-list li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; margin-top: 1px;
  background: var(--orange-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9.5l3 3 7-7' stroke='%23E05A1A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pm-list { display: flex; flex-direction: column; gap: 8px; }
.pm-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: var(--gray-50); border-radius: var(--r-sm); font-size: .85rem; }
.pm-item .pm-name { font-weight: 600; color: var(--dark); }
.pm-item .pm-price { font-weight: 700; color: var(--orange); }
.pm-note { font-size: .74rem; color: var(--gray-400); text-align: center; margin-top: 6px; }

/* Calendly placeholder */
.calendly-placeholder {
  background: var(--gray-50); border: 2px dashed var(--gray-200); border-radius: var(--r);
  padding: 40px; text-align: center; margin-bottom: 28px;
}
.calendly-placeholder p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }
.calendly-placeholder strong { color: var(--dark); }
.calendly-placeholder code { background: var(--gray-200); padding: 2px 8px; border-radius: 4px; font-size: .82rem; color: var(--dark); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance-item:nth-child(2) { border-right: none; }
  .reassurance-item:nth-child(3), .reassurance-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
  .reassurance-item:nth-child(4) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-img-box { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --hh: 64px; }
  section { padding: 60px 0; }
  .nav, .header-actions .header-phone, .header-actions .btn:not(.float-btn) { display: none; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .clients-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .booking-form-card { padding: 24px; }
  .booking-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.82rem; }
  .dep-tag { font-size: .74rem; padding: 4px 10px; }
  .float-btn span { display: none; }
}
