:root {
  --navy-950: #00172d;
  --navy-900: #00213e;
  --navy-800: #062f50;
  --cyan-500: #0cbcff;
  --cyan-400: #32caff;
  --white: #ffffff;
  --text-muted: #d7e4ed;
  --border-light: rgba(201, 231, 248, 0.54);
  --content-width: 1320px;
  --section-content-width: 1210px;
  --section-gutter: 132px;
  --header-height: 92px;
  --shadow-button: 0 16px 34px rgba(0, 145, 222, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--header-height);
  background: rgba(0, 25, 48, 0.68);
  border-bottom: 1px solid rgba(101, 188, 237, 0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.navbar {
  width: min(calc(100% - 96px), var(--content-width));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 112px;
  height: 112px;
  object-fit: contain;
  transform: translateY(13px);
  filter: drop-shadow(0 0 11px rgba(11, 188, 255, 0.16));
}

.brand__copy {
  display: flex;
  flex-direction: column;
  transform: translateY(12px);
}

.brand__name {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand__tagline {
  margin-top: 9px;
  color: #7bd0f4;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  height: 100%;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #edf7fc;
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  min-width: 172px;
  padding: 18px 22px;
  text-align: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #13baff, #079cea);
  box-shadow: var(--shadow-button);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background-image: url("assets/portada-inicio.webp");
  background-position: center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 29, 55, 0.99) 0%, rgba(0, 29, 55, 0.94) 29%, rgba(0, 30, 57, 0.67) 50%, rgba(0, 23, 44, 0.06) 75%),
    linear-gradient(180deg, rgba(0, 25, 48, 0.2), rgba(0, 25, 48, 0.42));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(0, 22, 42, 0.45));
}

.hero__inner {
  width: min(calc(100% - var(--section-gutter)), var(--section-content-width));
  min-height: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-height) + 48px) 0 38px;
}

.hero__content {
  width: 650px;
}

.hero__eyebrow {
  margin: 0 0 12px;
  color: #80d8ff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 620px;
  margin: 0;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: clamp(52px, 4vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero__title-accent {
  color: var(--cyan-400);
}

.hero__description {
  max-width: 635px;
  margin: 19px 0 0;
  color: #f0f6fa;
  font-size: 18px;
  line-height: 1.55;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button i {
  font-size: 23px;
}

.button--primary i {
  font-size: 31px;
}

.button--primary {
  min-width: 275px;
  background: linear-gradient(135deg, #11baff, #049dea);
  box-shadow: var(--shadow-button);
}

.button--secondary {
  min-width: 270px;
  border-color: var(--border-light);
  background: rgba(2, 38, 67, 0.35);
  backdrop-filter: blur(3px);
}

.button--secondary i {
  font-size: 20px;
}

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

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--cyan-400);
  background: rgba(6, 71, 112, 0.62);
}

.sectors {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 38px;
}

.sector {
  width: 126px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  color: #f6fbff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sector i {
  height: 49px;
  color: #bdeaff;
  font-size: 47px;
  font-weight: 300;
  filter: drop-shadow(0 4px 12px rgba(0, 188, 255, 0.15));
}

.hero__location {
  position: absolute;
  right: max(66px, calc((100vw - var(--section-content-width)) / 2));
  bottom: 31px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 12px 17px;
  border-radius: 9px;
  background: rgba(0, 34, 64, 0.52);
  backdrop-filter: blur(3px);
}

.hero__location i {
  grid-row: 1 / span 2;
  color: var(--cyan-400);
  font-size: 38px;
}

.hero__location strong {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.hero__location span {
  margin-top: 3px;
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #082b4c;
  background: #f8fbfd;
}

.about__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - var(--section-gutter)), var(--section-content-width));
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.about__content {
  width: 55%;
  max-width: 660px;
  padding: 64px 0 58px;
}

.about__eyebrow {
  margin: 0 0 14px;
  color: #0b5e95;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about__title {
  margin: 0;
  color: #082b4c;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.about__description {
  max-width: 630px;
  margin: 22px 0 0;
  color: #253c50;
  font-size: 17px;
  line-height: 1.55;
}

.about__benefits {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 35px;
}

.about-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0b416d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.22;
}

.about-benefit__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #83d9fb;
  background: #063e6b;
  box-shadow: 0 9px 22px rgba(4, 52, 88, 0.13);
}

.about-benefit__icon i {
  font-size: 31px;
}

.about__image {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 50%;
  overflow: hidden;
  clip-path: ellipse(83% 100% at 100% 50%);
}

.about__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 28, 52, 0.03), rgba(0, 24, 44, 0.12));
  pointer-events: none;
}

.about__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about__quote {
  position: absolute;
  z-index: 2;
  right: clamp(48px, 7vw, 115px);
  top: 50%;
  transform: translateY(-50%);
  color: #e8f5fb;
  font-family: "Libre Caslon Text", Georgia, serif;
  text-shadow: 0 2px 12px rgba(0, 22, 40, 0.5);
}

.about__quote p {
  margin: 0;
  font-size: 28px;
  line-height: 1.28;
}

.about__quote span {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 18px;
  background: var(--cyan-400);
}

.services {
  position: relative;
  z-index: 3;
  padding: 26px 0 52px;
  color: #082b4c;
  background: #f8fbfd;
  border-radius: 0 0 28px 28px;
}

.services__inner {
  width: min(calc(100% - var(--section-gutter)), var(--section-content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.service-card {
  min-height: 660px;
  padding: 34px 38px 36px;
  border-radius: 16px;
  box-shadow: 0 14px 42px rgba(0, 38, 69, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 38, 69, 0.14);
}

.service-card--safety {
  color: #f1f8fc;
  background:
    radial-gradient(circle at 7% 3%, rgba(34, 188, 241, 0.16), transparent 25%),
    linear-gradient(145deg, #06375f, #00284a 68%, #001f3b);
}

.service-card--environment {
  color: #0a3658;
  background: linear-gradient(145deg, #ffffff, #f6fafc);
  border: 1px solid #e5edf2;
}

.service-card__header {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 23px;
}

.service-card__icon {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.service-card__icon i {
  font-size: 58px;
}

.service-card--safety .service-card__icon {
  color: #92dfff;
  border: 2px solid rgba(116, 218, 255, 0.7);
  background: rgba(0, 38, 70, 0.55);
}

.service-card--environment .service-card__icon {
  color: #159b65;
  border: 2px solid #20a66d;
  background: #f4fffa;
}

.service-card__header h2 {
  margin: 0;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.service-card__list {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.service-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.28;
}

.service-item i {
  margin-top: 1px;
  color: #67d3ff;
  font-size: 18px;
}

.service-card--environment .service-item i {
  color: #11945e;
}

.service-item--featured {
  grid-template-columns: 66px 1fr;
  align-items: center;
}

.service-item__badge {
  min-width: 66px;
  padding: 5px 8px 4px;
  border-radius: 4px;
  color: #ffffff;
  background: #13935e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.why-us {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(0, 35, 65, 0.99) 0%, rgba(0, 38, 70, 0.96) 50%, rgba(0, 38, 70, 0.72) 78%, rgba(0, 31, 58, 0.38) 100%),
    var(--why-us-image);
  background-position: center;
  background-size: cover;
}

.why-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 16, 30, 0.05), rgba(0, 16, 30, 0.22));
  pointer-events: none;
}

.why-us__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--section-gutter)), var(--section-content-width));
  margin: 0 auto;
  padding: 34px 0 38px;
}

.why-us__eyebrow {
  margin: 0;
  color: #54cfff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-us__eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 0 4px 9px;
  background: #54cfff;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}

.why-us__item {
  min-height: 205px;
  padding: 0 29px;
}

.why-us__item:first-child {
  padding-left: 0;
}

.why-us__item + .why-us__item {
  border-left: 1px solid rgba(82, 187, 232, 0.25);
}

.why-us__item > i {
  height: 57px;
  display: block;
  color: #4dcbff;
  font-size: 52px;
  font-weight: 300;
}

.why-us__item h3 {
  margin: 13px 0 0;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.14;
}

.why-us__item p {
  max-width: 235px;
  margin: 10px 0 0;
  color: #cbdde8;
  font-size: 14px;
  line-height: 1.45;
}

.nav-menu {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 28px;
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  color: var(--cyan-400);
  background: transparent;
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  font-size: 35px;
}

.clients {
  overflow: hidden;
  padding: 48px 0 54px;
  color: #082b4c;
  background: #f8fbfd;
}

.clients__header {
  width: min(calc(100% - var(--section-gutter)), var(--section-content-width));
  margin: 0 auto;
}

.clients__eyebrow {
  margin: 0 0 10px;
  color: #0b5e95;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.clients__title {
  margin: 0;
  color: #082b4c;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.clients__description {
  max-width: 620px;
  margin: 12px 0 0;
  color: #334b60;
  font-size: 15px;
  line-height: 1.45;
}

.clients-carousel {
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clients-carousel__track {
  width: max-content;
  display: flex;
  animation: clients-scroll 38s linear infinite;
  will-change: transform;
}

.clients-carousel:hover .clients-carousel__track,
.clients-carousel:focus-within .clients-carousel__track {
  animation-play-state: paused;
}

.clients-carousel__group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
}

.client-brand {
  width: 190px;
  height: 96px;
  flex: 0 0 190px;
  display: grid;
  place-items: center;
  padding: 12px 17px;
  border: 1px solid #e4edf3;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 9px 24px rgba(3, 48, 81, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.client-brand:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(3, 48, 81, 0.13);
}

.client-brand img {
  max-width: 100%;
  max-height: 72px;
  display: block;
  object-fit: contain;
}

.client-brand__name {
  color: #0a3658;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.site-footer {
  color: #ffffff;
  background: #001c35;
}

.footer-contact {
  min-height: 300px;
  display: grid;
  grid-template-columns: 47% 53%;
  background: #002642;
  border-bottom: 1px solid rgba(77, 185, 235, 0.22);
}

.footer-location {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 34, 63, 0.24), rgba(0, 34, 63, 0.74)),
    var(--footer-location-image);
  background-position: center;
  background-size: cover;
}

.footer-location::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 40, 71, 0.04), rgba(0, 28, 53, 0.45));
}

.footer-location__label {
  position: absolute;
  z-index: 1;
  right: 54px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 17px;
  border-radius: 10px;
  background: rgba(0, 38, 70, 0.67);
  backdrop-filter: blur(4px);
}

.footer-location__label > i {
  color: #36c8ff;
  font-size: 40px;
}

.footer-location__label div {
  display: flex;
  flex-direction: column;
}

.footer-location__label strong {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.footer-location__label span {
  margin-top: 3px;
  color: #38c6ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-talk {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(235px, 1fr) minmax(290px, 0.95fr);
  align-items: center;
  gap: 18px;
  padding: 40px max(32px, calc((100vw - var(--section-content-width)) / 2)) 40px 28px;
  background: linear-gradient(120deg, #063757, #00213c 75%);
}

.footer-talk__intro h2 {
  margin: 0;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.footer-talk__intro p {
  max-width: 340px;
  margin: 12px 0 20px;
  color: #d1e2ed;
  font-size: 15px;
  line-height: 1.45;
}

.footer-whatsapp {
  min-height: 54px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 9px;
  background: linear-gradient(135deg, #16bdff, #049de9);
  box-shadow: 0 13px 28px rgba(0, 151, 222, 0.2);
  font-size: 14px;
  font-weight: 700;
}

.footer-whatsapp i {
  font-size: 25px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: normal;
}

.footer-contact-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  color: #e2edf4;
  font-size: 13px;
  line-height: 1.3;
  transition: color 180ms ease;
}

.footer-contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #49cbff;
}

.footer-contact-list i {
  color: #c7eaf9;
  font-size: 25px;
}

.footer-main {
  width: min(calc(100% - var(--section-gutter)), var(--section-content-width));
  margin: 0 auto;
  padding: 26px 0 20px;
}

.footer-main__top {
  min-height: 104px;
  display: grid;
  grid-template-columns: 390px 1fr 110px;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.footer-brand > span {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
}

.footer-brand small {
  margin-top: 5px;
  color: #65c9ed;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 9px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-nav a {
  color: #d1e2ec;
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #48cbff;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(113, 204, 242, 0.35);
  border-radius: 50%;
  color: #c3e9f8;
}

.footer-social i {
  font-size: 22px;
}

.footer-main__bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(85, 182, 224, 0.22);
}

.footer-main__bottom small {
  color: #69bde2;
  font-size: 10px;
}

.footer-main__bottom span {
  position: relative;
  color: #c6dce7;
  font-size: 11px;
}

.footer-main__bottom span::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #35c8ff;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 20px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: #18a856;
  box-shadow: 0 14px 34px rgba(0, 53, 30, 0.4);
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 2px solid rgba(32, 203, 105, 0.55);
  border-radius: inherit;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 1.2s;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: #12964c;
}

.whatsapp-float i {
  color: #ffffff;
  font-size: 33px;
  font-weight: 400;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

.motion-ready .service-card .service-item {
  opacity: 0;
  transform: translateX(42px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--service-item-delay, 0ms),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--service-item-delay, 0ms);
}

.motion-ready .service-card.is-visible .service-item {
  opacity: 1;
  transform: translateX(0);
}

.motion-ready .service-card.reveal.is-visible:hover,
.motion-ready .client-brand.reveal.is-visible:hover {
  transform: translateY(-6px);
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.65;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@media (max-width: 1180px) {
  :root {
    --section-gutter: 72px;
  }

  .navbar {
    width: calc(100% - 56px);
    grid-template-columns: 345px 1fr;
    gap: 18px;
  }

  .nav-menu {
    grid-template-columns: 1fr 150px;
    gap: 16px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-cta {
    min-width: 150px;
  }

  .hero__location {
    right: 36px;
  }

  .about__benefits {
    gap: 18px;
  }

  .about-benefit {
    gap: 8px;
    font-size: 13px;
  }

  .footer-main__top {
    grid-template-columns: 330px 1fr 100px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 84px;
    --section-gutter: 48px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
  }

  .navbar {
    width: calc(100% - 40px);
    grid-template-columns: 1fr auto;
  }

  .brand__mark {
    width: 86px;
    height: 86px;
    transform: translateY(7px);
  }

  .brand__copy {
    transform: translateY(6px);
  }

  .brand__name {
    font-size: 17px;
  }

  .brand__tagline {
    margin-top: 5px;
    font-size: 9px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: auto;
    max-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 18px 24px 26px;
    overflow-y: auto;
    border-top: 1px solid rgba(101, 188, 237, 0.14);
    background: rgba(0, 28, 52, 0.98);
    box-shadow: 0 18px 36px rgba(0, 15, 29, 0.28);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .nav-links {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    height: auto;
    justify-content: center;
    padding: 14px 10px;
    font-size: 16px;
  }

  .nav-link::after {
    right: 44%;
    left: 44%;
    bottom: 7px;
  }

  .nav-cta {
    width: min(100%, 360px);
    min-width: 0;
    align-self: center;
    justify-self: auto;
  }

  .hero__content {
    width: min(610px, 67%);
  }

  .hero__title {
    font-size: clamp(46px, 6vw, 60px);
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .about__content {
    width: 58%;
  }

  .about__benefits {
    align-items: flex-start;
  }

  .about-benefit {
    flex-direction: column;
    text-align: center;
  }

  .services__inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .why-us__item:nth-child(3) {
    border-left: 0;
  }

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

  .footer-location,
  .footer-talk {
    min-height: 280px;
  }

  .footer-location__label {
    right: 36px;
  }

  .footer-talk {
    grid-template-columns: 1fr 1fr;
    padding: 36px max(36px, calc((100vw - var(--section-content-width)) / 2));
  }

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

  .footer-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 18px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
    --section-gutter: 36px;
  }

  .navbar {
    width: calc(100% - 28px);
  }

  .brand {
    gap: 7px;
  }

  .brand__mark {
    width: 70px;
    height: 70px;
    transform: translateY(4px);
  }

  .brand__copy {
    transform: translateY(3px);
  }

  .brand__name {
    font-size: clamp(12px, 3.4vw, 15px);
    line-height: 1.1;
  }

  .brand__tagline {
    max-width: 195px;
    margin-top: 4px;
    font-size: clamp(6px, 1.8vw, 8px);
  }

  .nav-toggle i {
    font-size: 32px;
  }

  .hero {
    min-height: 850px;
    background-position: 80% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 27, 51, 0.86) 0%, rgba(0, 26, 50, 0.53) 42%, rgba(0, 24, 47, 0.2) 67%, rgba(0, 25, 48, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 31, 57, 0.78), rgba(0, 29, 53, 0.06));
  }

  .hero::after {
    height: 250px;
  }

  .hero__inner {
    width: calc(100% - 36px);
    min-height: 850px;
    justify-content: flex-start;
    padding: 152px 0 24px;
  }

  .hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .hero__eyebrow {
    max-width: 290px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.19em;
  }

  .hero__title {
    max-width: 340px;
    font-size: clamp(35px, 10.3vw, 46px);
    line-height: 1.04;
  }

  .hero__description {
    max-width: 310px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
    font-size: 14px;
  }

  .button--primary,
  .button--secondary {
    min-width: 0;
  }

  .button--secondary {
    justify-content: space-between;
    padding-left: 22px;
  }

  .sectors {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    margin-top: 27px;
  }

  .sector {
    width: 24%;
    min-height: 72px;
    gap: 6px;
    font-size: 9px;
  }

  .sector i {
    height: 40px;
    font-size: 39px;
  }

  .hero__location {
    right: 18px;
    bottom: 20px;
    left: 18px;
    justify-content: center;
    padding: 11px 12px;
  }

  .hero__location i {
    font-size: 32px;
  }

  .hero__location strong {
    font-size: 13px;
  }

  .hero__location span {
    font-size: 9px;
  }

  .about {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .about__inner {
    width: calc(100% - 36px);
    min-height: 0;
    order: 1;
  }

  .about__content {
    width: 100%;
    max-width: none;
    padding: 42px 0 38px;
  }

  .about__eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .about__title {
    font-size: clamp(30px, 8.6vw, 39px);
    line-height: 1.08;
  }

  .about__description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .about__benefits {
    justify-content: space-between;
    gap: 6px;
    margin-top: 28px;
  }

  .about-benefit {
    width: 31%;
    gap: 8px;
    font-size: 11px;
  }

  .about-benefit__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .about-benefit__icon i {
    font-size: 27px;
  }

  .about__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 330px;
    order: 2;
    clip-path: none;
  }

  .about__image img {
    object-position: center;
  }

  .about__quote {
    display: none;
  }

  .services {
    padding: 0 0 30px;
    border-radius: 0;
  }

  .services__inner {
    width: calc(100% - 24px);
    gap: 14px;
  }

  .service-card {
    min-height: 0;
    padding: 26px 20px 28px;
    border-radius: 12px;
  }

  .service-card__header {
    min-height: 80px;
    gap: 14px;
  }

  .service-card__icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .service-card__icon i {
    font-size: 43px;
  }

  .service-card__header h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .service-card__list {
    margin-top: 20px;
    gap: 9px;
  }

  .service-item {
    grid-template-columns: 19px 1fr;
    gap: 8px;
    font-size: 14px;
    line-height: 1.35;
  }

  .service-item--featured {
    grid-template-columns: 58px 1fr;
  }

  .service-item__badge {
    min-width: 58px;
    font-size: 9px;
  }

  .why-us {
    min-height: 0;
    background-position: 70% center;
  }

  .why-us__inner {
    width: calc(100% - 36px);
    padding: 34px 0 38px;
  }

  .why-us__eyebrow {
    font-size: 13px;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 23px;
  }

  .why-us__item,
  .why-us__item:first-child {
    min-height: 0;
    display: grid;
    grid-template-columns: 60px 1fr;
    padding: 19px 0;
    border-left: 0;
  }

  .why-us__item + .why-us__item {
    border-top: 1px solid rgba(82, 187, 232, 0.18);
    border-left: 0;
  }

  .why-us__item > i {
    grid-row: 1 / span 2;
    height: auto;
    font-size: 45px;
  }

  .why-us__item h3 {
    margin: 0;
    font-size: 20px;
  }

  .why-us__item p {
    max-width: none;
    margin-top: 7px;
    font-size: 14px;
  }

  .clients {
    padding: 40px 0 44px;
  }

  .clients__header {
    width: calc(100% - 36px);
  }

  .clients__eyebrow {
    font-size: 12px;
  }

  .clients__title {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .clients__description {
    font-size: 14px;
  }

  .clients-carousel {
    margin-top: 26px;
  }

  .clients-carousel__group {
    display: grid;
    grid-template-rows: repeat(2, 84px);
    grid-auto-flow: column;
    grid-auto-columns: 150px;
    gap: 12px;
    padding-right: 12px;
  }

  .clients-carousel__track {
    animation-duration: 27s;
  }

  .client-brand {
    width: 150px;
    height: 84px;
    flex-basis: 150px;
    padding: 10px 13px;
  }

  .client-brand img {
    max-height: 62px;
  }

  .client-brand__name {
    font-size: 15px;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
  }

  .footer-location {
    min-height: 250px;
  }

  .footer-location__label {
    right: 18px;
    bottom: 22px;
    left: 18px;
    justify-content: center;
  }

  .footer-location__label > i {
    font-size: 35px;
  }

  .footer-location__label strong {
    font-size: 13px;
  }

  .footer-location__label span {
    font-size: 9px;
  }

  .footer-talk {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 18px 38px;
  }

  .footer-talk__intro h2 {
    font-size: 32px;
  }

  .footer-talk__intro p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .footer-whatsapp {
    width: 100%;
  }

  .footer-contact-list {
    gap: 14px;
  }

  .footer-contact-list a {
    grid-template-columns: 27px minmax(0, 1fr);
    font-size: 12px;
  }

  .footer-main {
    width: calc(100% - 36px);
    padding: 24px 0 18px;
  }

  .footer-main__top {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-brand {
    max-width: 100%;
    gap: 9px;
  }

  .footer-brand img {
    width: 70px;
    height: 70px;
  }

  .footer-brand strong {
    font-size: 14px;
  }

  .footer-brand small {
    font-size: 7px;
  }

  .footer-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding-bottom: 0;
  }

  .footer-nav a {
    font-size: 11px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-main__bottom {
    min-height: 74px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
    text-align: center;
  }

  .footer-main__bottom span::before {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 68px;
    min-height: 68px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float i {
    font-size: 37px;
  }

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

@media (max-width: 420px) {
  .hero {
    min-height: 820px;
  }

  .hero__inner {
    min-height: 820px;
    padding-top: 138px;
  }

  .hero__description {
    max-width: 285px;
  }

  .about__image {
    height: 285px;
  }

  .service-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-contact-list a {
    font-size: 11px;
  }
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }

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

:focus-visible {
  outline: 3px solid rgba(50, 202, 255, 0.9);
  outline-offset: 4px;
}

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

  .whatsapp-float::before,
  .whatsapp-float::after {
    display: none;
  }

  .clients-carousel__track {
    animation: none !important;
  }
}
