:root {
  --bg: #020817;
  --bg-2: #061733;
  --surface: rgba(9, 25, 54, 0.78);
  --surface-strong: rgba(12, 34, 73, 0.94);
  --surface-soft: rgba(17, 47, 94, 0.52);
  --line: rgba(138, 190, 255, 0.18);
  --line-strong: rgba(0, 213, 255, 0.38);
  --text: #f4f9ff;
  --muted: #b8c7da;
  --blue: #1683ff;
  --cyan: #00d5ff;
  --green: #12b76a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 213, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(22, 131, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #020817 0%, #04122a 38%, #061733 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

.section-pad {
  padding: 88px clamp(20px, 5vw, 76px);
}

.compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(2, 8, 23, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  font-weight: 850;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--cyan);
}

.header-cta,
.btn,
.mini-link,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  padding: 10px 16px;
  color: #031126;
  background: linear-gradient(135deg, var(--cyan), #6be7ff);
  box-shadow: 0 14px 34px rgba(0, 213, 255, 0.22);
}

.btn {
  padding: 14px 20px;
}

.btn-primary {
  color: #031126;
  background: linear-gradient(135deg, var(--cyan), #5bbdff);
  box-shadow: 0 20px 48px rgba(0, 213, 255, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.header-cta:hover,
.btn:hover,
.mini-link:hover,
.footer-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(2, 8, 23, 0.98) 0%, rgba(5, 21, 49, 0.96) 48%, rgba(3, 39, 88, 0.86) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 213, 255, 0.22), transparent 26rem),
    linear-gradient(90deg, rgba(0, 213, 255, 0.06), transparent 48%);
}

.wave-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.82;
  overflow: hidden;
}

.wave-field svg {
  width: 118%;
  height: 100%;
  transform: translateX(-8%);
}

.wave-field path {
  fill: none;
  stroke: rgba(0, 213, 255, 0.28);
  stroke-width: 1.8;
  stroke-dasharray: 18 24;
  animation: waveMove 9s linear infinite;
}

.wave-field path:nth-child(2) {
  stroke: rgba(22, 131, 255, 0.22);
  animation-duration: 12s;
}

.wave-field path:nth-child(3) {
  stroke: rgba(255, 255, 255, 0.12);
  animation-duration: 14s;
}

.wave-field path:nth-child(4) {
  stroke: rgba(0, 213, 255, 0.18);
  animation-duration: 16s;
}

@keyframes waveMove {
  to {
    stroke-dashoffset: -168;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.79rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 950px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span,
.pill-grid span,
.city {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 850;
}

.trust-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.trust-card,
.service-card,
.placeholder-card,
.final-box,
.about-content,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.trust-card {
  padding: 20px;
}

.trust-card p,
.service-card p,
.section-heading p,
.about-content p,
.region-copy p,
.final-box p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--cyan);
  background: rgba(0, 213, 255, 0.08);
  border: 1px solid rgba(0, 213, 255, 0.18);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 950;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 32px;
}

.about {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  background: linear-gradient(135deg, rgba(4, 18, 42, 0.96), rgba(6, 30, 66, 0.86));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-content {
  padding: clamp(24px, 4vw, 44px);
}

.about-content p {
  margin: 0;
  font-size: 1.1rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 24px;
}

.mini-link {
  width: fit-content;
  min-height: 38px;
  margin-top: auto;
  padding: 8px 13px;
  color: #031126;
  background: linear-gradient(135deg, var(--cyan), #69caff);
}

.process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020817, #071d40 60%, #082a5e);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(0, 213, 255, 0.08) 0 1px, transparent 1px 120px);
  opacity: 0.5;
  pointer-events: none;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 180px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: #031126;
  background: var(--cyan);
  border-radius: 8px;
  font-weight: 950;
}

.process-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.process-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.region {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, rgba(2, 8, 23, 0.94), rgba(7, 31, 68, 0.9));
}

.city-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(0, 213, 255, 0.055)),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(0, 213, 255, 0.07) 55px),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(0, 213, 255, 0.07) 55px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.future,
.testimonials {
  background: rgba(2, 8, 23, 0.42);
}

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

.placeholder-card {
  display: grid;
  place-items: center;
  min-height: 230px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(17, 47, 94, 0.78), rgba(2, 8, 23, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(0, 213, 255, 0.09) 13px 14px);
  font-weight: 900;
}

.testimonials {
  padding-top: 20px;
}

.faq {
  background: linear-gradient(135deg, rgba(4, 18, 42, 0.92), rgba(6, 30, 66, 0.82));
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  background: linear-gradient(135deg, #020817, #082a5e);
}

.final-box {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  background: rgba(5, 21, 49, 0.86);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #020817;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.site-footer img {
  width: 92px;
  height: 92px;
  margin-bottom: 14px;
  object-fit: contain;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.footer-whatsapp {
  width: fit-content;
  padding: 10px 16px;
  color: #031126;
  background: var(--cyan);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(18, 183, 106, 0.34);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

  .wave-field path,
  .reveal {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .site-header.is-open .header-cta {
    width: 100%;
  }

  .hero,
  .about,
  .region {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .section-pad {
    padding: 64px 18px;
  }

  .brand span {
    max-width: 148px;
    line-height: 1.15;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-actions .btn,
  .header-cta {
    width: 100%;
  }

  .trust-grid,
  .card-grid,
  .steps,
  .pill-grid,
  .placeholder-grid,
  .city-map,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 132px;
  }

  .steps span {
    margin-bottom: 18px;
  }

}

/* Premium landing direction */
body {
  background:
    linear-gradient(180deg, #020713 0%, #041126 34%, #061a39 68%, #030a18 100%);
}

.site-header {
  min-height: 74px;
  background: rgba(2, 7, 19, 0.72);
  border-bottom-color: rgba(120, 190, 255, 0.12);
}

.brand {
  gap: 10px;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 213, 255, 0.22));
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 74px);
  padding-top: clamp(52px, 8vw, 100px);
  padding-bottom: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(110deg, rgba(2, 7, 19, 0.98) 0%, rgba(4, 18, 42, 0.94) 44%, rgba(5, 34, 76, 0.86) 100%),
    repeating-linear-gradient(90deg, rgba(0, 213, 255, 0.055) 0 1px, transparent 1px 116px);
}

.hero::before {
  background:
    linear-gradient(105deg, transparent 0%, rgba(0, 213, 255, 0.11) 42%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.48), transparent);
}

.wave-field {
  opacity: 0.52;
}

.wave-field svg {
  width: 130%;
  transform: translateX(-15%);
}

.wave-field path {
  stroke-width: 1.25;
  stroke-dasharray: 8 18;
}

.hero-watermark {
  position: absolute;
  right: max(-120px, -8vw);
  top: 48%;
  z-index: -1;
  width: min(58vw, 780px);
  opacity: 0.11;
  transform: translateY(-50%);
  filter: saturate(1.18) drop-shadow(0 0 70px rgba(0, 213, 255, 0.16));
  pointer-events: none;
}

.hero-copy {
  width: min(100%, 1120px);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: clamp(210px, 30vw, 385px);
  margin: 0 auto clamp(22px, 4vw, 36px);
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.32));
}

.hero .eyebrow {
  color: #8feeff;
}

h1 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 6.5vw, 5.85rem);
  line-height: 0.95;
}

.hero-subtitle {
  max-width: 830px;
  margin-right: auto;
  margin-left: auto;
  color: #c8d7e8;
}

.hero-actions,
.hero-proof {
  justify-content: center;
}

.hero-proof span {
  position: relative;
  min-height: auto;
  padding: 0 0 0 16px;
  color: #dbefff;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #8feeff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 213, 255, 0.62);
  transform: translateY(-50%);
}

.trust {
  background: linear-gradient(180deg, rgba(3, 10, 24, 0.9), rgba(4, 18, 42, 0.72));
}

.trust-card,
.service-card,
.placeholder-card,
.about-content,
.faq-list details,
.final-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border-color: rgba(143, 238, 255, 0.14);
  box-shadow: none;
}

.service-card:hover {
  border-color: rgba(0, 213, 255, 0.34);
}

.service-card {
  transition: border-color 0.22s ease, background 0.22s ease;
}

.icon {
  width: auto;
  height: auto;
  justify-content: flex-start;
  margin-bottom: 14px;
  color: #8feeff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
}

.about,
.region,
.faq {
  background:
    linear-gradient(135deg, rgba(2, 7, 19, 0.96), rgba(6, 26, 57, 0.82)),
    repeating-linear-gradient(90deg, rgba(0, 213, 255, 0.045) 0 1px, transparent 1px 124px);
}

.process {
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 213, 255, 0.19), transparent 26rem),
    radial-gradient(circle at 88% 40%, rgba(22, 131, 255, 0.22), transparent 30rem),
    linear-gradient(135deg, #020713, #05152f 50%, #062f68);
  border-top: 1px solid rgba(0, 213, 255, 0.22);
  border-bottom: 1px solid rgba(0, 213, 255, 0.2);
}

.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(0, 213, 255, 0.08) 42% 43%, transparent 43% 100%),
    linear-gradient(rgba(143, 238, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 238, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.process .eyebrow {
  color: #8feeff;
}

.process h2 {
  max-width: 860px;
}

.process .steps {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 0;
  padding: 34px 0 10px;
}

.process .steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 62px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 213, 255, 0), rgba(0, 213, 255, 0.9), rgba(22, 131, 255, 0.28));
  box-shadow: 0 0 28px rgba(0, 213, 255, 0.44);
}

.process .steps li {
  position: relative;
  min-height: 260px;
  padding: 58px 14px 0;
  background: transparent;
  border: 0;
}

.process .steps li::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 94px;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(0, 213, 255, 0.1), transparent 46%);
  border: 1px solid rgba(143, 238, 255, 0.16);
  border-radius: 8px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.process .steps li:hover::before {
  transform: translateY(-5px);
  border-color: rgba(0, 213, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(0, 213, 255, 0.16), transparent 48%);
}

.process .steps span {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0;
  color: #021027;
  background:
    radial-gradient(circle at 35% 25%, #ffffff, #8feeff 34%, #00d5ff 72%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(0, 213, 255, 0.08),
    0 0 38px rgba(0, 213, 255, 0.42);
  transform: translateX(-50%);
  font-size: 0.82rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0;
}

.process .steps strong,
.process .steps small,
.process .steps i {
  position: relative;
  z-index: 1;
}

.process .steps strong {
  display: block;
  padding: 62px 24px 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.22;
}

.process .steps small {
  display: block;
  padding: 12px 24px 24px;
  color: #aebfd4;
  font-size: 0.9rem;
  line-height: 1.45;
}

.process .steps i {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 213, 255, 0), rgba(0, 213, 255, 0.68), rgba(0, 213, 255, 0));
  opacity: 0.62;
}

.city-map {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 213, 255, 0.06)),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(0, 213, 255, 0.06) 55px),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(0, 213, 255, 0.06) 55px);
}

.pill-grid span {
  justify-content: flex-start;
  min-height: auto;
  padding: 0 0 0 18px;
  color: #dcecff;
  border-left: 2px solid rgba(0, 213, 255, 0.56);
}

.city {
  justify-content: flex-start;
  min-height: auto;
  padding: 12px 0;
  color: #c7d8eb;
  border-bottom: 1px solid rgba(143, 238, 255, 0.14);
}

.city.main {
  color: #ffffff;
  background: transparent;
  border-color: rgba(0, 213, 255, 0.42);
  box-shadow: none;
}

.placeholder-card {
  border-style: dashed;
}

.site-footer img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

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

  .hero-watermark {
    right: -22vw;
    width: 86vw;
    opacity: 0.08;
  }

  .process-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 18px;
  }

  .process .steps::before {
    display: none;
  }

  .process .steps li {
    min-height: 238px;
    padding-top: 0;
  }

  .process .steps li::before {
    top: 0;
  }

  .process .steps span {
    left: 38px;
    top: -16px;
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-logo {
    width: min(78vw, 300px);
  }

  .process .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process .steps li {
    min-height: 196px;
  }

  .process .steps strong {
    padding-top: 64px;
  }
}

/* Refinement: brand-first hero */
.hero-logo {
  width: clamp(360px, 52vw, 720px);
  margin-bottom: clamp(12px, 1.8vw, 20px);
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(1.28rem, 2.45vw, 2.25rem);
  line-height: 1.12;
  color: rgba(244, 249, 255, 0.86);
}

.hero-subtitle {
  max-width: 600px;
  margin-top: 16px;
  font-size: clamp(0.96rem, 1.45vw, 1.06rem);
}

.site-footer img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 213, 255, 0.2));
}

@media (max-width: 720px) {
  .hero-logo {
    width: min(94vw, 460px);
  }

  .hero h1 {
    font-size: clamp(1.22rem, 6vw, 1.86rem);
  }

}

/* Alignment pass */
.trust-grid,
.card-grid,
.pill-grid,
.placeholder-grid,
.faq-list,
.process .steps {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  width: min(100%, 980px);
}

.process-intro {
  display: block;
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.process-intro h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.process-intro p:last-child {
  max-width: 660px;
  margin: 16px auto 0;
}

.process .steps {
  padding-top: 38px;
}

.process .steps::before {
  left: 8%;
  right: 8%;
}

.trust .trust-grid {
  margin-top: 4px;
}

@media (max-width: 1120px) {
  .process-intro {
    text-align: center;
  }

  .process-intro p:last-child,
  .process-intro h2 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .process-intro {
    text-align: center;
  }

  .process-intro p:last-child,
  .process-intro h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
