:root {
  --navy-950: #052d3b;
  --navy-900: #073b4c;
  --navy-800: #0a4b5f;
  --teal-700: #087f8c;
  --teal-600: #0a9aa5;
  --teal-500: #13b9bd;
  --teal-100: #dff7f6;
  --teal-50: #f0fbfa;
  --amber-600: #d88900;
  --amber-500: #f3a712;
  --amber-100: #fff1c9;
  --amber-50: #fffaf0;
  --green-600: #0f9d58;
  --green-700: #087a43;
  --white: #fff;
  --ink: #102a35;
  --muted: #5f737c;
  --line: #dfe9ec;
  --surface: #f6f9fa;
  --surface-strong: #edf4f5;
  --shadow-sm: 0 10px 30px rgba(5, 45, 59, 0.08);
  --shadow-md: 0 24px 70px rgba(5, 45, 59, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 80px;
  --font: Tahoma, Arial, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-sprite symbol,
.svg-sprite path,
.svg-sprite circle,
.svg-sprite rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite #icon-whatsapp path {
  fill: currentColor;
  stroke: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 233, 236, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, height 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(5, 45, 59, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 7px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--teal-600));
  border-radius: 15px;
  box-shadow: 0 9px 22px rgba(8, 127, 140, 0.22);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark .drop {
  fill: var(--white);
}

.brand-mark .bolt {
  fill: var(--amber-500);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 1.05rem;
  color: var(--navy-950);
}

.brand-copy small {
  margin-block-start: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-inline: auto;
}

.primary-nav a {
  position: relative;
  padding-block: 9px;
  color: #314e59;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  inset-block-end: 3px;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
  transition: inset-inline 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--teal-700);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  inset-inline: 0;
}

.header-call {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-call:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.header-call svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-call span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header-call small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
}

.header-call b {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  background:
    linear-gradient(112deg, rgba(240, 251, 250, 0.92), rgba(255, 255, 255, 0.96) 52%, rgba(255, 250, 240, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(19, 185, 189, 0.12), transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 59, 76, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 59, 76, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 310px;
  height: 310px;
  inset-block-start: -160px;
  inset-inline-start: 14%;
  background: rgba(19, 185, 189, 0.09);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  inset-block-end: 30px;
  inset-inline-end: -100px;
  background: rgba(243, 167, 18, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: 65px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow {
  padding: 7px 11px;
  background: var(--teal-100);
  border: 1px solid rgba(10, 154, 165, 0.16);
  border-radius: 999px;
}

.eyebrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero h1 {
  max-width: 710px;
  margin: 21px 0 19px;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: var(--teal-700);
}

.hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: #526b75;
  font-size: 1.05rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 29px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 11px 25px rgba(7, 59, 76, 0.2);
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 15px 32px rgba(7, 59, 76, 0.27);
}

.button-whatsapp {
  color: var(--green-700);
  background: var(--white);
  border-color: rgba(15, 157, 88, 0.3);
  box-shadow: 0 10px 25px rgba(5, 45, 59, 0.08);
}

.button-whatsapp svg,
.button-whatsapp-light svg {
  fill: currentColor;
  stroke: none;
}

.button-whatsapp:hover {
  color: var(--white);
  background: var(--green-600);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-block-start: 22px;
  color: #5f737c;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-notes svg {
  width: 17px;
  height: 17px;
  color: var(--teal-700);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.hero-visual {
  min-height: 480px;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(100%, 465px);
  aspect-ratio: 1 / 1.04;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(19, 185, 189, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(237, 244, 245, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 46% 54% 46% 54% / 53% 41% 59% 47%;
  box-shadow: var(--shadow-md);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(8, 127, 140, 0.12);
  border-radius: inherit;
}

.visual-brand {
  position: relative;
  z-index: 3;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 25px 48px rgba(5, 45, 59, 0.25);
}

.visual-logo {
  width: 66px;
  height: 66px;
}

.visual-logo svg {
  width: 100%;
  height: 100%;
}

.visual-logo .drop {
  fill: var(--teal-500);
}

.visual-logo .bolt {
  fill: var(--amber-500);
}

.visual-brand strong {
  margin-block-start: 4px;
  font-size: 1rem;
}

.visual-brand i {
  color: var(--amber-500);
  font-style: normal;
}

.visual-brand small {
  margin-block-start: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(8, 127, 140, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 340px;
  height: 340px;
}

.orbit-two {
  width: 265px;
  height: 265px;
  border-color: rgba(243, 167, 18, 0.28);
  transform: rotate(24deg);
}

.service-bubble {
  position: absolute;
  z-index: 4;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: var(--white);
  border: 1px solid rgba(8, 127, 140, 0.13);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(5, 45, 59, 0.14);
}

.service-bubble svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bubble-one {
  inset-block-start: 17%;
  inset-inline-start: 6%;
}

.bubble-two {
  inset-block-start: 13%;
  inset-inline-end: 9%;
  color: var(--amber-600);
}

.bubble-three {
  inset-block-end: 12%;
  inset-inline-end: 11%;
}

.visual-status {
  position: absolute;
  z-index: 4;
  inset-block-end: 11%;
  inset-inline-start: 3%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 233, 236, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green-600);
  border: 2px solid #c9f4dc;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15, 157, 88, 0.1);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block-start: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -12px 40px rgba(5, 45, 59, 0.06);
}

.trust-strip > div {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 25px;
}

.trust-strip > div + div {
  border-inline-start: 1px solid var(--line);
}

.trust-strip svg {
  width: 31px;
  height: 31px;
  color: var(--teal-700);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip > div:last-child svg {
  color: var(--amber-600);
}

.trust-strip span {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.trust-strip b {
  color: var(--navy-950);
  font-size: 0.92rem;
}

.trust-strip small {
  color: var(--muted);
  font-size: 0.7rem;
}

.section {
  padding-block: 105px;
}

.section-heading {
  margin-block-end: 45px;
}

.section-heading.centered {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  margin-inline: auto;
}

.section-kicker {
  position: relative;
  padding-inline-start: 35px;
}

.section-kicker::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 25px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-heading h2,
.why-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 11px 0 14px;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.section-heading p,
.why-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.services {
  background: var(--white);
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 42px 0 22px;
}

.category-heading:first-of-type {
  margin-block-start: 0;
}

.category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 14px;
}

.category-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-heading > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.category-heading small {
  color: var(--muted);
  font-size: 0.68rem;
}

.category-heading b {
  color: var(--navy-950);
  font-size: 1.1rem;
}

.electric-heading .category-icon {
  color: var(--amber-600);
  background: var(--amber-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 7px 25px rgba(5, 45, 59, 0.045);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  inset-block-start: -100px;
  inset-inline-end: -80px;
  background: var(--teal-100);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 154, 165, 0.35);
  box-shadow: 0 22px 45px rgba(5, 45, 59, 0.11);
}

.service-card:hover::before {
  transform: scale(1.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid rgba(10, 154, 165, 0.18);
  border-radius: 19px;
}

.service-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  position: absolute;
  inset-block-start: 25px;
  inset-inline-end: 25px;
  color: #b5c5ca;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 19px 0 10px;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.6;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.85;
}

.service-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-block-start: auto;
  color: var(--teal-700);
  font-size: 0.79rem;
  font-weight: 800;
}

.service-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
  transform: scaleX(-1);
}

.service-link:hover svg {
  transform: scaleX(-1) translateX(4px);
}

.electric-card::before {
  background: var(--amber-100);
}

.electric-card:hover {
  border-color: rgba(216, 137, 0, 0.33);
}

.electric-card .service-icon {
  color: var(--amber-600);
  background: var(--amber-50);
  border-color: rgba(216, 137, 0, 0.2);
}

.electric-card .service-link {
  color: #a96b00;
}

.why-us {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.why-us::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  inset-block-start: -260px;
  inset-inline-end: -170px;
  background: rgba(19, 185, 189, 0.08);
  border-radius: 50%;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: 80px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 233, 236, 0.9);
  border-radius: 17px;
}

.feature-list li > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 13px;
}

.feature-list svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list div {
  display: flex;
  flex-direction: column;
}

.feature-list b {
  color: var(--navy-950);
  font-size: 0.9rem;
}

.feature-list small {
  margin-block-start: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.process-card {
  padding: 33px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block-end: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-head span {
  padding: 5px 9px;
  color: var(--amber-100);
  background: rgba(243, 167, 18, 0.14);
  border: 1px solid rgba(243, 167, 18, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
}

.process-head b {
  font-size: 1.15rem;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  inset-block: 33px;
  inset-inline-start: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.17);
}

.process-list li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
}

.process-list li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--amber-500);
  border: 5px solid var(--navy-900);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list div {
  display: flex;
  flex-direction: column;
}

.process-list b {
  font-size: 0.88rem;
}

.process-list small {
  margin-block-start: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.71rem;
}

.button-block {
  width: 100%;
  color: var(--navy-950);
  background: var(--white);
  box-shadow: none;
}

.button-block:hover {
  color: var(--navy-950);
  background: var(--amber-100);
}

.service-area {
  background: var(--white);
}

.area-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}

.area-heading h2 {
  margin-block-end: 0;
}

.map-shell {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-shell iframe {
  width: 100%;
  min-height: 460px;
  display: block;
  filter: saturate(0.88) contrast(1.02);
}

.map-card {
  position: absolute;
  inset-block-end: 24px;
  inset-inline-start: 24px;
  max-width: calc(100% - 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.map-pin {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 14px;
}

.map-pin svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.map-card > div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.map-card small {
  color: var(--muted);
  font-size: 0.67rem;
}

.map-card b {
  color: var(--navy-950);
  font-size: 0.95rem;
}

.map-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.map-card > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 12px;
}

.map-card > a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transform: scaleX(-1);
}

.neighborhoods-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
  margin-block-start: 28px;
  padding: 38px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 15%, rgba(19, 185, 189, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.neighborhoods-panel::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  inset-block-end: -190px;
  inset-inline-end: -75px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.neighborhoods-copy,
.neighborhood-groups {
  position: relative;
  z-index: 1;
}

.neighborhoods-copy h3 {
  margin: 12px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.45;
}

.neighborhoods-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.95;
}

.neighborhoods-cta {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-block-start: 23px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease;
}

.neighborhoods-cta:hover {
  color: var(--navy-950);
  background: var(--amber-100);
  transform: translateY(-2px);
}

.neighborhoods-cta svg {
  width: 21px;
  height: 21px;
  color: var(--green-600);
  fill: currentColor;
}

.neighborhood-groups {
  display: grid;
  gap: 12px;
}

.neighborhood-group {
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
}

.neighborhood-group > b {
  display: block;
  color: var(--amber-100);
  font-size: 0.88rem;
}

.neighborhood-group > p {
  margin: 3px 0 11px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  line-height: 1.7;
}

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.neighborhood-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 75px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 30px);
}

.text-call {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 25px;
}

.text-call > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 14px;
}

.text-call svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.text-call div {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.text-call small {
  color: var(--muted);
  font-size: 0.7rem;
}

.text-call b {
  color: var(--navy-950);
  letter-spacing: 0.03em;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion details[open] {
  border-color: rgba(10, 154, 165, 0.3);
  box-shadow: var(--shadow-sm);
}

.accordion summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 21px;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 9px;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 11px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(50%, -50%);
}

.accordion summary span::after {
  transform: translate(50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion details[open] summary span::after {
  transform: translate(50%, -50%) rotate(0deg);
}

.answer {
  padding: 0 21px 20px;
}

.answer p {
  margin: 0;
  padding-block-start: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.9;
}

.contact-section {
  padding-block: 70px;
  background: var(--white);
}

.contact-panel {
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: 52px 58px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(19, 185, 189, 0.23), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-panel::before {
  width: 350px;
  height: 350px;
  inset-block-start: -190px;
  inset-inline-end: -90px;
}

.contact-panel::after {
  width: 200px;
  height: 200px;
  inset-block-end: -140px;
  inset-inline-start: 30%;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.section-kicker.light {
  color: var(--teal-100);
}

.contact-copy h2 {
  max-width: 650px;
  margin-block-end: 10px;
  color: var(--white);
}

.contact-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.contact-actions {
  min-width: 250px;
  display: grid;
  gap: 10px;
}

.button-light,
.button-whatsapp-light {
  justify-content: flex-start;
  padding-inline: 17px;
  color: var(--navy-950);
  background: var(--white);
}

.button-whatsapp-light {
  color: var(--white);
  background: var(--green-600);
}

.button-light span,
.button-whatsapp-light span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button-light small,
.button-whatsapp-light small {
  font-size: 0.64rem;
  opacity: 0.7;
}

.button-light b,
.button-whatsapp-light b {
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #032631;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.65fr;
  gap: 85px;
  padding-block: 75px 50px;
}

.brand-footer .brand-mark {
  box-shadow: none;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand > p {
  max-width: 440px;
  margin: 21px 0 0;
  font-size: 0.78rem;
  line-height: 1.9;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.76rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-500);
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-contact a:nth-of-type(2) svg {
  fill: currentColor;
  stroke: none;
}

.developer-signature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  margin-block-end: 36px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.developer-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--amber-500);
  background: rgba(243, 167, 18, 0.1);
  border: 1px solid rgba(243, 167, 18, 0.18);
  border-radius: 14px;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 900;
}

.developer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
  line-height: 1.45;
}

.developer-copy > span {
  font-size: 0.69rem;
}

.developer-copy > a {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.developer-copy > a:hover {
  color: var(--amber-500);
}

.developer-copy small {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.42);
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
}

.developer-whatsapp {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: #baf3d2;
  background: rgba(15, 157, 88, 0.11);
  border: 1px solid rgba(15, 157, 88, 0.22);
  border-radius: 13px;
}

.developer-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.developer-whatsapp span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.developer-whatsapp small {
  font-family: Arial, sans-serif;
  font-size: 0.57rem;
  opacity: 0.68;
}

.developer-whatsapp b {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 0.67rem;
}

.footer-bottom a:hover {
  color: var(--teal-500);
}

.mobile-bottom-nav {
  display: none;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  inset-block-end: max(20px, env(safe-area-inset-bottom));
  inset-inline-start: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.float-button {
  position: relative;
  isolation: isolate;
  min-width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 13px 32px rgba(5, 45, 59, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  transition: transform 0.2s ease, padding 0.2s ease;
}

.float-button:hover {
  transform: translateY(-3px);
}

.float-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.float-whatsapp {
  --pulse-color: rgba(15, 157, 88, 0.42);
  background: var(--green-600);
}

.float-whatsapp svg {
  fill: currentColor;
}

.float-call {
  --pulse-color: rgba(7, 59, 76, 0.42);
  background: var(--navy-900);
}

.float-call svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.noscript-message {
  position: fixed;
  z-index: 110;
  inset-inline: 12px;
  inset-block-end: 12px;
  padding: 12px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 12px;
  text-align: center;
  font-size: 0.75rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy .eyebrow {
    animation: hero-rise 0.55s ease-out both;
  }

  .hero-copy h1 {
    animation: hero-rise 0.65s 0.08s ease-out both;
  }

  .hero-copy > p {
    animation: hero-rise 0.65s 0.16s ease-out both;
  }

  .hero-actions {
    animation: hero-rise 0.65s 0.24s ease-out both;
  }

  .hero-notes {
    animation: hero-rise 0.65s 0.31s ease-out both;
  }

  .hero-visual {
    animation: hero-scale 0.75s 0.12s ease-out both;
  }

  .visual-card {
    animation: gentle-float 6s 1s ease-in-out infinite;
  }

  .bubble-one,
  .bubble-three {
    animation: bubble-float 4.5s ease-in-out infinite;
  }

  .bubble-two {
    animation: bubble-float 4.5s 0.8s ease-in-out infinite reverse;
  }

  .status-dot {
    animation: status-pulse 2.2s ease-in-out infinite;
  }

  .float-button::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -5px;
    border: 2px solid var(--pulse-color);
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    animation: contact-ring 2.5s ease-out infinite;
  }

  .float-call::after {
    animation-delay: 0.85s;
  }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s ease,
      transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal.is-visible.service-card:hover {
    transform: translateY(-7px);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes bubble-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(15, 157, 88, 0.1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(15, 157, 88, 0.03);
  }
}

@keyframes contact-ring {
  0% {
    opacity: 0.62;
    transform: scale(0.84);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (max-width: 1100px) {
  :root {
    --container: 960px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 35px;
  }

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

  .electric-grid .service-card:last-child {
    grid-column: span 3;
    min-height: auto;
  }

  .why-grid {
    gap: 45px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-toggle {
    display: grid;
    margin-inline-start: auto;
  }

  .header-call {
    min-width: 46px;
    width: 46px;
    height: 46px;
    justify-content: center;
    padding: 0;
  }

  .header-call span {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset-block-start: var(--header-height);
    inset-inline: 0;
    max-height: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 20px;
    background: var(--white);
    border-bottom: 1px solid transparent;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease, padding 0.3s ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-block: 10px 20px;
    border-bottom-color: var(--line);
    box-shadow: 0 20px 40px rgba(5, 45, 59, 0.13);
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    min-height: 49px;
    display: flex;
    align-items: center;
    padding: 10px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding-block-start: 55px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card {
    max-width: 440px;
  }

  .trust-strip {
    margin-block-start: 55px;
  }

  .section {
    padding-block: 82px;
  }

  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-copy {
    max-width: 700px;
  }

  .process-card {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .area-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .neighborhoods-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-actions {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 35px;
  }
}

@media (max-width: 720px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-copy > p {
    font-size: 0.93rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .trust-strip > div {
    min-height: 78px;
    justify-content: center;
    padding-inline: 28px;
    text-align: center;
  }

  .trust-strip > div > span {
    align-items: center;
  }

  .trust-strip > div + div {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

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

  .service-card {
    min-height: 350px;
    align-items: center;
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
  }

  .service-link {
    margin-inline: auto;
  }

  .electric-grid .service-card:last-child {
    grid-column: auto;
    min-height: 350px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 420px;
  }

  .map-card {
    inset-inline: 14px;
    inset-block-end: 14px;
    max-width: none;
  }

  .neighborhoods-panel {
    padding: 30px;
    text-align: center;
  }

  .neighborhoods-copy .section-kicker,
  .neighborhoods-cta {
    margin-inline: auto;
  }

  .neighborhood-tags {
    justify-content: center;
  }

  .section-heading,
  .why-copy,
  .area-heading,
  .faq-intro,
  .contact-copy,
  .footer-main {
    text-align: center;
  }

  .section-heading .section-kicker,
  .why-copy .section-kicker,
  .area-heading .section-kicker,
  .faq-intro .section-kicker,
  .contact-copy .section-kicker {
    margin-inline: auto;
  }

  .category-heading {
    justify-content: center;
    text-align: center;
  }

  .category-heading > span:last-child {
    align-items: center;
  }

  .why-copy,
  .faq-intro {
    margin-inline: auto;
  }

  .feature-list {
    max-width: 560px;
    margin-inline: auto;
  }

  .feature-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-list div {
    align-items: center;
  }

  .process-head {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }

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

  .process-list li {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .process-list div {
    align-items: center;
  }

  .area-heading p,
  .contact-copy p,
  .footer-brand > p {
    margin-inline: auto;
  }

  .text-call {
    margin-inline: auto;
  }

  .contact-panel {
    padding: 40px 30px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .button-light,
  .button-whatsapp-light {
    justify-content: center;
  }

  .button-light span,
  .button-whatsapp-light span {
    align-items: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .brand-footer {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .developer-signature {
    grid-template-columns: auto 1fr;
  }

  .developer-whatsapp {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding-block-end: calc(86px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 95;
    inset-inline: 12px;
    inset-block-end: max(10px, env(safe-area-inset-bottom));
    min-height: 68px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 4px 6px;
    overflow: hidden;
    background: rgba(5, 45, 59, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    box-shadow: 0 17px 42px rgba(5, 45, 59, 0.32);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    position: relative;
    min-width: 0;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.57);
    border-radius: 16px;
    font-size: 0.61rem;
    font-weight: 800;
    line-height: 1.2;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
  }

  .mobile-bottom-nav a:active {
    transform: scale(0.96);
  }

  .mobile-bottom-nav a.is-active::before {
    content: "";
    position: absolute;
    inset-block-start: 3px;
    width: 22px;
    height: 3px;
    background: var(--amber-500);
    border-radius: 999px;
  }

  .mobile-bottom-nav svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .floating-contact {
    z-index: 96;
    inset-inline-start: auto;
    inset-inline-end: auto;
    inset-block-end: calc(max(10px, env(safe-area-inset-bottom)) + 80px);
    left: 12px;
    right: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .float-button {
    min-width: 52px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .electric-grid .service-card:last-child {
    min-height: 0;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    height: 68px;
  }

  :root {
    --header-height: 68px;
  }

  .header-inner {
    gap: 8px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy small {
    font-size: 0.57rem;
  }

  .menu-toggle,
  .header-call {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .hero {
    padding-block-start: 38px;
  }

  .hero h1 {
    margin-block-start: 17px;
    letter-spacing: -0.025em;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
  }

  .visual-card {
    max-width: 365px;
  }

  .visual-brand {
    width: 148px;
    height: 148px;
    border-width: 7px;
  }

  .visual-logo {
    width: 53px;
    height: 53px;
  }

  .visual-brand strong {
    font-size: 0.83rem;
  }

  .orbit-one {
    width: 76%;
    height: 76%;
  }

  .orbit-two {
    width: 60%;
    height: 60%;
  }

  .service-bubble {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .service-bubble svg {
    width: 31px;
    height: 31px;
  }

  .visual-status {
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-block-end: 33px;
  }

  .section-heading h2,
  .why-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 1.75rem;
  }

  .section-heading p,
  .why-copy > p,
  .faq-intro > p {
    font-size: 0.86rem;
  }

  .service-card,
  .electric-grid .service-card:last-child {
    min-height: 0;
    padding: 22px;
  }

  .service-card h3 {
    font-size: 1.04rem;
  }

  .service-card p {
    font-size: 0.81rem;
  }

  .service-link {
    margin-block-start: 3px;
  }

  .why-grid,
  .faq-grid {
    gap: 35px;
  }

  .process-card {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .feature-list li {
    padding: 13px;
  }

  .feature-list li > span {
    width: 40px;
    height: 40px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 390px;
  }

  .map-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .map-pin {
    margin-inline: auto;
  }

  .map-card > div {
    align-items: center;
  }

  .map-card > a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .neighborhoods-panel {
    gap: 27px;
    padding: 26px 18px;
    border-radius: 24px;
  }

  .neighborhoods-copy h3 {
    font-size: 1.55rem;
  }

  .neighborhoods-copy p {
    font-size: 0.8rem;
  }

  .neighborhoods-cta {
    width: 100%;
  }

  .neighborhood-group {
    padding: 16px 12px;
  }

  .accordion summary {
    min-height: 65px;
    padding: 16px;
    font-size: 0.83rem;
  }

  .answer {
    padding: 0 16px 17px;
  }

  .contact-section {
    padding-block: 48px;
  }

  .contact-panel {
    padding: 34px 21px;
    border-radius: 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block-start: 60px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .developer-signature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .developer-logo {
    margin-inline: auto;
  }

  .developer-copy {
    justify-content: center;
  }

  .developer-whatsapp {
    grid-column: auto;
    justify-content: center;
  }

  .footer-bottom .container {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

}

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

@media print {
  .site-header,
  .mobile-bottom-nav,
  .floating-contact,
  .hero-actions,
  .contact-section,
  .developer-signature {
    display: none !important;
  }

  .hero,
  .section,
  .footer-main {
    padding-block: 24px;
  }

  .service-card,
  .process-card,
  .map-shell {
    break-inside: avoid;
    box-shadow: none;
  }
}
