@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #062a49;
  --navy-deep: #021b34;
  --blue: #007fbe;
  --cyan: #39bdf2;
  --sky: #dff5ff;
  --yellow: #ffc400;
  --orange: #ff9900;
  --green: #16c765;
  --white: #ffffff;
  --text: #10233f;
  --muted: #607089;
  --line: rgba(18, 44, 74, 0.12);
  --shadow: 0 22px 60px rgba(0, 31, 63, 0.24);
  --soft-shadow: 0 12px 35px rgba(15, 44, 73, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #eef8fd;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  font-weight: 500;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 0 4vw;
}

.top-bar {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 400;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: var(--container);
  min-height: 42px;
  margin: 0 auto;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-link--location {
  margin-left: auto;
}

.top-icon {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  color: #d7f5ff;
  font-size: 10px;
  text-transform: uppercase;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

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

.brand__logo {
  width: auto;
  max-width: 260px;
  height: 54px;
  object-fit: contain;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #0a6797;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid rgba(255, 196, 0, 0.9);
  border-radius: 50%;
  background: #fff8d8;
}

.brand__name {
  color: #061d36;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.primary-nav__link {
  position: relative;
  color: #19304b;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
}

.primary-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav__link:hover::after,
.primary-nav__link.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  background: var(--green);
  border-radius: 6px;
  box-shadow: 0 12px 22px rgba(22, 199, 101, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(22, 199, 101, 0.34);
}

.header-cta img,
.btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 4vw 66px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 20, 38, 0.58), rgba(0, 57, 96, 0.28) 52%, rgba(0, 156, 210, 0.18)),
    url("../assets/images/home-cover.webp") center / cover no-repeat;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 20, 38, 0.38), rgba(0, 57, 96, 0.18) 47%, rgba(0, 156, 210, 0.08)),
    repeating-linear-gradient(125deg, transparent 0 95px, rgba(255, 255, 255, 0.045) 96px 97px);
}

.hero__bg::before {
  position: absolute;
  right: 16%;
  bottom: -12%;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 64%);
  opacity: 0.55;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.93fr) minmax(250px, 0.72fr) minmax(360px, 0.9fr);
  gap: 36px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__content {
  padding-top: 22px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  margin-bottom: 28px;
  color: #dff7ff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(23, 128, 180, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
}

.trust-badge__dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 196, 0, 0.15);
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__lead {
  display: inline-block;
  position: relative;
  margin: 20px 0 20px;
  color: #95dcff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.hero__lead::after {
  position: absolute;
  right: 4px;
  bottom: -8px;
  left: 46%;
  height: 5px;
  content: "";
  background: var(--yellow);
  border-radius: 99px;
  transform: rotate(-2deg);
}

.hero__copy {
  max-width: 430px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.52;
  font-weight: 400;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.hero-feature__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 500px;
  margin-bottom: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stat {
  padding: 18px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat__value {
  display: block;
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.hero-stat__label {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 16px 30px rgba(255, 154, 0, 0.3);
}

.btn--secondary {
  color: #eaf9ff;
  background: rgba(2, 58, 95, 0.28);
  border: 1px solid rgba(117, 218, 255, 0.86);
}

.btn--secondary:hover {
  background: rgba(2, 58, 95, 0.5);
}

.hero__visual {
  align-self: end;
  margin: 0 -60px -66px -30px;
  filter: drop-shadow(0 34px 45px rgba(0, 17, 34, 0.3));
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 180px 180px 0 0;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.visual-note {
  position: absolute;
  right: 22px;
  bottom: 42px;
  max-width: 170px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-style: italic;
  line-height: 1.2;
  transform: rotate(-8deg);
}

.quote-card {
  padding: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quote-card__proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 4px 0 16px;
}

.proof-pill {
  min-height: 76px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(15, 43, 71, 0.08);
}

.proof-pill strong,
.proof-pill small {
  display: block;
}

.proof-pill strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.proof-pill small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.proof-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 50%;
}

.proof-dot--green {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 199, 101, 0.12);
}

.proof-dot--blue {
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(57, 189, 242, 0.14);
}

.service-form {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 43, 71, 0.1);
}

.form-heading {
  padding-bottom: 18px;
  margin-bottom: 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-form label {
  display: block;
  margin-bottom: 14px;
}

.service-form label span {
  display: block;
  margin-bottom: 7px;
  color: #2f3e55;
  font-size: 16px;
  font-weight: 400;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 13px;
  color: var(--text);
  background: #fbfdff;
  border: 1px solid #dce5ee;
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.service-form textarea {
  resize: vertical;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(57, 189, 242, 0.16);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
  color: var(--white);
  font-weight: 500;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(255, 154, 0, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 154, 0, 0.34);
}

.form-submit span {
  font-size: 16px;
}

.form-submit small {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
}

.quote-card__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 4px 0;
  color: #263a54;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.promo-band,
.services-section {
  background: #f4fcff;
}

.promo-band {
  padding: 48px 4vw 32px;
}

.promo-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(380px, 1fr) 220px;
  align-items: stretch;
  max-width: var(--container);
  min-height: 290px;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 48%, rgba(255, 255, 255, 0.96), rgba(216, 249, 255, 0.58) 38%, transparent 66%),
    linear-gradient(100deg, #dff8ff 0%, #c8f6ff 68%, #07365e 68%, #062a49 100%);
  border-radius: 22px;
  box-shadow: 0 22px 65px rgba(12, 93, 132, 0.16);
}

.promo-band__content {
  position: relative;
  z-index: 2;
  padding: 38px 20px 30px 68px;
}

.promo-band__tag {
  display: inline-block;
  padding: 7px 26px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  background: var(--yellow);
  border-radius: 4px 12px 4px 4px;
  transform: rotate(-5deg);
}

.promo-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-title-line {
  display: block;
}

.promo-title-line--price {
  color: #08a9c3;
  white-space: nowrap;
}

.promo-band__pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 22px;
  margin-top: 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--navy);
  border-radius: 999px;
}

.promo-band__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 440px;
  margin-top: 26px;
}

.promo-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  min-width: 250px;
  padding: 12px 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(11, 93, 132, 0.1);
}

.promo-info-card__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  background: #08b4cb;
  border-radius: 50%;
}

.promo-info-card small,
.promo-info-card strong {
  display: block;
  white-space: nowrap;
}

.promo-info-card small {
  color: var(--navy);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.promo-info-card strong {
  margin-top: 2px;
  font-size: 19px;
  font-weight: 800;
}

.promo-band__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 24px 0 18px;
}

.promo-band__visual > img:not(.offer-badge-img) {
  width: min(500px, 100%);
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  opacity: 1;
}

.promo-band__visual .offer-badge-img {
  position: absolute;
  top: 16px;
  right: 28px;
  width: 140px;
  opacity: 1;
}

.promo-band__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 30px 22px;
  color: var(--white);
  font-size: 29px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.promo-band__cta::before {
  position: absolute;
  inset: 0 auto 0 -52px;
  width: 24px;
  content: "";
  background: var(--yellow);
  transform: skewX(-12deg);
}

.promo-band__cta strong {
  font-size: 32px;
  font-weight: 800;
}

.promo-band__cta > img {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
}

.promo-band__cta b {
  display: grid;
  width: 60px;
  height: 60px;
  margin-top: 18px;
  place-items: center;
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
  background: var(--yellow);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.promo-band__cta b img {
  width: 30px;
  height: 30px;
}

.promo-band__cta:hover b {
  transform: translateX(4px);
}

.services-section {
  padding: 30px 4vw 64px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 24px;
  margin-bottom: 14px;
  color: #04a8c3;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #d8f5fb;
  border-radius: 999px;
}

.eyebrow::before,
.eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: #78d7e5;
}

.eyebrow::before {
  margin-right: 14px;
}

.eyebrow::after {
  margin-left: 14px;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h2 span {
  color: #08a9c3;
}

.section-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: #7b8190;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.service-slider {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 46px;
}

.service-track {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  margin: -24px -10px -34px;
  padding: 24px 10px 42px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(18, 78, 104, 0.06);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  box-shadow: 0 18px 50px rgba(18, 78, 104, 0.1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 78, 104, 0.08);
}

.service-card__media {
  position: relative;
  margin: 14px 14px 0;
  overflow: hidden;
  border-radius: 14px;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__icon {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  background: linear-gradient(135deg, #08b4cb, #02a3be);
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(8, 180, 203, 0.28);
}

.service-card__body {
  padding: 18px 24px 24px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.service-card p {
  min-height: 78px;
  margin: 0 0 18px;
  color: #7b8190;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #04a8c3;
  font-size: 16px;
  font-weight: 500;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  font-size: 22px;
  background: var(--white);
  border: 1px solid rgba(12, 93, 132, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(18, 78, 104, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.slider-arrow:hover {
  background: #e8faff;
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow--prev {
  left: 10px;
}

.slider-arrow--next {
  right: 10px;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 60px 4vw 72px;
  background:
    radial-gradient(circle at 8% 16%, rgba(211, 246, 255, 0.7), transparent 20%),
    radial-gradient(circle at 92% 20%, rgba(214, 244, 238, 0.72), transparent 22%),
    linear-gradient(180deg, #f8fdff 0%, #edf9fd 100%);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  max-width: var(--container);
  margin: 68px auto 0;
}

.process-grid::before {
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(6, 171, 195, 0.55) 0 8px, transparent 8px 14px);
}

.process-card {
  position: relative;
  min-width: 0;
  text-align: center;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: -16px;
  right: -28px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  content: ">";
  background: #079bb5;
  border: 5px solid #dff8ff;
  border-radius: 50%;
}

.process-card__top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -62px;
  margin-bottom: -50px;
}

.process-card__icon {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #08b4cb, #0394b0);
  border: 13px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 35px rgba(10, 104, 139, 0.14);
}

.process-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.process-card__icon b {
  position: absolute;
  top: -6px;
  right: -8px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  background: var(--yellow);
  border-radius: 50%;
}

.process-card__body {
  min-height: 420px;
  padding: 96px 28px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 93, 132, 0.07);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(18, 78, 104, 0.11);
}

.process-card__mini {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.process-card h3 {
  position: relative;
  margin: 0 0 32px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
}

.process-card h3::after {
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 40px;
  height: 2px;
  content: "";
  background: #08a9c3;
  transform: translateX(-50%);
}

.process-card p {
  min-height: 96px;
  margin: 0;
  color: #49566b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.process-card__body img {
  width: calc(100% + 56px);
  max-width: none;
  margin: 22px -28px 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: 70px 4vw 78px;
  background:
    radial-gradient(circle at 5% 8%, rgba(182, 237, 249, 0.52), transparent 22%),
    radial-gradient(circle at 95% 90%, rgba(196, 236, 246, 0.7), transparent 24%),
    linear-gradient(180deg, #f9fdff 0%, #eefaff 100%);
}

.why-section::before,
.why-section::after {
  position: absolute;
  width: 190px;
  height: 190px;
  content: "";
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(7, 163, 194, 0.22) 1px, transparent 1px);
  background-size: 13px 13px;
}

.why-section::before {
  top: 24px;
  left: -40px;
}

.why-section::after {
  right: -28px;
  bottom: 24px;
}

.why-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  gap: 44px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  color: #078eae;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(8, 169, 195, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.why-section h2 {
  margin: 28px 0 22px;
  color: var(--navy);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.why-section h2 span {
  display: block;
  color: #08a9c3;
}

.why-section__content > p {
  max-width: 570px;
  margin: 0 0 28px;
  color: #38475d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 580px;
  margin-bottom: 28px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 169, 195, 0.16);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(18, 78, 104, 0.09);
}

.why-stat {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 12px;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid rgba(8, 169, 195, 0.14);
}

.why-stat:last-child {
  border-right: 0;
}

.why-stat__icon {
  display: grid;
  grid-row: span 2;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #08a9c3;
  font-size: 12px;
  font-weight: 500;
  border: 2px solid #08a9c3;
  border-radius: 50%;
}

.why-stat strong {
  display: block;
  color: #08a9c3;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.why-stat small {
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 24px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 10px;
  box-shadow: 0 16px 28px rgba(255, 154, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(255, 154, 0, 0.3);
}

.why-cta span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy);
  font-size: 12px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.why-cta b,
.why-cta i {
  font-weight: 500;
  font-style: normal;
}

.why-image {
  max-width: 480px;
  margin-top: 26px;
}

.why-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.84;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  min-height: 300px;
  padding: 34px 30px 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(18, 78, 104, 0.11);
}

.why-card::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 72px;
  height: 72px;
  content: "";
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(7, 163, 194, 0.22) 1px, transparent 1px);
  background-size: 10px 10px;
}

.why-card__icon {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(135deg, #08b4cb, #048dab);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(8, 151, 177, 0.2);
}

.why-card__icon::after {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 70px;
  height: 70px;
  content: "";
  border-top: 5px solid var(--yellow);
  border-right: 5px solid var(--yellow);
  border-radius: 50%;
}

.why-card__number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(6, 42, 73, 0.16);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.why-card h3 {
  position: relative;
  margin: 44px 0 34px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.16;
}

.why-card h3::after {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 44px;
  height: 2px;
  content: "";
  background: #08a9c3;
}

.why-card p {
  margin: 0;
  color: #405069;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
}

.coverage-section {
  padding: 64px 4vw 78px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fcff 100%);
}

.coverage-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(580px, 1.35fr);
  gap: 42px;
  max-width: var(--container);
  margin: 0 auto 34px;
  padding: 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 38%, rgba(208, 239, 248, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 253, 255, 0.96));
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(18, 78, 104, 0.08);
}

.coverage-panel::after {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 360px;
  height: 250px;
  content: "";
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(7, 163, 194, 0.16) 1px, transparent 1px);
  background-size: 12px 12px;
}

.coverage-copy,
.coverage-locations {
  position: relative;
  z-index: 1;
}

.coverage-eyebrow,
.locations-title {
  display: inline-flex;
  align-items: center;
  color: #078eae;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.coverage-eyebrow {
  min-height: 38px;
  padding: 0 16px;
  background: #e7f8fc;
  border: 1px solid rgba(8, 169, 195, 0.22);
  border-radius: 999px;
}

.coverage-copy h2 {
  max-width: 500px;
  margin: 24px 0 20px;
  color: var(--navy);
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.coverage-copy h2 span {
  display: block;
  color: #078eae;
}

.coverage-copy p {
  max-width: 470px;
  margin: 0 0 8px;
  color: #4b5a72;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.coverage-copy p strong {
  font-weight: 700;
}

.coverage-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(18, 78, 104, 0.08);
}

.coverage-features div {
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid rgba(12, 93, 132, 0.12);
}

.coverage-features div:last-child {
  border-right: 0;
}

.coverage-features span {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  place-items: center;
  color: #078eae;
  font-size: 13px;
  font-weight: 500;
  background: #e1f7fb;
  border-radius: 50%;
}

.coverage-features strong,
.coverage-features small {
  display: block;
}

.coverage-features strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.coverage-features small {
  margin-top: 5px;
  color: #5c6980;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.locations-title {
  margin-bottom: 22px;
}

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

.location-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(18, 78, 104, 0.08);
}

.location-grid span::before {
  flex: 0 0 auto;
  margin-right: 10px;
  color: #078eae;
  content: "PIN";
  font-size: 11px;
}

.location-grid .is-active {
  color: var(--white);
  background: linear-gradient(135deg, #078eae, #0aaac5);
  box-shadow: 0 16px 30px rgba(8, 151, 177, 0.24);
}

.location-grid .is-active::before {
  color: var(--white);
}

.locations-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin: 28px 0 0 28%;
  padding: 0 26px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #078eae, #0290ad);
  border-radius: 9px;
  box-shadow: 0 18px 34px rgba(8, 151, 177, 0.22);
}

.locations-cta b {
  font-weight: 500;
}

.maintenance-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr) 250px;
  gap: 34px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 177, 215, 0.36), transparent 28%),
    linear-gradient(110deg, #092f4d 0%, #051c35 100%);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(1, 21, 43, 0.16);
}

.maintenance-cta__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: 0.8;
}

.maintenance-cta__copy {
  padding: 34px 0;
}

.maintenance-cta__copy h2 {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
}

.maintenance-cta__copy p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.maintenance-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.maintenance-points span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 500;
}

.maintenance-cta__actions {
  display: grid;
  gap: 16px;
  padding-right: 38px;
}

.call-button,
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.call-button {
  color: var(--navy);
  background: var(--white);
}

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

.brands-section,
.testimonials-section {
  padding: 70px 4vw;
  background:
    radial-gradient(circle at 50% 12%, rgba(211, 246, 255, 0.58), transparent 26%),
    linear-gradient(180deg, #f7fdff 0%, #edf9fd 100%);
}

.brand-logo-grid {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 920px;
  margin: 30px auto 0;
  padding: 6px 0 10px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: brand-marquee 18s linear infinite;
  will-change: transform;
}

.brand-logo-grid:hover .brand-marquee__track {
  animation-play-state: paused;
}

.brand-marquee__group {
  display: flex;
  gap: 14px;
}

.brand-marquee__group span {
  display: grid;
  flex: 0 0 214px;
  min-height: 76px;
  place-items: center;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(18, 78, 104, 0.08);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .brand-logo-grid {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .brand-marquee__track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .brand-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

.brand-note {
  max-width: 760px;
  margin: 28px auto 42px;
  color: #4b5a72;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.brand-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(18, 78, 104, 0.1);
}

.brand-proof article {
  padding: 0 34px;
  text-align: center;
  border-right: 1px solid rgba(12, 93, 132, 0.12);
}

.brand-proof article:last-child {
  border-right: 0;
}

.brand-proof span {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(135deg, #08b4cb, #048dab);
  border: 8px solid #d9f5fb;
  border-radius: 50%;
}

.brand-proof h3 {
  position: relative;
  margin: 0 0 30px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.16;
}

.brand-proof h3::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 42px;
  height: 2px;
  content: "";
  background: #08a9c3;
  transform: translateX(-50%);
}

.brand-proof p {
  margin: 0;
  color: #405069;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.testimonials-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(211, 246, 255, 0.5), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(211, 246, 255, 0.45), transparent 26%),
    linear-gradient(180deg, #f8fdff 0%, #eefaff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 920px;
  margin: 34px auto 0;
}

.testimonial-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(18, 78, 104, 0.1);
}

.testimonial-card--placeholder {
  opacity: 0.75;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 20px;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  min-height: 98px;
  margin: 24px 0 28px;
  color: #111c2f;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #08b4cb, #048dab);
  border-radius: 50%;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author small {
  margin-top: 4px;
  color: #5c6980;
  font-size: 16px;
  font-weight: 400;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 34px auto 0;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(18, 78, 104, 0.08);
}

.testimonial-stats div {
  padding: 0 22px;
  border-right: 1px solid rgba(12, 93, 132, 0.12);
}

.testimonial-stats div:last-child {
  border-right: 0;
}

.testimonial-stats strong,
.testimonial-stats span {
  display: block;
}

.testimonial-stats strong {
  color: #078eae;
  font-size: 26px;
  font-weight: 800;
}

.testimonial-stats span {
  margin-top: 4px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 70px 4vw 78px;
  background:
    radial-gradient(circle at 8% 12%, rgba(211, 246, 255, 0.5), transparent 24%),
    radial-gradient(circle at 92% 80%, rgba(211, 246, 255, 0.46), transparent 22%),
    linear-gradient(180deg, #f9fdff 0%, #f1fbff 100%);
}

.gallery-section::before,
.gallery-section::after {
  position: absolute;
  width: 180px;
  height: 220px;
  content: "";
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(7, 163, 194, 0.2) 1px, transparent 1px);
  background-size: 12px 12px;
}

.gallery-section::before {
  top: 50px;
  left: -38px;
}

.gallery-section::after {
  right: -28px;
  bottom: 40px;
}

.gallery-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 30px auto;
}

.gallery-filters button {
  min-height: 48px;
  padding: 0 22px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 93, 132, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(18, 78, 104, 0.08);
}

.gallery-filters .is-active {
  color: var(--white);
  background: linear-gradient(135deg, #08b4cb, #048dab);
  box-shadow: 0 16px 32px rgba(8, 151, 177, 0.22);
}

.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #dff8ff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(18, 78, 104, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(2, 20, 38, 0.78) 100%);
}

.gallery-card__label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.gallery-card__label span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.gallery-card__label h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

.gallery-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 169, 195, 0.18);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(18, 78, 104, 0.08);
}

.gallery-summary div {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(12, 93, 132, 0.12);
}

.gallery-summary div:last-child {
  border-right: 0;
}

.gallery-summary strong,
.gallery-summary span {
  display: block;
}

.gallery-summary strong {
  color: #078eae;
  font-size: 26px;
  font-weight: 800;
}

.gallery-summary span {
  margin-top: 4px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
}

.gallery-cta {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  margin: 26px auto 0;
  padding: 0 34px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(255, 154, 0, 0.24);
}

.contact-section {
  padding: 70px 4vw 78px;
  background:
    radial-gradient(circle at 10% 85%, rgba(202, 241, 250, 0.68), transparent 22%),
    radial-gradient(circle at 90% 20%, rgba(221, 247, 253, 0.76), transparent 30%),
    linear-gradient(180deg, #f8fdff 0%, #effaff 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(520px, 1.1fr);
  gap: 42px;
  max-width: 1040px;
  margin: 42px auto 0;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.contact-benefits,
.immediate-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 93, 132, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(18, 78, 104, 0.1);
}

.contact-benefits {
  display: grid;
  gap: 22px;
  padding: 26px;
}

.contact-benefits div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 14px;
  align-items: center;
}

.contact-benefits span {
  display: grid;
  grid-row: span 2;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #078eae;
  font-size: 12px;
  font-weight: 500;
  background: #e1f7fb;
  border-radius: 10px;
}

.contact-benefits strong,
.contact-benefits small {
  display: block;
}

.contact-benefits strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.contact-benefits small {
  color: #5c6980;
  font-size: 16px;
  font-weight: 400;
}

.immediate-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(232, 250, 255, 0.96), rgba(255, 255, 255, 0.92));
  border-color: rgba(8, 169, 195, 0.24);
}

.immediate-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
}

.immediate-card p {
  margin: 0 0 18px;
  color: #4b5a72;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.immediate-card a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  margin-top: 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
}

.immediate-card .immediate-card__whatsapp {
  color: #0aa74f;
  font-size: 16px;
  font-weight: 500;
}

.contact-side__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.contact-form-card {
  padding: 34px;
}

.contact-form-card__heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.contact-form-card__heading > span {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  background: linear-gradient(135deg, #08b4cb, #048dab);
  border-radius: 50%;
}

.contact-form-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
}

.contact-form-card p {
  margin: 0;
  color: #5c6980;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form-card label {
  display: block;
  margin-bottom: 18px;
}

.contact-form-card label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--text);
  background: #fbfdff;
  border: 1px solid #dce5ee;
  border-radius: 7px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(57, 189, 242, 0.16);
}

.contact-submit {
  width: 100%;
  min-height: 58px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #08b4cb, #048dab);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(8, 151, 177, 0.22);
}

.contact-form-card__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 93, 132, 0.12);
}

.contact-form-card__notes span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 18%, rgba(8, 180, 203, 0.18), transparent 28%),
    linear-gradient(135deg, #062a49 0%, #031a31 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1.1fr;
  gap: 46px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 58px 4vw 44px;
}

.brand--footer {
  min-width: 0;
  color: var(--white);
}

.brand--footer .brand__logo {
  max-width: 240px;
  height: 58px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  background: var(--green);
  border-radius: 999px;
}

.footer-column h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.footer-column a,
.footer-column span,
.footer-hours small {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
}

.footer-hours {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-hours strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 4vw 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand__logo {
    max-width: 220px;
    height: 48px;
  }

  .brand__name {
    font-size: 16px;
  }

  .primary-nav {
    gap: 20px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    padding: 14px 0 0;
    background: transparent;
  }

  .top-bar {
    display: none;
  }

  .top-link {
    gap: 9px;
    width: fit-content;
    line-height: 1.1;
  }

  .top-link--location {
    margin-left: 0;
  }

  .nav-shell {
    position: relative;
    min-height: 70px;
    margin: 0 14px 14px;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    flex: 0 0 44px;
    background: #f7fbff;
  }

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

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav__link {
    padding: 13px 10px;
  }

  .primary-nav__link::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 20px 48px;
    background:
      linear-gradient(90deg, rgba(0, 20, 38, 0.62), rgba(0, 57, 96, 0.32) 52%, rgba(0, 156, 210, 0.2)),
      url("../assets/images/home-cover-mobile.webp") center / cover no-repeat;
  }

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

  .hero__content {
    padding-top: 0;
  }

  .hero-features,
  .hero-stats,
  .quote-card__proof,
  .quote-card__bottom {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .promo-band {
    padding-top: 34px;
  }

  .promo-band__inner {
    grid-template-columns: 1fr;
  }

  .promo-band__content {
    padding: 34px 24px 20px;
  }

  .promo-band__visual {
    padding: 0 18px 18px;
  }

  .promo-band__visual .offer-badge-img {
    top: 14px;
    right: 38px;
    width: 82px;
    height: 82px;
  }

  .promo-band__cta {
    align-items: center;
    padding: 24px;
    background: var(--navy);
  }

  .promo-band__cta::before {
    display: none;
  }

  .service-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .service-slider {
    padding: 0 34px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-arrow--prev {
    left: 0;
  }

  .slider-arrow--next {
    right: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 72px 24px;
  }

  .process-grid::before,
  .process-card::after {
    display: none !important;
  }

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

  .why-section h2 {
    max-width: 680px;
  }

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

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

  .locations-cta {
    margin-left: 0;
  }

  .maintenance-cta {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .maintenance-cta__copy,
  .maintenance-cta__actions {
    padding: 28px;
  }

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

  .brand-proof,
  .testimonial-grid,
  .testimonial-stats,
  .gallery-summary {
    grid-template-columns: 1fr;
  }

  .brand-proof article,
  .testimonial-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 93, 132, 0.12);
    padding: 24px;
  }

  .brand-proof article:last-child,
  .testimonial-stats div:last-child {
    border-bottom: 0;
  }

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

  .gallery-summary div {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 93, 132, 0.12);
    padding: 16px;
  }

  .gallery-summary div:last-child {
    border-bottom: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .top-bar {
    font-size: 16px;
  }
  
  .hero-stats {
    display: none;
  }

  .site-header {
    padding: 14px 0 0;
  }

  .nav-shell {
    margin: 0 14px;
    padding: 12px 14px;
    min-height: 70px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .brand__logo {
    max-width: calc(100vw - 130px);
    height: 46px;
  }

  .brand__name {
    max-width: calc(100vw - 150px);
    white-space: normal;
    font-size: 16px;
    line-height: 1.1;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__lead {
    font-size: 34px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quote-card {
    padding: 14px;
    border-radius: 16px;
  }

  .service-form {
    padding: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .promo-band {
    padding: 28px 20px 20px;
  }

  .promo-band__inner {
    min-height: 0;
  }

  .promo-band__content {
    padding: 28px 18px 18px;
  }

  .promo-band h2 {
    font-size: 42px;
  }

  .promo-band__info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo-title-line--service,
  .promo-title-line--from {
    display: inline;
  }

  .promo-title-line--service::after {
    content: " ";
  }

  .promo-band__tag {
    font-size: 16px;
  }

  .promo-info-card {
    gap: 8px;
    min-height: 62px;
    padding: 10px;
    border-radius: 10px;
  }

  .promo-info-card__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .promo-info-card small {
    font-size: 11px;
  }

  .promo-info-card strong {
    font-size: 15px;
    line-height: 1.08;
  }

  .promo-band__visual .offer-badge-img {
    top: 12px;
    right: 34px;
    width: 78px;
    height: 78px;
  }

  .promo-band__cta > img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .promo-band__cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 14px;
    font-size: 24px;
    text-align: left;
  }

  .promo-band__cta span {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .promo-band__cta strong {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 27px;
  }

  .promo-band__cta b {
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
    margin-top: 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .service-track {
    grid-auto-columns: 100%;
    margin: -22px 0 -32px;
    padding: 22px 0 40px;
  }

  .service-slider {
    padding: 0;
  }

  .slider-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .service-card__body {
    padding: 18px;
  }

  .service-card p {
    min-height: auto;
  }

  .process-section {
    padding: 48px 20px 56px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 64px;
  }

  .process-card__body {
    min-height: 0;
    padding: 90px 24px 0;
  }

  .process-card p {
    min-height: 0;
  }

  .why-section {
    padding: 48px 20px 56px;
  }

  .why-section h2 {
    font-size: 42px;
  }

  .why-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 169, 195, 0.14);
    padding: 0 0 12px;
  }

  .why-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .why-cta {
    width: 100%;
    justify-content: center;
  }

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

  .why-card {
    min-height: 0;
  }

  .coverage-section {
    padding: 48px 20px 56px;
  }

  .coverage-panel {
    padding: 28px 18px;
  }

  .coverage-copy h2 {
    font-size: 42px;
  }

  .coverage-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .coverage-features div {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 93, 132, 0.12);
    padding: 0 0 14px;
  }

  .coverage-features div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

  .location-grid span {
    min-height: 52px;
    padding: 0 12px;
  }

  .locations-cta {
    width: 100%;
    text-align: center;
  }

  .maintenance-cta__image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .maintenance-cta__copy h2 {
    font-size: 28px;
  }

  .maintenance-points {
    grid-template-columns: 1fr;
  }

  .maintenance-cta__actions {
    padding-top: 0;
  }

  .brands-section,
  .testimonials-section {
    padding: 50px 20px;
  }

  .brand-logo-grid {
    max-width: 100%;
    padding: 4px 0 8px;
  }

  .brand-marquee__track,
  .brand-marquee__group {
    gap: 10px;
  }

  .brand-marquee__group span {
    flex-basis: 160px;
    min-height: 62px;
    font-size: 18px;
  }

  .brand-proof {
    padding: 10px 0;
  }

  .testimonial-card {
    padding: 26px 22px;
  }

  .testimonial-card blockquote {
    min-height: 0;
    font-size: 16px;
  }

  .testimonial-stats {
    padding: 0;
  }

  .gallery-section {
    padding: 50px 20px;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .gallery-filters button {
    flex: 0 0 auto;
  }

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

  .gallery-card {
    min-height: 230px;
  }

  .gallery-summary {
    padding: 0;
  }

  .gallery-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-section {
    padding: 50px 20px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .contact-form-card__heading {
    align-items: flex-start;
  }

  .contact-form-card__notes {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 20px 34px;
  }

  .footer-bottom {
    padding: 22px 20px 30px;
  }
}

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