:root {
  --ink: #061424;
  --text: #27384a;
  --muted: #667586;
  --blue: #0078bd;
  --blue-dark: #003e78;
  --blue-soft: #eef9fd;
  --green: #32bd5b;
  --green-dark: #229944;
  --line: #d8e7ee;
  --paper: #f4fbfd;
  --white: #ffffff;
  --star: #ffa400;
  --shadow: 0 16px 38px rgba(14, 57, 90, 0.12);
  --radius: 22px;
  --max: 1180px;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 231, 238, 0.85);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  box-shadow: 0 12px 30px rgba(6, 20, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 150px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #233548;
  font-size: 0.95rem;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 120, 189, 0.28);
  outline-offset: 3px;
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(50, 189, 91, 0.28);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(50, 189, 91, 0.36);
}

.btn-primary {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1rem;
}

.btn-header {
  min-height: 46px;
  padding-inline: 18px;
}

.btn .wa-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.btn-header .wa-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.btn-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(14, 57, 90, 0.08);
}

.wa-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("assets/whatsapp-icon.svg") center / contain no-repeat;
  transform: translateY(0);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(72px, 10vw, 128px) 0 clamp(64px, 9vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 20, 36, 0.94) 0%, rgba(3, 20, 36, 0.82) 42%, rgba(3, 20, 36, 0.28) 78%),
    linear-gradient(180deg, rgba(3, 20, 36, 0.22), rgba(3, 20, 36, 0.28)),
    url("assets/hero-ai.png") 64% 28% / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  content: "";
  background: linear-gradient(180deg, rgba(244, 251, 253, 0), var(--paper));
  pointer-events: none;
}

.kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.6vw, 4.65rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-copy p:not(.kicker),
.section-title p,
.action-copy p,
.about p,
.cta-band p {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-copy p:not(.kicker) {
  max-width: 620px;
  font-size: 1.12rem;
}

.hero .hero-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero .kicker {
  color: #8be5ff;
}

.hero h1,
.hero-copy p:not(.kicker) {
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.95);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-photo {
  position: relative;
  margin: 0;
  height: min(560px, 66vh);
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 20, 36, 0) 56%, rgba(6, 20, 36, 0.34));
}

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

.brand-marquee {
  overflow: hidden;
  padding: 30px 0 36px;
  background: var(--white);
  border-top: 1px solid #eef3f6;
  border-bottom: 1px solid #dbe7ee;
}

.brand-marquee p {
  margin: 0 0 24px;
  color: #1d405f;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: marquee-left 28s linear infinite;
}

.brand-slide {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding-right: clamp(34px, 5vw, 72px);
}

.brand-slide span {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-size: clamp(1.45rem, 2.3vw, 2.18rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-daikin,
.brand-midea {
  color: #0072bc;
}

.brand-lg,
.brand-fujitsu,
.brand-gree {
  color: #d50735;
}

.brand-carrier {
  color: #d7193f;
}

.brand-electrolux,
.brand-springer {
  color: #00294f;
}

.brand-philco {
  color: #ee6b58;
}

.brand-elgin {
  color: #073f93;
}

.brand-tcl {
  color: #080808;
}

.brand-komeco {
  color: #0069b4;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 76px;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(14, 57, 90, 0.07);
}

.trust-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  position: relative;
}

.trust-icon::before {
  position: absolute;
  inset: 8px 7px;
  content: "";
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.action-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
  padding: 0 0 92px;
}

.action-media {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.action-media img,
.action-media video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.action-media video {
  display: block;
  background: #061424;
}

.play-pill {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(6, 20, 36, 0.16);
}

.check-list,
.modal-benefits {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li,
.modal-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 700;
}

.check-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: #dff8e7;
  color: var(--green-dark);
}

.check-icon::before {
  content: "";
  width: 13px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.reviews-section {
  padding: 118px 0 150px;
  background: transparent;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.rating-summary strong {
  display: block;
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stars {
  color: var(--star);
  font-size: 1.55rem;
  letter-spacing: 0;
  line-height: 1;
}

.rating-summary p {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
}

.google-word {
  color: #4285f4;
  font-size: 1.85rem;
  font-weight: 800;
}

.review-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 34px;
}

.review-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-left 42s linear infinite;
}

.review-carousel:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  width: 340px;
  flex: 0 0 340px;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 20px rgba(14, 57, 90, 0.075);
}

.review-card header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #6557e8;
  color: var(--white);
  font-weight: 900;
}

.avatar.blue {
  background: #0589c5;
}

.avatar.pink {
  background: #ee426f;
}

.avatar.green {
  background: #24a86a;
}

.avatar.orange {
  background: #ef7f22;
}

.avatar.teal {
  background: #0e9aa7;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.google-mark {
  color: #4285f4;
  font-size: 1.5rem;
  font-weight: 900;
}

.review-card p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.65;
}

@keyframes reviews-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.why,
.services,
.equipment,
.gallery,
.about,
.contact {
  padding: 86px 0 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-grid article,
.service-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(14, 57, 90, 0.07);
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 9px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.why-grid p,
.service-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center;
}

.service-grid article:nth-child(1) img {
  object-position: center 28%;
}

.service-grid article:nth-child(2) img,
.service-grid article:nth-child(3) img {
  object-position: center;
}

.service-grid article:nth-child(4) img,
.service-grid article:nth-child(5) img {
  object-position: center 22%;
}

.service-grid article:nth-child(6) img {
  object-position: center;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-grid h3 {
  margin-bottom: 10px;
}

.service-grid p {
  margin-bottom: 20px;
}

.service-btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.service-btn .wa-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.equipment {
  padding-top: 94px;
}

.equipment .section-title {
  max-width: 880px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equipment-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(14, 57, 90, 0.07);
  flex-direction: column;
}

.equipment-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.equipment-card:nth-child(1) img {
  object-position: center 40%;
}

.equipment-card:nth-child(2) img {
  object-position: center 24%;
}

.equipment-card:nth-child(3) img {
  object-position: center 18%;
}

.equipment-card:nth-child(4) img,
.equipment-card:nth-child(5) img {
  object-position: center 24%;
}

.equipment-card:nth-child(6) img {
  object-position: center;
}

.equipment-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.equipment-body h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.28rem;
}

.equipment-body p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.equipment-btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.equipment-btn .wa-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.stats {
  display: grid;
  gap: 16px;
}

.stats strong {
  display: block;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(14, 57, 90, 0.07);
  color: var(--blue);
  font-size: 2.2rem;
}

.stats span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1rem;
}

.cta-band {
  margin-top: 88px;
  padding: 96px 0 104px;
  background: linear-gradient(135deg, var(--blue-dark), #0696ca);
  color: var(--white);
  text-align: center;
}

.cta-band .page-width {
  max-width: 840px;
}

.cta-band p {
  color: #dff5ff;
}

.cta-band .btn {
  gap: 12px;
}

.cta-band .btn .wa-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transform: translateY(0);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding-bottom: 88px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfe;
  padding: 16px;
  color: var(--ink);
  resize: vertical;
}

.site-footer {
  background: #061424;
  color: #d8e7ee;
  padding: 46px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-grid img {
  width: 84px;
  height: 84px;
  padding: 7px;
  border-radius: 999px;
  background: var(--white);
  object-fit: contain;
}

.footer-grid p {
  margin: 0;
  color: #c7d5df;
  line-height: 1.6;
}

.footer-grid strong,
.footer-grid a {
  display: block;
}

.footer-grid a {
  margin-top: 8px;
  color: #61df83;
  font-weight: 900;
  cursor: pointer;
}

.site-footer small {
  display: block;
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  color: #91a3b1;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(50, 189, 91, 0.26);
  cursor: pointer;
}

.floating-wa .wa-icon {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px 18px;
}

.offer-modal.is-visible {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 36, 0.68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(86vh, 640px);
  overflow: auto;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 20, 36, 0.58);
  color: var(--white);
  cursor: pointer;
  font-size: 2.45rem;
  line-height: 1;
}

.modal-photo {
  width: 100%;
  height: clamp(112px, 12vw, 150px);
  object-fit: cover;
}

.modal-offer {
  position: relative;
  width: calc(100% - 46px);
  margin: -36px auto 0;
  padding: 20px 18px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00469c 0%, #007fc0 58%, #00a7c8 100%);
  color: var(--white);
  text-align: center;
  box-shadow: 0 22px 48px rgba(0, 89, 154, 0.28);
}

.modal-offer span {
  display: inline-flex;
  padding: 7px 18px;
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-offer h2 {
  margin: 14px 0 10px;
  font-size: clamp(3.3rem, 6vw, 4.9rem);
  line-height: 0.82;
}

.modal-offer p {
  max-width: 540px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.55vw, 1.18rem);
  line-height: 1.28;
  font-weight: 800;
}

.modal-benefits {
  padding: 20px 34px 12px;
  gap: 9px;
}

.modal-benefits li {
  font-size: 0.98rem;
}

.modal-wa {
  width: calc(100% - 68px);
  min-height: 50px;
  margin: 4px 34px 12px;
}

.modal-decline {
  display: block;
  margin: 0 auto 20px;
  border: 0;
  background: transparent;
  color: #556273;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero,
  .action-section,
  .reviews-layout,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 82px);
    background:
      linear-gradient(90deg, rgba(3, 20, 36, 0.94) 0%, rgba(3, 20, 36, 0.78) 55%, rgba(3, 20, 36, 0.32) 100%),
      linear-gradient(180deg, rgba(3, 20, 36, 0.18), rgba(3, 20, 36, 0.32)),
      url("assets/hero-ai.png") 66% 28% / cover no-repeat;
  }

  .brand-marquee {
    padding: 24px 0 30px;
  }

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

  .service-grid,
  .equipment-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .page-width {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    width: 134px;
    min-width: 134px;
  }

  .btn-header {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: calc(100svh - 66px);
    padding: 70px 0 62px;
    background:
      linear-gradient(180deg, rgba(3, 20, 36, 0.82), rgba(3, 20, 36, 0.64)),
      url("assets/hero-ai.png") 58% 25% / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .action-copy .btn,
  .cta-band .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-photo,
  .action-media,
  .action-media img,
  .action-media video {
    min-height: 390px;
    height: 390px;
  }

  .trust-row,
  .service-grid,
  .equipment-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .action-section,
  .reviews-section,
  .why,
  .services,
  .equipment,
  .gallery,
  .about,
  .contact {
    padding-top: 58px;
  }

  .equipment-card img {
    height: 255px;
  }

  .reviews-layout {
    gap: 24px;
  }

  .review-carousel {
    width: calc(100vw - 28px);
    margin-inline: calc((100% - (100vw - 28px)) / 2);
  }

  .review-card {
    width: min(318px, calc(100vw - 54px));
    flex-basis: min(318px, calc(100vw - 54px));
    min-height: auto;
  }

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

  .floating-wa {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .modal-card {
    border-radius: 24px;
    width: min(520px, 100%);
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 2.3rem;
  }

  .modal-offer {
    width: calc(100% - 28px);
    margin-top: -48px;
    border-radius: 22px;
    padding: 22px 16px 24px;
  }

  .modal-offer span {
    padding-inline: 16px;
    font-size: 0.72rem;
  }

  .modal-benefits {
    padding: 24px 24px 16px;
  }

  .modal-wa {
    width: calc(100% - 48px);
    margin-inline: 24px;
  }
}

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

  .brand-track {
    animation: none;
  }
}
