:root {
  --navy-950: #050c16;
  --navy-900: #07111f;
  --navy-850: #0a1727;
  --navy-800: #0d1d30;
  --blue-500: #2e9bff;
  --blue-400: #57b3ff;
  --blue-200: #8dd6ff;
  --ice-50: #f6f9fc;
  --ice-100: #edf3f8;
  --grey-200: #d9e2ea;
  --grey-500: #6e7b87;
  --grey-700: #344250;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgb(2 10 20 / 24%);
  --shadow-blue: 0 22px 70px rgb(46 155 255 / 18%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 84px;
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--navy-950);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ice-50);
  color: var(--navy-900);
  font-family:
    Inter, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-lock {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

::selection {
  background: var(--blue-500);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--blue-200);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 150px);
}

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

.section--blue {
  overflow: hidden;
  background: #0a64b8;
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 3px;
  background: var(--blue-500);
  box-shadow: 0 0 16px var(--blue-500);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #187bd4;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family:
    "Arial Narrow", "Aptos Display", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--grey-500);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.section-heading--light .eyebrow {
  color: var(--blue-200);
}

.section-heading--light > p:last-child:not(.eyebrow) {
  color: #aebdcc;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--blue-500);
  box-shadow: 0 12px 34px rgb(46 155 255 / 28%);
  color: var(--white);
}

.button--primary:hover {
  background: #168cf8;
  box-shadow: 0 18px 45px rgb(46 155 255 / 38%);
}

.button--ghost {
  border-color: rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 5%);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 10%);
}

.button--outline {
  border-color: #b9c9d8;
  background: transparent;
  color: var(--navy-900);
}

.button--outline:hover {
  border-color: var(--blue-500);
  color: #0d75d5;
}

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

.button--light:hover {
  box-shadow: 0 14px 40px rgb(0 0 0 / 16%);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  background: var(--blue-500);
  color: var(--white);
}

.button--large {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 0.98rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f78d5;
  font-size: 0.92rem;
  font-weight: 820;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.stars {
  color: #ffbd2e;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    height 220ms ease,
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: rgb(255 255 255 / 9%);
  background: rgb(5 12 22 / 86%);
  box-shadow: 0 12px 40px rgb(0 0 0 / 14%);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
}

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

.brand__mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  border: 1px solid rgb(141 214 255 / 28%);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgb(46 155 255 / 22%), transparent 48%),
    #071421;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 4%),
    0 10px 28px rgb(0 0 0 / 22%);
  color: var(--white);
  font-family: "Arial Narrow", "Aptos Narrow", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.11em;
  transform: rotate(-2deg);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.brand__mark::before {
  position: absolute;
  z-index: -1;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 28deg,
    transparent 0 14%,
    var(--blue-500) 14% 38%,
    transparent 38% 71%,
    rgb(141 214 255 / 70%) 71% 82%,
    transparent 82% 100%
  );
  content: "";
  opacity: 0.82;
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 calc(100% - 1.5px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 calc(100% - 1.5px)
  );
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.brand__mark::after {
  position: absolute;
  z-index: -1;
  top: 6px;
  left: 22px;
  width: 2px;
  height: 38px;
  transform: rotate(42deg);
  border-radius: 99px;
  background: linear-gradient(
    transparent,
    var(--blue-200) 22%,
    var(--blue-500) 72%,
    transparent
  );
  box-shadow: 0 0 14px rgb(46 155 255 / 75%);
  content: "";
}

.brand__letters {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: scaleX(0.9);
  text-shadow: 0 2px 10px rgb(0 0 0 / 45%);
}

.brand__letters::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--navy-900);
  border-radius: 50%;
  background: var(--blue-200);
  box-shadow: 0 0 9px var(--blue-500);
  content: "";
}

.brand-link:hover .brand__mark {
  transform: rotate(0deg) translateY(-1px);
  border-color: rgb(141 214 255 / 55%);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 6%),
    0 14px 34px rgb(0 0 0 / 28%);
}

.brand-link:hover .brand__mark::before {
  transform: rotate(125deg);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 0.94rem;
  letter-spacing: -0.025em;
}

.brand__text small {
  color: #91a6b9;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #c3d0db;
  font-size: 0.83rem;
  font-weight: 720;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue-500);
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--white);
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  background: rgb(255 255 255 / 6%);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: flex;
  overflow: hidden;
  align-items: center;
  background:
    radial-gradient(circle at 74% 48%, rgb(46 155 255 / 18%), transparent 31%),
    radial-gradient(circle at 14% 22%, rgb(141 214 255 / 7%), transparent 22%),
    var(--navy-900);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(transparent, rgb(5 12 22 / 55%));
  content: "";
  pointer-events: none;
}

.hero__grid,
.final-cta__grid,
.process__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(141 214 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(141 214 255 / 5%) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  pointer-events: none;
}

.kinetic {
  position: absolute;
  border: 1px solid rgb(46 155 255 / 24%);
  border-radius: 50%;
  pointer-events: none;
}

.kinetic::after,
.kinetic::before {
  position: absolute;
  border: 1px solid rgb(141 214 255 / 12%);
  border-radius: inherit;
  content: "";
}

.kinetic::before {
  inset: 18px;
}

.kinetic::after {
  inset: 42px;
}

.kinetic--one {
  width: 520px;
  height: 520px;
  right: -270px;
  bottom: -160px;
}

.kinetic--two {
  width: 290px;
  height: 290px;
  top: -160px;
  left: 38%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 70px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--blue-200);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__location svg {
  width: 17px;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 26px;
  font-family:
    "Arial Narrow", "Aptos Display", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 6.4vw, 7.25rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--blue-500);
}

.hero__copy > p {
  max-width: 640px;
  margin-bottom: 30px;
  color: #b6c5d2;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.67;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 27px;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a8b8c6;
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.hero__rating:hover {
  color: var(--white);
}

.hero__rating strong {
  color: var(--white);
}

.hero__rating-divider {
  width: 1px;
  height: 16px;
  margin-inline: 4px;
  background: rgb(255 255 255 / 20%);
}

.hero__visual {
  --parallax: 0px;
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  transform: translateY(var(--parallax));
  transition: transform 80ms linear;
}

.hero__photo-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 1px solid rgb(141 214 255 / 22%);
  border-radius: 220px 220px 28px 28px;
  box-shadow:
    0 40px 100px rgb(0 0 0 / 40%),
    0 0 0 10px rgb(255 255 255 / 2%);
}

.hero__photo-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgb(5 12 22 / 48%)),
    linear-gradient(90deg, rgb(7 17 31 / 12%), transparent 50%);
  content: "";
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 45%;
  transform: scale(1.02);
}

.hero__photo-shine {
  position: absolute;
  z-index: 1;
  inset: 0 auto auto 8%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-200), transparent);
  box-shadow: 0 0 20px var(--blue-500);
}

.hero__tech-label {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid rgb(141 214 255 / 20%);
  border-radius: 12px;
  background: rgb(7 17 31 / 82%);
  box-shadow: 0 15px 36px rgb(0 0 0 / 22%);
  backdrop-filter: blur(14px);
  color: #c2d0dc;
  font-size: 0.68rem;
  font-weight: 720;
}

.hero__tech-label span {
  color: var(--blue-200);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hero__tech-label--top {
  top: 13%;
  left: -14%;
}

.hero__tech-label--bottom {
  right: -9%;
  bottom: 9%;
}

.hero__orbit {
  position: absolute;
  top: 22%;
  right: -16%;
  width: 116%;
  aspect-ratio: 1;
  border: 1px solid rgb(46 155 255 / 24%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit 18s linear infinite;
}

.hero__orbit::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(141 214 255 / 11%);
  border-radius: inherit;
  content: "";
}

.hero__orbit span {
  position: absolute;
  top: 49%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 20px var(--blue-500);
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #8396a7;
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 1px;
  height: 32px;
  display: block;
  background: linear-gradient(var(--blue-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.trust-bar {
  border-bottom: 1px solid #d8e2eb;
  background: var(--white);
}

.trust-bar__inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.trust-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 680;
}

.trust-item + .trust-item {
  padding-left: clamp(14px, 2.8vw, 38px);
  border-left: 1px solid #dce5ed;
}

.trust-item strong {
  color: var(--navy-900);
}

.trust-item svg {
  width: 18px;
  color: #137bd7;
}

.trust-item--rating {
  display: grid;
  gap: 2px;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgb(46 155 255 / 11%);
}

.pillars {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgb(46 155 255 / 7%), transparent 26%),
    var(--ice-50);
}

.pillars .section-heading {
  max-width: 900px;
}

.pillars__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 66px;
}

.pillars__path {
  position: absolute;
  top: 52%;
  right: 0;
  left: 0;
  height: 160px;
  transform: skewY(-4deg);
  border-top: 1px solid rgb(46 155 255 / 13%);
  border-bottom: 1px solid rgb(46 155 255 / 8%);
  pointer-events: none;
}

.pillars__path span {
  position: absolute;
  top: -4px;
  left: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 20px var(--blue-500);
  animation: pathMove 9s linear infinite;
}

.spotlight-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--spot-x) var(--spot-y),
    rgb(46 155 255 / 10%),
    transparent 48%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.pillar-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid #d7e2eb;
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 18px 50px rgb(25 54 82 / 6%);
  backdrop-filter: blur(10px);
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-card__number {
  color: #8da0b1;
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.71rem;
  letter-spacing: 0.1em;
}

.pillar-card__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 40px 0 28px;
  border: 1px solid rgb(46 155 255 / 25%);
  border-radius: 50%;
}

.pillar-card__icon::before,
.pillar-card__icon::after,
.pillar-card__icon span {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
}

.pillar-card__icon::before {
  width: 52px;
  height: 52px;
  border: 1px solid rgb(46 155 255 / 45%);
}

.pillar-card__icon::after {
  width: 27px;
  height: 27px;
  border: 1px solid var(--blue-500);
}

.pillar-card__icon span {
  width: 7px;
  height: 7px;
  transform: translate(14px, -14px);
  background: var(--blue-500);
  box-shadow: 0 0 12px var(--blue-500);
}

.pillar-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--grey-500);
  font-size: 0.93rem;
  line-height: 1.67;
}

.services {
  background: var(--white);
}

.services__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 58px;
}

.services__heading .text-link {
  flex: 0 0 auto;
  margin-bottom: 7px;
}

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

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #d9e3eb;
  border-radius: var(--radius-md);
  background: var(--ice-50);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgb(46 155 255 / 50%);
  box-shadow: var(--shadow-blue);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 50px;
}

.service-card__index {
  color: #8393a1;
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.7rem;
}

.service-card__duration {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #d5e0e9;
  border-radius: 999px;
  background: var(--white);
  color: var(--grey-500);
  font-size: 0.68rem;
  font-weight: 760;
}

.service-card__duration svg {
  width: 14px;
}

.service-card__duration--empty {
  border-color: transparent;
  background: transparent;
  color: #94a2ad;
}

.service-card h3 {
  max-width: 300px;
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.service-card > p {
  margin-bottom: 30px;
  color: var(--grey-500);
  font-size: 0.88rem;
  line-height: 1.67;
}

.service-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #d9e2ea;
}

.service-card__footer strong {
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.service-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0e77d4;
  font-size: 0.72rem;
  font-weight: 820;
}

.service-card__footer a svg {
  width: 16px;
  transition: transform 180ms ease;
}

.service-card__footer a:hover svg {
  transform: translateX(4px);
}

.process__mesh {
  opacity: 0.7;
  mask-image: radial-gradient(circle at 25% 50%, black, transparent 55%);
}

.process__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(440px, 1fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.process__visual {
  --parallax: 0px;
  position: relative;
  transform: translateY(var(--parallax));
  transition: transform 80ms linear;
}

.process__photo {
  aspect-ratio: 0.8;
  overflow: hidden;
  border: 1px solid rgb(141 214 255 / 17%);
  border-radius: 24px 150px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.process__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 44%;
}

.process__caption {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: min(330px, 82%);
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 2px solid var(--blue-500);
  background: rgb(5 12 22 / 88%);
  box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
  backdrop-filter: blur(14px);
  color: #d4dee7;
  font-size: 0.86rem;
  line-height: 1.55;
}

.process__caption span {
  color: var(--blue-200);
  font-size: 0.59rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.steps {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.steps li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(46 155 255 / 35%);
  border-radius: 50%;
  color: var(--blue-200);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.65rem;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.steps p {
  max-width: 530px;
  margin-bottom: 0;
  color: #91a4b5;
  font-size: 0.88rem;
  line-height: 1.65;
}

.about {
  background:
    linear-gradient(90deg, rgb(46 155 255 / 5%) 1px, transparent 1px),
    var(--ice-50);
  background-size: 25% 100%;
}

.about__layout {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.about__identity {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 28px;
}

.about__monogram {
  position: relative;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(46 155 255 / 22%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgb(46 155 255 / 12%), transparent 68%),
    var(--white);
  box-shadow:
    0 25px 70px rgb(31 73 111 / 10%),
    inset 0 0 0 28px var(--ice-50);
  color: var(--blue-500);
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  isolation: isolate;
}

.about__monogram::before {
  position: absolute;
  z-index: -1;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 35deg,
    transparent 0 17%,
    rgb(46 155 255 / 65%) 17% 37%,
    transparent 37% 70%,
    rgb(141 214 255 / 45%) 70% 82%,
    transparent 82%
  );
  content: "";
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 calc(100% - 1px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 calc(100% - 1px)
  );
}

.about__monogram::after {
  position: absolute;
  z-index: -1;
  top: 34px;
  left: 116px;
  width: 4px;
  height: 170px;
  transform: rotate(42deg);
  border-radius: 99px;
  background: linear-gradient(
    transparent,
    var(--blue-200) 25%,
    var(--blue-500) 72%,
    transparent
  );
  box-shadow: 0 0 20px rgb(46 155 255 / 35%);
  content: "";
}

.about__monogram > span {
  transform: scaleX(0.9);
  text-shadow: 0 7px 18px rgb(46 155 255 / 14%);
}

.about__identity p {
  margin-bottom: 3px;
  font-size: 1.1rem;
  font-weight: 820;
}

.about__identity div span {
  color: var(--grey-500);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__text {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.about__text p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--grey-700);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.8;
}

.about__quote {
  max-width: 690px;
  display: flex;
  gap: 18px;
  margin: 44px 0 0;
  padding: 26px;
  border-left: 3px solid var(--blue-500);
  background: var(--white);
  box-shadow: 0 18px 60px rgb(25 54 82 / 7%);
}

.about__quote svg {
  flex: 0 0 auto;
  color: var(--blue-500);
}

.about__quote p {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.training {
  background: var(--white);
}

.training__layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 8vw, 110px);
}

.training__accordion {
  border-top: 1px solid #d9e2ea;
}

.accordion__item {
  border-bottom: 1px solid #d9e2ea;
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item h3 button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion__item h3 button > span:first-child {
  font-size: 1rem;
  font-weight: 790;
  letter-spacing: -0.025em;
}

.accordion__icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d6e0e8;
  border-radius: 50%;
  color: #0f78d5;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.accordion__icon svg {
  width: 16px;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
  background: var(--blue-500);
  color: var(--white);
}

.accordion__panel {
  overflow: hidden;
}

.accordion__content {
  padding: 0 0 26px;
  color: var(--grey-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

.accordion__content p {
  margin-bottom: 0;
}

.accordion__content ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion__content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.accordion__content li svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: #0e7ddd;
}

.partners {
  border-block: 1px solid #d8e2ea;
  background: var(--ice-50);
}

.partners__inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.partners p {
  margin-bottom: 0;
  color: var(--grey-500);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partners__inner > div {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  font-weight: 830;
  letter-spacing: -0.035em;
}

.partners__divider {
  width: 1px;
  height: 30px;
  background: #cbd8e2;
}

.packs {
  background:
    radial-gradient(circle at 88% 30%, rgb(141 214 255 / 22%), transparent 25%),
    #075ba7;
}

.packs__line {
  position: absolute;
  top: 8%;
  right: -5%;
  width: 580px;
  height: 580px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
}

.packs__line::before,
.packs__line::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: inherit;
  content: "";
}

.packs__line::before {
  inset: 50px;
}

.packs__line::after {
  inset: 105px;
}

.packs .section-heading {
  position: relative;
  z-index: 1;
}

.packs .section-heading--light > p:last-child:not(.eyebrow) {
  color: rgb(255 255 255 / 72%);
}

.packs__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.pack-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius-md);
  background: rgb(5 33 64 / 43%);
  box-shadow: 0 26px 70px rgb(0 31 63 / 22%);
  backdrop-filter: blur(12px);
}

.pack-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 46px;
}

.pack-card__top > span:first-child {
  color: var(--blue-200);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.pack-card__saving {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 11%);
  font-size: 0.68rem;
  font-weight: 780;
}

.pack-card h3 {
  max-width: 420px;
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.pack-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  color: #d7e6f2;
  list-style: none;
}

.pack-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
}

.pack-card li svg {
  width: 16px;
  color: var(--blue-200);
}

.pack-card__price {
  display: flex;
  align-items: end;
  gap: 50px;
  margin-bottom: 32px;
  padding-top: 26px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.pack-card__price > div {
  display: grid;
  gap: 5px;
}

.pack-card__price small {
  color: rgb(255 255 255 / 59%);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pack-card__price strong {
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.pack-card__price s {
  color: rgb(255 255 255 / 56%);
  font-size: 1.2rem;
}

.reviews {
  background:
    radial-gradient(circle at 12% 16%, rgb(46 155 255 / 8%), transparent 22%),
    var(--ice-50);
}

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

.reviews__score {
  min-width: 190px;
  display: grid;
  justify-items: start;
  padding-left: 28px;
  border-left: 1px solid #cedbe5;
}

.reviews__score-value {
  display: flex;
  align-items: end;
  gap: 8px;
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 3.7rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.reviews__score-value small {
  margin-bottom: 7px;
  color: var(--grey-500);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 720;
  letter-spacing: 0;
}

.reviews__score .stars {
  margin: 11px 0 5px;
}

.reviews__score p {
  margin-bottom: 0;
  color: var(--grey-500);
  font-size: 0.73rem;
}

.review-carousel {
  margin-top: 60px;
  outline: none;
}

.review-carousel:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 8px;
  border-radius: var(--radius-md);
}

.review-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d7e2eb;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 50px rgb(25 54 82 / 5%);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-card__top > span:last-child {
  color: #8b99a4;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 32px 0;
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card footer > span {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--blue-200);
  font-size: 0.76rem;
  font-weight: 850;
}

.review-card footer div {
  display: grid;
  gap: 2px;
}

.review-card footer strong {
  font-size: 0.8rem;
}

.review-card footer small {
  color: #8b99a4;
  font-size: 0.62rem;
}

.review-carousel__footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.review-carousel__progress {
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: #d2dee7;
}

.review-carousel__progress span {
  height: 100%;
  display: block;
  background: var(--blue-500);
  transition: width 400ms ease;
}

.review-carousel__count {
  color: var(--grey-500);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.7rem;
}

.review-carousel__controls {
  display: flex;
  gap: 8px;
}

.review-carousel__controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #cdd9e3;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.review-carousel__controls button:first-child svg {
  transform: rotate(180deg);
}

.review-carousel__controls button:hover {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}

.reviews__google-link {
  margin-top: 32px;
}

.location__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.location__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.location__details > div {
  display: flex;
  gap: 13px;
}

.location__details > div > svg {
  width: 19px;
  flex: 0 0 auto;
  color: var(--blue-200);
}

.location__details p {
  display: grid;
  gap: 4px;
  margin-bottom: 0;
  color: #92a5b6;
  font-size: 0.78rem;
  line-height: 1.45;
}

.location__details strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.83rem;
}

.location__details a:hover {
  color: var(--blue-200);
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 40px;
}

.location__actions .button {
  min-height: 47px;
  padding-inline: 16px;
  font-size: 0.75rem;
}

.location__map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgb(141 214 255 / 18%);
  border-radius: 160px 24px 24px;
  box-shadow: var(--shadow-lg);
  background: var(--navy-850);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  border: 0;
  filter: saturate(0.7) contrast(1.06);
}

.location__map-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-left: 2px solid var(--blue-500);
  border-radius: 4px 10px 10px 4px;
  background: rgb(5 12 22 / 86%);
  box-shadow: 0 14px 40px rgb(0 0 0 / 25%);
  backdrop-filter: blur(12px);
  font-size: 0.83rem;
  font-weight: 720;
}

.location__map-label span {
  color: var(--blue-200);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.faq {
  background: var(--white);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq .text-link {
  margin-top: 34px;
}

.faq__accordion {
  border-top: 1px solid #d9e2ea;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 170px);
  background:
    radial-gradient(circle at 50% 120%, rgb(46 155 255 / 36%), transparent 36%),
    var(--navy-900);
  color: var(--white);
  text-align: center;
}

.final-cta__grid {
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.final-cta__tag {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue-200);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 980px;
  margin-bottom: 26px;
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-wrap: balance;
}

.final-cta > .container > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: #a9bac8;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-cta small {
  margin-top: 22px;
  color: #7f93a5;
  font-size: 0.7rem;
}

.site-footer {
  padding-block: 44px 28px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  background: var(--navy-950);
  color: var(--white);
}

.site-footer__top {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.site-footer__top > p {
  max-width: 360px;
  margin-bottom: 0;
  color: #8396a7;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-social {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  color: var(--blue-200);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.footer-social:hover {
  border-color: var(--blue-500);
  background: rgb(46 155 255 / 12%);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  padding-top: 28px;
  color: #667a8c;
  font-size: 0.66rem;
}

.site-footer__bottom nav {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.site-footer__bottom > span:last-child {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 800;
  right: 16px;
  bottom: 16px;
  min-height: 52px;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  background: #168d4d;
  box-shadow: 0 18px 48px rgb(0 0 0 / 30%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 820;
}

/* Legal pages */
.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 80% 0, rgb(46 155 255 / 15%), transparent 27%),
    var(--navy-900);
  color: var(--white);
}

.legal-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aec0cf;
  font-size: 0.8rem;
  font-weight: 750;
}

.legal-back svg {
  transform: rotate(180deg);
}

.legal-main {
  padding-block: clamp(80px, 10vw, 140px);
}

.legal-main__inner {
  display: grid;
  grid-template-columns: 0.52fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
}

.legal-main__aside {
  color: var(--blue-200);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 730px;
}

.legal-content h1 {
  margin-bottom: 34px;
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.legal-content > p {
  margin-bottom: 22px;
  color: #aebdcc;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  margin: 46px 0 18px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.legal-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #aebdcc;
  line-height: 1.7;
}

.legal-note {
  margin-top: 38px;
  padding: 24px;
  border-left: 2px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
  background: rgb(255 255 255 / 5%);
}

.legal-note p {
  margin-bottom: 8px;
  color: #aebdcc;
}

.legal-note a {
  color: var(--blue-200);
  font-weight: 800;
}

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

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes pathMove {
  to {
    left: calc(100% + 8px);
  }
}

@media (max-width: 1100px) {
  :root {
    --container: 940px;
  }

  .hero__inner {
    grid-template-columns: 1.08fr minmax(350px, 0.78fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7.6vw, 5.6rem);
  }

  .hero__tech-label--top {
    left: -7%;
  }

  .hero__tech-label--bottom {
    right: -3%;
  }

  .service-card__footer {
    align-items: start;
    flex-direction: column;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 32px), 720px);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 28px 34px;
    transform: translateY(-105%);
    visibility: hidden;
    background:
      radial-gradient(circle at 80% 20%, rgb(46 155 255 / 20%), transparent 32%),
      rgb(5 12 22 / 98%);
    opacity: 0;
    transition:
      transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 250ms ease,
      visibility 320ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    color: var(--white);
    font-size: clamp(1.45rem, 5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 28px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 78px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 0;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(3.6rem, 11vw, 6.3rem);
  }

  .hero__visual {
    width: min(100%, 580px);
    justify-self: center;
  }

  .hero__photo-frame {
    aspect-ratio: 1.1;
    border-radius: 190px 190px 26px 26px;
  }

  .hero__photo-frame img {
    object-position: 50% 35%;
  }

  .hero__tech-label--top {
    top: 16%;
    left: -2%;
  }

  .hero__tech-label--bottom {
    right: -1%;
    bottom: 8%;
  }

  .scroll-indicator {
    display: none;
  }

  .trust-bar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex: 0 0 auto;
  }

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

  .pillars__grid .pillar-card:last-child {
    grid-column: 1 / -1;
  }

  .process__layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .process__visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .about__layout,
  .training__layout,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .about__identity {
    position: relative;
    top: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .about__monogram {
    width: 150px;
    height: 150px;
    box-shadow:
      0 20px 50px rgb(31 73 111 / 9%),
      inset 0 0 0 18px var(--ice-50);
    font-size: 2.8rem;
  }

  .about__monogram::after {
    top: 22px;
    left: 73px;
    width: 3px;
    height: 106px;
  }

  .training__layout,
  .faq__layout {
    gap: 50px;
  }

  .review-carousel__track {
    grid-template-columns: 1fr;
  }

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

  .reviews__score {
    padding: 0;
    border: 0;
  }

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

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

  .location__map {
    min-height: 520px;
    border-radius: 120px 24px 24px;
  }

  .location__map iframe {
    min-height: 520px;
  }

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

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 26px;
  }

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

  .site-footer__bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

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

  .section {
    padding-block: 84px;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .brand__text {
    display: none;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 58px;
  }

  .hero__location {
    margin-bottom: 20px;
    font-size: 0.64rem;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.3rem, 16.5vw, 5.4rem);
    line-height: 0.86;
  }

  .hero__copy > p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__rating {
    flex-wrap: wrap;
    row-gap: 5px;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__photo-frame {
    aspect-ratio: 0.92;
    border-radius: 150px 150px 22px 22px;
  }

  .hero__photo-frame img {
    object-position: 50% 42%;
  }

  .hero__tech-label {
    padding: 12px 14px;
    font-size: 0.61rem;
  }

  .hero__tech-label--top {
    top: 8%;
    left: -4px;
  }

  .hero__tech-label--bottom {
    right: -4px;
    bottom: 6%;
  }

  .trust-bar__inner {
    min-height: 80px;
  }

  .pillars__grid,
  .services__grid,
  .packs__grid {
    grid-template-columns: 1fr;
  }

  .pillars__grid .pillar-card:last-child {
    grid-column: auto;
  }

  .pillars__grid {
    margin-top: 44px;
  }

  .pillar-card {
    min-height: 290px;
  }

  .services__heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 40px;
  }

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

  .process__layout {
    gap: 70px;
  }

  .process__photo {
    aspect-ratio: 0.78;
    border-radius: 20px 100px 20px 20px;
  }

  .process__caption {
    right: 12px;
    bottom: -38px;
    width: calc(100% - 24px);
  }

  .steps {
    margin-top: 38px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }

  .steps li > span {
    width: 38px;
    height: 38px;
  }

  .about__identity {
    gap: 18px;
  }

  .about__monogram {
    width: 112px;
    height: 112px;
    box-shadow:
      0 16px 40px rgb(31 73 111 / 8%),
      inset 0 0 0 13px var(--ice-50);
    font-size: 2rem;
  }

  .about__monogram::after {
    top: 17px;
    left: 54px;
    width: 2px;
    height: 78px;
  }

  .partners__inner {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding-block: 26px;
  }

  .partners__inner > div {
    width: 100%;
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .partners__divider {
    width: 30px;
    height: 1px;
  }

  .pack-card__top {
    margin-bottom: 38px;
  }

  .pack-card__price {
    gap: 34px;
  }

  .pack-card .button {
    width: 100%;
  }

  .reviews__score-value {
    font-size: 3.2rem;
  }

  .review-card {
    min-height: 350px;
    padding: 24px;
  }

  .review-carousel__footer {
    grid-template-columns: 1fr auto;
  }

  .review-carousel__progress {
    grid-column: 1 / -1;
  }

  .review-carousel__count {
    grid-row: 2;
  }

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

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

  .location__actions .button {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .location__actions .button--primary {
    grid-column: 1 / -1;
  }

  .location__map {
    min-height: 450px;
    border-radius: 90px 18px 18px;
  }

  .location__map iframe {
    min-height: 450px;
  }

  .accordion__item h3 button {
    min-height: 74px;
  }

  .accordion__item h3 button > span:first-child {
    font-size: 0.91rem;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .final-cta__actions {
    width: 100%;
    display: grid;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 96px;
  }

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

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

  .site-footer__bottom nav {
    display: grid;
    grid-row: auto;
    gap: 12px;
  }

  .site-footer__bottom > span:last-child {
    text-align: left;
  }

  .whatsapp-float {
    display: inline-flex;
  }

  .legal-header .brand__text {
    display: grid;
  }

  .legal-main {
    padding-block: 72px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero__tech-label--bottom {
    max-width: 185px;
  }

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

  .location__actions .button--primary {
    grid-column: auto;
  }

  .review-card {
    min-height: 390px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}
