:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --panel: rgba(20, 20, 22, 0.78);
  --panel-solid: #121215;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f8f8f6;
  --muted: #b9b9b5;
  --muted-2: #83837f;
  --orange: #f25a1d;
  --orange-2: #ff7b24;
  --red: #e5212d;
  --red-2: #ff3945;
  --volt: #54f0ff;
  --shadow-orange: 0 0 34px rgba(242, 90, 29, 0.35);
  --shadow-red: 0 0 42px rgba(229, 33, 45, 0.28);
  --max: 1180px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 90, 29, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(229, 33, 45, 0.18), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #0b0b0d 48%, #050505 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.32;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 16px,
      rgba(255, 255, 255, 0.09) 17px,
      transparent 18px
    );
  mix-blend-mode: overlay;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--text);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 0;
}

.section-shell {
  position: relative;
  min-height: auto;
  padding-top: calc(var(--header-h) + clamp(34px, 5vw, 72px));
  padding-bottom: clamp(28px, 4vw, 56px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--header-h);
  background: rgba(5, 5, 5, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header::after {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(242, 90, 29, 0.85), rgba(229, 33, 45, 0.75), transparent);
  opacity: 0.58;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.header-inner {
  display: grid;
  grid-template-columns: 178px 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(178px, 40vw);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(242, 90, 29, 0.28));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.2rem;
  overflow: hidden;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.btn::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 70%);
  transform: translateX(-120%);
}

.btn:hover,
.btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  animation: button-shine 0.85s ease forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  box-shadow: 0 14px 42px rgba(242, 90, 29, 0.24);
}

.btn-secondary {
  color: var(--text);
  background:
    linear-gradient(var(--black-2), var(--black-2)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.85), rgba(229, 33, 45, 0.7)) border-box;
  border: 1px solid transparent;
}

.btn-contrast {
  color: var(--black);
  background: var(--text);
  border-color: rgba(0, 0, 0, 0.18);
}

.btn-small {
  min-height: 44px;
  padding: 0.72rem 0.92rem;
  font-size: 0.86rem;
}

.hero {
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  display: block;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.2;
}

.orb-orange {
  top: 12%;
  right: 48%;
  background: radial-gradient(circle, rgba(242, 90, 29, 0.8), transparent 68%);
  animation: orb-breathe 4.8s ease-in-out infinite;
}

.orb-red {
  right: -8rem;
  bottom: 8%;
  background: radial-gradient(circle, rgba(229, 33, 45, 0.72), transparent 70%);
  animation: orb-breathe 6.2s ease-in-out infinite;
  animation-delay: -3.1s;
}

.speed-line {
  position: absolute;
  height: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(242, 90, 29, 0.82), rgba(229, 33, 45, 0.7), transparent);
  transform: rotate(-11deg);
  opacity: 0.72;
  filter: drop-shadow(0 0 12px rgba(242, 90, 29, 0.48));
}

.speed-line::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 90, 0.95), rgba(255, 140, 40, 0.7), transparent);
  transform: translateX(-130%);
  animation: speed-streak 3.2s ease-in-out infinite;
}

.speed-line-a::after { animation-delay: 0s; }
.speed-line-b::after { animation-delay: -1.15s; }
.speed-line-c::after { animation-delay: -2.35s; }

.speed-line-a {
  top: 24%;
  right: -10%;
  width: 44rem;
}

.speed-line-b {
  top: 42%;
  left: -18%;
  width: 34rem;
}

.speed-line-c {
  right: 2%;
  bottom: 18%;
  width: 28rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.eyebrow,
.section-kicker,
.badge {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--orange-2);
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: var(--shadow-orange);
}

.hero-logo {
  width: min(330px, 72vw);
  margin-top: 1.4rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 22px rgba(242, 90, 29, 0.28));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  margin-top: 2rem;
  color: var(--muted);
}

.phone-link,
.inline-link,
.hero-proof strong {
  color: var(--text);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.phone-link:hover,
.phone-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--orange-2);
  text-shadow: 0 0 18px rgba(242, 90, 29, 0.36);
}

.inline-link {
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(242, 90, 29, 0.5);
  text-underline-offset: 0.18em;
}

.social-icon-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--text);
  background:
    linear-gradient(rgba(18, 18, 21, 0.88), rgba(12, 12, 14, 0.88)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.88), rgba(229, 33, 45, 0.74)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon-link svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.86), rgba(229, 33, 45, 0.75), rgba(255, 255, 255, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.62), var(--shadow-red);
}

.image-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, transparent 35%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(to top, rgba(5, 5, 5, 0.78), transparent 50%);
}

.image-frame::after {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 104px;
  height: 104px;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-frame {
  width: 100%;
  height: min(68vw, 600px);
  min-height: 560px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
}

.hero-frame::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.38) 0%, transparent 42%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(to top, rgba(5, 5, 5, 0.58), transparent 56%);
}

.hero-frame img {
  object-position: 32% 56%;
  transform: scale(1.08);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  gap: 0.62rem;
  align-items: center;
  max-width: min(245px, 68vw);
  padding: 0.78rem 0.95rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  background:
    linear-gradient(rgba(15, 15, 16, 0.84), rgba(15, 15, 16, 0.74)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.95), rgba(229, 33, 45, 0.75)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.52), 0 0 24px rgba(242, 90, 29, 0.2);
  backdrop-filter: blur(16px);
  animation: float-card 5.4s ease-in-out infinite;
}

.floating-card svg {
  width: 19px;
  height: 19px;
  color: var(--orange-2);
}

.card-maintenance {
  top: 12%;
  right: -7%;
  left: auto;
}

.card-review {
  top: 27%;
  right: -8%;
  animation-delay: -1.8s;
}

.card-parts {
  top: 42%;
  right: -7%;
  bottom: auto;
  animation-delay: -0.8s;
}

.card-electric {
  top: 57%;
  right: -8%;
  bottom: auto;
  left: auto;
  animation-delay: -2.6s;
}

.card-price {
  top: 72%;
  right: -7%;
  bottom: auto;
  left: auto;
  animation-delay: -3.4s;
}

.trust-strip {
  position: relative;
  margin-top: clamp(-26px, -2vw, -14px);
  padding: 0 0 clamp(50px, 5vw, 62px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(242, 90, 29, 0.65), rgba(229, 33, 45, 0.45), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}

.trust-card {
  min-height: 134px;
  padding: 1.35rem;
  background: rgba(12, 12, 14, 0.94);
  transition: background 0.22s ease, transform 0.22s ease;
}

.trust-card:hover {
  background: rgba(24, 18, 16, 0.96);
  transform: translateY(-3px);
}

.trust-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 1.1rem;
  color: var(--orange-2);
}

.trust-card span,
.trust-card strong {
  display: block;
}

.trust-card span {
  margin-bottom: 0.36rem;
  color: var(--text);
  font-weight: 900;
}

.trust-card strong {
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.stat-row span {
  padding: 0.66rem 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.stat-row strong {
  color: var(--text);
}

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

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

.section-heading h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
  line-height: 1.72;
}

.services::before,
.why-section::before,
.parts-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16rem),
    radial-gradient(circle at 8% 52%, rgba(242, 90, 29, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(229, 33, 45, 0.13), transparent 28rem);
}

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

.service-card,
.why-card,
.category-card,
.electric-cards article {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 18, 21, 0.78), rgba(12, 12, 14, 0.84)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.58), rgba(229, 33, 45, 0.36), rgba(255, 255, 255, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before,
.why-card::before,
.category-card::before,
.electric-cards article::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(242, 90, 29, 0.16), rgba(229, 33, 45, 0.08));
  transition: opacity 0.24s ease;
}

.service-card:hover,
.why-card:hover,
.category-card:hover,
.electric-cards article:hover {
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.46), 0 0 28px rgba(242, 90, 29, 0.18);
  transform: translateY(-5px);
}

.service-card:hover::before,
.why-card:hover::before,
.category-card:hover::before,
.electric-cards article:hover::before {
  opacity: 1;
}

.service-card {
  padding: 1.25rem;
}

.service-card svg,
.why-card svg {
  position: relative;
  width: 25px;
  height: 25px;
  margin-bottom: 1.15rem;
  color: var(--orange-2);
}

.service-card h3,
.why-card h3 {
  position: relative;
  margin-bottom: 0.62rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.18;
}

.service-card p,
.why-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.support-text {
  width: min(850px, 100%);
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  text-align: center;
}

.electric-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 34%, rgba(84, 240, 255, 0.09), transparent 26rem),
    radial-gradient(circle at 14% 18%, rgba(242, 90, 29, 0.19), transparent 28rem),
    linear-gradient(135deg, rgba(8, 8, 10, 0.96), rgba(18, 12, 12, 0.92));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.electric-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.electric-background::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(84, 240, 255, 0.16) 18% 18.2%, transparent 18.2%),
    linear-gradient(0deg, transparent 0 28%, rgba(242, 90, 29, 0.18) 28% 28.2%, transparent 28.2%),
    linear-gradient(90deg, transparent 0 68%, rgba(229, 33, 45, 0.2) 68% 68.2%, transparent 68.2%);
  background-size: 220px 180px;
}

.electric-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.badge {
  padding: 0.55rem 0.75rem;
  color: var(--text);
  background:
    linear-gradient(rgba(15, 15, 18, 0.76), rgba(15, 15, 18, 0.68)) padding-box,
    linear-gradient(135deg, var(--orange), var(--red)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: var(--shadow-red);
}

.badge svg {
  width: 18px;
  height: 18px;
  color: var(--orange-2);
}

.electric-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.impact-quote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.35rem 1.35rem 1.35rem 1.55rem;
  color: var(--text);
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.16;
  background: rgba(255, 255, 255, 0.045);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
}

.electric-panel {
  display: grid;
  gap: 1rem;
}

.electric-image {
  height: clamp(390px, 32vw, 430px);
}

.electric-image img {
  object-fit: cover;
  object-position: 50% 50%;
  padding: 0;
}

.parts-image img {
  object-position: 46% 50%;
}

.electric-image::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.74), transparent 42%, rgba(5, 5, 5, 0.42)),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.58), transparent 34%, rgba(5, 5, 5, 0.22)),
    radial-gradient(circle at 65% 38%, rgba(84, 240, 255, 0.16), transparent 22rem);
}

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

.electric-cards article {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-height: 78px;
  padding: 1rem;
  color: var(--text);
  font-weight: 900;
}

.electric-cards svg {
  position: relative;
  width: 21px;
  height: 21px;
  color: var(--volt);
  filter: drop-shadow(0 0 10px rgba(84, 240, 255, 0.36));
}

.parts-grid,
.about-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.parts-image,
.about-image {
  height: clamp(390px, 52vw, 620px);
}

.parts-image {
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.about-content > p {
  color: var(--muted);
  line-height: 1.76;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.badge-grid span {
  padding: 0.68rem 0.86rem;
  color: var(--text);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.category-card {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 72px;
  padding: 1rem;
  color: var(--text);
  font-weight: 900;
}

.category-card svg {
  position: relative;
  width: 21px;
  height: 21px;
  color: var(--orange-2);
}

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

.why-card {
  padding: 1.25rem;
}

.cta-section {
  position: relative;
  padding: clamp(58px, 7vw, 92px) 0;
  overflow: hidden;
}

.cta-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 50%, rgba(242, 90, 29, 0.28), transparent 26rem),
    radial-gradient(circle at 74% 40%, rgba(229, 33, 45, 0.24), transparent 24rem);
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(242, 90, 29, 0.95), rgba(229, 33, 45, 0.92)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 28px 92px rgba(229, 33, 45, 0.22), 0 24px 80px rgba(0, 0, 0, 0.4);
}

.cta-inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 42% 43%, transparent 43%),
    repeating-linear-gradient(110deg, rgba(0, 0, 0, 0.11) 0 2px, transparent 2px 18px);
  opacity: 0.45;
}

.cta-inner > * {
  position: relative;
}

.cta-inner h2 {
  max-width: 800px;
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.cta-inner p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.cta-inner .section-kicker {
  color: rgba(255, 255, 255, 0.9);
}

.cta-phone {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
  text-align: center;
}

.location-section {
  padding-top: clamp(72px, 8vw, 118px);
}

.location-grid {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  align-items: stretch;
}

.location-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(rgba(18, 18, 21, 0.82), rgba(10, 10, 12, 0.9)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.68), rgba(229, 33, 45, 0.5), rgba(255, 255, 255, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.38);
}

.location-card h2 {
  margin: 0.7rem 0 1.4rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-list .instagram-row {
  grid-template-columns: 1fr;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--orange-2);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.map-wrap {
  min-height: 480px;
  overflow: hidden;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(135deg, rgba(242, 90, 29, 0.7), rgba(229, 33, 45, 0.52), rgba(255, 255, 255, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: none;
}

.site-footer {
  position: relative;
  padding: 56px 0 28px;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--orange), var(--red), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(180px, 0.7fr) minmax(160px, 0.5fr);
  gap: 2rem;
}

.footer-brand img {
  width: min(240px, 70vw);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 18px rgba(242, 90, 29, 0.24));
}

.footer-brand p,
.footer-column span,
.footer-bottom {
  color: var(--muted);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column h2 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--orange-2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  justify-content: space-between;
  padding-top: 26px;
  margin-top: 34px;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--text);
  background: linear-gradient(135deg, #16b85f, #0f8b46 58%, var(--orange));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42), 0 0 26px rgba(22, 184, 95, 0.45);
  animation: whatsapp-pulse 2.8s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =====================================================
   ENHANCEMENTS
   ===================================================== */

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 8px rgba(242, 90, 29, 0.55), 0 0 2px rgba(255, 100, 30, 0.8);
  pointer-events: none;
  transform-origin: left;
}

/* Custom cursor */
#cursor-dot {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #f25a1d !important;
  box-shadow: 0 0 12px rgba(242, 90, 29, 0.9) !important;
  pointer-events: none !important;
  transform: translate(-100px, -100px);
}

#cursor-ring {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99998 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(242, 90, 29, 0.7) !important;
  pointer-events: none !important;
  transform: translate(-100px, -100px);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.custom-cursor,
.custom-cursor * {
  cursor: none !important;
}

.custom-cursor.cursor-on-link #cursor-dot {
  background: #ff7b24 !important;
}

.custom-cursor.cursor-on-link #cursor-ring {
  width: 54px !important;
  height: 54px !important;
  border-color: rgba(242, 90, 29, 0.85) !important;
  background: rgba(242, 90, 29, 0.07) !important;
}

/* H1 word reveal */
.word-inner {
  display: inline-block;
}

.js [data-word-reveal].reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Orb breathing */
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.24); opacity: 0.34; }
}

/* Speed streak */
@keyframes speed-streak {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(680%); }
}

/* Tilt card GPU hint */
.service-card,
.why-card,
.trust-card {
  will-change: transform;
}

@keyframes button-shine {
  to {
    transform: translateX(120%);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42), 0 0 22px rgba(22, 184, 95, 0.42);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.48), 0 0 34px rgba(22, 184, 95, 0.56);
  }
}

@media (max-width: 1080px) {
  :root {
    --header-h: 78px;
  }

  .header-inner {
    grid-template-columns: 160px 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 16px;
    font-size: 0.76rem;
  }

  .hero-grid,
  .electric-grid,
  .parts-grid,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-frame {
    height: 540px;
    min-height: 540px;
  }

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

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

  .parts-media {
    order: 2;
  }

  .parts-content {
    order: 1;
  }
}

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

  .header-inner {
    grid-template-columns: 150px 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 12px;
    left: 12px;
    display: grid;
    justify-content: stretch;
    padding: 1rem;
    pointer-events: none;
    background: rgba(8, 8, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.4vw, 3.4rem);
  }

  .hero-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-frame {
    height: 500px;
    min-height: 500px;
  }

  .floating-card {
    display: none;
  }

  .card-maintenance,
  .card-review {
    right: auto;
    left: auto;
  }

  .card-parts,
  .card-electric,
  .card-price {
    right: auto;
    left: auto;
  }

  .electric-cards,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-phone {
    grid-column: auto;
    text-align: left;
  }

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

@media (max-width: 620px) {
  .section-shell {
    min-height: auto;
  }

  .hero-logo {
    width: min(310px, 82vw);
  }

  .hero-subtitle,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-frame {
    height: 420px;
    min-height: 420px;
  }

  .floating-card {
    display: none;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-card {
    min-height: auto;
  }

  .stat-row {
    justify-content: flex-start;
  }

  .parts-image,
  .about-image {
    height: 380px;
  }

  .electric-image {
    height: 320px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 370px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
}
