:root {
  --navy-950: #04111f;
  --navy-900: #071a2c;
  --navy-800: #0b2740;
  --blue-700: #0e6ba8;
  --blue-600: #138fd3;
  --cyan-500: #20c5e5;
  --cyan-300: #82e7f7;
  --white: #ffffff;
  --slate-50: #f5f8fb;
  --slate-100: #e9f0f5;
  --slate-200: #d5e0e8;
  --slate-500: #607286;
  --slate-700: #33485e;
  --shadow: 0 24px 70px rgba(4, 17, 31, .14);
  --shadow-soft: 0 14px 35px rgba(4, 17, 31, .09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  transition: .2s ease;
}

.skip-link:focus {
  top: 20px;
}

.topbar {
  background: var(--navy-950);
  color: #c8d8e5;
  font-size: .82rem;
}

.topbar__content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a {
  color: var(--cyan-300);
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(4, 17, 31, .08);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 12px 24px rgba(19, 143, 211, .24);
}

.brand__icon svg {
  width: 31px;
  fill: var(--white);
}

.brand__icon-line {
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 3;
  stroke-linecap: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.07rem;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: -2px;
  color: var(--slate-500);
  font-size: .72rem;
}

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

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--cyan-500);
  transition: .25s ease;
}

.main-nav > a:not(.button):hover::after {
  right: 0;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 13px 28px rgba(19, 143, 211, .24);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 32px rgba(19, 143, 211, .3);
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: .86rem;
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 17, 31, .97), rgba(7, 26, 44, .94)),
    radial-gradient(circle at 20% 20%, var(--blue-700), transparent 50%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 90%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .2;
}

.hero__glow--one {
  width: 460px;
  height: 460px;
  right: -120px;
  top: -180px;
  background: var(--cyan-500);
}

.hero__glow--two {
  width: 300px;
  height: 300px;
  left: -170px;
  bottom: -170px;
  background: var(--blue-600);
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 70px;
  padding-block: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: var(--cyan-300);
  background: rgba(255,255,255,.05);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ce291;
  box-shadow: 0 0 0 5px rgba(76, 226, 145, .12);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span {
  color: var(--cyan-500);
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c7d5df;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #dce8ef;
  list-style: none;
  font-size: .87rem;
  font-weight: 600;
}

.hero__checks li {
  position: relative;
  padding-left: 24px;
}

.hero__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--cyan-500);
  font-size: 1rem;
  font-weight: 900;
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .97);
  color: var(--navy-900);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.contact-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: #e9f8fc;
}

.contact-card__icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-card__heading p,
.contact-card__heading h2 {
  margin: 0;
}

.contact-card__heading p {
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-card__heading h2 {
  font-size: 1.42rem;
  letter-spacing: -.03em;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--slate-700);
  font-size: .78rem;
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  outline: none;
  background: var(--slate-50);
  color: var(--navy-900);
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 105px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(32, 197, 229, .12);
}

.form-note {
  margin: -5px 0 0;
  color: var(--slate-500);
  font-size: .7rem;
  text-align: center;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--slate-100);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(4, 17, 31, .05);
}

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

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 118px;
  padding: 22px 25px;
  border-right: 1px solid var(--slate-100);
}

.trust-strip article:first-child {
  border-left: 1px solid var(--slate-100);
}

.stat {
  color: var(--cyan-500);
  font-size: 1.35rem;
  font-weight: 800;
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: .88rem;
}

.trust-strip small {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: .71rem;
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 52px;
}

.section-heading h2,
.technology-content h2,
.cta h2 {
  margin: 7px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.section-heading p {
  margin: 0 0 5px;
  color: var(--slate-500);
}

.section-kicker {
  color: var(--blue-600);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(32, 197, 229, .5);
}

.service-card--featured {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.service-card__number {
  position: absolute;
  right: 22px;
  top: 15px;
  color: rgba(14, 107, 168, .12);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}

.service-card--featured .service-card__number {
  color: rgba(255,255,255,.08);
}

.service-card__icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--blue-600);
  background: #eaf8fc;
}

.service-card--featured .service-card__icon {
  color: var(--cyan-300);
  background: rgba(255,255,255,.09);
}

.service-card__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -.025em;
}

.service-card p {
  margin: 13px 0 22px;
  color: var(--slate-500);
  font-size: .85rem;
}

.service-card--featured p {
  color: #b8c9d7;
}

.service-card a {
  margin-top: auto;
  color: var(--blue-600);
  font-size: .82rem;
  font-weight: 800;
}

.service-card--featured a {
  color: var(--cyan-300);
}

.service-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .2s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.section--dark::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -260px;
  top: -200px;
  border-radius: 50%;
  background: rgba(32, 197, 229, .12);
  filter: blur(2px);
}

.technology-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.technology-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(32,197,229,.14), transparent 57%),
    linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.radar {
  position: relative;
  width: min(78%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(130, 231, 247, .14);
  border-radius: 50%;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(130,231,247,.12);
}

.radar::before {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
}

.radar::after {
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
}

.radar__ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(130,231,247,.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar__ring--1 { width: 72%; height: 72%; }
.radar__ring--2 { width: 45%; height: 45%; }
.radar__ring--3 { width: 18%; height: 18%; }

.radar__line {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 0;
  border-radius: 0 100% 0 0;
  transform-origin: 0 100%;
  background: linear-gradient(25deg, transparent 45%, rgba(32,197,229,.25));
  animation: scan 5s linear infinite;
}

@keyframes scan {
  to { transform: rotate(360deg); }
}

.radar__core {
  position: absolute;
  z-index: 2;
  width: 74px;
  height: 74px;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 0 45px rgba(32,197,229,.34);
  transform: translate(-50%, -50%);
}

.radar__core svg {
  width: 34px;
  fill: var(--white);
}

.radar__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-300);
  box-shadow: 0 0 0 6px rgba(130,231,247,.08), 0 0 20px var(--cyan-500);
}

.radar__dot--1 { left: 23%; top: 30%; }
.radar__dot--2 { right: 17%; bottom: 30%; }

.technology-badge {
  position: absolute;
  right: 30px;
  bottom: 28px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  background: rgba(4,17,31,.8);
  backdrop-filter: blur(12px);
}

.technology-badge strong,
.technology-badge span {
  display: block;
}

.technology-badge strong {
  color: var(--cyan-300);
  font-size: .82rem;
}

.technology-badge span {
  color: #9fb2c2;
  font-size: .7rem;
}

.technology-content > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #aebfcd;
}

.technology-list {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.technology-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.technology-list article > span {
  color: var(--cyan-500);
  font-weight: 800;
}

.technology-list h3,
.technology-list p {
  margin: 0;
}

.technology-list h3 {
  font-size: 1rem;
}

.technology-list p {
  margin-top: 4px;
  color: #95aabd;
  font-size: .83rem;
}

.section-heading--center {
  grid-template-columns: 1fr;
  max-width: 730px;
  margin-inline: auto;
  text-align: center;
  gap: 18px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 29px;
  height: 1px;
  background: var(--slate-200);
}

.step {
  position: relative;
  text-align: center;
}

.step > span {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--slate-200);
  font-weight: 800;
}

.step h3 {
  margin: 0;
  font-size: 1rem;
}

.step p {
  max-width: 240px;
  margin: 10px auto 0;
  color: var(--slate-500);
  font-size: .82rem;
}

.cta {
  padding-block: 65px;
  background: linear-gradient(120deg, var(--blue-700), var(--cyan-500));
  color: var(--white);
}

.cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta .section-kicker {
  color: #d8f9ff;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.84);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.button--light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 28px rgba(4,17,31,.18);
}

.button--outline-light {
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  box-shadow: none;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--navy-950);
  color: #aabcc9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr;
  gap: 90px;
}

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

.brand--footer small {
  color: #8ca2b4;
}

.footer-grid > div > p {
  max-width: 420px;
  margin: 22px 0 0;
  font-size: .86rem;
}

.footer-grid h3 {
  margin: 5px 0 20px;
  color: var(--white);
  font-size: .88rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
}

.footer-grid a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37,211,102,.3);
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

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

  .hero__grid {
    grid-template-columns: 1fr 420px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 4.6rem);
  }

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

  .trust-strip article:nth-child(2) {
    border-right: none;
  }

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

  .technology-grid {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  .topbar__content > p {
    display: none;
  }

  .topbar__content {
    justify-content: center;
  }

  .navbar {
    min-height: 74px;
  }

  .nav-toggle-label {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border-radius: 11px;
    background: var(--slate-50);
    cursor: pointer;
  }

  .nav-toggle-label span {
    width: 21px;
    height: 2px;
    border-radius: 4px;
    background: var(--navy-900);
    transition: .2s ease;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 116px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--slate-100);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s ease;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .main-nav .button {
    margin-top: 5px;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px;
  }

  .hero__content {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__checks {
    justify-content: center;
  }

  .contact-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .section-heading,
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .technology-visual {
    min-height: 430px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

  .steps::before {
    display: none;
  }

  .cta__content {
    display: grid;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

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

  .topbar__links {
    width: 100%;
    justify-content: center;
    font-size: .74rem;
  }

  .brand__icon {
    width: 43px;
    height: 43px;
  }

  .brand__icon svg {
    width: 27px;
  }

  .hero__grid {
    padding-block: 55px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero__lead {
    font-size: .96rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .contact-card {
    padding: 23px 19px;
    border-radius: 22px;
  }

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

  .trust-strip__grid,
  .service-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: 95px;
    border-right: none;
    border-bottom: 1px solid var(--slate-100);
  }

  .trust-strip article:first-child {
    border-left: none;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-card {
    min-height: 300px;
  }

  .technology-visual {
    min-height: 350px;
  }

  .technology-badge {
    right: 15px;
    bottom: 15px;
  }

  .cta__actions {
    display: grid;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Galería */
.gallery-section {
  background: var(--slate-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 270px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: .82;
}

.gallery-item > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 42px 20px 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(4,17,31,.9));
}

.gallery-item strong,
.gallery-item small {
  display: block;
}

.gallery-item strong {
  font-size: .95rem;
}

.gallery-item small {
  color: #c8d8e5;
  font-size: .72rem;
}

.gallery-note {
  margin: 22px 0 0;
  color: var(--slate-500);
  font-size: .78rem;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  max-width: 860px;
  display: grid;
  gap: 14px;
  margin-inline: auto;
}

.faq-grid details {
  padding: 0 22px;
  border: 1px solid var(--slate-200);
  border-radius: 15px;
  background: var(--slate-50);
}

.faq-grid summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: -5px 0 22px;
  color: var(--slate-500);
}

/* Consentimiento */
.privacy-banner {
  position: fixed;
  z-index: 120;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(4,17,31,.97);
  color: var(--white);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner strong {
  font-size: .9rem;
}

.privacy-banner p {
  margin: 5px 0 0;
  color: #b7c8d5;
  font-size: .76rem;
  line-height: 1.5;
}

.privacy-banner a {
  color: var(--cyan-300);
  text-decoration: underline;
}

.privacy-banner__actions {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
}

.privacy-button {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 10px;
  background: var(--cyan-500);
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
}

.privacy-button--secondary {
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
}

/* Privacidad */
.legal-page {
  padding-block: 80px;
}

.legal-content {
  width: min(calc(100% - 40px), 850px);
  margin-inline: auto;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.3rem;
}

.legal-content p,
.legal-content li {
  color: var(--slate-500);
}

@media (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .privacy-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item--large {
    grid-column: auto;
  }

  .privacy-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .privacy-banner__actions,
  .privacy-button {
    width: 100%;
  }
}
