/* =========================================
   Débarras-Lux — Design System (inspired by Airbnb DESIGN.md)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* --- Débarras-Lux Color Palette (Luxembourg flag) --- */
  --primary:         #ef3340;   /* Luxembourg red — CTA, brand voltage */
  --primary-active:  #c9242f;
  --primary-disabled:#fbbec2;
  --primary-error:   #a81c26;

  --secondary:       #00a3e0;   /* Luxembourg blue — icônes, accents */
  --secondary-active:#0087bb;
  --secondary-light: #cceef9;

  --ink:             #222222;
  --body:            #3f3f3f;
  --muted:           #6a6a6a;
  --muted-soft:      #929292;

  --canvas:          #ffffff;
  --surface-soft:    #f7f7f7;
  --surface-card:    #ffffff;
  --surface-strong:  #f2f2f2;

  --hairline:        #dddddd;
  --hairline-soft:   #ebebeb;
  --border-strong:   #c1c1c1;

  --on-primary:      #ffffff;
  --on-dark:         #ffffff;

  /* --- Rounded corners --- */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* --- Spacing --- */
  --sp-xxs: 2px;
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  12px;
  --sp-base:16px;
  --sp-lg:  24px;
  --sp-xl:  32px;
  --sp-xxl: 48px;
  --sp-section: 64px;

  /* --- Shadow (single tier) --- */
  --shadow: rgba(0,0,0,0.02) 0 0 0 1px,
            rgba(0,0,0,0.04) 0 2px 6px 0,
            rgba(0,0,0,0.10) 0 4px 8px 0;

  /* --- Legacy aliases for backwards compat --- */
  --section-pad:   5rem 0;
  --card-radius:   var(--r-md);
  --btn-radius:    var(--r-sm);
  --shadow-md:     var(--shadow);
  --shadow-lg:     rgba(0,0,0,0.06) 0 0 0 1px,
                   rgba(0,0,0,0.08) 0 6px 16px 0,
                   rgba(0,0,0,0.14) 0 12px 24px 0;
  --line:          var(--hairline);
  --line-dark:     var(--border-strong);
  --accent:        var(--secondary);
  --accent-dark:   var(--secondary-active);
  --accent-light:  var(--secondary-light);
  --bg:            var(--surface-soft);
  --surface:       var(--canvas);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Airbnb Cereal VF', Circular, Inter, 'Segoe UI', -apple-system, sans-serif;
  color: var(--body);
  background: var(--canvas);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
}

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

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600; }

p { margin-top: 0; }
a { color: var(--ink); }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  font-size: 0.83rem;
  font-weight: 400;
}

.top-bar-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  font-size: 0.83rem;
}

.top-bar a:hover { color: #fff; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  z-index: 100;
  transition: box-shadow 0.2s;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.brand span { color: var(--primary); }

nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-sm);
  transition: background 0.15s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  background: var(--surface-soft);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--r-sm);
  padding: 14px 24px;
  height: 48px;
  background: var(--primary);
  color: var(--on-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.25;
}

.btn:hover  { background: var(--primary-active); }
.btn:active { background: var(--primary-active); }

.btn-primary { background: var(--primary); }
.btn-primary:hover { background: var(--primary-active); }

.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--surface-soft); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--hairline);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: transparent; }

.btn-pill {
  border-radius: var(--r-full);
  padding: 10px 20px;
  height: 40px;
  font-size: 0.9rem;
}

.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 16px 28px; height: 52px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; height: 36px; font-size: 0.85rem; }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--r-sm);
  padding: 14px 24px;
  height: 48px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.25;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--canvas);
  color: var(--ink);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1800&q=60') center/cover no-repeat;
  opacity: 0.04;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-points { display: flex; flex-direction: column; gap: 0.6rem; }

.hero-point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--body);
}

.hero-point i { color: var(--primary); width: 1rem; flex-shrink: 0; }

.hero-card {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow);
  color: var(--ink);
  border: 1px solid var(--hairline);
}

.hero-card h2 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-card p { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.5rem; line-height: 1.5; }

/* ---- Key Points Band ---- */
.keypoints-band {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
  padding: 1.4rem 0;
}

.keypoints-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.keypoint-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid var(--hairline);
}

.keypoint-item:first-child { padding-left: 0; }
.keypoint-item:last-child { border-right: none; }

.keypoint-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-full);
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.keypoint-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.keypoint-text span { font-size: 0.78rem; color: var(--muted); }

/* ---- Sections ---- */
.section { padding: var(--sp-section) 0; }
.section-white { background: var(--canvas); }
.section-gray  { background: var(--surface-soft); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.5rem; color: var(--ink); }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 56ch; margin: 0.75rem auto 0; line-height: 1.6; }

.accent-line {
  width: 3rem;
  height: 3px;
  background: var(--primary);
  border-radius: var(--r-full);
  margin: 0.75rem auto 0;
}

/* ---- Service Cards ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--canvas);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline-soft);
}

.service-card:hover { box-shadow: var(--shadow); }

.service-card-img { height: 210px; object-fit: cover; width: 100%; }

.service-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 { color: var(--ink); margin-bottom: 0.4rem; font-size: 0.95rem; }
.service-card-body p  { color: var(--muted); font-size: 0.875rem; flex: 1; line-height: 1.55; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Why Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.why-item {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--hairline-soft);
  transition: box-shadow 0.2s;
}

.why-item:hover { box-shadow: var(--shadow); }

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-full);
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.why-content h3 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--ink); }
.why-content p  { color: var(--muted); font-size: 0.875rem; margin: 0; line-height: 1.55; }

/* ---- Coverage Zones ---- */
.zones-wrap { text-align: center; }

.zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}

.zone-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s;
  cursor: default;
}

.zone-badge:hover { border-color: var(--ink); }
.zone-badge i     { color: var(--primary); font-size: 0.65rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--ink);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1200&q=40') center/cover;
  opacity: 0.07;
}

.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; font-weight: 700; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-banner .btn { background: var(--primary); }
.cta-banner .btn:hover { background: var(--primary-active); }
.cta-banner-btns { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: center; }

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-full);
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item strong { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.1rem; font-weight: 600; }
.contact-info-item a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-info-item span { font-weight: 600; font-size: 1rem; }

/* ---- Forms ---- */
.form-card {
  background: var(--canvas);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--hairline);
}

label { display: grid; gap: 0.3rem; font-weight: 600; font-size: 0.85rem; color: var(--muted); }

input, select, textarea {
  border: 1.5px solid var(--hairline);
  background: var(--canvas);
  border-radius: var(--r-sm);
  padding: 14px 12px;
  height: 52px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.15s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ink);
  border-width: 2px;
}

textarea { resize: vertical; min-height: 110px; height: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.estimate-box {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.estimate-box h2 { color: var(--ink); font-size: 1.1rem; margin-bottom: 0.5rem; }
.estimate-result { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

.hidden { display: none; }
.small-note { color: var(--muted); font-size: 0.83rem; margin-top: 0.5rem; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item.compare-mini {
  cursor: col-resize;
  position: relative;
}

.gallery-item.compare-mini .img-before {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-after-wrap-mini {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

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

.compare-handle-mini {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 4;
}

.compare-handle-mini .compare-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.compare-handle-knob-mini {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.6rem;
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--hairline-soft);
  transition: box-shadow 0.2s;
}

.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.is-fallback-image {
  object-fit: cover;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Compare slider */
.compare {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  cursor: col-resize;
  user-select: none;
}

.compare .img-before {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.img-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

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

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 4;
}

.compare-handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.compare-handle-knob {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.7rem;
}

#compareSlider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
  z-index: 10;
  appearance: none;
}

/* ---- Services Page Detail ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }

.service-detail-img { border-radius: var(--r-md); overflow: hidden; }
.service-detail-img img { width: 100%; height: 320px; object-fit: cover; }
.service-detail-content h2 { color: var(--ink); margin-bottom: 0.75rem; font-size: 1.5rem; }
.service-detail-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--body); }
.feature-list i  { color: var(--primary); font-size: 0.85rem; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink); margin-bottom: 0.5rem; }
.page-hero p { color: var(--muted); font-size: 1rem; margin: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; color: var(--ink); }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-img-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

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

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--canvas);
  color: var(--ink);
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
}

.about-badge strong { display: block; font-size: 2rem; line-height: 1; color: var(--primary); font-weight: 700; }
.about-badge span   { font-size: 0.78rem; color: var(--muted); }
.about-content h2   { color: var(--ink); margin-bottom: 0.75rem; }
.about-content p    { color: var(--muted); font-size: 0.97rem; line-height: 1.65; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--canvas);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline-soft);
}

.stat-item strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat-item span   { font-size: 0.83rem; color: var(--muted); }

/* ---- Footer ---- */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline-soft);
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  display: block;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.footer-brand span { color: var(--primary); }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.footer-socials { display: flex; gap: 0.5rem; }

.footer-social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: var(--r-full);
  background: var(--surface-strong);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.15s;
}

.footer-social-btn:hover { background: var(--primary); color: #fff; }

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 1.1rem;
  margin-top: 0;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover { color: var(--ink); }
.footer-links i { font-size: 0.6rem; color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.footer-contact-item i { color: var(--primary); width: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item a { color: var(--muted); text-decoration: none; }
.footer-contact-item a:hover { color: var(--ink); text-decoration: underline; }

.footer-bottom {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

.footer-bottom a { color: var(--muted-soft); text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ---- Hamburger Button ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--r-sm);
  transition: background 0.15s;
  flex-shrink: 0;
}

.hamburger:hover { background: var(--surface-soft); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-stars { color: var(--ink); font-size: 0.875rem; letter-spacing: 1px; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline-soft);
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author-info strong { display: block; font-size: 0.875rem; color: var(--ink); }
.testimonial-author-info span   { font-size: 0.78rem; color: var(--muted); }

/* ---- Floating call button (mobile) ---- */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(255,56,92,0.4);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.float-call:hover { background: var(--primary-active); transform: scale(1.08); }

/* ---- Scroll-to-top ---- */
#scrollTop {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: var(--shadow);
}

#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover   { background: var(--body); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { padding: 4rem 0 3.5rem; }
  .keypoints-grid { grid-template-columns: repeat(2, 1fr); }
  .keypoint-item { border-right: none; }
  .keypoint-item:nth-child(odd) { border-right: 1px solid var(--hairline); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse .service-detail-img,
  .service-detail.reverse .service-detail-content { order: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 3rem 0; }
  .service-grid { grid-template-columns: 1fr; }
  .keypoints-grid { grid-template-columns: 1fr; }
  .keypoint-item { border-right: none; border-bottom: 1px solid var(--hairline); padding: 0.75rem 0; }
  .keypoint-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .brand { font-size: 1.15rem; }
  .top-bar-wrap { justify-content: center; gap: 1rem; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Mobile nav */
  .hamburger { display: flex; }

  #navMenu {
    display: none;
    position: fixed;
    inset: 0;
    top: 80px;
    background: var(--canvas);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 0.25rem;
    z-index: 99;
    border-top: 1px solid var(--hairline);
    overflow-y: auto;
  }

  #navMenu.nav-open { display: flex; }

  #navMenu a {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
  }

  #navMenu .btn {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .float-call { display: flex; }
  #scrollTop  { bottom: 6rem; right: 1rem; }
}

/* ---- Focus visible ---- */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ---- Prefers reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .compare-handle { display: none; }
}

/* ---- Print ---- */
@media print {
  .site-header, .top-bar, .float-call, #scrollTop, .hero-cta, .cta-banner { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .section { padding: 1.5rem 0; }
}
