:root {
  --color-black: #001356;
  --color-overlay: #000514;
  --color-graphite: #061a66;
  --color-graphite-light: #0b2473;
  --color-steel: #18317a;
  --color-white: #ffffff;
  --color-muted: #c7c7c7;
  --color-soft: #f4f4f4;
  --color-accent: #ffc107;
  --color-accent-dark: #c99600;
  --color-whatsapp: #25d366;
  --shadow-soft: 0 20px 60px rgba(0, 19, 86, 0.28);
  --shadow-card: 0 16px 36px rgba(0, 19, 86, 0.2);
  --radius: 8px;
  --container: 1120px;
  --header-height: 76px;
  --font-title: "Poppins", Arial, sans-serif;
  --font-body: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.preloader-active {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  overflow: clip;
  background:
    linear-gradient(180deg, #010b30 0%, #000514 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    filter 0.7s ease,
    visibility 0s linear 0s;
  will-change: opacity, transform, filter;
}

.preloader__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0) 34%);
}

.preloader__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 28px;
  width: min(100%, 360px);
  padding: 24px;
}

.preloader__logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
}

.preloader__logo-wrap::before,
.preloader__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: preloaderPulse 2.4s ease-in-out infinite;
}

.preloader__logo-wrap::after {
  inset: 0;
  border-color: rgba(255, 193, 7, 0.2);
  animation-delay: 0.35s;
}

.preloader__logo {
  width: min(76%, 220px);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.3));
  animation: preloaderFloat 1.8s ease-in-out infinite;
}

.preloader__progress {
  width: 100%;
}

.preloader__progress-track {
  position: relative;
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.preloader__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffc107 0%, #ffe082 100%);
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.3);
  transform-origin: left center;
  transition: width 0.28s ease;
}

.preloader__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preloader__progress-label {
  color: rgba(255, 255, 255, 0.72);
}

.preloader__progress-value {
  color: var(--color-accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

body.preloader-complete .preloader {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  filter: blur(10px);
  pointer-events: none;
  transition-delay: 0s, 0s, 0s, 0.7s;
}

body.preloader-active .hero__image,
body.preloader-active .hero__content {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(10px);
}

.hero__image,
.hero__content {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

body.preloader-complete .hero__image,
body.preloader-complete .hero__content {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes preloaderFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -8px, 0) scale(1.02);
  }
}

@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader,
  .hero__image,
  .hero__content {
    transition-duration: 0.2s;
  }

  .preloader__logo,
  .preloader__logo-wrap::before,
  .preloader__logo-wrap::after {
    animation: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(0, 19, 86, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 19, 86, 0.9);
  box-shadow: 0 10px 30px rgba(0, 19, 86, 0.35);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__toggle {
  position: relative;
  z-index: 101;
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__panel {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 22px;
  padding: 24px 16px 28px;
  background: rgba(0, 19, 86, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.nav__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  display: block;
  padding: 12px 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn svg,
.whatsapp-float svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

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

.btn--primary {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: 0 14px 30px rgba(255, 193, 7, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-white);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--small {
  min-height: 42px;
  padding: 0 16px;
  background: var(--color-accent);
  color: var(--color-black);
}

.btn--large {
  min-height: 58px;
  padding: 0 28px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 56px;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 5, 20, 0.92) 0%, rgba(0, 5, 20, 0.74) 46%, rgba(0, 5, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 5, 20, 0.24) 0%, rgba(0, 5, 20, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: max(16px, calc((100vw - 1120px) / 2));
}

.eyebrow,
.section__kicker {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-title);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 3.1875rem;
  font-weight: 700;
}

h1 span {
  display: block;
}

h2 {
  font-size: 2.1875rem;
  font-weight: 700;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--color-white);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
}

.hero__support {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 860px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 19, 86, 0.46);
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero__highlights svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex: 0 0 18px;
}

.section {
  padding: 80px 0;
  background: var(--color-white);
  color: #222222;
}

.section--split {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.section--dark {
  background:
    linear-gradient(180deg, var(--color-black) 0%, var(--color-graphite) 100%);
  color: var(--color-white);
}

.section--gallery {
  background: #f1f1f1;
}

.section--before-after {
  background: linear-gradient(180deg, #f7f8fc 0%, #eef1f8 100%);
}

.section__header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section__header--left {
  margin-left: 0;
  text-align: left;
}

.section h2,
.section h3 {
  color: var(--color-black);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section p {
  color: #555555;
}

.section--dark p {
  color: var(--color-muted);
}

.split {
  display: grid;
  gap: 36px;
}

.split__content p {
  margin: 14px 0 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stats__item {
  min-height: 112px;
  padding: 20px;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.stats__item strong {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.stats__item span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.split__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--color-white);
  color: #202020;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 19, 86, 0.08);
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-dark);
  flex: 0 0 18px;
}

.services-grid,
.differentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card,
.differential {
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card {
  min-height: 254px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, var(--color-graphite-light) 0%, var(--color-black) 100%);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.65);
  box-shadow: 0 18px 40px rgba(0, 19, 86, 0.35);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: var(--color-black);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card p,
.differential p {
  margin: 12px 0 0;
}

.differential {
  min-height: 178px;
  padding: 22px;
  border: 1px solid #e1e1e1;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(0, 19, 86, 0.08);
}

.differential:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 18px 36px rgba(0, 19, 86, 0.12);
}

.differential span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--color-black);
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 900;
}

.before-after-swiper-wrap {
  position: relative;
}

.before-after-swiper__stage {
  position: relative;
}

.before-after-swiper {
  overflow: hidden;
  padding: 4px 2px 28px;
}

.before-after-card-slide {
  position: relative;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-black);
  box-shadow: none;
}

.before-after-card-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.before-after-card-slide:hover img {
  transform: scale(1.05);
}

.before-after-swiper__button {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 5, 20, 0.76);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.before-after-swiper__button:hover,
.before-after-swiper__button:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-50%) scale(1.04);
}

.before-after-swiper__button--prev {
  left: -18px;
}

.before-after-swiper__button--next {
  right: -18px;
}

.before-after-swiper__button svg {
  width: 23px;
  height: 23px;
}

.before-after-swiper__footer {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.before-after-swiper__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.before-after-swiper__pagination .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(0, 19, 86, 0.24);
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.before-after-swiper__pagination .swiper-pagination-bullet-active {
  width: 54px;
  background: var(--color-accent);
}

.proof-swiper-wrap {
  position: relative;
}

.proof-swiper__stage {
  position: relative;
}

.proof-swiper {
  overflow: hidden;
  padding: 4px 2px 28px;
}

.proof-card-slide {
  position: relative;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-black);
  box-shadow: none;
}

.proof-card-slide::before {
  content: none;
}

.proof-card-slide img,
.proof-card-slide video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.proof-card-slide::after {
  content: none;
}

.proof-card-slide:hover::before,
.proof-card-slide:hover img,
.proof-card-slide:hover video {
  transform: scale(1.05);
}

.proof-card-slide__content {
  display: none;
}

.proof-card-slide__content span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card-slide__content h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  line-height: 1.15;
}

.proof-card-slide__content p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.proof-swiper__button {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 5, 20, 0.76);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.proof-swiper__button:hover,
.proof-swiper__button:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-50%) scale(1.04);
}

.proof-swiper__button--prev {
  left: -18px;
}

.proof-swiper__button--next {
  right: -18px;
}

.proof-swiper__button svg {
  width: 23px;
  height: 23px;
}

.proof-swiper__footer {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.proof-swiper__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.proof-swiper__pagination .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(0, 19, 86, 0.24);
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.proof-swiper__pagination .swiper-pagination-bullet-active {
  width: 54px;
  background: var(--color-accent);
}

/* ── Video Carousel ── */
.section--videos {
  background: #010614;
  color: var(--color-white);
  overflow: hidden;
}

.section--videos h2 {
  color: var(--color-white);
}

.video-swiper-wrap {
  position: relative;
}

.video-swiper__stage {
  position: relative;
}

.video-swiper {
  overflow: hidden;
  padding: 4px 2px 28px;
}

.video-slide__wrapper {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-slide__wrapper:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 193, 7, 0.2);
}

.video-slide__wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: rgba(1, 6, 20, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-slide__play::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.video-slide__play svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  color: var(--color-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: color 0.3s ease, transform 0.3s ease;
}

.video-slide__wrapper:hover .video-slide__play {
  background: rgba(1, 6, 20, 0.18);
}

.video-slide__wrapper:hover .video-slide__play::before {
  transform: scale(1.12);
  background: rgba(255, 193, 7, 0.18);
  border-color: rgba(255, 193, 7, 0.45);
}

.video-slide__wrapper:hover .video-slide__play svg {
  color: var(--color-accent);
  transform: scale(1.1);
}

.video-slide__play.is-playing {
  background: transparent;
  pointer-events: auto;
}

.video-slide__play.is-playing::before,
.video-slide__play.is-playing svg {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-slide__wrapper:hover .video-slide__play.is-playing::before,
.video-slide__wrapper:hover .video-slide__play.is-playing svg {
  opacity: 1;
}

.video-swiper__button {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.video-swiper__button:hover,
.video-swiper__button:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-50%) scale(1.06);
}

.video-swiper__button--prev {
  left: -18px;
}

.video-swiper__button--next {
  right: -18px;
}

.video-swiper__button svg {
  width: 23px;
  height: 23px;
}

.video-swiper__footer {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.video-swiper__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.video-swiper__pagination .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.video-swiper__pagination .swiper-pagination-bullet-active {
  width: 54px;
  background: var(--color-accent);
}

.section--trusted {
  background: #ffffff;
  overflow: hidden;
}

.section__header--centered {
  text-align: center;
}

.section__header--centered h2 {
  margin-inline: auto;
}

.trusted-marquee {
  --trusted-gap: 20px;
  --trusted-visible: 6;
  --trusted-container: min(calc(100vw - 32px), var(--container));
  position: relative;
  overflow: hidden;
  padding-top: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trusted-marquee__track {
  display: flex;
  gap: var(--trusted-gap);
  width: max-content;
  animation: trusted-marquee 48s linear infinite;
}

.trusted-slide {
  flex: 0 0 calc((var(--trusted-container) - (var(--trusted-gap) * (var(--trusted-visible) - 1))) / var(--trusted-visible));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(0, 19, 86, 0.08);
  background: #ffffff;
}

.trusted-slide img {
  display: block;
  width: 100%;
  max-width: 132px;
  height: 70px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
}

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

  to {
    transform: translateX(calc(-50% - (var(--trusted-gap) / 2)));
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(0, 5, 20, 0.92), rgba(0, 5, 20, 0.68)),
    url("../img/762F5A2B-F77C-4D43-AE5B-27ED0F7CB4F8.jpg") center top / cover;
}

.final-cta__inner {
  max-width: 850px;
  margin-left: max(16px, calc((100vw - 1120px) / 2));
}

.final-cta h2 {
  max-width: 760px;
  color: var(--color-white);
}

.final-cta p:not(.section__kicker) {
  max-width: 620px;
  margin: 16px 0 28px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.footer {
  padding: 56px 0 24px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  gap: 34px;
}

.brand--footer {
  margin-bottom: 16px;
}

.footer p {
  max-width: 360px;
  margin: 0;
  color: var(--color-muted);
}

.footer__contact,
.footer__links {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.footer strong {
  color: var(--color-white);
  font-family: var(--font-title);
  text-transform: uppercase;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

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

.footer svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer__bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8e8e8e;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 16px 32px rgba(0, 19, 86, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 19, 86, 0.42);
}

@media (min-width: 560px) {
  .hero__highlights,
  .feature-list,
  .services-grid,
  .differentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-marquee {
    --trusted-visible: 3;
  }

  .services-grid > .service-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 420px);
  }
}

@media (max-width: 559px) {
  .container {
    max-width: 358px;
    margin-left: 16px;
    margin-right: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .trusted-marquee {
    --trusted-visible: 2;
  }

  .proof-card-slide,
  .before-after-card-slide,
  .proof-card-slide img {
    min-height: 380px;
    height: 380px;
  }

  .before-after-card-slide img {
    min-height: 380px;
    height: 380px;
  }

  .proof-card-slide__content h3 {
    font-size: 1.18rem;
  }

  .proof-card-slide__content p {
    font-size: 0.86rem;
  }

  .proof-swiper__button {
    width: 40px;
    height: 40px;
  }

  .before-after-swiper__button {
    width: 40px;
    height: 40px;
  }

  .proof-swiper__button--prev {
    left: 10px;
  }

  .before-after-swiper__button--prev {
    left: 10px;
  }

  .proof-swiper__button--next {
    right: 10px;
  }

  .before-after-swiper__button--next {
    right: 10px;
  }

  .video-swiper__button {
    width: 38px;
    height: 38px;
  }

  .video-swiper__button--prev {
    left: 10px;
  }

  .video-swiper__button--next {
    right: 10px;
  }

  .video-slide__play::before {
    width: 52px;
    height: 52px;
  }

  .video-slide__play svg {
    width: 20px;
    height: 20px;
  }

  .trusted-slide {
    min-height: 116px;
    padding: 20px 18px;
  }

  .trusted-slide img {
    max-width: 112px;
    height: 60px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 84px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .trusted-marquee {
    --trusted-container: min(calc(100vw - 48px), var(--container));
    --trusted-visible: 4;
  }

  .section {
    padding: 104px 0;
  }

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

@media (min-width: 980px) {
  .trusted-marquee {
    --trusted-visible: 5;
  }

  .nav__toggle {
    display: none;
  }

  .nav__panel {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .nav__list a {
    padding: 8px 0;
  }

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

  .services-grid > .service-card:last-child {
    grid-column: 2;
    width: 100%;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .trusted-marquee {
    --trusted-visible: 6;
  }
}

@media (max-width: 460px) {
  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: 2.1875rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .btn {
    font-size: 0.78rem;
    padding-inline: 14px;
  }
}

@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;
  }

  .trusted-marquee__track {
    animation-duration: 48s !important;
    animation-iteration-count: infinite !important;
  }
}
