/* ============================================
   GESTIOR QUIMICS — World-class design
   ============================================ */

/* ---- RESET & TOKENS ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Vermell corporatiu (del logo) */
  --red:         #c0282b;
  --red-light:   #e53935;  /* alias used by zone/service page templates */
  --red-dk:      #8b1a1c;
  --red-lt:      #e53935;
  --red-bg:      #fff4f4;

  /* Verd corporatiu (fulles del logo) */
  --green:       #5ab344;
  --green-dk:    #3d7d2e;
  --green-bg:    #f1faf0;

  --dark:        #111827;
  --dark-2:      #1f2937;
  --text:        #374151;
  --text-md:     #6b7280;
  --text-soft:   #8b94a4;
  --border:      #e5e7eb;
  --bg:          #f9fafb;
  --paper:       #fcfbfa;
  --panel:       rgba(255,255,255,.78);
  --line:        rgba(17,24,39,.08);
  --white:       #ffffff;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --t:           0.3s ease;
  --fh:          'Montserrat', sans-serif;
  --fb:          'Inter', sans-serif;
  --font-head:   'Montserrat', sans-serif;  /* alias used by zone/service page templates */
  --text-light:  #6b7280;                   /* alias used by zone/service page templates */
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(192,40,43,.055), transparent 26%),
    radial-gradient(circle at 100% 16%, rgba(17,24,39,.05), transparent 22%),
    linear-gradient(180deg, #fffdfa 0%, #ffffff 26%, #fbfaf8 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ---- LAYOUT ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; position: relative; }

/* ---- TYPE ---- */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.section-tag::before {
  content: ''; width: 20px; height: 2px; background: var(--red); border-radius: 2px;
}
.section-title {
  font-family: var(--fh); font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; line-height: 1.12; color: var(--dark);
  margin-bottom: 18px; letter-spacing: -.02em;
  text-wrap: balance;
}
.section-desc {
  font-size: 17px;
  color: var(--text-md);
  line-height: 1.8;
  max-width: 640px;
  text-wrap: pretty;
}
.mobile-scroll-hint {
  display: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-md);
  margin: -8px 0 18px;
}
.section-header {
  text-align: center;
  margin: 0 auto 72px;
  max-width: 760px;
}
.section-header .section-desc { margin: 0 auto; }
.text-accent { color: var(--red); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 14px;
  font-family: var(--fh); font-weight: 700; font-size: 14.5px;
  letter-spacing: .01em;
  transition: var(--t); white-space: nowrap; cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, #cf4133 0%, #b32824 54%, #8f1d1d 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 30px rgba(192,57,43,.28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #d4493a 0%, #ba2b25 54%, #971f1f 100%);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(192,57,43,.34);
}

.btn--outline {
  border: 1.5px solid rgba(17,24,39,.16);
  color: var(--dark);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.btn--outline:hover {
  border-color: rgba(192,40,43,.28);
  color: var(--red);
  background: #fff7f5;
}

.btn--outline-white {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 28px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.42);
}

.btn--lg { padding: 17px 34px; font-size: 15.5px; border-radius: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- ZONE HERO CTA NORMALIZATION ---- */
.zone-hero .zone-cta-row,
.zone-hero > .container > p + div {
  align-items: flex-start !important;
  gap: 16px !important;
}

.zone-hero .zone-cta-row .btn,
.zone-hero > .container > p + div > .btn,
.zone-hero > .container > p + a.btn.btn--lg {
  align-self: flex-start !important;
  min-height: auto !important;
  padding: 17px 34px !important;
  border-radius: 15px !important;
  font-size: 15.5px !important;
}

.zone-hero .zone-cta-row .btn--outline-white,
.zone-hero > .container > p + div > .btn--outline-white {
  padding-inline: 34px !important;
}

.zone-hero > .container > p + div > .zh-stats {
  flex-basis: 100% !important;
  width: 100% !important;
  margin-top: 18px !important;
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--t);
}

.header__top {
  background: linear-gradient(90deg, #111827 0%, #1b2433 100%);
  padding: 7px 0;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.header__top-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.header__top-right { display: flex; align-items: center; gap: 24px; }
.header__top a { color: rgba(255,255,255,.65); transition: color .2s; }
.header__top a:hover { color: white; }
.header__phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--red-lt) !important;
}

.nav {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(252,249,247,.88) 100%);
  backdrop-filter: blur(28px) saturate(1.12);
  border-bottom: 1px solid rgba(255,255,255,.76);
  box-shadow:
    inset 0 -1px 0 rgba(17,24,39,.04),
    0 18px 36px rgba(15,23,42,.06);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled .nav {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,249,247,.93) 100%);
  box-shadow:
    inset 0 -1px 0 rgba(17,24,39,.04),
    0 22px 48px rgba(10,15,30,.10);
}

.nav__inner {
  display: flex; align-items: center; height: 76px; gap: 0;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  padding: 4px 0;
}
.nav__logo img {
  display: block;
  height: 54px;
  width: auto;
  transform: translate3d(0,0,0);
  transform-origin: left center;
  backface-visibility: hidden;
  filter:
    drop-shadow(0 -1px 0 rgba(255,255,255,.56))
    drop-shadow(0 1px 0 rgba(17,24,39,.10))
    drop-shadow(0 8px 12px rgba(15,23,42,.08))
    drop-shadow(0 18px 24px rgba(15,23,42,.10))
    drop-shadow(0 28px 40px rgba(15,23,42,.08));
  transition:
    transform .30s cubic-bezier(.22,1,.36,1),
    filter .30s cubic-bezier(.22,1,.36,1),
    opacity .26s ease;
  will-change: transform, filter;
}
.nav__logo:hover img {
  transform: translate3d(0,-1px,0) scale(1.038);
  filter:
    drop-shadow(0 -1px 0 rgba(255,255,255,.74))
    drop-shadow(0 2px 0 rgba(17,24,39,.14))
    drop-shadow(0 10px 14px rgba(15,23,42,.10))
    drop-shadow(0 22px 30px rgba(15,23,42,.14))
    drop-shadow(0 34px 48px rgba(15,23,42,.12));
}

.nav__menu {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-right: 14px;
  padding: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(248,245,241,.76) 100%);
  border: 1px solid rgba(17,24,39,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 12px 28px rgba(15,23,42,.05);
}

.nav__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 999px;
  transition: var(--t);
}
.nav__link:hover {
  color: var(--red);
  background: rgba(255,244,244,.96);
  box-shadow: inset 0 0 0 1px rgba(192,40,43,.05);
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 14px;
  padding: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(248,245,241,.82) 100%);
  border: 1px solid rgba(17,24,39,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 10px 24px rgba(15,23,42,.05);
}
.nav__lang-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: var(--t);
}
.nav__lang-link:hover {
  color: var(--red);
  background: rgba(255,244,244,.92);
}
.nav__lang-link.is-active {
  color: var(--dark);
  background: rgba(255,255,255,.98);
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.06), 0 8px 18px rgba(15,23,42,.05);
}
.lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.10);
}
.lang-flag--ca {
  background:
    repeating-linear-gradient(
      180deg,
      #f8cf3a 0 2.4px,
      #c8312e 2.4px 4.8px
    );
}
.lang-flag--es {
  background:
    linear-gradient(
      180deg,
      #b71f1f 0 26%,
      #f7cf47 26% 74%,
      #b71f1f 74% 100%
    );
}
.nav__lang-mobile {
  display: none;
}

.nav__cta {
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: 0 16px 34px rgba(192,57,43,.24);
}

@media (max-width: 1180px) {
  .nav__logo {
    padding: 2px 0;
  }
  .nav__logo img { height: 50px; }
  .nav__lang-link {
    padding: 0 10px;
  }
}

@media (max-width: 980px) {
  .nav__logo {
    padding: 0;
  }
  .nav__logo img { height: 48px; }
  .nav__lang {
    margin-right: 10px;
  }
  .nav__lang-link {
    gap: 6px;
    padding: 0 10px;
    font-size: 12px;
  }
}

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: 12px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: rgba(17,24,39,.34);
  backdrop-filter: blur(3px);
  z-index: 89;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
body.menu-open .nav__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-actions { display: none; }
.nav__mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: 14px;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: var(--t);
}
.nav__mobile-action--primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 28px rgba(192,57,43,.18);
}
.nav__mobile-action--secondary {
  background: rgba(17,24,39,.04);
  color: var(--dark);
  border: 1px solid rgba(17,24,39,.08);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-color: var(--dark);
  background-image: url('../pexels-matilda-wormwood-4099263-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 111px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,20,.95) 0%, rgba(10,10,20,.85) 50%, rgba(10,10,20,.60) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -140px;
  top: 18%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,40,43,.24) 0%, rgba(192,40,43,.08) 34%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 88px;
  min-height: calc(100vh - 107px);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 100px; margin-bottom: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.hero__title {
  font-family: var(--fh);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: .94;
  color: #fff;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero__brand {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero__accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero__accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  opacity: .25;
}

.hero__sub {
  font-size: 18px; color: rgba(255,255,255,.78); line-height: 1.72;
  max-width: 560px; margin-bottom: 44px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__actions .btn--wa {
  min-width: 260px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  justify-content: flex-start;
}
.hero__actions .btn--wa:hover {
  color: white;
  border-color: rgba(255,255,255,.32);
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
}

.hero__trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px; border-radius: 100px;
  backdrop-filter: blur(10px);
}
.trust-pill svg { color: #4ade80; flex-shrink: 0; }

/* Esquerra — text blanc forçat */
.hero__left { color: #fff; }

/* Dreta — targeta */
.hero__right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero__card {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(252,249,247,.96) 100%);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 34px 90px rgba(0,0,0,.36);
  position: relative; z-index: 2;
  width: 100%;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(207,65,51,.96), rgba(255,167,141,.55));
}

.hc__top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(17,24,39,.08);
}
.hc__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #16a34a; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22,163,74,.15);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,74,.15); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,.08); }
}
.hc__label { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--dark); }
.hc__sublabel { font-size: 12px; color: var(--text-md); margin-top: 2px; }

.hc__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-bottom: 28px; text-align: center;
}
.hc__stat { padding: 0 12px; }
.hc__stat + .hc__stat { border-left: 1.5px solid var(--border); }
.hc__stat-num {
  font-family: var(--fh); font-size: 28px; font-weight: 900;
  color: var(--red); line-height: 1; margin-bottom: 4px;
}
.hc__stat-label { font-size: 11px; color: var(--text-md); line-height: 1.3; }

.hc__rating {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7f4f1 100%);
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.06);
  padding: 13px 14px;
  margin-bottom: 24px;
}
.hc__stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; white-space: nowrap; flex: 0 0 auto; }
.hc__rating-text { font-size: 12px; color: var(--text-md); line-height: 1.3; flex: 1 1 auto; }
.hc__rating-text strong { color: var(--dark); display: block; font-size: 13px; }

.hc__cta-tel {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 20px;
  background: var(--red); color: white;
  font-family: var(--fh); font-size: 19px; font-weight: 900;
  border-radius: 10px; transition: var(--t); letter-spacing: .01em;
}
.hc__cta-tel:hover {
  background: #a82226;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,40,43,.35);
}
.hc__cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: var(--dark);
  color: white;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  transition: var(--t);
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(13,17,23,.25);
}
.hc__cta-wa:hover {
  transform: translateY(-2px);
  background: #1a2332;
  box-shadow: 0 14px 32px rgba(13,17,23,.35);
}
.hc__cta-wa svg {
  opacity: 1;
}

/* Decoratius */
.hero__deco-circle {
  position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  background: var(--red); opacity: .06;
  right: -80px; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
}
.hero__deco-ring {
  position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  border: 2px solid rgba(192,40,43,.06);
  right: -120px; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
}


/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background:
    radial-gradient(circle at 20% 0%, rgba(192,40,43,.16), transparent 32%),
    linear-gradient(180deg, #0f1624 0%, #0b111d 100%);
  padding: 54px 0 72px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7,11,21,.28);
}

.stat {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--fh); font-size: clamp(38px, 5vw, 56px);
  font-weight: 900; color: var(--red-lt); line-height: 1; margin-bottom: 10px;
}
.stat__label { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 500; }


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background:
    linear-gradient(180deg, rgba(255,250,248,.95) 0%, rgba(249,250,251,.96) 100%);
}

.services .container {
  max-width: 1600px;
}

.services__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf9 100%);
  border-radius: 26px;
  padding: 40px 36px;
  border: 1px solid rgba(17,24,39,.08);
  transition: var(--t); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 16px 34px rgba(15,23,42,.05);
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, rgba(207,65,51,.98), rgba(255,173,145,.45));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  border-color: rgba(255,255,255,.8);
  box-shadow: 0 28px 54px rgba(15,23,42,.12);
  transform: translateY(-8px);
}
.service-card:hover::after { transform: scaleX(1); }

.sc__num {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; color: var(--text-md); margin-bottom: 20px;
}

.sc__icon {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: transform .3s ease;
}
.service-card:hover .sc__icon { transform: scale(1.1) rotate(-3deg); }

.sc__icon--1 { background: #fef2f2; color: var(--red); }
.sc__icon--2 { background: #fff7ed; color: #c2410c; }
.sc__icon--3 { background: var(--green-bg); color: var(--green-dk); }
.sc__icon--4 { background: #eff6ff; color: #1d4ed8; }
.sc__icon--5 { background: #fdf4ff; color: #7e22ce; }
.sc__icon--6 { background: #fff1f2; color: #be123c; }
.sc__icon--7 { background: #ecfdf5; color: #047857; }
.sc__icon--8 { background: #fffbeb; color: #b45309; }

.sc__title {
  font-family: var(--fh); font-size: 20px; font-weight: 800;
  color: var(--dark); margin-bottom: 12px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.sc__desc {
  font-size: 15px; color: var(--text-md); line-height: 1.7; margin-bottom: 22px; flex: 1;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.sc__list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 7px; }
.sc__list li {
  font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 8px;
}
.sc__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 6px;
}

.sc__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--red);
  margin-top: auto; transition: gap .2s;
}
.sc__link:hover { gap: 10px; }

@media (max-width: 1180px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-card {
    padding: 34px 28px;
  }
}

@media (max-width: 980px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ============================================================
   WHY US
   ============================================================ */
.why {
  background:
    radial-gradient(circle at 100% 0%, rgba(192,40,43,.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.why__grid { display: grid; grid-template-columns: 1fr 520px; gap: 96px; align-items: center; }

.why__intro { font-size: 17px; color: var(--text-md); line-height: 1.8; margin-bottom: 44px; }

.why__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.why-feat {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 20px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}
.why-feat:first-child { border-top: 1px solid rgba(17,24,39,.08); }
.wf__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-bg); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf__body h4 {
  font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.wf__body p {
  font-size: 13px; color: var(--text-md); line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

/* Why — visual side */
.why__visual { position: relative; }

.why__bg-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-bg) 0%, transparent 70%);
  pointer-events: none;
}

.why__card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 28px 32px;
  box-shadow: var(--shadow); position: relative; z-index: 1;
}
.why__card--main { margin-bottom: 16px; }
.why__card--small { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why__card--sub {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 24px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
}

.wc__label { font-size: 12px; font-weight: 600; color: var(--text-md); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.wc__value { font-family: var(--fh); font-size: 42px; font-weight: 900; color: var(--red); line-height: 1; }
.wc__sub { font-size: 13px; color: var(--text-md); margin-top: 4px; }

.wc__cert {
  display: flex; align-items: center; gap: 16px;
}
.wc__cert-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; flex-shrink: 0;
}
.wc__cert-text strong { font-family: var(--fh); font-size: 15px; color: var(--dark); display: block; }
.wc__cert-text span { font-size: 13px; color: var(--text-md); }

.wc__stars { font-size: 24px; color: #f59e0b; letter-spacing: 2px; margin-bottom: 6px; white-space: nowrap; }
.wc__stars-sub { font-size: 13px; color: var(--text-md); }


/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background:
    radial-gradient(circle at top left, rgba(192,40,43,.18), transparent 26%),
    linear-gradient(180deg, #0f1624 0%, #0b111d 100%);
  padding: 104px 0;
}
.process .section-tag { color: #fc8b7e; }
.process .section-title { color: white; }

.process__steps {
  display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 0;
  align-items: center; margin-top: 64px;
}

.process-step {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px; padding: 44px 36px;
  text-align: center; position: relative;
  transition: var(--t);
  box-shadow: 0 22px 50px rgba(5,10,20,.18);
}
.process-step:hover { background: rgba(255,255,255,.07); border-color: rgba(192,57,43,.4); }

.ps__num {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--red-lt); text-transform: uppercase;
  margin-bottom: 20px;
}

.ps__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(192,57,43,.15); color: var(--red-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; border: 1px solid rgba(192,57,43,.2);
}

.process-step h3 { font-family: var(--fh); font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

.process-arrow {
  text-align: center; font-size: 20px; color: rgba(252,139,126,.72);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.process-arrow svg { color: rgba(192,57,43,.5); }


/* ============================================================
   ZONES
   ============================================================ */
.zones {
  background:
    linear-gradient(180deg, rgba(249,250,251,.94) 0%, rgba(255,250,248,.92) 100%);
}

.zones__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.zone-card {
  display: flex; flex-direction: column; background: linear-gradient(180deg, #ffffff 0%, #fdfaf8 100%);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 24px; padding: 36px 28px;
  transition: var(--t); position: relative; overflow: hidden;
  box-shadow: 0 14px 30px rgba(15,23,42,.05);
}
.zone-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.zone-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.zone-card:hover::before { transform: scaleX(1); }

.zc__letter {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--red-bg); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-weight: 900; font-size: 18px;
  margin-bottom: 20px; transition: var(--t);
  border: 1.5px solid rgba(192,57,43,.15);
}
.zone-card:hover .zc__letter { background: var(--red); color: white; }

.zone-card h3 {
  font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.zone-card p {
  font-size: 14px; color: var(--text-md); line-height: 1.65; margin-bottom: 20px; flex: 1;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.zc__link { font-size: 13px; font-weight: 700; color: var(--red); }


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background:
    radial-gradient(circle at top right, rgba(192,40,43,.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
}

.faq__wrap { max-width: 800px; margin: 0 auto; }
.faq__inner { max-width: 980px; }

.faq__list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 34px rgba(15,23,42,.04);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: rgba(192,57,43,.34);
  box-shadow: 0 0 0 3px rgba(192,57,43,.08), 0 18px 36px rgba(15,23,42,.06);
}

.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 28px; text-align: left;
  font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--dark);
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }

.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--text-md); transition: transform .3s ease, color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }

.faq-a { display: none; padding: 0 28px 22px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--text-md); line-height: 1.75; padding-top: 12px; border-top: 1px solid var(--border); }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: transparent;
  padding: 20px 0 104px;
  position: relative;
  overflow: visible;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(0,0,0,.07); pointer-events: none;
}

.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding: 48px 52px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #b32924 0%, #cf4333 56%, #7d1b22 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 70px rgba(192,57,43,.24);
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.cta-banner__text h2 {
  font-family: var(--fh); font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; color: white; line-height: 1.12; margin-bottom: 12px;
  letter-spacing: -.02em;
}
.cta-banner__text h2 span { color: rgba(255,255,255,.75); }
.cta-banner__text p { font-size: 17px; color: rgba(255,255,255,.8); }

.cta-banner__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.cta-banner__actions .btn--primary {
  background: white; color: var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.cta-banner__actions .btn--primary:hover { background: #f8f8f8; transform: translateY(-2px); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background:
    linear-gradient(180deg, rgba(249,250,251,.84) 0%, rgba(255,255,255,.96) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info .section-title { margin-top: 10px; margin-bottom: 16px; }
.contact__desc { font-size: 16px; color: var(--text-md); line-height: 1.75; margin-bottom: 28px; }

.contact__tel-big {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fh); font-size: 36px; font-weight: 900;
  color: var(--red); margin-bottom: 40px; transition: color .2s;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.contact__tel-big:hover { color: #a82226; }
.contact__tel-big svg { flex-shrink: 0; }

.contact__details { display: flex; flex-direction: column; gap: 0; }

.cd {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cd:first-child { border-top: 1px solid var(--border); }

.cd__icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--red-bg); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 2px;
}

.cd__body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.cd__label { font-size: 11px; font-weight: 700; color: var(--text-md); text-transform: uppercase; letter-spacing: .08em; }
.cd__value { font-size: 15px; color: var(--dark); font-weight: 500; overflow-wrap: break-word; word-break: break-word; }
a.cd__value { transition: color .2s; }
a.cd__value:hover { color: var(--red); }

/* Form */
.contact__form-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,249,246,.98) 100%);
  border-radius: 28px;
  padding: 48px 44px;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 26px 64px rgba(15,23,42,.08);
}
.form-title {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: var(--dark); margin-bottom: 6px;
}
.form-subtitle { font-size: 14px; color: var(--text-md); margin-bottom: 32px; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 14px; font-size: 15px; font-family: var(--fb);
  color: var(--dark); background: rgba(255,255,255,.82); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-optional {
  border: 1px dashed rgba(148, 163, 184, .45);
  border-radius: 12px;
  padding: 8px 10px 0;
  margin-bottom: 12px;
  background: rgba(248, 250, 252, .35);
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.form-optional summary {
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  margin-bottom: 8px;
  padding: 3px 28px 5px 18px;
  position: relative;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.form-optional summary::-webkit-details-marker { display: none; }
.form-optional summary::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(34,197,94,.9);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(34,197,94,.32);
  animation: gqPulse 1.9s ease-in-out infinite;
}
.form-optional summary::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
}
.form-optional:hover {
  border-color: rgba(34, 197, 94, .42);
  background: rgba(248, 250, 252, .65);
  box-shadow: 0 8px 16px rgba(15, 23, 42, .06);
}
.form-optional:hover summary {
  color: #0f172a;
  background: rgba(255,255,255,.8);
}
.form-optional[open] {
  border-color: rgba(34, 197, 94, .55);
  background: rgba(240, 253, 244, .33);
  box-shadow: 0 10px 18px rgba(22, 163, 74, .09);
}
.form-optional[open] summary {
  color: #14532d;
  background: rgba(255,255,255,.86);
}
.form-optional[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
  border-color: #16a34a;
}
.form-optional[open] summary::before {
  animation: none;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}
.form-optional > * {
  min-width: 0;
}
@keyframes gqPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.32); }
  70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red); background: white;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group textarea { resize: vertical; }

.form-check { flex-direction: row !important; align-items: flex-start; gap: 10px !important; }
.form-check input { width: 17px; height: 17px; accent-color: var(--red); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 13px !important; font-weight: 400 !important; color: var(--text-md) !important; cursor: pointer; }
.form-check label a { color: var(--red); text-decoration: underline; }

/* Premium assist (home form) */
.form-assist {
  margin: 6px 0 2px;
  border: 1px solid rgba(192, 57, 43, .16);
  border-radius: 14px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,246,.95));
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
  max-width: 100%;
  box-sizing: border-box;
}
.form-assist__head {
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 12px;
  padding: 10px 10px 8px;
  background: rgba(255,255,255,.78);
}
.form-assist__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 6px;
}
.form-assist__title {
  display: block;
  font-family: var(--fh);
  font-size: 22px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 4px;
}
.form-assist__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5b6576;
}
.form-assist__row--actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-width: 0;
}
.form-assist__btn,
.form-assist__link {
  border-radius: 12px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
  min-width: 0;
}
.form-assist__btn {
  color: #fff;
  background: linear-gradient(140deg, #cf3f33, #a91f24);
  box-shadow: 0 10px 20px rgba(169,31,36,.25);
}
.form-assist__link {
  background: #fff;
  color: #1f2937;
  border-color: rgba(15,23,42,.14);
}
.form-assist__btn:hover,
.form-assist__link:hover {
  transform: translateY(-1px);
}
.form-assist__btn-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .9;
  margin-bottom: 3px;
}
.form-assist__btn-title {
  display: block;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}
.form-assist__btn-meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: .88;
}
.form-assist__upload {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(148,163,184,.3);
  border-radius: 11px;
  padding: 8px;
  background: rgba(255,255,255,.85);
  min-width: 0;
}
.form-assist__file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-assist__upload-btn {
  border: 1px solid rgba(15,23,42,.14);
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: #0f172a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
  cursor: pointer;
}
.form-assist__upload-name {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.form-assist__upload-hint {
  margin: 8px 2px 0;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}
.form-assist__analyzed {
  margin: 8px 0 0;
  border: 1px solid rgba(34,197,94,.22);
  background: rgba(236,253,245,.92);
  color: #166534;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}
.form-assist.has-analysis {
  border-color: rgba(34,197,94,.28);
  box-shadow: 0 10px 22px rgba(22,163,74,.09);
}
.form-assist__status {
  margin-top: 8px;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.45;
  color: #4b5563;
  background: rgba(148,163,184,.12);
}
.form-assist__status.is-ok {
  color: #14532d;
  background: rgba(34,197,94,.14);
}
.form-assist__status.is-error {
  color: #7f1d1d;
  background: rgba(239,68,68,.14);
}
.form-assist__photo {
  margin-top: 8px;
  border: 1px solid rgba(192,57,43,.2);
  background: rgba(255,255,255,.86);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-assist__photo-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.14);
}
.form-assist__photo-text {
  font-size: 12px;
  color: #334155;
  font-weight: 600;
  flex: 1;
}
.form-assist__photo-change {
  border: 1px solid rgba(15,23,42,.16);
  background: #fff;
  color: #1f2937;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 11px;
  cursor: pointer;
}
.form-detected {
  margin-top: 9px;
  display: none;
}
.form-detected.is-visible {
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,.22);
  background: linear-gradient(180deg, rgba(240,253,244,.92), rgba(236,253,245,.86));
  padding: 10px;
}
.form-detected__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.form-detected__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #16a34a;
  font-weight: 800;
}
.form-detected__name {
  font-size: 18px;
  line-height: 1.2;
  color: #14532d;
}
.form-detected__action {
  border: 1px solid rgba(15,23,42,.15);
  background: rgba(255,255,255,.85);
  color: #1f2937;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  cursor: pointer;
}
.form-detected__meta {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.form-detected__meta span {
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  padding: 5px 9px;
  font-size: 11px;
  color: #374151;
}
.form-detected__note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #4b5563;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a0f1e; padding-top: 80px; }
.footer {
  background:
    radial-gradient(circle at top right, rgba(192,40,43,.14), transparent 26%),
    linear-gradient(180deg, #0b111d 0%, #080d18 100%);
}

.footer__inner {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; margin: 18px 0 22px; max-width: 300px; }

.footer-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 800; color: var(--red-lt);
  transition: color .2s;
}
.footer-tel:hover { color: white; }

.footer__col h4 {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__col a:hover { color: white; }

.footer__bottom { padding: 24px 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 4px; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.25); }


/* ============================================================
   SECTORS
   ============================================================ */
.sectors { background: var(--dark); }
.sectors .section-tag { color: #fc8b7e; }
.sectors .section-title { color: white; }
.sectors .section-desc { color: rgba(255,255,255,.6); }

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.sector-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s ease;
}
.sector-card:hover { background: rgba(255,255,255,.07); border-color: rgba(192,57,43,.3); }
.sector-card:hover::before { transform: scaleY(1); }

.sector-card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(192,57,43,.15); color: var(--red-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border: 1px solid rgba(192,57,43,.2);
}

.sector-card h3 {
  font-family: var(--fh); font-size: 15px; font-weight: 700;
  color: white; margin-bottom: 8px;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.sector-card p {
  font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.sectors__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  padding: 34px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 48px rgba(5,10,20,.16);
  text-align: center;
}
.sectors__cta p { color: rgba(255,255,255,.7); font-size: 15px; }
.sectors__cta strong { color: white; }


/* ============================================================
   PEST IDENTIFIER
   ============================================================ */
.pests {
  background:
    linear-gradient(180deg, rgba(249,250,251,.96) 0%, rgba(255,251,248,.96) 100%);
}

.pests__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pests__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pest-card {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  text-align: center; padding: 28px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf8 100%);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 22px; transition: var(--t);
  cursor: pointer;
  min-height: 210px;
  height: 100%;
  box-shadow: 0 14px 30px rgba(15,23,42,.05);
}
.pest-card:hover {
  border-color: rgba(192,40,43,.22);
  box-shadow: 0 24px 46px rgba(15,23,42,.1);
  transform: translateY(-4px);
}

.pest-card__img {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(192,40,43,.1), rgba(192,40,43,.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .3s ease;
}
.pest-card:hover .pest-card__img { transform: scale(1.15); }

.pest-card h3 {
  font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.pest-card span {
  font-size: 12px; color: var(--red); font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}


/* ============================================================
   DETAIL PAGES
   ============================================================ */
.detail-hero { background: var(--dark); padding: 140px 0 80px; }
.detail-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; flex-wrap: wrap; }
.detail-breadcrumb a { color: rgba(255,255,255,.5); }
.detail-breadcrumb a:hover { color: white; }
.detail-breadcrumb span { opacity: .4; }
.detail-breadcrumb .is-current { color: rgba(255,255,255,.8); opacity: 1; }
.detail-hero h1 { font-family: var(--fh); font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: white; margin-bottom: 20px; line-height: 1.06; }
.detail-hero p { font-size: 18px; color: rgba(255,255,255,.72); max-width: 720px; line-height: 1.7; margin-bottom: 36px; }
.detail-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.detail-content { padding: 80px 0; }
.detail-content .container { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 80px; }
.detail-body h2 { font-family: var(--fh); font-size: 28px; font-weight: 800; color: var(--dark); margin: 40px 0 16px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.detail-body ul { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.detail-body li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.65; }
.detail-body li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.detail-body a { color: var(--red); font-weight: 600; }
.detail-body a:hover { color: var(--red-dk); }
.detail-sidebar { position: sticky; top: 100px; align-self: start; }
.detail-sidebar-card {
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 20px;
}
.detail-sidebar-card h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.detail-sidebar-card p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 24px; line-height: 1.65; }
.detail-sidebar-card .btn { width: 100%; justify-content: center; }
.detail-sidebar-tel { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 800; color: var(--red-light); margin-bottom: 16px; }
.detail-link-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.detail-link-box h4 { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.detail-link-list { display: flex; flex-direction: column; gap: 10px; }
.detail-link-list a { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.detail-link-list a span { color: var(--red); font-weight: 700; }
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.detail-mini-card {
  display: block;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--t);
}
.detail-mini-card:hover {
  border-color: rgba(192,57,43,.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.detail-mini-card strong {
    display: block;
    font-family: var(--fh);
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
  }
.detail-mini-card span { font-size: 13px; color: var(--text-light); line-height: 1.55; }

/* ============================================================
   EDITORIAL CONTENT LAYOUT
   ============================================================ */
.service-content .service-body > p,
.detail-content .detail-body > p,
.zone-content .zone-body > p {
  max-width: 72ch;
}

.service-content .service-body > ul,
.detail-content .detail-body > ul,
.zone-content .zone-body > ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  gap: 14px;
}

.service-content .service-body > ul > li,
.detail-content .detail-body > ul > li,
.zone-content .zone-body > ul > li {
  position: relative;
  display: block !important;
  padding: 18px 20px 18px 52px !important;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 247, 243, 0.98) 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  color: var(--text) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  gap: 0 !important;
}

.service-content .service-body > ul > li::before,
.detail-content .detail-body > ul > li::before,
.zone-content .zone-body > ul > li::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.08);
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-top: 0 !important;
}

.service-content .service-body > ul > li strong,
.detail-content .detail-body > ul > li strong,
.zone-content .zone-body > ul > li strong {
  display: block !important;
  margin: 0 0 6px !important;
  font-family: var(--fh);
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1.4 !important;
  color: var(--dark) !important;
}

.service-content .service-body > ul > li a,
.detail-content .detail-body > ul > li a,
.zone-content .zone-body > ul > li a {
  overflow-wrap: anywhere;
}

.services-mini a,
.detail-link-list a {
  display: flex !important;
  align-items: center !important;
  position: relative;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 12px 14px 12px 16px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f2 100%) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.services-mini a::before,
.detail-link-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #d85c4f);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.services-mini a:hover,
.detail-link-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(192, 57, 43, 0.22);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.services-mini a span,
.detail-link-list a span {
  color: inherit;
  font-weight: 700;
}

/* ============================================================
   EDITORIAL DETAIL POLISH
   ============================================================ */
.service-content article.service-body,
.detail-content article.detail-body,
.zone-content article.zone-body {
  max-width: 860px;
}

.service-content .service-body > h2,
.detail-content .detail-body > h2,
.zone-content .zone-body > h2 {
  max-width: 24ch;
  margin: 56px 0 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  letter-spacing: -0.02em;
  line-height: 1.1;
  scroll-margin-top: 120px;
}

.service-content .service-body > h2:first-child,
.detail-content .detail-body > h2:first-child,
.zone-content .zone-body > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.service-content .service-body > p,
.detail-content .detail-body > p,
.zone-content .zone-body > p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-md);
}

.service-content .service-body > ul:has(> li > strong),
.detail-content .detail-body > ul:has(> li > strong),
.zone-content .zone-body > ul:has(> li > strong) {
  margin: 24px 0 34px;
  gap: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.service-content .service-body > ul:has(> li > strong) > li,
.detail-content .detail-body > ul:has(> li > strong) > li,
.zone-content .zone-body > ul:has(> li > strong) > li {
  display: block !important;
  position: relative;
  min-width: 0;
  padding: 18px 0 18px 36px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 1.78;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.service-content .service-body > ul:has(> li > strong) > li:last-child,
.detail-content .detail-body > ul:has(> li > strong) > li:last-child,
.zone-content .zone-body > ul:has(> li > strong) > li:last-child {
  border-bottom-color: rgba(17, 24, 39, 0.05) !important;
}

.service-content .service-body > ul:has(> li > strong) > li::before,
.detail-content .detail-body > ul:has(> li > strong) > li::before,
.zone-content .zone-body > ul:has(> li > strong) > li::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #d85c4f);
  box-shadow: 0 0 0 5px rgba(192, 57, 43, 0.08);
  color: transparent;
  font-size: 0;
}

.service-content .service-body > ul:has(> li > strong) > li strong,
.detail-content .detail-body > ul:has(> li > strong) > li strong,
.zone-content .zone-body > ul:has(> li > strong) > li strong {
  display: inline !important;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.service-content .service-body > ul:has(> li > strong) > li em,
.detail-content .detail-body > ul:has(> li > strong) > li em,
.zone-content .zone-body > ul:has(> li > strong) > li em {
  display: inline !important;
  font-style: italic;
  color: var(--text-md);
}

.service-content .service-body > ul:not(:has(> li > strong)) > li,
.detail-content .detail-body > ul:not(:has(> li > strong)) > li,
.zone-content .zone-body > ul:not(:has(> li > strong)) > li {
  padding: 18px 20px 18px 52px !important;
}

.sidebar > div:not(.sidebar-card),
.detail-sidebar > div:not(.detail-sidebar-card) {
  padding: 28px 24px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 242, 0.96) 100%) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05) !important;
}

.sidebar > div:not(.sidebar-card) h3,
.sidebar > div:not(.sidebar-card) h4,
.detail-sidebar > div:not(.detail-sidebar-card) h3,
.detail-sidebar > div:not(.detail-sidebar-card) h4 {
  margin-bottom: 14px !important;
  font-family: var(--fh) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  letter-spacing: -0.01em;
}

.nearby-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.nearby-links a,
.nearby-links span {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 12px 14px 12px 16px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f2 100%) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04) !important;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text) !important;
}

.nearby-links a::before,
.nearby-links span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #d85c4f);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.nearby-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(192, 57, 43, 0.22) !important;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  color: var(--red) !important;
}

.comarca-grid,
.munis-grid {
  gap: 12px !important;
}

.comarca-item,
.muni-item {
  display: flex !important;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f2 100%) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
}

a.comarca-item:hover {
  border-color: rgba(192, 57, 43, 0.22) !important;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}




/* ============================================================
   PAGE LAYOUT STABILITY
   ============================================================ */
img, svg { max-width: 100%; }
html, body { overflow-x: hidden; }
.service-body, .detail-body, .zone-body,
.sidebar, .detail-sidebar { min-width: 0; }
.service-body > *, .detail-body > *, .zone-body > * { max-width: 100%; }
.service-content .container,
.zone-content .container {
  grid-template-columns: minmax(0, 1fr) 320px !important;
  gap: 56px !important;
}
.service-body ul,
.detail-body ul,
.zone-body ul {
  gap: 14px;
}
.service-body li,
.detail-body li,
.zone-body li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  line-height: 1.7;
}
.service-body li::before,
.detail-body li::before,
.zone-body li::before {
  margin-top: 2px;
}
.service-body li strong,
.detail-body li strong,
.zone-body li strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--fh);
  font-size: 15px;
  line-height: 1.45;
}
.service-body li a,
.detail-body li a,
.zone-body li a {
  overflow-wrap: anywhere;
}
.sidebar,
.detail-sidebar {
  width: 100%;
}
.sidebar-card,
.detail-sidebar-card,
.detail-link-box {
  box-shadow: 0 18px 40px rgba(10,15,30,.08);
}
.detail-card-grid {
    margin-top: 20px;
    align-items: stretch;
  }

  .service-body > .page-inline-figure,
  .detail-body > .page-inline-figure {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-inline-figure {
    margin: 34px auto 42px;
    position: relative;
    isolation: isolate;
    overflow: visible;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .page-inline-figure::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: -20px;
    height: 28%;
    border-radius: 999px;
    background:
      radial-gradient(ellipse at center, rgba(15, 23, 42, 0.24) 0%, rgba(15, 23, 42, 0.12) 42%, rgba(15, 23, 42, 0) 76%);
    filter: blur(18px);
    pointer-events: none;
    z-index: -2;
  }

  .page-inline-figure::after {
    content: "";
    position: absolute;
    inset: 12px -12px -10px 12px;
    border-radius: 34px;
    background:
      linear-gradient(145deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.28) 52%, rgba(229,57,53,0.10) 100%);
    opacity: 0.95;
    pointer-events: none;
    z-index: -1;
  }

  .page-inline-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transform: perspective(1800px) rotateX(1.1deg) translateY(0) scale(1.006);
    transform-origin: center;
    filter: saturate(1.05) contrast(1.03);
    box-shadow:
      0 30px 72px rgba(8, 15, 30, 0.16),
      0 14px 32px rgba(8, 15, 30, 0.10),
      0 1px 0 rgba(255,255,255,0.52) inset;
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  }

  .page-inline-figure:hover img {
    transform: perspective(1800px) rotateX(0deg) translateY(-4px) scale(1.012);
    filter: saturate(1.07) contrast(1.04);
    box-shadow:
      0 36px 84px rgba(8, 15, 30, 0.18),
      0 18px 36px rgba(8, 15, 30, 0.12),
      0 1px 0 rgba(255,255,255,0.58) inset;
  }
.detail-mini-card {
  min-height: 100%;
}
.detail-mini-card strong {
  line-height: 1.35;
}
.float-cta {
  max-width: calc(100vw - 32px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background:
    linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
}

.testi__carousel {
  --testi-gap: 24px;
  --testi-visible: 3;
  margin-bottom: 48px;
}

.testi__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.testi__nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.1);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--t);
}

.testi__nav:hover {
  color: var(--red);
  border-color: rgba(192,57,43,.18);
  box-shadow: 0 18px 34px rgba(15,23,42,.12);
  transform: translateY(-2px);
}

.testi__nav.is-disabled {
  opacity: .4;
  pointer-events: none;
  transform: none;
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
}

.testi__viewport {
  overflow: hidden;
}

.testi__track {
  display: flex;
  gap: var(--testi-gap);
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  touch-action: pan-y;
}

.testi__track .testi-card {
  flex: 0 0 calc((100% - (var(--testi-visible) - 1) * var(--testi-gap)) / var(--testi-visible));
  min-width: 0;
}

.testi-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 26px; padding: 36px 32px;
  transition: var(--t); position: relative;
  box-shadow: 0 16px 34px rgba(15,23,42,.05);
}
.testi-card::before {
  content: '"';
  position: absolute; top: 20px; right: 28px;
  font-size: 80px; color: var(--red); opacity: .08;
  font-family: Georgia, serif; line-height: 1;
}
.testi-card:hover {
  box-shadow: 0 28px 54px rgba(15,23,42,.12);
  transform: translateY(-4px);
  border-color: rgba(192,57,43,.2);
}

.testi-card__stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; white-space: nowrap; }

.testi-card__text {
  font-size: 15px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.testi-card__author { display: flex; align-items: center; gap: 14px; }

.testi-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 14px; color: var(--dark); font-family: var(--fh); overflow-wrap: anywhere; }
.testi-card__author span { font-size: 12px; color: var(--text-md); overflow-wrap: anywhere; }

.testi__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.testi__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(17,24,39,.16);
  padding: 0;
  transition: var(--t);
}

.testi__dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--red) 0%, #e85b48 100%);
  box-shadow: 0 8px 18px rgba(192,57,43,.24);
}

.testi__bottom { display: flex; justify-content: center; }
.testi__rating-global {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 40px;
  background: linear-gradient(180deg, #fff6f3 0%, #fffafa 100%);
  border: 1px solid rgba(192,57,43,.18);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(15,23,42,.05);
}
.tg__stars { font-size: 28px; color: #f59e0b; letter-spacing: 3px; white-space: nowrap; }
.tg__info strong { display: block; font-family: var(--fh); font-size: 24px; font-weight: 900; color: var(--dark); }
.tg__info span { font-size: 13px; color: var(--text-md); }


/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: white;
  font-family: var(--fh); font-weight: 700; font-size: 14px;
  padding: 15px 26px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(192,57,43,.5);
  transition: transform .2s, box-shadow .2s;
}
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(192,57,43,.6); }


.mobile-dock { display: none; }
.mobile-dock.is-hidden {
  opacity: 0 !important;
  transform: translateY(16px);
  pointer-events: none;
}
body.menu-open .mobile-dock {
  opacity: 0 !important;
  transform: translateY(16px);
  pointer-events: none;
}
.mobile-dock__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-dock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 34px rgba(10,15,30,.16);
}
.mobile-dock__btn--primary {
  background: linear-gradient(135deg, #cb3f30, #a52d22);
  color: white;
}
.mobile-dock__btn--secondary {
  background: rgba(255,255,255,.98);
  color: var(--dark);
  border: 1px solid rgba(17,24,39,.08);
}

/* WhatsApp button variant */
.btn--wa {
  background: var(--dark); color: white; border: 2px solid var(--dark);
}
.btn--wa:hover { background: #1a2332; border-color: #1a2332; color: white; }
.hero__actions .btn--wa__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: white;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.hero__actions .btn--wa__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.15;
}
.hero__actions .btn--wa__eyebrow {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.hero__actions .btn--wa__label {
  font-size: 15px;
  font-weight: 800;
  color: white;
}

/* Header WhatsApp link */
.header__whatsapp {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
  color: rgba(255,255,255,.76) !important;
  letter-spacing: .01em;
  transition: color .2s ease, opacity .2s ease;
}
.header__whatsapp:hover {
  color: #f4e5d3 !important;
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__visual { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-content .container,
  .zone-content .container,
  .detail-content .container {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 40px !important;
  }
}

@media (max-width: 1024px) {
  /* Hero stacks vertically */
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 0;
    gap: 60px;
  }
  .hero__right { justify-content: flex-start; }
  .hero__card { max-width: 440px; }
  .hero__deco-circle, .hero__deco-ring { display: none; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .zones__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }

  .process__steps { grid-template-columns: 1fr; gap: 20px; }
  .process-arrow { transform: rotate(90deg); }

  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .pests__grid { grid-template-columns: repeat(3, 1fr); }
  .testi__carousel {
    --testi-gap: 20px;
  }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .service-content .container,
  .zone-content .container,
  .detail-content .container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .sidebar,
  .detail-sidebar {
    position: static !important;
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .service-content .service-body > h2,
  .detail-content .detail-body > h2,
  .zone-content .zone-body > h2 {
    max-width: none;
    margin: 44px 0 16px;
    padding-top: 18px;
  }

  .service-content .service-body > p,
  .detail-content .detail-body > p,
  .zone-content .zone-body > p {
    font-size: 15.5px;
  }

  .service-content .service-body > ul:has(> li > strong) > li,
  .detail-content .detail-body > ul:has(> li > strong) > li,
  .zone-content .zone-body > ul:has(> li > strong) > li {
    position: relative;
    display: block !important;
    padding: 18px 0 18px 24px !important;
    gap: 0 !important;
  }

  .service-content .service-body > ul:has(> li > strong) > li::before,
  .detail-content .detail-body > ul:has(> li > strong) > li::before,
  .zone-content .zone-body > ul:has(> li > strong) > li::before {
    position: absolute;
    left: 0;
    top: 24px;
    margin-top: 0;
  }

  .service-content .service-body > ul:has(> li > strong) > li strong,
  .detail-content .detail-body > ul:has(> li > strong) > li strong,
  .zone-content .zone-body > ul:has(> li > strong) > li strong {
    margin-bottom: 6px !important;
  }

  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .section-header { text-align: left; margin-bottom: 32px; }
  .section-header .section-desc { margin: 0; max-width: none; }
  .section-tag { margin-bottom: 10px; }
  .section-title { font-size: clamp(28px, 8vw, 36px); line-height: 1.08; letter-spacing: -.03em; }
  .section-desc { font-size: 15px; line-height: 1.7; }
  .mobile-scroll-hint { display: block; }

  .header {
    padding: 12px 14px 0;
  }
  .header__top { display: none; }
  .nav {
    position: relative;
    z-index: 90;
    margin: 0;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.72);
    background: rgba(255,255,255,.9);
    box-shadow: 0 18px 36px rgba(10,15,30,.10);
    overflow: visible;
  }
  .header.scrolled .nav {
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 42px rgba(10,15,30,.14);
  }
  .nav__inner {
    height: 68px;
    padding: 0 12px;
  }
  .nav__logo { padding: 0; }
  .nav__logo img {
    height: 44px;
    filter:
      drop-shadow(0 -1px 0 rgba(255,255,255,.52))
      drop-shadow(0 1px 0 rgba(143,29,29,.14))
      drop-shadow(0 8px 12px rgba(15,23,42,.08))
      drop-shadow(0 14px 20px rgba(120,25,25,.14));
  }
  .nav__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 3;
    max-height: min(72dvh, calc(100dvh - 118px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    border: 1px solid rgba(229,231,235,.95);
    border-radius: 22px;
    box-shadow: 0 26px 54px rgba(0,0,0,.18);
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__link {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav__mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(229,231,235,.9);
  }
  .nav__lang {
    display: none;
  }
  .nav__lang-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(229,231,235,.9);
    list-style: none;
  }
  .nav__lang-mobile .nav__lang-link {
    min-height: 48px;
    justify-content: center;
    background: rgba(17,24,39,.03);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 14px;
    font-size: 14px;
  }
  .nav__lang-mobile .nav__lang-link.is-active {
    background: rgba(255,244,244,.98);
    color: var(--red);
    box-shadow: inset 0 0 0 1px rgba(192,40,43,.08);
  }
  .nav__cta { display: none; }
  .nav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    margin-left: 14px;
    margin-right: 2px;
    border-radius: 14px;
    border: 1px solid rgba(17,24,39,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.9) 100%);
    box-shadow: 0 12px 22px rgba(15,23,42,.08);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .nav__hamburger span {
    width: 20px;
    height: 2.5px;
  }
  .nav__backdrop { display: block; inset: 0; }

  .hero { padding-top: 88px; }
  .hero__layout { padding: 26px 0 18px; gap: 20px; min-height: auto; }
  .hero__badge {
    margin-bottom: 16px;
    padding: 8px 14px;
    font-size: 11px;
  }
  .hero__brand { margin-bottom: 8px; }
  .hero__title { font-size: clamp(34px, 10vw, 46px); line-height: .98; margin-bottom: 16px; }
  .hero__sub { font-size: 15px; line-height: 1.62; margin-bottom: 20px; }
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }
  .hero__actions .btn {
    justify-content: center;
    min-height: 56px;
  }
  .hero__actions .btn--wa {
    min-width: 0;
    justify-content: center;
  }
  .hero__actions .btn--wa__text { align-items: center; }
  .hero__trust {
    gap: 8px;
    margin-bottom: 2px;
  }
  .trust-pill {
    font-size: 12px;
    padding: 8px 12px;
  }
  .hero__right {
    margin-top: 0;
  }
  .hero__card {
    padding: 22px 20px;
    border-radius: 26px;
    box-shadow: 0 22px 50px rgba(10,15,30,.24);
  }
  .hero__card::before { height: 3px; }
  .hc__top {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .hc__stats { margin-bottom: 0; }
  .hc__stat { padding: 0 8px; }
  .hc__stat-num { font-size: 22px; }
  .hc__stat-label { font-size: 10px; }
  .hc__rating,
  .hc__cta-wa,
  .hero__deco-circle,
  .hero__deco-ring {
    display: none;
  }
  .contact__tel-big { font-size: 28px; }

  .mobile-carousel {
    display: grid !important;
    grid-auto-flow: column;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin-inline: -20px;
    padding: 4px 20px 18px;
    align-items: stretch;
    touch-action: auto;
    will-change: scroll-position;
  }
  .mobile-carousel::-webkit-scrollbar { display: none; }
  .mobile-carousel > * {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
    min-height: 100%;
    align-self: stretch;
    touch-action: auto;
  }
  .mobile-carousel .reveal,
  .mobile-carousel > .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .mobile-carousel--services { grid-auto-columns: minmax(88%, 1fr); gap: 14px; padding-right: 28px; }
  .mobile-carousel--sectors { grid-auto-columns: minmax(84%, 1fr); gap: 12px; padding-right: 28px; }
  .mobile-carousel--pests { grid-auto-columns: minmax(82%, 1fr); gap: 14px; padding-right: 28px; }
  .mobile-carousel--zones { grid-auto-columns: minmax(88%, 1fr); gap: 14px; padding-right: 28px; }
  .testi__carousel {
    --testi-gap: 14px;
    margin-bottom: 34px;
  }
  .testi__controls {
    display: none;
  }
  .testi__dots {
    margin-top: 18px;
  }

  .services__grid { grid-template-columns: none; }
  .service-card {
    padding: 26px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(17,24,39,.06);
    height: 100%;
  }
  .service-card::after { height: 4px; transform: scaleX(1); opacity: .95; }
  .sc__num { margin-bottom: 14px; }
  .sc__icon { width: 58px; height: 58px; margin-bottom: 18px; }
  .sc__title { font-size: 22px; margin-bottom: 10px; }
  .sc__desc { font-size: 15px; margin-bottom: 18px; }
  .sc__list { margin-bottom: 20px; }
  .sc__link { font-size: 15px; }
  .sectors__grid { grid-template-columns: none; }
  .sector-card {
    padding: 22px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    height: 100%;
  }
  .sector-card h3 { font-size: 16px; }
  .sector-card p { font-size: 13px; line-height: 1.6; }
  .pests__grid { grid-template-columns: none; }
  .pest-card {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    min-height: 196px;
    padding: 22px 18px 18px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(17,24,39,.06);
  }
  .pest-card__img {
    width: 58px;
    height: 58px;
    margin-bottom: 6px;
    border-radius: 16px;
    font-size: 30px;
  }
  .pest-card h3 {
    width: 100%;
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.18;
    text-wrap: balance;
  }
  .pest-card span {
    margin-top: auto;
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }
  .pests__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .pests__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .zones__grid { grid-template-columns: none; gap: 14px; }
  .zone-card {
    padding: 24px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(17,24,39,.05);
    height: 100%;
  }
  .zone-card h3 { font-size: 18px; }
  .zone-card p { font-size: 13px; margin-bottom: 16px; }
  .detail-content .container { grid-template-columns: 1fr !important; gap: 32px !important; }
  .service-content .container,
  .zone-content .container { grid-template-columns: 1fr !important; gap: 32px !important; }
  .detail-sidebar,
  .sidebar {
    position: static !important;
    max-width: none;
    order: 2;
    margin-top: 8px;
  }
  .service-body,
  .detail-body,
  .zone-body { order: 1; }
  .detail-card-grid { grid-template-columns: 1fr 1fr; }
  .section-title,
  .service-body h2,
  .detail-body h2,
  .zone-body h2 { margin-bottom: 12px; }
  .service-body p,
  .detail-body p,
  .zone-body p { margin-bottom: 14px; }
  .service-body li,
  .detail-body li,
  .zone-body li { gap: 10px; }
  .why__intro { font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
  .why__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
    margin: 0 0 26px;
    padding: 0;
  }
  .why-feat {
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    scroll-snap-align: none;
  }
  .why-feat:first-child { border-top: 1px solid var(--border); }
  .wf__icon { width: 42px; height: 42px; border-radius: 10px; }
  .process { padding: 56px 0; }
  .process__steps { margin-top: 28px; }
  .process-step { padding: 28px 22px; text-align: left; }
  .process-step h3 { font-size: 18px; margin-bottom: 8px; }
  .process-step p { font-size: 14px; line-height: 1.65; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a { padding: 0 20px 18px; }
  .testi__bottom { margin-bottom: 24px; }
  .cta-banner { padding: 18px 0 56px; }
  .cta-banner__inner {
    padding: 40px 28px;
    border-radius: 24px;
    gap: 28px;
    margin: 0 4px;
  }
  .cta-banner__text {
    padding-block: 4px;
  }
  .cta-banner__text h2 {
    margin-bottom: 14px;
  }
  .cta-banner__text p { font-size: 15px; line-height: 1.65; }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .sidebar-card,
  .detail-sidebar-card {
    padding: 28px 24px;
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 34%),
      linear-gradient(180deg, #131b2c 0%, #0f1624 100%);
    box-shadow: 0 22px 48px rgba(10,15,30,.18);
  }
  .sidebar-card h3,
  .detail-sidebar-card h3 { font-size: 20px; }
  .sidebar-card p,
  .detail-sidebar-card p { font-size: 15px; line-height: 1.7; }
  .sidebar-card .btn + div,
  .detail-sidebar-card .btn + div { margin: 14px 0 !important; }
  .page-inline-figure {
      margin: 24px 0 30px;
      border-radius: 24px;
    }
  .service-hero,
  .detail-hero { padding: 108px 0 44px !important; }
  .zone-hero .container { padding-top: 118px !important; padding-bottom: 52px !important; }
  .zone-hero h1,
  .detail-hero h1,
  .service-hero h1 { font-size: clamp(30px, 9vw, 42px) !important; margin-bottom: 16px !important; }
  .zone-hero p,
  .detail-hero p,
  .service-hero p { font-size: 16px !important; margin-bottom: 24px !important; }
  .detail-hero__actions,
  .service-hero .btn--lg,
  .detail-hero .btn--lg { width: 100%; }
  .detail-hero__actions .btn,
  .service-hero .btn--lg,
  .detail-hero .btn--lg { justify-content: center; }

  body.has-mobile-dock { padding-bottom: 108px; }
  .float-cta { display: none !important; }
  .mobile-dock {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 95;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 40px rgba(10,15,30,.18);
    transition: opacity .22s ease, transform .22s ease;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact__tel-big { font-size: 28px; }
  .contact__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .cd {
    padding: 16px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
  }
  .cd:first-child { border-top: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap {
    padding: 28px 20px;
    margin: 0 4px 4px;
    border-radius: 24px;
  }
  .form-assist { padding: 12px; }
  .form-assist__row--actions { grid-template-columns: 1fr; }
  .form-assist__btn,
  .form-assist__link { padding: 11px 12px; }
  .form-assist__upload {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .form-assist__upload-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .form-assist__upload-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }

  .footer { padding-top: 56px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer__brand p { max-width: none; margin: 14px 0 18px; }
  .footer__col ul { gap: 8px; }

  .float-cta span { display: none; }
  .float-cta { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .header {
      padding: 10px 12px 0;
    }
  .mobile-scroll-hint {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 11px;
  }
  .mobile-carousel { margin-inline: -16px; padding: 4px 16px 16px; }
  .mobile-carousel--services { grid-auto-columns: minmax(92%, 1fr); padding-right: 20px; }
  .mobile-carousel--sectors { grid-auto-columns: minmax(90%, 1fr); padding-right: 20px; }
  .mobile-carousel--pests { grid-auto-columns: minmax(86%, 1fr); padding-right: 20px; }
  .mobile-carousel--zones { grid-auto-columns: minmax(92%, 1fr); padding-right: 20px; }
  .testi__carousel {
    --testi-gap: 12px;
  }
  .zones__grid { grid-template-columns: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat {
    padding: 18px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
  }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat__num { font-size: 34px; }
  .stat__label { font-size: 12px; line-height: 1.35; }
  .sectors__grid { grid-template-columns: none; }
  .pests__grid { grid-template-columns: none; }
  .pest-card {
    min-height: 188px;
    padding: 20px 16px 16px;
    gap: 6px;
  }
  .pest-card__img {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .pest-card h3 {
    font-size: 17px;
  }
  .pest-card span {
    font-size: 12.5px;
  }
  .detail-card-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .nav__menu { top: calc(100% + 10px); max-height: min(72dvh, calc(100dvh - 104px)); }
  .nav__backdrop { inset: 0; }
  .nav__inner { height: 64px; padding: 0 10px; }
  .nav__logo img { height: 40px; }
  .nav__hamburger { margin-left: 12px; margin-right: 0; width: 44px; height: 44px; }
  .nav__mobile-actions { grid-template-columns: 1fr; }
  .hero { padding-top: 84px; }
  .hero__layout { padding: 22px 0 16px; gap: 18px; }
  .hero__title { font-size: clamp(30px, 10vw, 38px); }
  .hero__sub { font-size: 15px; line-height: 1.6; }
  .hero__actions .btn { min-height: 54px; }
  .hero__card { padding: 20px 18px; }
  .hc__top { margin-bottom: 14px; padding-bottom: 12px; }
  .hc__stats { margin-bottom: 0; }
  .hc__stat { padding: 0 8px; }
  .hc__stat-num { font-size: 20px; }
  .hc__cta-wa,
  .hc__cta-tel { font-size: 16px; padding: 14px 16px; }
  .trust-pill { width: calc(50% - 4px); justify-content: center; }
  .hero__trust .trust-pill:nth-child(3) { display: none; }
  .why__features { margin-bottom: 22px; }
  .detail-card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88%, 1fr);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 16px -16px 0;
    padding: 0 16px 8px;
  }
  .detail-card-grid::-webkit-scrollbar { display: none; }
  .detail-card-grid > * { scroll-snap-align: start; }
  .contact__details { grid-template-columns: 1fr; }
  .service-hero,
  .detail-hero { padding: 98px 0 34px !important; }
  .zone-hero .container { padding-top: 104px !important; padding-bottom: 40px !important; }
  .service-body h2,
  .detail-body h2,
  .zone-body h2 { font-size: 24px; }
  .service-body p,
  .detail-body p,
  .zone-body p { font-size: 15px; }
  .sidebar-card,
  .detail-sidebar-card,
  .contact__form-wrap {
    padding: 22px 18px;
    margin: 0 2px;
  }
  .contact__form-wrap {
    padding: 16px 12px;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
  }
  .form { gap: 12px; }
  .form-group { gap: 5px; min-width: 0; }
  .form-group label {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
    padding: 10px 11px;
    border-radius: 11px;
    font-size: 16px;
  }
  .form-group textarea { min-height: 96px; }
  .form-optional {
    padding: 7px 8px 0;
    margin-bottom: 8px;
    border-radius: 10px;
  }
  .form-optional summary {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 7px;
    padding-right: 24px;
  }
  .form-assist {
    margin-top: 4px;
    padding: 8px;
    border-radius: 12px;
  }
  .form-assist__head {
    padding: 8px 8px 7px;
    border-radius: 10px;
  }
  .form-assist__title { font-size: 18px; }
  .form-assist__body { font-size: 12px; }
  .form-assist__row--actions { gap: 6px; }
  .form-assist__btn,
  .form-assist__link {
    padding: 9px 10px;
    border-radius: 10px;
  }
  .form-assist__btn-title { font-size: 16px; }
  .form-assist__upload {
    padding: 7px;
    border-radius: 10px;
  }
  .form-assist__status,
  .form-assist__photo {
    font-size: 11px;
    padding: 7px 8px;
    border-radius: 9px;
  }
  .service-card,
  .zone-card,
  .pest-card,
  .sector-card { border-radius: 16px; }
  .mobile-dock {
    left: 12px;
    right: 12px;
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 6px));
    padding: 8px;
    border-radius: 18px;
  }
  .mobile-dock__inner { gap: 8px; }
  .mobile-dock__btn { min-height: 50px; padding: 12px 14px; font-size: 13px; border-radius: 14px; }
  body.has-mobile-dock { padding-bottom: 104px; }
  .testi__rating-global {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 20px;
    margin: 0 6px;
  }
  .cta-banner__inner {
    margin: 0 2px;
    padding: 30px 20px;
    gap: 24px;
  }
  .cta-banner__text {
    padding-block: 6px;
  }
  .cta-banner__text h2 {
    margin-bottom: 12px;
    line-height: 1.08;
  }
  .cta-banner__text p {
    line-height: 1.7;
  }
}

/* ============================================================
   CAROUSEL DOTS
   ============================================================ */
.carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(17,24,39,.14);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .25s, width .25s, border-radius .25s;
}
.carousel-dot.active {
  background: linear-gradient(90deg, #cf4133, #991f22);
  width: 26px;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .carousel-dots { display: flex; }
}

/* ============================================================
   GOOGLE MAPS EMBED
   ============================================================ */
.contact__map {
  margin-top: 20px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 16px 34px rgba(15,23,42,.05);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

/* li dins nav__menu per a mobile actions */
li.nav__mobile-actions { list-style: none; padding-left: 0; }

/* ============================================================
   LIST ALIGNMENT — Fix checkmark width in flex layout
   Zone pages use display:flex (from their inline <style>).
   We ensure the ::before checkmark has a consistent fixed width.
   ============================================================ */
article.zone-body li::before {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================================
   ZONE/COMARCA SECTION PADDING — not a .section element
   ============================================================ */
.zone-content { padding: 80px 0; }

@media (max-width: 768px) {
  .zone-content { padding: 56px 0; }
}
@media (max-width: 480px) {
  .zone-content { padding: 44px 0; }
  .munis-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .zh-stat { padding-right: 18px !important; margin-right: 18px !important; }
  .zh-stat strong { font-size: 22px !important; }
}

/* ============================================================
   BREAKPOINT 360px — Very small phones
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }
  .zone-content { padding: 36px 0; }

  /* Nav */
  .header { padding: 8px 10px 0; }
  .nav__inner { height: 60px; padding: 0 8px; }
  .nav__logo img { height: 36px; }
  .nav__menu { top: calc(100% + 8px); max-height: min(72dvh, calc(100dvh - 92px)); }
  .nav__backdrop { inset: 0; }
  .nav__hamburger { margin-left: 10px; width: 42px; height: 42px; }

  /* Hero */
  .hero { padding-top: 78px; }
  .hero__layout { padding: 22px 0 16px; gap: 18px; }
  .hero__badge { font-size: 10px; padding: 6px 12px; letter-spacing: .04em; margin-bottom: 16px; }
  .hero__title { font-size: clamp(27px, 10.5vw, 34px); }
  .hero__sub { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
  .hero__card { padding: 18px 15px; }
  .hc__top { margin-bottom: 16px; padding-bottom: 14px; }
  .hc__stat-num { font-size: 19px; }
  .hc__cta-wa, .hc__cta-tel { font-size: 15px; padding: 12px 14px; }
  .hero__trust .trust-pill:nth-child(n+3) { display: none; }

  /* Stats strip */
  .stat__num { font-size: 28px; }
  .stat__label { font-size: 11px; line-height: 1.3; }
  .stat { padding: 14px 10px; }

  /* Process */
  .process-step { padding: 20px 16px; }
  .process-step h3 { font-size: 16px; }

  /* CTA Banner */
  .cta-banner__inner { padding: 24px 16px; border-radius: 18px; gap: 20px; }
  .cta-banner__text h2 { font-size: clamp(21px, 8vw, 28px); }
  .cta-banner__text p { font-size: 14px; }

  /* FAQ */
  .faq-q { padding: 15px 16px; font-size: 14px; }
  .faq-a { padding: 0 16px 14px; }
  .faq-a p { font-size: 14px; }

  /* Contact */
  .contact__tel-big { font-size: 22px; gap: 10px; }
  .contact__form-wrap { padding: 14px 10px; margin: 0; border-radius: 14px; }
  .form-title { font-size: 19px; }

  /* Footer */
  .footer__inner { gap: 18px; }
  .footer-tel { font-size: 17px; }

  /* Zone/comarca pages */
  .zone-hero .container { padding-top: 92px !important; padding-bottom: 30px !important; }
  .zone-body h2, .detail-body h2, .service-body h2 { font-size: 20px !important; }
  .munis-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .zh-stat { padding-right: 14px !important; margin-right: 14px !important; }
  .zh-stat strong { font-size: 20px !important; }
  .zh-stat span { font-size: 10px !important; }

  /* Sidebar i formulari */
  .sidebar-card, .detail-sidebar-card { padding: 20px 16px; }
  .page-inline-figure {
      margin: 22px 0 26px;
      border-radius: 22px;
    }

  /* Mobile dock */
  .mobile-dock { left: 10px; right: 10px; padding: 7px; bottom: max(10px, calc(env(safe-area-inset-bottom) + 4px)); }
  .mobile-dock__btn { min-height: 48px; font-size: 12px; padding: 10px 12px; }
  body.has-mobile-dock { padding-bottom: 98px; }
}

.carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 18px auto 28px;
  position: relative;
  z-index: 2;
}
.carousel-dots + .testi__bottom {
  margin-top: 0;
}
.testimonials .carousel-dots {
  margin-top: 10px;
  margin-bottom: 26px;
}
