:root {
  --ink: #071111;
  --ink-2: #101b1d;
  --panel: #132020;
  --panel-2: #0b1717;
  --text: #f7fbf6;
  --muted-light: #b8c6c2;
  --muted: #536260;
  --line: #dce3e1;
  --paper: #ffffff;
  --paper-soft: #f6f8f7;
  --yellow: #ffd21a;
  --yellow-2: #f4b900;
  --green: #014441;
  --green-2: #0f6a60;
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

section[id] {
  scroll-margin-top: 96px;
}

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

a {
  color: inherit;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: .5rem;
  z-index: 30;
  transform: translateY(-140%);
  padding: .6rem .8rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 74px;
  padding: 0 clamp(1rem, 5vw, 4rem);
  color: #fff;
  background: rgba(7, 17, 17, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: .15rem;
  text-decoration: none;
}

.brand img {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
}

.brand span {
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  font-size: .94rem;
  font-weight: 800;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--yellow);
}

.menu-button {
  display: none;
}

.phone-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  max-width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
}

.header-phone {
  display: grid;
  grid-template-columns: 1.05rem auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: start;
  column-gap: .55rem;
  row-gap: .08rem;
  min-width: 194px;
  padding: .7rem 1.05rem;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(255, 210, 26, .18);
}

.header-phone svg {
  grid-row: 1 / span 2;
  grid-column: 1;
  position: static;
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.header-phone strong,
.header-phone small {
  grid-column: 2;
}

.header-phone small {
  font-size: .72rem;
}

.button {
  padding: .95rem 1.15rem;
}

.button-xl {
  min-height: 58px;
  padding: 1rem 1.35rem;
  font-size: 1.02rem;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  box-shadow: 0 18px 34px rgba(255, 210, 26, .22);
}

.button-muted {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.button-secondary:hover {
  border-color: rgba(8, 42, 60, .28);
  transform: translateY(-1px);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .45);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,17,.98) 0%, rgba(7,17,17,.92) 42%, rgba(7,17,17,.24) 72%, rgba(7,17,17,.8) 100%),
    radial-gradient(circle at 24% 20%, rgba(255,210,26,.2), transparent 34%),
    linear-gradient(135deg, #071111, #102321);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.hero-proof,
.section-kicker {
  margin: 0 0 .9rem;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.9rem);
  line-height: .9;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-subline {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: #e8f1ef;
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  max-width: 790px;
  margin-top: clamp(2rem, 5vw, 4.4rem);
}

.hero-trust span {
  position: relative;
  padding-left: 1.6rem;
  color: #eaf4f1;
  font-size: .88rem;
  font-weight: 800;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 210, 26, .12);
}

.hero-image {
  position: relative;
  z-index: 1;
  min-height: 610px;
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.problem-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(160px, 1fr)) .8fr;
  gap: 1rem;
  align-items: stretch;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  color: #fff;
  background: linear-gradient(90deg, #06100f, #0d2a25);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.problem-title h2,
.problem-title p {
  margin: 0;
  line-height: 1.05;
}

.problem-title h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
}

.problem-title p {
  margin-top: .25rem;
  color: var(--muted-light);
  font-size: 1.15rem;
  font-weight: 800;
}

.problem-item {
  display: grid;
  gap: .35rem;
  padding: .6rem .7rem;
  color: #fff;
  text-decoration: none;
}

.problem-item svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--yellow);
}

.problem-item strong {
  font-size: 1rem;
}

.problem-item span {
  color: var(--muted-light);
  font-size: .9rem;
}

.strip-call {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.strip-call small {
  font-weight: 800;
}

.strip-call strong {
  font-size: 1.15rem;
}

.strip-call span {
  font-size: 1.45rem;
  font-weight: 950;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.local-copy h2,
.proof-copy h2,
.contact-band h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.3vw, 4.2rem);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.section-heading p:not(.section-kicker),
.local-copy p,
.proof-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1380px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  gap: .9rem;
  min-height: 245px;
  padding: 1.35rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1,68,65,.35);
  box-shadow: 0 20px 46px rgba(7,17,17,.12);
}

.service-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--green);
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.service-card ul {
  display: grid;
  gap: .35rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 800;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--yellow);
}

.service-card span {
  align-self: end;
  color: var(--green);
  font-weight: 900;
}

.process-section {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1rem, 5vw, 4rem);
  color: #fff;
  background:
    linear-gradient(rgba(7,17,17,.92), rgba(7,17,17,.92)),
    url("assets/elektro-service-1.jpg") center/cover;
}

.light h2 {
  color: #fff;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1160px;
  padding: 0;
  margin: 2.5rem auto 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2rem;
  height: 1px;
  background: rgba(255,255,255,.35);
}

.process-list li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .7rem;
  text-align: center;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 1.35rem;
  font-weight: 950;
}

.process-list strong {
  font-size: 1rem;
}

.process-list p {
  max-width: 230px;
  margin: 0;
  color: var(--muted-light);
  font-size: .93rem;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
  min-height: 520px;
  background: #eef5f6;
}

.local-copy {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  background: #fff;
}

.place-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.5rem 0 1.8rem;
}

.place-links a,
.place-links span {
  display: inline-flex;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-weight: 850;
  font-size: .9rem;
}

.map-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #d8e8e6;
}

.leaflet-service-map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.leaflet-service-map .leaflet-control-attribution {
  font-size: .68rem;
}

.cu-map-marker {
  display: grid;
  place-items: center;
}

.cu-map-marker span {
  display: block;
  min-width: 11px;
  min-height: 11px;
  border: 3px solid rgba(7, 17, 17, .9);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.cu-map-marker-main span {
  min-width: 16px;
  min-height: 16px;
  border-color: var(--yellow);
  background: var(--ink);
  box-shadow: 0 0 0 7px rgba(255, 210, 26, .25), 0 12px 32px rgba(0, 0, 0, .32);
}

.cu-map-marker-far span {
  background: var(--green);
}

.cu-map-label {
  border: 0;
  border-radius: 6px;
  padding: .22rem .45rem;
  color: #fff;
  background: rgba(7, 17, 17, .92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  font: 900 .78rem/1.1 var(--font);
}

.cu-map-label::before {
  display: none;
}

.cu-map-label-main {
  color: var(--ink);
  background: var(--yellow);
}

.map-overlay,
.map-open {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.map-overlay {
  max-width: 300px;
  padding: 1rem 1.1rem;
  color: #fff;
  background: rgba(7,17,17,.92);
  backdrop-filter: blur(8px);
}

.map-overlay strong,
.map-overlay span {
  display: block;
}

.map-overlay strong {
  margin-bottom: .35rem;
  color: var(--yellow);
  font-size: 1rem;
}

.map-overlay span {
  color: rgba(255,255,255,.84);
  line-height: 1.45;
  font-weight: 750;
}

.map-overlay-main {
  top: 1.25rem;
  left: 1.25rem;
}

.map-overlay-route {
  right: 1.25rem;
  top: 1.25rem;
}

.map-open {
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  text-decoration: none;
  font-weight: 950;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  background: #f7faf9;
}

.social-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(7,17,17,.16);
}

.social-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.social-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7,17,17,.72);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.request-snapshot {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 210, 26, .12), transparent 34%),
    linear-gradient(145deg, #071111, #102320 58%, #071111);
  box-shadow: 0 24px 70px rgba(7,17,17,.18);
}

.request-snapshot-head,
.request-snapshot-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.request-snapshot-head span {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.request-snapshot-head strong {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.05;
  text-align: right;
}

.request-snapshot-main {
  display: grid;
  gap: 1.1rem;
}

.request-snapshot-main p {
  max-width: 620px;
  margin: 0;
  color: #e7f2ef;
  font-size: 1.08rem;
  font-weight: 750;
}

.request-snapshot-main ul {
  display: grid;
  gap: .75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.request-snapshot-main li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .25rem .85rem;
  align-items: center;
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
}

.request-snapshot-main li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.request-snapshot-main li strong {
  color: #fff;
  font-size: 1.03rem;
}

.request-snapshot-main li small {
  color: var(--muted-light);
  font-weight: 750;
}

.request-snapshot-foot {
  padding-top: .4rem;
  border-top: 1px solid rgba(255,255,255,.14);
}

.request-snapshot-foot strong {
  color: var(--yellow);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.request-snapshot-foot span {
  max-width: 230px;
  color: var(--muted-light);
  text-align: right;
  font-weight: 800;
}

.social-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .96;
}

.social-copy {
  padding-right: clamp(0rem, 8vw, 6rem);
}

.social-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.social-card {
  display: grid;
  gap: .5rem;
  min-height: 156px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(7,17,17,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1,68,65,.28);
  box-shadow: 0 22px 52px rgba(7,17,17,.12);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
}

.social-instagram .social-icon {
  color: #fff;
  background: linear-gradient(135deg, #ef5da8, #f9b24e 70%, #ffd21a);
}

.social-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-card strong {
  font-size: 1.08rem;
}

.social-card small {
  color: var(--muted);
  font-weight: 800;
}

.social-posts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.4rem;
}

.social-posts span {
  display: inline-flex;
  padding: .55rem .75rem;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: .9rem;
  font-weight: 900;
}

.quick-whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: .85rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(7,17,17,.08);
}

.quick-whatsapp div {
  display: grid;
  gap: .2rem;
}

.quick-whatsapp strong {
  font-size: 1.08rem;
}

.quick-whatsapp span {
  color: var(--muted);
  font-weight: 800;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, .52fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  color: #fff;
  background: linear-gradient(135deg, #071111, #162322);
}

.proof-copy p {
  color: var(--muted-light);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}

blockquote::before {
  content: "“";
  color: var(--yellow);
  font-size: 3.4rem;
  line-height: .6;
  font-weight: 950;
}

blockquote p {
  margin: .2rem 0 1rem;
  color: #fff;
  font-weight: 750;
}

blockquote cite {
  color: var(--muted-light);
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 2rem;
  max-width: 1250px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem clamp(1rem, 5vw, 4rem);
  color: var(--ink);
  background: linear-gradient(90deg, var(--yellow), #ffe45b);
}

.contact-band h2 {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.contact-band p {
  margin: .35rem 0 0;
  color: rgba(7,17,17,.74);
  font-weight: 800;
}

.dark-phone {
  min-width: 260px;
  padding: 1rem 1.4rem;
  color: var(--yellow);
  background: var(--ink);
  font-size: 1.25rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(150px, .55fr));
  gap: 2rem;
  padding: clamp(3rem, 5vw, 4rem) clamp(1rem, 5vw, 4rem);
  color: #fff;
  background: #071111;
}

.site-footer img {
  width: 170px;
  height: auto;
}

.site-footer p {
  max-width: 310px;
  color: var(--muted-light);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: .55rem;
}

.site-footer strong {
  color: var(--yellow);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer span {
  color: var(--muted-light);
}

.mobile-call {
  display: none;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,17,17,.97), rgba(7,17,17,.78)),
    image-set(
      url("assets/hero-no-face-1100.avif") type("image/avif"),
      url("assets/hero-no-face-1100.webp") type("image/webp"),
      url("assets/hero-no-face-1600.jpg") type("image/jpeg")
    ) center right/cover;
}

.page-hero-content {
  max-width: 780px;
}

.page-hero p {
  color: #e6efed;
  font-size: 1.15rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,17,17,.96), rgba(7,17,17,.78)),
    image-set(
      url("assets/hero-no-face-1100.avif") type("image/avif"),
      url("assets/hero-no-face-1100.webp") type("image/webp"),
      url("assets/hero-no-face-1600.jpg") type("image/jpeg")
    ) center right/cover;
}

.contact-hero-copy {
  max-width: 820px;
}

.contact-hero h1,
.lead-form-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: .94;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.contact-hero p:not(.section-kicker) {
  max-width: 690px;
  color: #e6efed;
  font-size: 1.13rem;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.6rem;
}

.contact-paths a {
  display: grid;
  gap: .35rem;
  min-height: 128px;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.contact-paths strong {
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1.1;
}

.contact-paths span {
  color: #e6efed;
  font-size: .92rem;
  line-height: 1.35;
}

.contact-signal {
  display: grid;
  gap: .85rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.contact-signal strong {
  color: var(--yellow);
  font-size: 1.2rem;
}

.contact-signal span {
  position: relative;
  padding-left: 1.35rem;
  color: #eef7f4;
  font-weight: 800;
}

.contact-signal span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--yellow);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1280px;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1280px;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.appointment-copy {
  align-self: start;
  display: grid;
  gap: 1rem;
}

.appointment-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.appointment-copy p,
.appointment-copy li {
  color: var(--muted);
}

.appointment-copy ul {
  display: grid;
  gap: .7rem;
  padding-left: 1.1rem;
  margin: 0;
  font-weight: 800;
}

.appointment-form {
  align-self: start;
}

.lead-form,
.lead-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 55px rgba(7,17,17,.08);
}

.job-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1320px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
  border: 1px solid rgba(255, 210, 26, .25);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.job-strip h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1;
}

.job-strip p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
}

.job-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1240px;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
}

.job-facts {
  display: grid;
  gap: .8rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 17, 17, .08);
}

.job-facts strong {
  color: var(--green);
}

.lead-form {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1rem, 3vw, 1.8rem);
}

.lead-form-head {
  max-width: 760px;
}

.lead-form-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.lead-form-head p,
.form-note,
.lead-side p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: .45rem;
  min-width: 0;
}

.lead-form label span,
.lead-form legend {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 950;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .82rem .9rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(255, 210, 26, .38);
  border-color: var(--green);
}

.lead-form fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
}

.lead-form fieldset legend {
  padding: 0 .3rem;
}

.lead-form fieldset label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 850;
}

.lead-form fieldset input {
  width: auto;
}

.calendar-picker {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.calendar-head strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 950;
  text-transform: capitalize;
}

.calendar-nav {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 950;
  cursor: pointer;
}

.calendar-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .35rem;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  text-align: center;
}

.calendar-day {
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.calendar-day:not(:disabled):hover,
.calendar-day:not(:disabled):focus-visible {
  border-color: var(--green);
  outline: 3px solid rgba(255, 210, 26, .34);
}

.calendar-day.is-selected {
  border-color: var(--yellow);
  color: #071111;
  background: var(--yellow);
  box-shadow: 0 10px 22px rgba(255, 210, 26, .25);
}

.calendar-day.is-disabled {
  color: rgba(7, 17, 17, .28);
  background: #eef3f1;
  cursor: not-allowed;
}

.calendar-day-empty {
  border: 0;
  background: transparent;
}

.calendar-selected {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.calendar-selected.is-error {
  color: #9b1c1c;
}

.slot-picker label {
  min-height: 2.75rem;
  padding: .65rem .75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.slot-picker label:has(input:checked) {
  border-color: var(--yellow);
  background: rgba(255, 210, 26, .18);
}

.form-wide,
.lead-form fieldset,
.lead-preview,
.lead-actions,
.form-note {
  grid-column: 1 / -1;
}

.optional-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.optional-details summary,
.lead-preview summary {
  cursor: pointer;
  font-weight: 950;
}

.optional-details summary {
  padding: .95rem 1rem;
  color: var(--green);
}

.optional-details label {
  padding: 0 1rem 1rem;
}

.lead-preview {
  display: grid;
  gap: .6rem;
  padding: 1rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

.lead-preview summary {
  color: var(--yellow);
}

.lead-preview pre {
  max-height: 260px;
  overflow: auto;
  margin: 0;
  white-space: pre-wrap;
  color: #edf6f3;
  font: inherit;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.form-note {
  margin: 0;
  font-size: .92rem;
  font-weight: 800;
}

.lead-side {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: .85rem;
  padding: 1.25rem;
}

.lead-side h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1240px;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
}

.content-layout h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.content-layout h3 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.content-layout p,
.content-layout li {
  color: var(--muted);
}

.content-layout li + li {
  margin-top: .55rem;
}

.side-cta {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.side-cta p {
  color: var(--muted-light);
  margin: 0;
}

.breadcrumb {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-weight: 900;
  font-size: .88rem;
}

.breadcrumb a {
  color: var(--yellow);
  text-decoration: none;
}

.article-hub {
  max-width: 1320px;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
}

.hub-intro {
  max-width: 850px;
  margin-bottom: 2rem;
}

.hub-intro h1,
.hub-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 1;
}

.hub-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-card {
  display: grid;
  align-content: start;
  gap: .75rem;
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.article-card:hover {
  border-color: rgba(1,68,65,.35);
  box-shadow: 0 18px 42px rgba(7,17,17,.1);
}

.article-card small {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-card h2,
.article-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card span {
  align-self: end;
  color: var(--green);
  font-weight: 950;
}

.article-body {
  max-width: 760px;
}

.article-body .lead {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.content-insert {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.content-insert h2 {
  margin-top: 0;
}

.check-panel,
.local-faq {
  margin: 1.5rem 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 17, 17, .06);
}

.check-panel strong {
  display: block;
  margin-bottom: .7rem;
  color: var(--green);
  font-weight: 950;
}

.faq-mini details,
.local-faq details {
  border-top: 1px solid var(--line);
  padding: .85rem 0;
}

.faq-mini details:first-of-type,
.local-faq details:first-of-type {
  border-top: 0;
}

.faq-mini summary,
.local-faq summary {
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.project-proof-grid article {
  display: grid;
  align-content: start;
  gap: .7rem;
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.project-proof-grid article strong {
  color: var(--yellow);
  font-size: 1.15rem;
}

.project-proof-grid article p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.map-fallback {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 2rem;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, #e7f1ee, #fff7c7);
}

.toc-box,
.note-box,
.related-box {
  margin: 2rem 0;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.side-cta .related-box {
  color: var(--ink);
}

.toc-box strong,
.note-box strong,
.related-box strong {
  display: block;
  margin-bottom: .65rem;
  color: var(--ink);
}

.toc-box a,
.related-box a {
  display: block;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.toc-box a + a,
.related-box a + a {
  margin-top: .4rem;
}

.term-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  padding: 0;
  list-style: none;
}

.term-list li {
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.term-list strong {
  display: block;
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.phone-float,
.whatsapp-float,
.chat-launcher {
  position: fixed;
  right: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  cursor: pointer;
}

.phone-float {
  display: none;
  bottom: 1.1rem;
  width: 58px;
  min-height: 54px;
  padding: .75rem;
  color: var(--ink);
  background: var(--yellow);
}

.phone-float strong {
  display: none;
}

.phone-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.whatsapp-float {
  bottom: 1.1rem;
  width: 58px;
  min-height: 54px;
  padding: .75rem;
  color: #06120c;
  background: #25d366;
}

.whatsapp-float strong {
  display: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.phone-float-icon,
.whatsapp-float-icon,
.chat-launcher-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.phone-float-icon {
  color: var(--ink);
}

.whatsapp-float-icon {
  color: #25d366;
  background: #fff;
}

.phone-float-icon svg,
.whatsapp-float-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.chat-widget {
  position: fixed;
  right: 1.1rem;
  bottom: 5.35rem;
  z-index: 65;
}

.chat-launcher {
  position: static;
  min-height: 54px;
  padding: .62rem .78rem .62rem .62rem;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .18);
}

.chat-launcher:hover {
  transform: translateY(-2px);
}

.chat-launcher-mark {
  color: var(--ink);
  background: var(--yellow);
  font-size: .82rem;
  letter-spacing: .03em;
}

.chat-launcher-copy {
  display: grid;
  gap: .02rem;
  text-align: left;
  line-height: 1.05;
}

.chat-launcher-copy small {
  display: none;
  color: var(--muted-light);
  font-size: .72rem;
  font-weight: 800;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 4.7rem;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
  width: min(380px, calc(100vw - 2rem));
  max-height: min(610px, calc(100vh - 8rem));
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(7, 17, 17, .12);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  background: var(--ink);
}

.chat-panel-head div {
  display: grid;
  gap: .12rem;
}

.chat-panel-head strong {
  line-height: 1.1;
}

.chat-panel-head small {
  color: var(--muted-light);
  font-weight: 750;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: .65rem;
  padding: 1rem;
  overflow-y: auto;
  background: var(--paper-soft);
}

.chat-message {
  max-width: 92%;
  padding: .75rem .85rem;
  border-radius: var(--radius);
  font-size: .94rem;
  line-height: 1.42;
}

.chat-message a {
  color: var(--green);
  font-weight: 950;
}

.chat-message-bot {
  position: relative;
  justify-self: start;
  margin-left: 2.1rem;
  max-width: calc(92% - 2.1rem);
  background: #fff;
  border: 1px solid var(--line);
}

.chat-message-bot::before {
  content: "CU";
  position: absolute;
  left: -2.1rem;
  top: .15rem;
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: .64rem;
  font-weight: 950;
}

.chat-message-user {
  justify-self: end;
  color: #fff;
  background: var(--green);
}

.chat-quick {
  display: flex;
  gap: .45rem;
  padding: .8rem 1rem 0;
  overflow-x: auto;
  background: #fff;
}

.chat-chip {
  flex: 0 0 auto;
  padding: .52rem .72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: .86rem;
  font-weight: 850;
  cursor: pointer;
}

.chat-chip:hover {
  border-color: rgba(1, 68, 65, .35);
  color: var(--green);
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .5rem;
  padding: 1rem;
  background: #fff;
}

.chat-form input {
  min-width: 0;
  height: 44px;
  padding: 0 .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.chat-form input:focus {
  outline: 3px solid rgba(255, 210, 26, .38);
  border-color: var(--green);
}

.chat-form button {
  height: 44px;
  padding: 0 .9rem;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 1120px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    position: relative;
    min-height: 44px;
    padding: .65rem .85rem .65rem 2.45rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255,255,255,.06);
    font-weight: 900;
  }

  .menu-button span {
    display: block;
    position: absolute;
    left: .9rem;
    width: 1rem;
    height: 2px;
    background: currentColor;
  }

  .menu-button span:nth-child(1) {
    top: 14px;
  }

  .menu-button span:nth-child(2) {
    top: 21px;
  }

  .menu-button span:nth-child(3) {
    top: 28px;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: .2rem;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    padding-bottom: 1rem;
  }

  .site-nav.is-open a {
    padding: .75rem 0;
  }

  .hero,
  .local-section,
  .social-section,
  .proof-section,
  .content-layout,
  .contact-hero,
  .lead-section,
  .appointment-section,
  .job-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 320px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7,17,17,.36) 0%, rgba(7,17,17,.96) 54%, rgba(7,17,17,1) 100%),
      linear-gradient(135deg, #071111, #102321);
  }

  .problem-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quick-whatsapp {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-call {
    display: none;
  }

  .phone-float {
    right: .8rem;
    bottom: calc(.9rem + env(safe-area-inset-bottom));
    z-index: 70;
    display: inline-flex;
  }

  .whatsapp-float {
    right: 4.65rem;
    bottom: calc(.9rem + env(safe-area-inset-bottom));
  }

  .chat-widget {
    display: none;
  }

  .lead-side {
    position: static;
  }

  .job-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 142px;
  }

  .brand span {
    display: none;
  }

  .hero-copy {
    padding-top: 1.35rem;
  }

  .hero h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.05rem, 9.6vw, 2.32rem);
    line-height: .96;
  }

  .hero-image {
    min-height: 210px;
  }

  .hero-subline {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.15rem;
  }

  .hero-trust {
    gap: .55rem;
    margin-top: 1.1rem;
  }

  .service-card {
    min-height: auto;
    padding: 1rem;
  }

  .service-card ul {
    display: none;
  }

  .social-copy {
    padding-right: 0;
  }

  .hero-actions,
  .contact-hero-actions,
  .hero-trust,
  .problem-strip,
  .service-grid,
  .social-grid,
  .process-list,
  .faq-grid,
  .hub-grid,
  .term-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .contact-hero-actions,
  .lead-actions {
    display: grid;
  }

  .contact-paths {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .lead-form fieldset {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .lead-side,
  .quick-whatsapp {
    box-shadow: none;
  }

  .problem-strip {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    gap: .6rem;
  }

  .problem-title p,
  .problem-item span,
  .strip-call small {
    display: none;
  }

  .problem-item,
  .strip-call {
    min-height: 66px;
    padding: .8rem;
  }

  .process-list::before {
    display: none;
  }

  .local-section {
    min-height: auto;
  }

  .map-visual {
    min-height: 360px;
  }

  .map-overlay-route {
    display: none;
  }

  .map-overlay-main {
    left: .9rem;
    right: .9rem;
    top: .9rem;
    max-width: none;
    padding: .85rem .95rem;
  }

  .map-open {
    left: .9rem;
    right: .9rem;
    bottom: .9rem;
  }

  .contact-band {
    display: grid;
  }

  .dark-phone {
    width: 100%;
  }

  .whatsapp-float {
    right: 4.45rem;
    bottom: calc(.75rem + env(safe-area-inset-bottom));
    width: 54px;
    min-height: 54px;
    padding: 0;
  }

  .phone-float {
    right: .75rem;
    bottom: calc(.75rem + env(safe-area-inset-bottom));
    width: 54px;
    min-height: 54px;
    padding: 0;
  }

  .whatsapp-float strong {
    display: none;
  }

  .mobile-call {
    display: none;
  }

  .job-strip {
    display: none;
  }
}

.analytics-consent {
  position: fixed;
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  background: #071111;
  box-shadow: 0 20px 50px rgba(7, 17, 17, .28);
}

.analytics-consent p {
  margin: .25rem 0 0;
  color: rgba(255, 255, 255, .78);
}

.analytics-consent-actions {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.analytics-consent button {
  min-height: 42px;
  padding: .65rem .9rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  color: #fff;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.analytics-consent button[data-analytics-consent="granted"] {
  border-color: var(--yellow);
  color: #071111;
  background: var(--yellow);
}

@media (max-width: 680px) {
  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .analytics-consent-actions button {
    flex: 1 1 0;
  }
}
