:root {
  --orange: #f97316;
  --orange-strong: #ea580c;
  --sun: #ffbf3f;
  --navy: #0b1728;
  --navy-soft: #10243d;
  --green: #16a34a;
  --green-strong: #12813d;
  --ink: #182230;
  --muted: #667085;
  --line: #e7eaf0;
  --surface: #ffffff;
  --soft: #f5f7fb;
  --warm: #fff7ed;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 12px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(100% - 24px, 1240px);
  margin-inline: auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 234, 240, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 236px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 9px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--orange-strong);
}

.header-actions,
.hero-actions,
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
  background: var(--orange-strong);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.22);
}

.btn-green:hover {
  background: var(--green-strong);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 132px 0 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 23, 40, 0.97), rgba(15, 43, 70, 0.92) 48%, rgba(249, 115, 22, 0.62)),
    radial-gradient(circle at 84% 20%, rgba(255, 191, 63, 0.35), transparent 27%),
    radial-gradient(circle at 18% 80%, rgba(22, 163, 74, 0.14), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
}

.hero .eyebrow {
  color: #ffdba8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h2 {
  margin: 20px 0 14px;
  font-size: clamp(1.22rem, 2.8vw, 2rem);
  line-height: 1.15;
  color: #ffedd5;
}

.hero p {
  max-width: 560px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-mobile-strip {
  display: none;
}

.hero-actions {
  margin: 28px 0 22px;
}

.hero-actions .btn-primary,
.hero-actions .btn-green {
  border-radius: 999px;
  position: relative;
}

.hero-actions .btn-primary {
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.13), 0 18px 38px rgba(249, 115, 22, 0.36);
}

.hero-actions .btn-green {
  box-shadow: 0 0 0 7px rgba(22, 163, 74, 0.14), 0 18px 38px rgba(22, 163, 74, 0.34);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible,
.hero-actions .btn-primary:focus-visible {
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.08), 0 22px 48px rgba(249, 115, 22, 0.34);
}

.hero-actions .btn-green:hover,
.hero-actions .btn-green:focus-visible {
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.08), 0 22px 48px rgba(22, 163, 74, 0.34);
}

.hero-highlights,
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-highlights span,
.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: var(--radius);
  font-weight: 800;
}

.hero-highlights span {
  gap: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-highlights strong {
  color: #ffbf3f;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

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

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  left: 0;
  top: 56px;
  width: 68%;
  height: 420px;
}

.hero-photo-inverter {
  right: 0;
  top: 0;
  width: 43%;
  height: 214px;
}

.hero-photo-backup {
  right: 6%;
  bottom: 10px;
  width: 44%;
  height: 245px;
}

.media-card {
  position: absolute;
  left: 24px;
  bottom: 34px;
  width: min(290px, 58%);
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow);
}

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

.media-card span {
  color: var(--muted);
  margin-top: 4px;
}

.hero-brand-strip {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-brand-strip span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.trust-bar {
  padding: 16px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--navy);
}

.mini-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--orange), var(--green));
  flex: 0 0 14px;
}

.section {
  padding: 78px 0;
}

.section-tint {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.section-head p,
.split p,
.choose p,
.contact-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 40px;
  align-items: center;
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.about-strip span {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--warm);
  color: var(--navy);
  font-weight: 800;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 14px;
  align-items: end;
}

.image-stack img,
.seo-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  height: 430px;
}

.image-stack img:last-child {
  height: 310px;
}

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

.service-card,
.product-card,
.review-card,
.contact-card,
.map-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.service-card,
.product-card,
.review-card {
  padding: 22px;
}

.service-card h3,
.product-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.service-card p,
.product-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-icon,
.choose-icon {
  color: var(--orange);
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(22, 163, 74, 0.1));
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.14);
}

.service-card:nth-child(2n) .section-icon,
.product-card:nth-child(2n) .section-icon {
  color: var(--green);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.14), rgba(37, 99, 235, 0.1));
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.14);
}

.service-card:nth-child(3n) .section-icon,
.product-card:nth-child(3n) .section-icon {
  color: #2563eb;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(249, 115, 22, 0.1));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.card-icon {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(22, 163, 74, 0.13));
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--orange);
  border-radius: 4px;
}

.card-icon::after {
  width: 7px;
  height: 13px;
  inset: 14px 7px auto auto;
  background: var(--green);
  border: 0;
}

.bolt-icon::before,
.power-icon::before,
.check-icon::before,
.bike-icon::before,
.ups-icon::before,
.home-icon::before,
.exchange-icon::before {
  inset: 9px 16px;
  border: 0;
  border-radius: 2px;
  background: var(--orange);
  transform: skew(-18deg);
}

.bolt-icon::after,
.power-icon::after,
.check-icon::after,
.bike-icon::after,
.ups-icon::after,
.home-icon::after,
.exchange-icon::after {
  inset: 20px 14px auto;
  width: 14px;
  height: 3px;
  border: 0;
  background: var(--green);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: none;
  display: none;
  width: 54px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  margin-bottom: 6px;
}

.product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-strong);
  font-weight: 900;
  font-size: 0.92rem;
}

.brand-section {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

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

.brand-card {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 950;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.brand-card-dark {
  background: linear-gradient(135deg, #0b1728, #1f344f);
  color: #fff;
}

.brand-card-dark:hover,
.brand-card-dark:focus-visible {
  border-color: rgba(255, 191, 63, 0.55);
}

.brand-card img {
  width: 100%;
  max-width: 148px;
  height: 46px;
  object-fit: contain;
}

.brand-card span {
  display: block;
}

.brand-card:nth-child(3n + 1) {
  border-top: 4px solid var(--orange);
}

.brand-card:nth-child(3n + 2) {
  border-top: 4px solid var(--green);
}

.brand-card:nth-child(3n) {
  border-top: 4px solid #2563eb;
}

.choose {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 23, 40, 0.97), rgba(16, 36, 61, 0.96)),
    linear-gradient(90deg, rgba(249, 115, 22, 0.24), transparent);
}

.choose h2,
.choose .eyebrow {
  color: #fff;
}

.choose p {
  color: rgba(255, 255, 255, 0.76);
}

.choose-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
}

.choose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choose-list div {
  padding: 18px 18px 18px 76px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.choose-list strong,
.choose-list span {
  display: block;
}

.choose-icon {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #ffbf3f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.choose-list div:nth-child(2n) .choose-icon {
  color: #22c55e;
}

.choose-list div:nth-child(3n) .choose-icon {
  color: #93c5fd;
}

.choose-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
}

.seo-block {
  background: var(--warm);
}

.seo-grid {
  align-items: center;
}

.seo-grid img {
  height: 390px;
}

.area-tags {
  margin-top: 20px;
}

.area-tags span {
  background: #fff;
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: var(--navy);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: #fff;
  color: var(--navy);
  padding: 18px 50px 18px 18px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 1.06fr);
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-details {
  margin: 22px 0;
  display: grid;
  gap: 8px;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  color: var(--orange-strong);
  font-weight: 900;
}

.map-card {
  min-height: 450px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-grid strong {
  display: block;
  color: #fff;
}

.footer-grid p {
  margin: 0;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.34);
}

.float-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1120px) {
  .header-actions {
    display: none;
  }

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

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

@media (max-width: 860px) {
  .site-header {
    padding: 8px 0;
  }

  .nav-wrap {
    min-height: 62px;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .hero {
    padding-top: 116px;
    min-height: auto;
  }

  .hero-grid,
  .split,
  .choose-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-visual {
    min-height: 0;
    height: 520px;
  }

  .hero-photo-main {
    top: 42px;
    width: 66%;
    height: 370px;
  }

  .hero-photo-inverter {
    width: 43%;
    height: 185px;
  }

  .hero-photo-backup {
    right: 4%;
    width: 45%;
    height: 215px;
  }

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

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child,
  .image-stack img:last-child,
  .seo-grid img {
    height: 300px;
  }

  .choose-list,
  .about-strip {
    grid-template-columns: 1fr;
  }

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

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

  .logo-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .brand strong {
    font-size: 1.28rem;
    line-height: 1;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero .eyebrow {
    order: 1;
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .hero h1 {
    order: 3;
    margin-top: 18px;
    font-size: clamp(2.15rem, 12vw, 3.05rem);
    line-height: 0.98;
  }

  .hero-mobile-strip {
    position: relative;
    order: 2;
    display: block;
    height: 330px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  }

  .hero-mobile-strip img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
  }

  .hero-mobile-strip img:last-child {
    inset: auto 12px 12px auto;
    width: 42%;
    height: 128px;
    object-position: center;
    border: 3px solid rgba(255, 255, 255, 0.86);
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  }

  .hero-mobile-strip::after {
    content: "Battery + Inverter Service";
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: 50%;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: rgba(11, 23, 40, 0.82);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.2;
  }

  .hero-sub {
    display: none;
  }

  .hero-media {
    display: none;
  }

  .hero-actions {
    order: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 18px 0 0;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 11px 10px;
    font-size: 0.93rem;
  }

  .hero-actions .btn-light {
    display: none;
  }

  .hero-highlights {
    display: none;
  }

  .cta-row .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .trust-grid,
  .card-grid,
  .brand-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .review-card,
  .contact-card {
    padding: 18px;
  }

  .media-card {
    left: 12px;
    right: auto;
    bottom: 108px;
    width: calc(100% - 24px);
  }

  .map-card,
  .map-card iframe {
    min-height: 340px;
  }

  .footer-grid {
    display: grid;
  }
}
