:root {
  --navy: #062656;
  --orange: #ff7600;
  --green: #18b94b;
  --ink: #101827;
  --white: #fff;
  --shadow: 0 12px 34px rgba(8, 26, 52, .12);
  --content-gutter: clamp(48px, 4vw, 82px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #f7f7f7;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

svg { display: block; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 10px 18px 10px 30px;
  background: rgba(255,255,255,.98);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 18px rgba(8, 26, 52, .1);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 510px;
}

.brand-logo { display: block; width: 475px; height: 112px; object-fit: contain; object-position: left center; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 58px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: #071c42;
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 17px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: translateX(-50%);
  transition: width .2s ease;
}

.desktop-nav a:hover, .desktop-nav a.active { color: var(--orange); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 45px; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 42px; }

.header-call {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 17px 25px;
  background: linear-gradient(135deg, #ff8500, #ff6800);
  border-radius: 999px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 118, 0, .22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.header-call:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(255, 118, 0, .3); filter: saturate(1.08); }
.header-call svg { width: 24px; fill: currentColor; }

.menu-toggle {
  display: none;
  place-content: center;
  gap: 5px;
  width: 57px;
  height: 57px;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(8, 26, 52, .12);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.menu-toggle:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(8, 26, 52, .16); }
.menu-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 3px; }
.mobile-nav { display: none; }

main { padding: 0 15px 10px; }

.hero {
  position: relative;
  min-height: max(760px, calc(100vh - 142px));
  overflow: hidden;
  background: url("assets/hero-technician.png") center center / cover no-repeat;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 31%, rgba(255,255,255,.48) 48%, rgba(255,255,255,.06) 62%, rgba(255,255,255,0) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 56%;
  max-width: 900px;
  padding: clamp(72px, 8vh, 104px) 0 38px var(--content-gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 17px;
  background: rgba(255,255,255,.94);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(8,26,52,.12);
  color: var(--orange);
  font-size: 16px;
  font-weight: 800;
}

.eyebrow svg { width: 23px; fill: currentColor; }

h1 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: clamp(48px, 4.2vw, 72px);
  line-height: 1.12;
  letter-spacing: -3px;
}

h1 span { color: var(--orange); }

.script-line {
  position: relative;
  display: inline-block;
  margin: 14px 0 23px;
  color: var(--navy);
  font-family: "Yellowtail", cursive;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.2;
  transform: rotate(-1deg);
}

.script-line::after {
  position: absolute;
  right: 1%;
  bottom: -1px;
  width: 55%;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  transform: rotate(2deg);
}

.hero-description {
  margin: 0 0 38px;
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 30px; }

.cta {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 292px;
  padding: 16px 23px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 9px 22px rgba(8, 26, 52, .16), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.cta:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(8, 26, 52, .22), inset 0 1px 0 rgba(255,255,255,.2); filter: brightness(1.04); }
.cta:active { transform: translateY(-1px); }
.cta-call { background: linear-gradient(135deg, #092f68, #041d45); }
.cta-whatsapp { background: linear-gradient(135deg, #20c95a, #0ba640); }
.cta svg { flex: 0 0 auto; width: 43px; fill: currentColor; }
.cta span { display: grid; }
.cta small, .cta strong { font-size: 17px; line-height: 1.35; }
.cta small { font-weight: 700; }
.cta strong { font-weight: 800; }

.benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.benefits div { display: flex; align-items: center; gap: 9px; }
.benefit-icon {
  display: grid;
  place-content: center;
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-card {
  position: absolute;
  z-index: 3;
  right: 7.7%;
  bottom: 11%;
  width: 290px;
  padding: 27px 30px 25px;
  background: rgba(255,255,255,.96);
  border-radius: 27px;
  box-shadow: 0 12px 30px rgba(8,26,52,.09);
}

.avatars { display: flex; align-items: center; margin-bottom: 20px; }

.avatars span, .avatars b {
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  margin-right: -7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.avatars span:nth-child(2) { background: #174a77; }
.avatars span:nth-child(3) { background: #e57629; }
.avatars span:nth-child(4) { background: #42647d; }
.avatars span { overflow: hidden; }
.avatars span img { width: 100%; height: 100%; object-fit: cover; }
.avatars b { margin-left: 5px; background: #fff; border-color: #e8e8e8; color: var(--orange); font-size: 25px; }
.customer-card > strong { color: var(--navy); font-size: 48px; line-height: 1; }
.customer-card p { margin: 9px 0 0; color: #101a31; font-size: 20px; font-weight: 700; }

.services-section {
  padding: 76px var(--content-gutter);
  background: #fff;
}

.section-heading { text-align: center; }
.section-heading > span { color: var(--orange); font-size: 16px; font-weight: 800; letter-spacing: .04em; }
.section-heading h2 { margin: 12px 0 10px; color: #0a1f44; font-size: clamp(42px, 4vw, 64px); line-height: 1.08; letter-spacing: -2.7px; }
.section-heading h2 em { color: var(--orange); font-style: normal; }
.section-heading i { display: block; width: 52px; height: 4px; margin: 0 auto 38px; background: linear-gradient(90deg, var(--navy) 56%, #e5eaf1 56%); border-radius: 99px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  width: 100%;
  margin: 0;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 196px;
  height: 100%;
  padding: 30px 27px 27px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(10, 31, 68, .045);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card { grid-column: span 2; }

.service-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 15%, var(--icon-bg), transparent 40%);
  content: "";
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover { transform: translateY(-4px); border-color: rgba(255, 138, 0, .2); box-shadow: 0 15px 34px rgba(10, 31, 68, .095); }
.service-card:hover::before { opacity: .24; }

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  width: 84px;
  height: 84px;
  background: var(--icon-bg);
  border-radius: 50%;
  color: var(--icon-color);
  overflow: hidden;
}

.service-icon svg, .stat-icon svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.service-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}
.service-copy { position: relative; z-index: 1; min-width: 0; padding-right: 54px; }
.service-copy h3 { min-height: 24px; margin: 4px 0 12px; color: #0a1f44; font-size: 19px; font-weight: 800; line-height: 1.25; letter-spacing: -.55px; }
.service-copy p { margin: 0; color: #475267; font-size: 14px; font-weight: 500; line-height: 1.72; }

.card-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 2;
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 50%;
  box-shadow: 0 5px 13px rgba(10, 31, 68, .08);
  color: var(--orange);
  transform: translateY(-50%);
  transition: transform .3s ease, color .3s ease, background .3s ease, box-shadow .3s ease;
}

.card-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .card-arrow { transform: translate(4px, -50%); background: var(--orange); color: #fff; box-shadow: 0 8px 18px rgba(255, 138, 0, .25); }

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: fit-content;
  margin: 32px auto 44px;
  padding: 17px 32px;
  background: linear-gradient(135deg, #102d62, #071b40);
  border-radius: 999px;
  box-shadow: 0 11px 26px rgba(10, 31, 68, .2);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: transform .3s ease, box-shadow .3s ease;
}

.services-cta span { display: inline-grid; place-content: center; transition: transform .3s ease; }
.services-cta span svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round; }
.services-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10, 31, 68, .28); }
.services-cta:hover span { transform: translateX(5px); }

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  padding: 30px 18px;
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 25px;
  box-shadow: 0 15px 42px rgba(10, 31, 68, .07);
}

.stat-item { display: flex; align-items: center; justify-content: center; gap: 28px; min-height: 108px; padding: 0 30px; }
.stat-item + .stat-item { border-left: 1px solid #e8ecf1; }
.stat-icon { display: grid; flex: 0 0 auto; place-content: center; width: 78px; height: 78px; border-radius: 50%; }
.stat-icon svg { width: 46px; height: 46px; stroke-width: 1.9; }
.stat-blue { background: #eef3f8; color: #173f76; }
.stat-green { background: #e6f8eb; color: #18a847; }
.stat-orange { background: #fff5df; color: #f29200; }
.stat-red { background: #ffe9e9; color: #ef3838; }
.stat-item strong { display: block; color: #0a1f44; font-size: clamp(34px, 2.6vw, 48px); line-height: 1; letter-spacing: -2px; }
.stat-item p { margin: 12px 0 0; color: #475267; font-size: 15px; font-weight: 600; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease var(--delay, 0ms), transform .65s ease var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.why-section {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(700px, 1.75fr);
  gap: 48px;
  align-items: center;
  margin-top: 12px;
  padding: 64px var(--content-gutter);
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 30px;
  box-shadow: 0 14px 42px rgba(10, 31, 68, .07);
}

.why-copy { align-self: center; padding: 8px 0 8px 0; }
.why-label { color: var(--orange); font-size: 16px; font-weight: 800; letter-spacing: .03em; }
.why-copy h2 { margin: 22px 0 18px; color: #0a1f44; font-size: clamp(38px, 3.1vw, 58px); line-height: 1.16; letter-spacing: -2.2px; }
.why-copy h2 em { color: var(--orange); font-style: normal; }
.why-copy > p { max-width: 570px; margin: 0 0 24px; color: #303b4e; font-size: 16px; font-weight: 500; line-height: 1.85; }
.why-list { display: grid; gap: 14px; margin: 0 0 28px; padding: 0; list-style: none; }
.why-list li { display: flex; align-items: center; gap: 12px; color: #172033; font-size: 16px; font-weight: 600; }
.why-list span { display: grid; flex: 0 0 auto; place-content: center; width: 22px; height: 22px; background: #18aa4b; border-radius: 50%; color: #fff; font-size: 14px; font-weight: 800; }

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #102d62, #071b40);
  border-radius: 999px;
  box-shadow: 0 10px 23px rgba(10, 31, 68, .18);
  color: #fff;
  font-weight: 800;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-cta svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.why-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(10, 31, 68, .26); }
.why-cta:hover svg { transform: translateX(4px); }

.why-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 305px;
  gap: 18px;
}

.why-service-card {
  position: relative;
  overflow: hidden;
  background: #f3f5f7;
  border: 1px solid #edf0f3;
  border-radius: 22px;
  box-shadow: 0 9px 24px rgba(10,31,68,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-service-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(7,27,64,.2));
  content: "";
  pointer-events: none;
}

.why-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.why-service-card.why-crop-left img { object-position: 28% center; }
.why-service-card.why-crop-right img { object-position: 72% center; }
.why-service-card:hover { transform: translateY(-4px); box-shadow: 0 17px 35px rgba(10,31,68,.13); }
.why-service-card:hover img { transform: scale(1.035); }

.why-service-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 54px;
  overflow: hidden;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(10,31,68,.13);
  backdrop-filter: blur(12px);
}

.why-service-label span {
  display: grid;
  align-self: stretch;
  place-content: center;
  background: linear-gradient(145deg, #ff8a00, #ff6500);
  border-radius: 999px 14px 14px 999px;
  color: #fff;
}

.why-service-label span img {
  display: block;
  width: 88px;
  height: 58px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.why-service-label strong { padding: 0 16px; color: #0a1f44; font-size: 15px; line-height: 1.2; }

.why-visual { position: relative; min-height: 610px; margin-bottom: 8px; }
.why-main-image { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: 0 14px 35px rgba(10, 31, 68, .13); }
.plumber-card { position: absolute; left: -13%; bottom: -2%; width: 43%; height: 42%; overflow: hidden; border: 5px solid #fff; border-radius: 24px; box-shadow: 0 15px 34px rgba(10, 31, 68, .18); animation: gentle-float 5s ease-in-out infinite; }
.plumber-card img, .painter-card img { width: 100%; height: 100%; object-fit: cover; }
.video-play { position: absolute; top: 45%; left: 50%; display: grid; place-content: center; width: 108px; height: 108px; padding: 0; background: rgba(7, 29, 69, .94); border: 9px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,255,255,.25), 0 12px 30px rgba(10,31,68,.25); color: #fff; cursor: pointer; transform: translate(-50%, -50%); animation: play-pulse 2.5s ease-in-out infinite; }
.video-play svg { width: 43px; height: 43px; fill: currentColor; }
.video-label { position: absolute; top: calc(45% + 77px); left: 50%; padding: 14px 28px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.75); border-radius: 999px; box-shadow: 0 10px 24px rgba(10,31,68,.12); color: #0a1f44; font-size: 17px; font-weight: 800; white-space: nowrap; transform: translateX(-50%); backdrop-filter: blur(12px); }

.why-side { display: grid; grid-template-rows: 1fr .66fr; gap: 30px; }
.painter-card { min-height: 0; overflow: hidden; border-radius: 24px; box-shadow: 0 12px 30px rgba(10,31,68,.1); }
.quality-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 34px 30px; background: linear-gradient(145deg, #ff8a00, #ff6700); border-radius: 24px; box-shadow: 0 14px 30px rgba(255, 120, 0, .2); color: #fff; }
.quality-card strong { display: block; font-size: clamp(48px, 4vw, 74px); line-height: 1; letter-spacing: -3px; }
.quality-card p { margin: 20px 0 0; font-size: 20px; font-weight: 600; line-height: 1.45; }
.quality-card svg { flex: 0 0 auto; width: 65px; height: 65px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

@keyframes gentle-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes play-pulse { 0%, 100% { box-shadow: 0 0 0 8px rgba(255,255,255,.25), 0 12px 30px rgba(10,31,68,.25); } 50% { box-shadow: 0 0 0 14px rgba(255,255,255,.12), 0 15px 35px rgba(10,31,68,.3); } }

.site-footer { padding: 34px 15px 14px; background: #fff; }
.quote-banner {
  display: grid;
  grid-template-columns: 230px minmax(360px, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 24px var(--content-gutter);
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 30px;
  box-shadow: 0 14px 38px rgba(10,31,68,.08);
}
.toolbox-art { display: grid; place-content: center; height: 150px; background: radial-gradient(circle, #fff0e5, transparent 68%); }
.toolbox-art svg { width: 170px; height: 140px; }
.quote-copy p { margin: 0 0 13px; color: #0a1f44; font-size: 19px; font-weight: 800; }
.quote-copy h2 { margin: 0 0 10px; color: #0a1f44; font-size: clamp(32px, 3vw, 50px); line-height: 1.1; letter-spacing: -1.8px; }
.quote-copy h2 em { color: var(--orange); font-style: normal; }
.quote-copy span { color: #354158; font-size: 17px; font-weight: 500; }
.quote-actions { display: flex; align-items: center; gap: 28px; }
.quote-actions a { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 70px; border-radius: 999px; font-size: 20px; font-weight: 800; transition: transform .3s ease, box-shadow .3s ease; }
.quote-actions svg { width: 31px; height: 31px; fill: currentColor; }
.quote-phone { min-width: 330px; padding: 15px 28px; background: #fff; box-shadow: 0 9px 25px rgba(10,31,68,.1); color: #0a1f44; }
.quote-whatsapp { min-width: 270px; padding: 15px 28px; background: linear-gradient(135deg, #13bb48, #05a53c); box-shadow: 0 10px 24px rgba(10,170,65,.2); color: #fff; }
.quote-actions a:hover { transform: translateY(-3px); box-shadow: 0 15px 32px rgba(10,31,68,.17); }

.footer-grid { display: grid; grid-template-columns: 1.15fr .68fr 1.5fr 1.05fr; gap: 0; padding: 68px var(--content-gutter) 46px; }
.footer-grid > * { min-width: 0; padding: 0 42px; }
.footer-grid > *:first-child { padding-left: 0; }
.footer-grid > * + * { border-left: 1px solid #e7ebf0; }
.footer-brand { display: flex; align-items: center; }
.footer-brand img { display: block; width: min(100%, 430px); height: 138px; object-fit: contain; object-position: left center; }
.footer-about > p { max-width: 350px; margin: 27px 0; color: #354158; font-size: 15px; font-weight: 600; line-height: 1.9; }
.social-links { display: flex; gap: 22px; }
.social-links a { display: grid; place-content: center; width: 39px; height: 39px; background: #0a1f44; border-radius: 50%; color: #fff; font-size: 16px; font-weight: 800; transition: transform .25s ease, background .25s ease; }
.social-links svg { display: block; width: 18px; height: 18px; fill: currentColor; }
.social-links a:hover { transform: translateY(-3px); background: var(--orange); }
.footer-column h3 { margin: 7px 0 26px; color: #0a1f44; font-size: 16px; text-transform: uppercase; }
.footer-column > a, .footer-services a { display: block; position: relative; margin: 0 0 17px; color: #26334b; font-size: 15px; font-weight: 600; transition: color .2s ease, transform .2s ease; }
.footer-column:not(.footer-contact) > a, .footer-services a { padding-left: 16px; }
.footer-column:not(.footer-contact) > a::before, .footer-services a::before { position: absolute; left: 0; color: var(--orange); content: "•"; }
.footer-column a:hover { color: var(--orange); transform: translateX(3px); }
.footer-services > div { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
.footer-contact a, .footer-contact p { display: flex; align-items: flex-start; gap: 13px; margin: 0 0 21px; color: #26334b; font-size: 15px; font-weight: 600; line-height: 1.5; }
.footer-contact span { color: #0a1f44; font-size: 18px; }
.copyright { padding: 21px; background: linear-gradient(135deg, #09295c, #061b3d); border-radius: 22px; box-shadow: 0 8px 18px rgba(10,31,68,.2); color: #fff; text-align: center; font-size: 16px; font-weight: 600; }

@media (max-width: 1500px) {
  .site-header { min-height: 112px; }
  .brand { flex-basis: 390px; }
  .brand-logo { width: 365px; height: 94px; }
  .desktop-nav { gap: 28px; }
  .desktop-nav a { font-size: 16px; }
  .header-actions { margin-left: 28px; }
  .header-call { padding: 14px 18px; font-size: 14px; }
  .hero { min-height: max(700px, calc(100vh - 122px)); }
  .hero-content { padding: clamp(64px, 7vh, 88px) 0 34px var(--content-gutter); }
  .benefits { font-size: 12px; }
  .services-section { padding-top: 66px; }
  .service-card { grid-template-columns: 74px minmax(0, 1fr); gap: 16px; min-height: 184px; padding: 27px 22px 24px; }
  .service-icon { width: 74px; height: 74px; }
  .service-icon svg { width: 47px; height: 47px; }
  .service-copy h3 { font-size: 17px; }
  .service-copy p { font-size: 13px; line-height: 1.68; }
  .stat-item { gap: 18px; padding: 0 18px; }
  .stat-icon { width: 70px; height: 70px; }
  .stat-icon svg { width: 41px; height: 41px; }
  .why-section { grid-template-columns: minmax(300px, .86fr) minmax(650px, 1.65fr); gap: 30px; padding-top: 52px; padding-bottom: 52px; }
  .why-copy h2 { font-size: clamp(34px, 3vw, 48px); }
  .why-copy > p, .why-list li { font-size: 14px; }
  .why-gallery { grid-auto-rows: 260px; gap: 15px; }
  .why-service-label { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 48px 1fr; min-height: 48px; }
  .why-service-label strong { padding: 0 10px; font-size: 13px; }
  .quote-banner { grid-template-columns: 175px 1fr auto; gap: 24px; }
  .toolbox-art svg { width: 140px; }
  .quote-copy p { font-size: 16px; }
  .quote-copy h2 { font-size: 34px; }
  .quote-copy span { font-size: 14px; }
  .quote-actions { gap: 16px; }
  .quote-actions a { min-height: 60px; font-size: 16px; }
  .quote-phone { min-width: 260px; }
  .quote-whatsapp { min-width: 220px; }
  .footer-grid > * { padding: 0 28px; }
}

@media (max-width: 1180px) {
  .desktop-nav, .header-call { display: none; }
  .brand { flex: 1; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .mobile-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: 16px;
    display: grid;
    min-width: 210px;
    padding: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .mobile-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav a { padding: 11px 14px; border-radius: 10px; font-weight: 700; }
  .mobile-nav a:hover { background: #fff3e8; color: var(--orange); }
  .hero-content { width: 65%; padding-left: var(--content-gutter); }
  .hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 44%, rgba(255,255,255,.18) 78%); }
  .customer-card { right: 3%; width: 245px; }
  .benefits { flex-wrap: wrap; justify-content: flex-start; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { grid-column: auto; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: 0; border-top: 1px solid #e8ecf1; }
  .stat-item:nth-child(4) { border-top: 1px solid #e8ecf1; }
  .why-section { grid-template-columns: 1fr; }
  .why-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 300px; }
  .quote-banner { grid-template-columns: 140px 1fr; }
  .quote-actions { grid-column: 1 / -1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .footer-grid > * { padding: 0 30px; border-left: 0 !important; }
  .footer-grid > *:nth-child(even) { border-left: 1px solid #e7ebf0 !important; }
}

@media (max-width: 760px) {
  :root { --content-gutter: 23px; }
  .site-header { min-height: 85px; padding: 8px 14px; }
  .brand-logo { width: min(245px, calc(100vw - 92px)); height: 68px; }
  .menu-toggle { width: 46px; height: 46px; }
  main { padding: 0 8px 8px; }
  .hero { min-height: auto; padding-bottom: 28px; background-position: 67% center; border-radius: 23px; }
  .hero-shade { background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.9) 58%, rgba(255,255,255,.54) 100%); }
  .hero-content { width: 100%; padding: 38px 23px 20px; }
  .eyebrow { padding: 10px 12px; font-size: 12px; }
  .eyebrow svg { width: 18px; }
  h1 { margin-top: 20px; font-size: clamp(40px, 12vw, 58px); letter-spacing: -2px; }
  .script-line { margin: 12px 0 20px; font-size: 38px; }
  .hero-description { font-size: 15px; line-height: 1.7; }
  .hero-description br { display: none; }
  .hero-actions { display: grid; gap: 12px; }
  .cta { min-width: 0; width: 100%; }
  .benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 27px; white-space: normal; }
  .customer-card { position: relative; right: auto; bottom: auto; z-index: 3; width: calc(100% - 46px); margin: 12px 23px 0; padding: 20px; }
  .avatars { margin-bottom: 12px; }
  .customer-card > strong { font-size: 40px; }
  .customer-card p { font-size: 17px; }
  .services-section { padding: 58px var(--content-gutter) 55px; }
  .section-heading i { margin-bottom: 30px; }
  .services-grid { grid-template-columns: 1fr; gap: 15px; }
  .service-card { grid-column: auto; }
  .service-card { grid-template-columns: 70px minmax(0, 1fr); gap: 14px; min-height: 198px; padding: 28px 20px; border-radius: 20px; }
  .service-icon { width: 70px; height: 70px; }
  .service-icon svg { width: 41px; height: 41px; }
  .service-copy h3 { margin-top: 4px; margin-bottom: 10px; font-size: 18px; }
  .service-copy { padding-right: 48px; }
  .service-copy p { padding-right: 0; font-size: 14px; line-height: 1.7; }
  .card-arrow { right: 16px; width: 40px; height: 40px; }
  .services-cta { margin: 28px auto 38px; }
  .stats-panel { grid-template-columns: 1fr; padding: 12px 22px; }
  .stat-item { justify-content: flex-start; min-height: 120px; padding: 18px 4px; }
  .stat-item + .stat-item, .stat-item:nth-child(3) { border-top: 1px solid #e8ecf1; border-left: 0; }
  .stat-icon { width: 72px; height: 72px; }
  .stat-icon svg { width: 41px; height: 41px; }
  .why-section { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 8px; padding: 52px var(--content-gutter); border-radius: 24px; }
  .why-copy h2 { margin-top: 15px; font-size: 38px; }
  .why-copy > p, .why-list li { font-size: 14px; }
  .why-gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; gap: 15px; }
  .why-service-label { right: 15px; bottom: 15px; left: 15px; grid-template-columns: 52px 1fr; min-height: 52px; }
  .why-service-label strong { padding: 0 14px; font-size: 14px; }
  .site-footer { padding: 20px 8px 8px; }
  .quote-banner { grid-template-columns: 1fr; gap: 15px; padding: 25px var(--content-gutter); text-align: center; border-radius: 24px; }
  .toolbox-art { height: 105px; }
  .toolbox-art svg { width: 120px; height: 105px; }
  .quote-copy h2 { font-size: 34px; }
  .quote-actions { grid-column: auto; display: grid; gap: 12px; }
  .quote-actions a, .quote-phone, .quote-whatsapp { width: 100%; min-width: 0; min-height: 58px; font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 52px var(--content-gutter) 36px; }
  .footer-grid > * { padding: 0 !important; border-left: 0 !important; }
  .footer-grid > *:nth-child(even) { border-left: 0 !important; }
  .footer-grid > * + * { padding-top: 30px !important; border-top: 1px solid #e7ebf0; }
  .footer-brand img { width: min(100%, 350px); height: auto; }
  .footer-services > div { grid-template-columns: 1fr; }
  .copyright { padding: 17px 14px; border-radius: 17px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
