:root {
  --blue: #0758b8;
  --blue-dark: #082659;
  --cyan: #20b9ef;
  --orange: #ff7a00;
  --white: #ffffff;
  --surface: #f4f6f8;
  --surface-blue: #eef7ff;
  --text: #101828;
  --muted: #5b6678;
  --line: #dce4ec;
  --green: #19a463;
  --shadow-sm: 0 10px 30px rgba(8, 38, 89, 0.08);
  --shadow-md: 0 22px 58px rgba(8, 38, 89, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --font-title: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-title);
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 6vw, 3.75rem);
  letter-spacing: -0.045em;
}

h3 {
  color: var(--blue-dark);
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.14);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--blue-dark);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(255, 122, 0, 0.26);
}

.button-primary:hover {
  background: #ff8d23;
  box-shadow: 0 18px 38px rgba(255, 122, 0, 0.34);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(7, 88, 184, 0.22);
}

.button-blue:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(8, 38, 89, 0.25);
}

.button-blue img,
.final-cta .button img {
  filter: brightness(0) invert(1);
}

.button img {
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

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

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(5, 27, 65, 0.2);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-bottom-color: rgba(8, 38, 89, 0.09);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(8, 38, 89, 0.08);
  backdrop-filter: blur(14px);
}

body.nav-open .site-header {
  backdrop-filter: none;
}

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

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 176px;
  min-height: 52px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 12px;
  border: 1px solid rgba(32, 185, 239, 0.2);
  background: rgba(8, 38, 89, 0.96);
  box-shadow: 0 6px 20px rgba(8, 38, 89, 0.1);
}

.brand img {
  width: 176px;
  height: auto;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  background: rgba(8, 38, 89, 0.38);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
body.nav-open .menu-toggle {
  border-color: var(--line);
  background: var(--surface-blue);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled .menu-toggle span,
body.nav-open .menu-toggle span {
  background: var(--blue-dark);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  z-index: 1;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 30px 20px;
  transform: translateX(105%);
  visibility: hidden;
  background: var(--white);
  transition:
    transform 240ms ease,
    visibility 240ms ease;
}

body.nav-open .main-nav {
  transform: translateX(0);
  visibility: visible;
}

.main-nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--blue-dark);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: var(--blue);
  background: var(--surface-blue);
}

.main-nav .nav-cta {
  justify-content: center;
  margin-top: 12px;
  color: var(--blue-dark);
  background: var(--orange);
}

.main-nav .nav-cta:hover {
  color: var(--blue-dark);
  background: #ff8d23;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 65% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 28, 69, 0.97) 0%, rgba(4, 35, 82, 0.9) 42%, rgba(4, 35, 82, 0.4) 72%, rgba(4, 35, 82, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 29, 69, 0.48), transparent 45%);
}

.hero-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 80px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.8rem, 12vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.13;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin-top: 0.05em;
  color: var(--cyan);
  font-style: normal;
}

.hero-text {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-proof {
  position: relative;
  display: grid;
  width: min(100%, 244px);
  place-items: center;
  margin-top: 38px;
  margin-inline: auto;
}

.hero-proof-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.48));
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 44px;
  place-items: start center;
  padding-top: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--orange);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(16px);
    opacity: 1;
  }
}

/* About */
.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(32, 185, 239, 0.1), transparent 26%),
    var(--white);
}

.about::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -170px;
  width: 420px;
  aspect-ratio: 1;
  border: 65px solid rgba(7, 88, 184, 0.045);
  border-radius: 50%;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.about-intro .lead {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 500;
}

.about-intro > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 38px 28px;
  padding-bottom: 0;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(32, 185, 239, 0.16), transparent 44%),
    var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.quote-panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 38, 89, 0.98) 0%, rgba(8, 38, 89, 0.88) 46%, rgba(8, 38, 89, 0.2) 78%, transparent 100%);
  pointer-events: none;
}

.quote-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -70px;
  width: 200px;
  aspect-ratio: 1;
  border: 34px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.quote-content {
  position: relative;
  z-index: 3;
}

.quote-mark {
  height: 62px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.9;
}

.quote-panel blockquote p {
  max-width: 560px;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.quote-support {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
}

.quote-panel footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.signature-line {
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

.quote-panel footer strong,
.quote-panel footer span {
  display: block;
}

.quote-panel footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.quote-ceo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(94%, 330px);
  height: auto;
  margin: 26px auto 0;
  object-fit: contain;
  object-position: center bottom;
}

/* Differentiators */
.differentiators {
  background: var(--surface);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid rgba(8, 38, 89, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 88, 184, 0.25);
  box-shadow: var(--shadow-md);
}

.feature-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 38, 89, 0.28), transparent 50%);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.035);
}

.feature-body {
  position: relative;
  padding: 32px 24px 28px;
}

.feature-icon {
  position: absolute;
  top: -34px;
  display: grid;
  width: 66px;
  aspect-ratio: 1;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 18px;
  color: var(--blue-dark);
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(8, 38, 89, 0.16);
}

.feature-icon img {
  width: 34px;
  height: 34px;
}

.feature-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(8, 38, 89, 0.1);
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.feature-body h3 {
  margin: 12px 0 12px;
  font-size: 1.4rem;
}

.feature-body p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Journey */
.journey {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(32, 185, 239, 0.22), transparent 30%),
    var(--blue-dark);
}

.journey::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  aspect-ratio: 1;
  border: 55px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.journey-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}

.journey-head h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--white);
}

.journey-head > p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.steps li:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 185, 239, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.step-count {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--cyan);
}

.step-icon img {
  width: 32px;
  height: 32px;
}

.steps h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.15rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.92rem;
}

/* Products */
.products {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.products-media,
.products-media img,
.products-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.products-media img {
  object-fit: cover;
  object-position: 62% center;
}

.products-overlay {
  background: linear-gradient(90deg, rgba(4, 24, 57, 0.98) 0%, rgba(5, 34, 78, 0.94) 40%, rgba(5, 34, 78, 0.36) 72%, rgba(5, 34, 78, 0.08) 100%);
}

.products-content {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.products-content h2 {
  max-width: 570px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.products-content > p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.16rem;
}

/* Brands */
.brands {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 80%, rgba(32, 185, 239, 0.1), transparent 25%),
    linear-gradient(180deg, var(--white), #f6fbff);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-item {
  min-width: 0;
  text-align: center;
}

@media (max-width: 899px) {
  .brand-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.brand-circle {
  display: grid;
  width: min(100%, 180px);
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
  padding: 13px;
  border: 1px solid rgba(7, 88, 184, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px -30px rgba(8, 38, 89, 0.7);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.brand-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-item-featured .brand-circle {
  border-color: rgba(255, 122, 0, 0.36);
  box-shadow: 0 24px 54px -29px rgba(255, 122, 0, 0.5);
}

.brand-item:hover .brand-circle {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(7, 88, 184, 0.38);
  box-shadow: 0 28px 54px -25px rgba(8, 38, 89, 0.65);
}

.brand-item strong {
  display: block;
  margin-top: 16px;
  color: var(--blue-dark);
  font-family: var(--font-title);
  font-size: 0.84rem;
  line-height: 1.35;
}

/* Locations */
.locations {
  overflow: hidden;
  background: var(--surface);
}

.locations-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 70vw);
  height: 260px;
  opacity: 0.5;
  background-image: radial-gradient(rgba(7, 88, 184, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, transparent, #000);
}

.locations-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 48px;
}

.locations-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.locations-heading > p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
}

.city-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.city-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(8, 38, 89, 0.08);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 38, 89, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 88, 184, 0.25);
  box-shadow: var(--shadow-sm);
}

.city-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-top span {
  display: inline-flex;
  min-width: 42px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--surface-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.city-top > img {
  opacity: 0.38;
}

.city-card h3 {
  margin: 22px 0 20px;
  font-size: 1.22rem;
}

.city-card > a,
.city-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.city-card > a:hover,
.city-actions a:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
}

.city-card > a img,
.city-actions a img,
.floating-whatsapp img {
  filter: brightness(0) invert(1);
}

.city-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.city-actions a {
  margin-top: 0;
}

/* CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 11vw, 150px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 72%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
}

.cta-orb-one {
  top: -100px;
  right: 5%;
  width: 310px;
  aspect-ratio: 1;
  border: 52px solid rgba(255, 255, 255, 0.06);
}

.cta-orb-two {
  bottom: -90px;
  left: 6%;
  width: 200px;
  aspect-ratio: 1;
  background: rgba(32, 185, 239, 0.14);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
  text-align: center;
}

.final-cta-inner .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(2.25rem, 7vw, 4.6rem);
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  gap: 48px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin: 0;
  font-style: normal;
}

.contact-card {
  display: flex;
  min-width: 0;
  min-height: 96px;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(8, 38, 89, 0.08);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

a.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(7, 88, 184, 0.25);
  background: var(--surface-blue);
}

.contact-icon {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 16px;
  background: rgba(32, 185, 239, 0.2);
}

.contact-icon img {
  width: 30px;
  height: 30px;
}

.contact-card > span:last-child {
  min-width: 0;
}

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

.contact-card small {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--blue-dark);
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, 0.66);
  background: #041a3d;
}

.footer-grid {
  display: grid;
  gap: 38px;
  padding-bottom: 54px;
}

.footer-brand > a {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 12px;
  border: 1px solid rgba(32, 185, 239, 0.18);
  background: var(--blue-dark);
}

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

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  transition: color 180ms ease;
}

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

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-column p {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 16px;
  bottom: 16px;
  display: flex;
  min-width: 58px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(3, 40, 25, 0.3);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(3, 40, 25, 0.38);
}

.floating-whatsapp span {
  display: none;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Reveal */
.js-enabled [data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 620ms ease;
}

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

.js-enabled .feature-card[data-reveal].is-visible {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

.js-enabled .feature-card[data-reveal].is-visible:hover {
  transform: translateY(-8px);
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .brand-circle {
    width: min(100%, 210px);
  }

  .brand-item strong {
    font-size: 0.94rem;
  }

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 64px));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
  }

  .quote-panel {
    display: block;
    min-height: 560px;
    padding: 52px 44px;
  }

  .quote-content {
    max-width: 62%;
  }

  .quote-ceo {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 70%;
    max-width: 400px;
    max-height: 98%;
    margin: 0;
    object-position: right bottom;
  }

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

  .journey-head {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
  }

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

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
    max-width: 980px;
    margin-inline: auto;
  }

  .locations-heading {
    grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
    align-items: end;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    align-items: center;
    gap: clamp(54px, 8vw, 104px);
  }

  .footer-grid {
    grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(130px, 0.6fr));
  }

  .floating-whatsapp {
    right: 24px;
    bottom: 24px;
    padding-right: 20px;
  }

  .floating-whatsapp span {
    display: inline;
  }
}

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

  .brand {
    min-width: 196px;
  }

  .brand img {
    width: 196px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    transform: none;
    visibility: visible;
    background: transparent;
  }

  .main-nav a {
    min-height: 44px;
    padding: 10px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
  }

  .site-header.is-scrolled .main-nav a {
    color: var(--blue-dark);
  }

  .main-nav a:hover,
  .main-nav a[aria-current="true"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .site-header.is-scrolled .main-nav a:hover,
  .site-header.is-scrolled .main-nav a[aria-current="true"] {
    color: var(--blue);
    background: var(--surface-blue);
  }

  .main-nav .nav-cta,
  .site-header.is-scrolled .main-nav .nav-cta {
    margin: 0 0 0 8px;
    padding-inline: 17px;
    color: var(--blue-dark);
    background: var(--orange);
  }

  .main-nav .nav-cta:hover,
  .site-header.is-scrolled .main-nav .nav-cta:hover {
    color: var(--blue-dark);
    background: #ff8d23;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 292px);
    align-items: center;
    gap: clamp(32px, 5vw, 68px);
    padding-top: calc(var(--header-height) + 80px);
  }

  .hero-proof {
    justify-self: end;
    margin-top: 0;
    margin-right: 8px;
    margin-left: 0;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 1120px) {
  .main-nav {
    gap: 6px;
  }

  .main-nav a {
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .city-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .city-card {
    padding: 22px 18px;
  }

  .city-card h3 {
    font-size: 1.06rem;
  }

  .city-card > a,
  .city-actions a {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 160px;
    padding-inline: 10px;
  }

  .brand img {
    width: 158px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.2vw, 3.4rem);
  }

  .quote-panel {
    padding-inline: 24px;
  }

  .city-actions {
    grid-template-columns: 1fr;
  }
}

@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-enabled [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
