:root {
  --navy: #061827;
  --navy-2: #0b2638;
  --ink: #10222b;
  --cream: #f5efe4;
  --cream-2: #fffaf1;
  --white: #ffffff;
  --gold: #c3a15c;
  --gold-light: #e0c98e;
  --cobalt: #2455e6;
  --cyan: #14c8ed;
  --forest: #173b32;
  --forest-2: #0e2b25;
  --terracotta: #bd6248;
  --sage: #a8b6a4;
  --muted: #64727a;
  --line: rgba(16, 34, 43, 0.14);
  --headquarters-bar-height: 0px;
  --shell: min(1320px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: var(--font-geist-sans, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(92px + var(--headquarters-bar-height));
}

html.has-headquarters-bar {
  --headquarters-bar-height: 48px;
}

body {
  margin: 0;
  background: var(--cream-2);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.has-headquarters-bar body {
  padding-top: var(--headquarters-bar-height);
}

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

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

.site-vector-icon {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transition: top 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.headquarters-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 130;
  height: var(--headquarters-bar-height);
  border-bottom: 1px solid rgba(195, 161, 92, 0.72);
  background: linear-gradient(90deg, #ead8a9, var(--gold-light) 48%, #f2e6c8);
  color: var(--navy);
  box-shadow: 0 5px 18px rgba(6, 24, 39, 0.1);
}

.headquarters-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 100%;
  text-align: center;
}

.headquarters-location {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.headquarters-bar p {
  margin: 0;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.headquarters-bar strong {
  font-weight: 800;
}

.headquarters-divider {
  width: 1px;
  height: 22px;
  flex: 0 0 1px;
  background: rgba(6, 24, 39, 0.24);
}

.headquarters-location-colonia {
  min-height: 34px;
  padding: 5px 14px 5px 11px;
  border: 1px solid rgba(20, 200, 237, 0.42);
  border-radius: 999px;
  background: linear-gradient(105deg, var(--navy), var(--forest));
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(6, 24, 39, 0.17);
}

.headquarters-location-colonia strong {
  color: var(--gold-light);
}

.headquarters-colonia-icon {
  color: var(--cyan);
}

.headquarters-colonia-icon .site-vector-icon {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.headquarters-marker {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(6, 24, 39, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(195, 161, 92, 0.34);
  background: rgba(6, 24, 39, 0.93);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.has-headquarters-bar .site-header {
  top: var(--headquarters-bar-height);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 44px;
}

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

.brand-logo-image {
  width: auto;
  max-width: 230px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol span {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid rgba(20, 200, 237, 0.82);
  transform: rotate(45deg);
}

.brand-symbol::before {
  width: 19px;
  height: 19px;
}

.brand-symbol::after {
  width: 9px;
  height: 9px;
  border-color: var(--gold-light);
  background: rgba(195, 161, 92, 0.18);
}

.brand-symbol span {
  width: 29px;
  height: 1px;
  border-width: 1px 0 0;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.desktop-nav > a,
.desktop-nav-dropdown > summary {
  position: relative;
  color: rgba(245, 239, 228, 0.82);
  font-size: 14px;
  font-weight: 550;
}

.desktop-nav > a::after,
.desktop-nav-dropdown > summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav-dropdown > summary:hover::after,
.desktop-nav-dropdown[open] > summary::after {
  transform: scaleX(1);
}

.desktop-nav > a[aria-current="page"],
.desktop-nav-dropdown > summary.is-current,
.desktop-nav-dropdown[open] > summary {
  color: var(--cream);
}

.desktop-nav > a[aria-current="page"]::after,
.desktop-nav-dropdown > summary.is-current::after {
  transform: scaleX(1);
}

.desktop-nav-dropdown {
  position: relative;
}

.desktop-nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.desktop-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.desktop-nav-dropdown > summary span {
  color: var(--cyan);
  font-size: 15px;
  transition: transform 0.2s ease;
}

.desktop-nav-dropdown[open] > summary span {
  transform: rotate(180deg);
}

.desktop-nav-dropdown-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 24px);
  left: -22px;
  display: grid;
  width: 530px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(195, 161, 92, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(20, 200, 237, 0.08), transparent 45%),
    #071d2d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.desktop-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
}

.desktop-nav-dropdown-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding: 8px 11px;
  border: 1px solid rgba(224, 201, 142, 0.11);
  border-radius: 8px;
  color: rgba(245, 239, 228, 0.9);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav-dropdown-menu a:hover,
.desktop-nav-dropdown-menu a[aria-current="page"] {
  border-color: rgba(20, 200, 237, 0.48);
  background: rgba(20, 200, 237, 0.1);
  color: var(--cream);
  transform: translateY(-1px);
}

.desktop-nav-dropdown-menu a > span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 7px;
  background: rgba(195, 161, 92, 0.13);
  color: var(--gold-light);
}

.desktop-nav-dropdown-menu svg {
  width: 17px;
  height: 17px;
}

.desktop-nav-dropdown-menu strong {
  font-size: 12px;
  line-height: 1.25;
}

.desktop-nav-dropdown-menu .desktop-nav-dropdown-all {
  grid-column: 1 / -1;
  min-height: 42px;
  border-color: rgba(195, 161, 92, 0.32);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid rgba(195, 161, 92, 0.72);
  border-radius: 6px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(36, 85, 230, 0.17), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(23, 59, 50, 0.75), transparent 34%),
    var(--navy);
  color: var(--cream);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, black 48%, black 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: clamp(44px, 5vw, 86px);
  min-height: calc(100svh - 82px);
  padding-block: 62px 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  animation: rise-in 0.75s ease both;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-badge > span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(20, 200, 237, 0.1);
}

.launch-badge b {
  color: rgba(224, 201, 142, 0.48);
}

.hero-kicker {
  margin: 0 0 15px;
  color: rgba(245, 239, 228, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: rgba(245, 239, 228, 0.74);
  font-size: 18px;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 13px 34px rgba(195, 161, 92, 0.16);
}

.button-gold:hover {
  box-shadow: 0 17px 38px rgba(195, 161, 92, 0.28);
}

.button-ghost {
  border-color: rgba(224, 201, 142, 0.44);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.025);
}

.button-ghost:hover {
  border-color: var(--cyan);
  background: rgba(20, 200, 237, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 37px;
}

.hero-proof > div,
.hero-proof > a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 1px solid rgba(224, 201, 142, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof > a {
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-proof > a:hover {
  border-color: rgba(20, 200, 237, 0.55);
  background: rgba(20, 200, 237, 0.07);
  transform: translateY(-2px);
}

.proof-code {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 6px;
  background: rgba(36, 85, 230, 0.24);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.proof-code-col {
  background: rgba(189, 98, 72, 0.2);
  color: #eda088;
}

.hero-proof p {
  margin: 0;
  color: rgba(245, 239, 228, 0.61);
  font-size: 11px;
  line-height: 1.45;
}

.hero-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--cream);
  font-size: 13px;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 665px;
  justify-self: end;
  animation: media-in 0.9s 0.12s ease both;
}

.media-frame {
  position: relative;
  min-height: min(660px, calc(100svh - 192px));
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.3);
  border-radius: 24px 4px 24px 4px;
  background: var(--navy-2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
}

.media-frame > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.media-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6, 24, 39, 0.83) 100%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.18), transparent 38%);
  pointer-events: none;
}

.media-scanline {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.media-scanline::before {
  content: "";
  position: absolute;
  top: -12%;
  right: 0;
  left: 0;
  height: 72px;
  border-top: 1px solid rgba(20, 200, 237, 0.72);
  background: linear-gradient(180deg, rgba(20, 200, 237, 0.15), transparent);
  filter: drop-shadow(0 0 8px rgba(20, 200, 237, 0.72));
  animation: media-scan 6.8s linear infinite;
}

.system-status {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 274px;
  overflow: hidden;
  padding: 13px 42px 13px 13px;
  border: 1px solid rgba(20, 200, 237, 0.34);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(6, 24, 39, 0.94), rgba(11, 38, 56, 0.84));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), inset 3px 0 0 var(--cyan);
  backdrop-filter: blur(16px);
}

.status-one {
  top: 25px;
  right: 24px;
}

.status-two {
  right: 24px;
  top: 107px;
  border-color: rgba(224, 201, 142, 0.36);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), inset 3px 0 0 var(--gold-light);
}

.system-status-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.38);
  border-radius: 9px;
  background: rgba(20, 200, 237, 0.11);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(20, 200, 237, 0.12);
}

.status-two .system-status-icon {
  border-color: rgba(224, 201, 142, 0.42);
  background: rgba(224, 201, 142, 0.11);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(224, 201, 142, 0.12);
}

.system-status-icon .site-vector-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.system-status-index {
  position: absolute;
  top: 9px;
  right: 10px;
  color: rgba(20, 200, 237, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.status-two .system-status-index {
  color: rgba(224, 201, 142, 0.6);
}

.system-status small,
.system-status strong {
  display: block;
}

.system-status small {
  color: rgba(245, 239, 228, 0.6);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-status strong {
  margin-top: 3px;
  color: var(--cream);
  font-size: 14px;
}

.media-caption {
  position: absolute;
  right: 29px;
  bottom: 27px;
  left: 29px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 201, 142, 0.42);
}

.media-caption > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 23px;
}

.media-caption strong {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.tech-chip {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(20, 200, 237, 0.38);
  border-radius: 4px;
  background: var(--navy);
  color: rgba(20, 200, 237, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.chip-one {
  top: -13px;
  left: -18px;
}

.chip-two {
  right: -14px;
  bottom: 93px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0 28%, rgba(195, 161, 92, 0.18) 28% 72%, var(--terracotta) 72%);
}

.hero-bottom-line span {
  position: absolute;
  left: 28%;
  width: 11%;
  height: 3px;
  background: var(--cyan);
}

.section-pad {
  padding-block: clamp(88px, 9vw, 138px);
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-light);
}

.intro {
  background: var(--cream-2);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.76fr;
  gap: clamp(60px, 9vw, 148px);
  align-items: start;
}

.section-heading h2,
.history-heading h2,
.services-top h2,
.method-title h2,
.coverage-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro-copy {
  padding-top: 31px;
}

.intro-copy p {
  margin: 0 0 19px;
  color: #526069;
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 17px;
  align-items: center;
  margin-top: 17px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.history {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.history-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(6, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.history-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(64px, 9vw, 142px);
  align-items: start;
}

.history-heading {
  position: sticky;
  top: 112px;
}

.history-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 6px 11px;
  border: 1px solid rgba(189, 98, 72, 0.35);
  border-radius: 999px;
  color: var(--terracotta);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-heading h2 {
  margin: 0;
}

.history-lead {
  margin: 27px 0 0;
  color: #526069;
  font-size: 16px;
  line-height: 1.75;
}

.history-signature {
  display: grid;
  gap: 6px;
  margin-top: 29px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: var(--navy);
  color: var(--cream);
}

.history-signature small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-signature strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.history-heading blockquote {
  margin: 26px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.35;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 48px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 12px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--cobalt), var(--terracotta));
}

.history-item {
  position: relative;
  padding: 28px 30px 29px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 15px 38px rgba(6, 24, 39, 0.055);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.history-item:hover {
  transform: translateX(5px);
  border-color: rgba(36, 85, 230, 0.28);
}

.history-dot {
  position: absolute;
  top: 34px;
  left: -43px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 1px rgba(36, 85, 230, 0.4);
}

.history-item:first-child .history-dot {
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(195, 161, 92, 0.5);
}

.history-item:last-child .history-dot {
  background: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(189, 98, 72, 0.5);
}

.history-period {
  margin: 0 0 9px;
  color: var(--cobalt);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.history-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.history-item > p:last-child {
  margin: 0;
  color: #5d6971;
  font-size: 14px;
  line-height: 1.7;
}

.owner-attention {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 20%, rgba(20, 200, 237, 0.14), transparent 24%),
    radial-gradient(circle at 94% 78%, rgba(189, 98, 72, 0.12), transparent 24%),
    linear-gradient(135deg, #effafa, #fff8ee);
}

.owner-attention::before {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(36, 85, 230, 0.32) 1px, transparent 1.2px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 42%, #000);
}

.owner-attention > .shell {
  position: relative;
  z-index: 2;
}

.owner-attention-card {
  position: relative;
  display: grid;
  grid-template-columns: 105px minmax(285px, 0.72fr) minmax(390px, 1.28fr);
  align-items: center;
  gap: clamp(30px, 4.5vw, 70px);
  min-height: 280px;
  padding: clamp(34px, 4.5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.3);
  border-radius: 17px 4px 17px 4px;
  background:
    radial-gradient(circle at 96% 2%, rgba(20, 200, 237, 0.12), transparent 18%),
    linear-gradient(112deg, var(--navy) 3%, #0c3851 58%, var(--forest));
  color: var(--cream);
  box-shadow: 0 34px 80px rgba(6, 24, 39, 0.2);
}

.owner-attention-card::after {
  position: absolute;
  top: -105px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(20, 200, 237, 0.07);
  content: "";
}

.owner-attention-card > * {
  position: relative;
  z-index: 2;
}

.owner-attention-mark {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  padding-right: clamp(25px, 3vw, 42px);
  border-right: 1px solid rgba(224, 201, 142, 0.2);
}

.owner-attention-number {
  color: var(--gold-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.owner-attention-heart {
  color: var(--cyan);
}

.owner-attention-heart .site-vector-icon {
  width: 50px;
  height: 50px;
  stroke-width: 1.5;
}

.owner-attention-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 19px;
}

.owner-attention-handshake {
  display: block;
  margin-top: 3px;
  font-size: 43px;
  line-height: 1;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.18));
}

.owner-attention-heading h2 {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 4vw, 57px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.owner-attention-copy p {
  margin: 0;
  color: rgba(245, 239, 228, 0.78);
  font-size: 16px;
  line-height: 1.78;
}

.owner-attention-float {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(36, 85, 230, 0.13);
  border-radius: 17px 5px 17px 5px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.09);
  font-size: 24px;
  backdrop-filter: blur(9px);
  animation: web-float 5.6s ease-in-out infinite;
}

.owner-attention-float-one {
  top: 43%;
  left: clamp(10px, 3.1vw, 52px);
}

.owner-attention-float-two {
  right: clamp(10px, 2.2vw, 36px);
  bottom: 12%;
  animation-delay: -2.7s;
}

.home-page .home-trust {
  padding-block: clamp(72px, 7vw, 108px);
}

.home-trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 42px;
}

.home-trust-intro .section-heading h2 {
  max-width: 780px;
  font-size: clamp(40px, 4.7vw, 65px);
}

.home-trust-intro-copy p {
  margin: 0;
  color: #526069;
  font-size: 16px;
  line-height: 1.72;
}

.home-trust-intro-copy .text-link {
  margin-top: 20px;
}

.home-page .owner-attention-card {
  min-height: 250px;
  padding-block: clamp(34px, 4vw, 52px);
}

.owner-attention-story-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(224, 201, 142, 0.18);
}

.owner-attention-story-link small {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.owner-attention-story-link strong {
  grid-column: 1;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.owner-attention-story-link span {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 85, 230, 0.1), transparent 38%),
    var(--navy);
  color: var(--cream);
}

.services::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -270px;
  bottom: -310px;
  border: 1px solid rgba(20, 200, 237, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 200, 237, 0.025), 0 0 0 150px rgba(20, 200, 237, 0.018);
}

.services-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.services-top > p {
  max-width: 370px;
  margin: 0 0 8px;
  color: rgba(245, 239, 228, 0.6);
  font-size: 16px;
  line-height: 1.65;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 60px;
}

.service-card {
  display: flex;
  min-height: 392px;
  flex-direction: column;
  padding: 28px 25px 24px;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 200, 237, 0.62);
  background: rgba(36, 85, 230, 0.09);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(224, 201, 142, 0.28);
  border-radius: 50%;
  background: rgba(195, 161, 92, 0.08);
  color: var(--gold-light);
}

.service-icon .site-vector-icon {
  width: 23px;
  height: 23px;
}

.service-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.36);
  border-radius: 6px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.service-card h3 {
  margin: 29px 0 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.service-card > p {
  margin: 0;
  color: rgba(245, 239, 228, 0.62);
  font-size: 14px;
  line-height: 1.68;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 23px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 8px;
  border: 1px solid rgba(224, 201, 142, 0.17);
  border-radius: 30px;
  color: rgba(245, 239, 228, 0.6);
  font-size: 9px;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 201, 142, 0.19);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 750;
}

.service-shortcuts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(224, 201, 142, 0.19);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
}

.service-shortcuts > div {
  display: grid;
  gap: 5px;
}

.service-shortcuts > div small {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-shortcuts > div h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.service-shortcuts nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.service-shortcuts a {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(224, 201, 142, 0.12);
  border-radius: 7px;
  color: rgba(245, 239, 228, 0.76);
  font-size: 10px;
  line-height: 1.25;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-shortcuts a:hover {
  border-color: rgba(20, 200, 237, 0.48);
  background: rgba(20, 200, 237, 0.07);
  color: var(--cream);
}

.service-shortcuts a > span {
  color: var(--gold-light);
}

.service-shortcuts svg {
  width: 18px;
  height: 18px;
}

.service-shortcuts a b {
  color: var(--cyan);
}

.home-method-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  margin-top: 24px;
  padding: clamp(27px, 3vw, 38px);
  border: 1px solid rgba(20, 200, 237, 0.2);
  border-radius: 11px;
  background: linear-gradient(105deg, rgba(20, 200, 237, 0.075), rgba(36, 85, 230, 0.055));
}

.home-method-intro .eyebrow {
  margin-bottom: 10px;
}

.home-method-intro h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.home-method-intro > p:last-child {
  margin: 13px 0 0;
  color: rgba(245, 239, 228, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.home-method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-method-steps article {
  min-height: 116px;
  padding: 4px 20px;
  border-left: 1px solid rgba(224, 201, 142, 0.18);
}

.home-method-steps span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.home-method-steps h4 {
  margin: 13px 0 7px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.home-method-steps p {
  margin: 0;
  color: rgba(245, 239, 228, 0.56);
  font-size: 10px;
  line-height: 1.5;
}

.digital-solutions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 8%, rgba(36, 85, 230, 0.2), transparent 25%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--cream);
}

.digital-solutions-grid,
.portfolio-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.digital-solutions > .shell,
.web-portfolio > .shell {
  position: relative;
  z-index: 2;
}

.digital-solutions-heading,
.web-portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: clamp(45px, 8vw, 118px);
}

.digital-solutions-heading h2,
.web-portfolio-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5.1vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.digital-solutions-heading > p,
.web-portfolio-heading > p {
  margin: 0 0 7px;
  color: rgba(245, 239, 228, 0.62);
  font-size: 15px;
  line-height: 1.72;
}

.digital-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.digital-sector-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.22);
  border-radius: 18px 4px 18px 4px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
}

.digital-sector-copy {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
}

.digital-sector-number {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.web-sector-card .digital-sector-number {
  color: var(--gold-light);
}

.digital-sector-copy h3 {
  max-width: 570px;
  margin: 28px 0 17px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.25vw, 49px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.digital-sector-copy > p {
  margin: 0;
  color: rgba(245, 239, 228, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.digital-sector-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 31px;
  padding: 0;
  list-style: none;
}

.digital-sector-copy li {
  padding: 7px 9px;
  border: 1px solid rgba(224, 201, 142, 0.18);
  border-radius: 999px;
  color: rgba(245, 239, 228, 0.62);
  font-size: 9px;
}

.digital-sector-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(224, 201, 142, 0.2);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.digital-sector-visual {
  position: relative;
  min-height: 285px;
  border-top: 1px solid rgba(224, 201, 142, 0.18);
  background: rgba(3, 16, 26, 0.58);
}

.software-visual {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at 76% 27%, rgba(20, 200, 237, 0.11), transparent 25%),
    rgba(3, 16, 26, 0.58);
}

.software-window {
  display: grid;
  grid-template-columns: 9px 9px 9px 1fr;
  align-items: center;
  gap: 7px;
  padding: 13px 15px;
  border: 1px solid rgba(20, 200, 237, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.software-window > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.software-window > span:nth-child(2) { background: var(--gold); }
.software-window > span:nth-child(3) { background: var(--cyan); }

.software-window code {
  justify-self: end;
  color: rgba(245, 239, 228, 0.56);
  font-size: 10px;
}

.software-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.software-capability-grid > span {
  display: grid;
  min-height: 92px;
  place-items: center;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(20, 200, 237, 0.38);
  border-radius: 10px;
  background: rgba(20, 200, 237, 0.035);
  color: var(--cyan);
}

.software-capability-grid .site-vector-icon {
  width: 26px;
  height: 26px;
}

.software-capability-grid b {
  color: rgba(245, 239, 228, 0.75);
  font-size: 9px;
}

.web-visual {
  display: grid;
  min-height: 310px;
  overflow: hidden;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(195, 161, 92, 0.14), transparent 55%),
    rgba(3, 16, 26, 0.62);
}

.web-icon-stage {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  min-height: 235px;
  place-items: center;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 85, 230, 0.18), transparent 64%);
}

.web-stage-main {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.58);
  border-radius: 24px 6px 24px 6px;
  background: rgba(20, 200, 237, 0.08);
  color: var(--cyan);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.web-stage-main .site-vector-icon {
  width: 42px;
  height: 42px;
}

.web-stage-orbit {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(224, 201, 142, 0.28);
  border-radius: 999px;
  background: rgba(6, 24, 39, 0.9);
  color: var(--gold-light);
}

.web-stage-orbit .site-vector-icon {
  width: 17px;
  height: 17px;
}

.web-stage-orbit small {
  color: rgba(245, 239, 228, 0.67);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-palette { top: 23px; left: 9%; }
.orbit-code { top: 44px; right: 3%; }
.orbit-shop { right: 14%; bottom: 51px; }

.web-icon-stage > strong {
  position: absolute;
  bottom: 9px;
  color: rgba(245, 239, 228, 0.57);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.home-page .services,
.home-page .digital-solutions,
.home-page .home-service {
  padding-block: clamp(76px, 7.3vw, 108px);
}

.home-page .digital-sector-copy {
  min-height: 355px;
  padding: clamp(28px, 3.2vw, 40px);
}

.home-page .digital-sector-visual,
.home-page .web-visual {
  min-height: 210px;
}

.home-page .software-visual {
  gap: 16px;
  padding: 22px 26px;
}

.home-page .software-capability-grid > span {
  min-height: 66px;
}

.home-page .web-visual {
  padding: 18px 24px;
}

.home-page .web-icon-stage {
  min-height: 178px;
}

.home-page .web-stage-main {
  width: 66px;
  height: 66px;
}

.home-page .web-stage-main .site-vector-icon {
  width: 34px;
  height: 34px;
}

.home-page .orbit-palette { top: 15px; }
.home-page .orbit-code { top: 29px; }
.home-page .orbit-shop { bottom: 34px; }

.home-page .home-service-card {
  padding: clamp(38px, 4.8vw, 62px);
}

.home-page .home-service-zone {
  min-height: 235px;
}

.home-page .home-service-zone-colonia {
  margin-top: 0;
}

.home-service {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.home-service-glow {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(36, 85, 230, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(20, 200, 237, 0.025), 0 0 0 170px rgba(195, 161, 92, 0.025);
}

.home-service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
  gap: clamp(44px, 7vw, 96px);
  padding: clamp(42px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.32);
  border-radius: 24px 5px 24px 5px;
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 200, 237, 0.12), transparent 28%),
    linear-gradient(128deg, rgba(36, 85, 230, 0.12), transparent 48%),
    var(--navy);
  color: var(--cream);
  box-shadow: 0 34px 80px rgba(6, 24, 39, 0.18);
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 56%);
  pointer-events: none;
}

.home-service-copy,
.home-service-zones {
  position: relative;
  z-index: 2;
}

.home-service-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.home-service-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 31px;
  color: rgba(245, 239, 228, 0.7);
  font-size: 16px;
  line-height: 1.72;
}

.home-service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.home-service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(224, 201, 142, 0.55);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 750;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-service-detail-link:hover {
  border-color: var(--cyan);
  color: var(--cream);
}

.home-service-note {
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: rgba(245, 239, 228, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.home-service-zones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.home-service-zone {
  min-height: 290px;
  padding: 28px 25px;
  border: 1px solid rgba(20, 200, 237, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.home-service-zone:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 200, 237, 0.7);
  background: rgba(20, 200, 237, 0.075);
}

.home-service-zone-colonia {
  margin-top: 42px;
  border-color: rgba(224, 201, 142, 0.3);
}

.home-service-zone-colonia:hover {
  border-color: rgba(224, 201, 142, 0.75);
  background: rgba(195, 161, 92, 0.08);
}

.home-service-zone-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.home-service-zone-mark > .site-vector-icon {
  width: 30px;
  height: 30px;
  color: var(--cyan);
}

.home-service-zone-colonia .home-service-zone-mark > .site-vector-icon {
  color: var(--gold-light);
}

.home-service-code {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.45);
  border-radius: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-service-zone-colonia .home-service-code {
  border-color: rgba(224, 201, 142, 0.48);
  color: var(--gold-light);
}

.home-service-zone h3 {
  margin: 31px 0 13px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.home-service-zone p {
  margin: 0;
  color: rgba(245, 239, 228, 0.62);
  font-size: 13px;
  line-height: 1.72;
}

.method {
  background: var(--cream);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.method-title > p:last-child {
  max-width: 430px;
  margin: 26px 0 0;
  color: #627078;
  line-height: 1.72;
}

.method-steps {
  border-top: 1px solid var(--line);
}

.method-steps article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 25px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps article > span {
  color: var(--cobalt);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.method-steps h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.method-steps p {
  margin: 0;
  color: #627078;
  font-size: 14px;
  line-height: 1.65;
}

.site-directory {
  background:
    linear-gradient(135deg, rgba(36, 85, 230, 0.045), transparent 40%),
    var(--cream-2);
}

.directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.directory-heading h2,
.inner-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.directory-heading > p {
  margin: 0 0 7px;
  color: #627078;
  font-size: 15px;
  line-height: 1.7;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.directory-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  padding: 27px 26px 24px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(6, 24, 39, 0.045);
  transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.directory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 85, 230, 0.35);
  box-shadow: 0 24px 52px rgba(6, 24, 39, 0.09);
}

.directory-card > span,
.inner-section-card > span,
.related-page-grid > a > span {
  color: var(--cobalt);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.directory-card-mark,
.inner-card-mark,
.related-card-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.directory-card-mark em,
.inner-card-mark em,
.related-card-mark em {
  font-style: normal;
}

.directory-card-mark .site-vector-icon,
.inner-card-mark .site-vector-icon,
.related-card-mark .site-vector-icon {
  width: 30px;
  height: 30px;
  color: var(--terracotta);
}

.directory-card h3 {
  margin: 29px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.directory-card p {
  margin: 0;
  color: #647179;
  font-size: 13px;
  line-height: 1.68;
}

.directory-card strong,
.related-page-grid > a > strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
}

.inner-page-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 clamp(78px, 8vw, 118px);
  background:
    radial-gradient(circle at 83% 30%, rgba(36, 85, 230, 0.2), transparent 28%),
    radial-gradient(circle at 9% 92%, rgba(23, 59, 50, 0.75), transparent 35%),
    var(--navy);
  color: var(--cream);
}

.inner-page-grid {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.page-diseno-web .inner-page-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(20, 200, 237, 0.3), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(195, 161, 92, 0.24), transparent 27%),
    radial-gradient(circle at 8% 92%, rgba(23, 59, 50, 0.9), transparent 38%),
    linear-gradient(135deg, #061827 8%, #0c3150 52%, #173b32 100%);
}

.web-city-hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.web-city-skyline {
  position: absolute;
  right: -2%;
  bottom: -2px;
  display: flex;
  width: 58%;
  height: 56%;
  align-items: end;
  justify-content: flex-end;
  gap: clamp(8px, 1.2vw, 18px);
  opacity: 0.4;
  mask-image: linear-gradient(90deg, transparent 2%, #000 31%);
}

.web-city-skyline i {
  display: flex;
  width: 8%;
  height: 34%;
  flex-direction: column;
  gap: 13px;
  padding: 18px 9px;
  border: 1px solid rgba(20, 200, 237, 0.5);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, rgba(20, 200, 237, 0.2), rgba(6, 24, 39, 0.86));
  box-shadow: 0 0 28px rgba(20, 200, 237, 0.09);
}

.web-city-skyline i:nth-child(2) { width: 11%; height: 62%; }
.web-city-skyline i:nth-child(3) { width: 8%; height: 45%; }
.web-city-skyline i:nth-child(4) { width: 13%; height: 83%; }
.web-city-skyline i:nth-child(5) { width: 9%; height: 53%; }
.web-city-skyline i:nth-child(6) { width: 12%; height: 71%; }
.web-city-skyline i:nth-child(7) { width: 8%; height: 39%; }

.web-city-skyline b {
  display: block;
  width: 55%;
  height: 4px;
  border-radius: 999px;
  background: rgba(224, 201, 142, 0.74);
  box-shadow: 17px 0 0 rgba(20, 200, 237, 0.62);
  animation: web-city-glow 3.4s ease-in-out infinite alternate;
}

.web-city-skyline i:nth-child(even) b { animation-delay: -1.8s; }

.web-city-connectors span {
  position: absolute;
  display: block;
  width: clamp(90px, 12vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 200, 237, 0.58), transparent);
  transform: rotate(-24deg);
  transform-origin: center;
}

.web-city-connectors span::after {
  position: absolute;
  top: -4px;
  right: 14%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(20, 200, 237, 0.9);
  content: "";
}

.web-city-connectors span:nth-child(1) { top: 21%; right: 30%; }
.web-city-connectors span:nth-child(2) { top: 42%; right: 8%; transform: rotate(19deg); }
.web-city-connectors span:nth-child(3) { right: 46%; bottom: 22%; transform: rotate(9deg); }
.web-city-connectors span:nth-child(4) { top: 27%; right: 53%; transform: rotate(-8deg); }

.web-city-emoji {
  position: absolute;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.2);
  border-radius: 50%;
  background: rgba(6, 24, 39, 0.58);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-size: 23px;
  backdrop-filter: blur(8px);
  animation: web-float 5s ease-in-out infinite;
}

.web-city-emoji-one { top: 19%; right: 11%; }
.web-city-emoji-two { right: 37%; bottom: 12%; animation-delay: -1.6s; }
.web-city-emoji-three { top: 42%; right: 27%; animation-delay: -3.1s; }

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(55px, 7vw, 92px);
  color: rgba(245, 239, 228, 0.5);
  font-size: 11px;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--gold-light);
}

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

.inner-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(54px, 8vw, 120px);
}

.inner-hero-copy h1 {
  max-width: 870px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

.inner-page-lead {
  max-width: 800px;
  margin: 29px 0 0;
  color: rgba(245, 239, 228, 0.72);
  font-size: 17px;
  line-height: 1.74;
}

.inner-page-summary {
  padding: 28px;
  border: 1px solid rgba(224, 201, 142, 0.27);
  border-radius: 14px 4px 14px 4px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(9px);
}

.inner-summary-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.38);
  border-radius: 16px 4px 16px 4px;
  background: rgba(20, 200, 237, 0.06);
  color: var(--cyan);
}

.inner-summary-icon .site-vector-icon {
  width: 30px;
  height: 30px;
}

.inner-page-summary > small,
.inner-page-address em {
  display: block;
  color: var(--gold-light);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inner-page-summary > strong {
  display: block;
  margin-top: 11px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.inner-page-summary > p {
  margin: 15px 0 22px;
  color: rgba(245, 239, 228, 0.61);
  font-size: 13px;
  line-height: 1.65;
}

.inner-page-areas {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(224, 201, 142, 0.18);
  border-bottom: 1px solid rgba(224, 201, 142, 0.18);
}

.inner-page-areas span {
  color: rgba(245, 239, 228, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.inner-page-address {
  margin-top: 18px;
  color: rgba(245, 239, 228, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

.inner-page-address em {
  margin-bottom: 6px;
}

.inner-content {
  background: var(--cream-2);
}

.web-city-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(20, 200, 237, 0.17), transparent 23%),
    radial-gradient(circle at 92% 18%, rgba(195, 161, 92, 0.18), transparent 24%),
    radial-gradient(circle at 85% 88%, rgba(189, 98, 72, 0.12), transparent 24%),
    linear-gradient(145deg, #fffaf1 5%, #effbfb 52%, #fff6e7 100%);
}

.web-city-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    radial-gradient(circle, rgba(36, 85, 230, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49.8%, rgba(20, 200, 237, 0.12) 50%, transparent 50.2%);
  background-size: 28px 28px, 150px 100%;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 45%, #000);
}

.web-city-section > .shell {
  position: relative;
  z-index: 2;
}

.web-city-section .inner-section-heading {
  max-width: 1020px;
}

.web-city-section .inner-section-heading h2 {
  background: linear-gradient(100deg, var(--navy) 4%, var(--cobalt) 56%, var(--forest));
  background-clip: text;
  color: transparent;
}

.web-city-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.web-city-atmosphere span {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(36, 85, 230, 0.12);
  border-radius: 16px 5px 16px 5px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 38px rgba(6, 24, 39, 0.08);
  font-size: 22px;
  animation: web-float 6s ease-in-out infinite;
}

.web-city-atmosphere span:nth-child(1) { top: 8%; right: 8%; }
.web-city-atmosphere span:nth-child(2) { top: 24%; left: 2%; animation-delay: -1s; }
.web-city-atmosphere span:nth-child(3) { top: 48%; right: 2%; animation-delay: -2.5s; }
.web-city-atmosphere span:nth-child(4) { bottom: 13%; left: 3%; animation-delay: -3.4s; }
.web-city-atmosphere span:nth-child(5) { right: 5%; bottom: 4%; animation-delay: -4.3s; }

.page-diseno-web .inner-section-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(36, 85, 230, 0.15);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 55px rgba(6, 24, 39, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-diseno-web .inner-section-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(20, 200, 237, 0.08);
  content: "";
}

.page-diseno-web .inner-section-card:nth-child(2)::after { background: rgba(195, 161, 92, 0.13); }
.page-diseno-web .inner-section-card:nth-child(3)::after { background: rgba(36, 85, 230, 0.11); }

.page-diseno-web .inner-section-card:hover {
  transform: translateY(-7px);
  border-color: rgba(36, 85, 230, 0.35);
  box-shadow: 0 30px 68px rgba(6, 24, 39, 0.13);
}

.page-diseno-web .inner-section-card:nth-child(4) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(230px, 0.65fr) minmax(320px, 1.35fr);
  align-items: center;
  gap: 28px;
  min-height: 220px;
  border-color: rgba(224, 201, 142, 0.34);
  background:
    radial-gradient(circle at 88% 15%, rgba(20, 200, 237, 0.2), transparent 28%),
    linear-gradient(120deg, var(--navy), #0d3851 55%, var(--forest));
}

.page-diseno-web .inner-section-card:nth-child(4) .inner-card-mark {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  padding-right: 28px;
  border-right: 1px solid rgba(224, 201, 142, 0.2);
  color: var(--gold-light);
}

.page-diseno-web .inner-section-card:nth-child(4) .site-vector-icon {
  width: 43px;
  height: 43px;
  color: var(--cyan);
}

.page-diseno-web .inner-section-card:nth-child(4) h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(31px, 3.2vw, 44px);
}

.page-diseno-web .inner-section-card:nth-child(4) p {
  color: rgba(245, 239, 228, 0.72);
  font-size: 15px;
}

.inner-section-heading {
  max-width: 850px;
}

.inner-section-heading h2 {
  font-size: clamp(40px, 4.6vw, 64px);
}

.inner-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.inner-section-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(6, 24, 39, 0.045);
}

.inner-section-card h3 {
  margin: 27px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.inner-section-card p {
  margin: 0;
  color: #617078;
  font-size: 14px;
  line-height: 1.73;
}

.web-portfolio {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 0, rgba(20, 200, 237, 0.24), transparent 26%),
    radial-gradient(circle at 94% 18%, rgba(195, 161, 92, 0.22), transparent 25%),
    radial-gradient(circle at 72% 91%, rgba(189, 98, 72, 0.15), transparent 24%),
    linear-gradient(145deg, var(--navy), #092c48 58%, var(--forest));
  color: var(--cream);
}

.web-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.portfolio-project {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 11px 3px 11px 3px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.portfolio-project:hover {
  transform: translateY(-7px) rotate(-0.25deg);
  border-color: rgba(20, 200, 237, 0.5);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.25);
}

.portfolio-preview {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 201, 142, 0.17);
  background: rgba(3, 16, 26, 0.62);
}

.portfolio-browser-bar {
  display: grid;
  grid-template-columns: 6px 6px 6px 1fr;
  align-items: center;
  gap: 4px;
  height: 27px;
  padding: 0 9px;
  background: #eef1f2;
}

.portfolio-browser-bar > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d77b62;
}

.portfolio-browser-bar > span:nth-child(2) { background: #d4ad58; }
.portfolio-browser-bar > span:nth-child(3) { background: #56b78d; }

.portfolio-browser-bar small {
  min-width: 0;
  margin-left: 5px;
  overflow: hidden;
  color: #7a858a;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-icon-preview {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-content: center;
  justify-items: center;
  gap: 7px;
  padding: 12px;
  background:
    radial-gradient(circle at 68% 25%, rgba(36, 85, 230, 0.28), transparent 36%),
    linear-gradient(135deg, var(--navy-2), var(--forest));
  text-align: center;
}

.portfolio-project:nth-child(4n + 2) .portfolio-icon-preview {
  background:
    radial-gradient(circle at 27% 24%, rgba(195, 161, 92, 0.32), transparent 34%),
    linear-gradient(135deg, #132f47, #3b3151);
}

.portfolio-project:nth-child(4n + 3) .portfolio-icon-preview {
  background:
    radial-gradient(circle at 72% 28%, rgba(189, 98, 72, 0.32), transparent 35%),
    linear-gradient(135deg, #11382f, #10233a);
}

.portfolio-project:nth-child(4n) .portfolio-icon-preview {
  background:
    radial-gradient(circle at 22% 32%, rgba(20, 200, 237, 0.26), transparent 35%),
    linear-gradient(135deg, #252b54, #0e3a44);
}

.portfolio-emoji {
  position: absolute;
  top: 10px;
  right: 11px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.17);
  border-radius: 50%;
  background: rgba(6, 24, 39, 0.58);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-style: normal;
  animation: web-float 4.8s ease-in-out infinite;
}

.portfolio-project:nth-child(3n + 2) .portfolio-emoji { animation-delay: -1.7s; }
.portfolio-project:nth-child(3n) .portfolio-emoji { animation-delay: -3.1s; }

.portfolio-icon-preview > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.43);
  border-radius: 14px 4px 14px 4px;
  background: rgba(20, 200, 237, 0.06);
  color: var(--cyan);
  transition: transform 0.24s ease;
}

.portfolio-project:hover .portfolio-icon-preview > span {
  transform: translateY(-3px) rotate(-2deg);
}

.portfolio-icon-preview .site-vector-icon {
  width: 25px;
  height: 25px;
}

.portfolio-icon-preview strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.portfolio-icon-preview small {
  color: rgba(245, 239, 228, 0.52);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-project-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 15px 16px 16px;
}

.portfolio-project-copy > div > span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-project-copy h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.08;
  font-weight: 400;
}

.portfolio-project-copy > p {
  margin: 0;
  color: rgba(245, 239, 228, 0.58);
  font-size: 10.5px;
  line-height: 1.5;
}

.portfolio-project-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  border-top: 1px solid rgba(224, 201, 142, 0.17);
  color: var(--gold-light);
  font-size: 8.5px;
  font-weight: 750;
}

.contact-details {
  background: var(--forest);
  color: var(--cream);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.contact-detail-grid > a,
.contact-detail-grid > div {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(245, 239, 228, 0.16);
  border-radius: 11px;
  background: rgba(6, 24, 39, 0.27);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.contact-detail-grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 201, 142, 0.62);
}

.contact-detail-grid span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-grid strong {
  margin-top: 31px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.contact-detail-grid p {
  margin: auto 0 0;
  padding-top: 18px;
  color: rgba(245, 239, 228, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.related-pages {
  background: var(--cream);
}

.related-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.related-page-grid > a {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 11px;
  background: rgba(255, 250, 241, 0.82);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.related-page-grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(189, 98, 72, 0.42);
}

.related-page-grid h3 {
  margin: 27px 0 11px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.related-page-grid p {
  margin: 0;
  color: #637078;
  font-size: 13px;
  line-height: 1.65;
}

.inner-page-closing {
  padding-top: 0;
}

.coverage {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
}

.coverage-orbit {
  position: absolute;
  border: 1px solid rgba(168, 182, 164, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 700px;
  height: 700px;
  top: -380px;
  left: -340px;
}

.orbit-two {
  width: 530px;
  height: 530px;
  right: -310px;
  bottom: -300px;
}

.coverage-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(58px, 8vw, 120px);
  align-items: center;
}

.coverage-copy h2 {
  max-width: 590px;
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 27px 0 31px;
  color: rgba(245, 239, 228, 0.66);
  font-size: 16px;
  line-height: 1.72;
}

.button-cream {
  border-color: rgba(245, 239, 228, 0.34);
  color: var(--forest);
  background: var(--cream);
}

.route-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 62% 36%, rgba(20, 200, 237, 0.13), transparent 22%),
    linear-gradient(145deg, rgba(6, 24, 39, 0.45), rgba(14, 43, 37, 0.82));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.2);
}

.route-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(168, 182, 164, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 182, 164, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
}

.route-line {
  position: absolute;
  top: 122px;
  left: 45%;
  width: 210px;
  height: 250px;
  border: 2px solid var(--terracotta);
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 90% 0;
  transform: rotate(14deg);
  opacity: 0.92;
}

.route-line::before,
.route-line span {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 6px rgba(189, 98, 72, 0.35);
}

.route-line::before {
  right: -5px;
  top: -5px;
}

.route-line span {
  left: 3px;
  bottom: -5px;
}

.place {
  position: absolute;
  z-index: 2;
  padding: 17px 19px;
  border: 1px solid rgba(245, 239, 228, 0.17);
  border-radius: 10px;
  background: rgba(6, 24, 39, 0.72);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.place-mvd {
  top: 55px;
  right: 45px;
}

.place-col {
  bottom: 61px;
  left: 42px;
}

.place-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(20, 200, 237, 0.15);
}

.place-dot-col {
  background: #ed9074;
  box-shadow: 0 0 0 5px rgba(189, 98, 72, 0.18);
}

.place small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.place h3 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.place p {
  margin: 0;
  color: rgba(245, 239, 228, 0.56);
  font-size: 11px;
  line-height: 1.55;
}

.route-label {
  position: absolute;
  top: 58%;
  right: 33px;
  color: rgba(168, 182, 164, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.closing {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--cream-2);
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(195, 161, 92, 0.32);
  border-radius: 20px 4px 20px 4px;
  background:
    linear-gradient(105deg, rgba(36, 85, 230, 0.06), transparent 50%),
    var(--white);
  box-shadow: 0 27px 70px rgba(16, 34, 43, 0.08);
}

.closing h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.closing-card > div > p:last-child {
  max-width: 590px;
  margin: 18px 0 0;
  color: #65727a;
  line-height: 1.65;
}

.button-large {
  min-width: 242px;
  min-height: 62px;
}

.site-footer {
  padding: 74px 0 25px;
  background: var(--navy);
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-bottom: 60px;
}

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

.footer-main > div:first-child > p {
  margin: 20px 0 0;
  color: rgba(245, 239, 228, 0.46);
  font-size: 13px;
}

.footer-group-signature {
  display: block;
  max-width: 350px;
  margin-top: 10px;
  color: rgba(224, 201, 142, 0.72);
  font-size: 9px;
  line-height: 1.55;
}

.footer-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-data > div {
  padding-top: 12px;
  border-top: 1px solid rgba(224, 201, 142, 0.2);
}

.footer-data small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-data p {
  margin: 13px 0 0;
  color: rgba(245, 239, 228, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-data a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-social a {
  padding: 7px 10px;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 6px;
  color: rgba(245, 239, 228, 0.68);
  font-size: 9px;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-site-links {
  display: flex;
  max-width: 510px;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.footer-site-links a {
  padding: 7px 10px;
  border: 1px solid rgba(224, 201, 142, 0.16);
  border-radius: 6px;
  color: rgba(245, 239, 228, 0.62);
  font-size: 9px;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-site-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(224, 201, 142, 0.16);
  color: rgba(245, 239, 228, 0.4);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

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

.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 180;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.3), 0 5px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.48);
  border-radius: inherit;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: #20c65a;
  box-shadow: 0 20px 44px rgba(6, 24, 39, 0.34), 0 7px 19px rgba(37, 211, 102, 0.38);
}

.whatsapp-float:focus-visible {
  outline-color: #25d366;
  outline-offset: 5px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes media-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes media-scan {
  from { transform: translateY(0); opacity: 0; }
  8% { opacity: 0.78; }
  88% { opacity: 0.78; }
  to { transform: translateY(760px); opacity: 0; }
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.72; transform: scale(0.92); }
  72%, 100% { opacity: 0; transform: scale(1.28); }
}

@keyframes web-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -9px, 0) rotate(2deg); }
}

@keyframes web-city-glow {
  from { opacity: 0.45; filter: drop-shadow(0 0 0 rgba(20, 200, 237, 0)); }
  to { opacity: 1; filter: drop-shadow(0 0 7px rgba(20, 200, 237, 0.72)); }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.82fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 67px);
  }

  .media-frame {
    min-height: 570px;
  }

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

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

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

  .digital-sector-copy {
    min-height: 510px;
  }

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

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  html.has-headquarters-bar {
    --headquarters-bar-height: 72px;
  }

  .headquarters-bar-inner {
    flex-direction: column;
    gap: 3px;
    padding-block: 5px;
  }

  .headquarters-divider {
    display: none;
  }

  .headquarters-location {
    min-height: 27px;
  }

  .headquarters-location-colonia {
    min-height: 29px;
    padding-block: 3px;
  }

  .headquarters-bar p {
    font-size: 10px;
  }

  .site-header {
    height: 72px;
  }

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

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu > summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(224, 201, 142, 0.36);
    border-radius: 6px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu > summary span {
    width: 18px;
    height: 1px;
    background: var(--cream);
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 34px));
    overflow: hidden;
    border: 1px solid rgba(224, 201, 142, 0.3);
    border-radius: 10px;
    background: var(--navy);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  }

  .mobile-menu nav a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(224, 201, 142, 0.12);
    font-size: 14px;
  }

  .mobile-menu > nav > a:last-child {
    border-bottom: 0;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
  }

  .mobile-submenu {
    border-bottom: 1px solid rgba(224, 201, 142, 0.12);
  }

  .mobile-submenu > summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: rgba(245, 239, 228, 0.92);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
  }

  .mobile-submenu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-submenu > summary span:last-child {
    color: var(--cyan);
    transition: transform 0.2s ease;
  }

  .mobile-submenu[open] > summary span:last-child {
    transform: rotate(180deg);
  }

  .mobile-submenu > summary.is-current {
    color: var(--gold-light);
  }

  .mobile-submenu > div {
    display: grid;
    padding: 4px 10px 10px 22px;
    background: rgba(20, 200, 237, 0.045);
  }

  .mobile-menu nav .mobile-submenu a {
    padding: 11px 12px;
    border-bottom: 1px solid rgba(224, 201, 142, 0.08);
    color: rgba(245, 239, 228, 0.78);
    font-size: 12px;
  }

  .mobile-menu nav .mobile-submenu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu nav .mobile-submenu a[aria-current="page"] {
    color: var(--gold-light);
    font-weight: 800;
  }

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

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

  .hero-media {
    max-width: none;
    margin-top: 10px;
  }

  .media-frame {
    min-height: 590px;
  }

  .intro-grid,
  .history-layout,
  .home-service-card,
  .method-layout,
  .coverage-layout,
  .directory-heading,
  .inner-hero-layout,
  .digital-solutions-heading,
  .web-portfolio-heading {
    grid-template-columns: 1fr;
  }

  .digital-sector-grid {
    grid-template-columns: 1fr;
  }

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

  .digital-sector-copy {
    min-height: 0;
  }

  .digital-sector-copy > a {
    margin-top: 8px;
  }

  .intro-copy {
    max-width: 640px;
    padding-top: 0;
  }

  .history-heading {
    position: static;
  }

  .history-layout {
    gap: 52px;
  }

  .owner-attention-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .home-trust-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-trust-intro-copy {
    max-width: 680px;
  }

  .owner-attention-copy {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(224, 201, 142, 0.18);
  }

  .service-shortcuts,
  .home-method-strip {
    grid-template-columns: 1fr;
  }

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

  .home-method-steps article:first-child {
    border-left: 0;
  }

  .method-layout,
  .coverage-layout {
    gap: 54px;
  }

  .home-service-card {
    gap: 46px;
  }

  .inner-hero-layout {
    gap: 50px;
  }

  .inner-page-summary {
    max-width: 560px;
  }

  .web-city-skyline {
    width: 82%;
    height: 48%;
    opacity: 0.27;
  }

  .web-city-connectors {
    opacity: 0.62;
  }

  .page-diseno-web .inner-section-card:nth-child(4) {
    grid-template-columns: auto 1fr;
  }

  .page-diseno-web .inner-section-card:nth-child(4) p {
    grid-column: 1 / -1;
  }

  .contact-detail-grid,
  .related-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-top {
    display: grid;
  }

  .route-card {
    min-height: 500px;
  }

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

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: calc(80px + var(--headquarters-bar-height));
  }

  html.has-headquarters-bar {
    --headquarters-bar-height: 82px;
  }

  .headquarters-bar-inner {
    gap: 3px;
    padding-block: 6px;
  }

  .headquarters-bar p {
    max-width: 315px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .headquarters-location {
    gap: 7px;
  }

  .headquarters-location-colonia {
    width: min(100%, 340px);
    padding-inline: 9px;
  }

  .headquarters-colonia-icon .site-vector-icon {
    width: 15px;
    height: 15px;
  }

  .brand-symbol {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero-layout {
    padding-top: 52px;
  }

  .launch-badge {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 59px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .media-frame {
    min-height: 455px;
    border-radius: 18px 3px 18px 3px;
  }

  .system-status {
    right: 13px;
    left: 13px;
    min-width: 0;
    padding: 10px 38px 10px 10px;
  }

  .status-one,
  .status-two {
    right: 13px;
  }

  .status-one { top: 14px; }
  .status-two { top: 82px; }

  .system-status-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .system-status-icon .site-vector-icon {
    width: 19px;
    height: 19px;
  }

  .system-status strong {
    font-size: 12.5px;
  }

  .media-caption {
    right: 17px;
    bottom: 18px;
    left: 17px;
  }

  .media-caption > span {
    display: none;
  }

  .media-caption strong {
    width: 100%;
    text-align: left;
  }

  .chip-one,
  .chip-two {
    display: none;
  }

  .section-pad {
    padding-block: 82px;
  }

  .section-heading h2,
  .history-heading h2,
  .services-top h2,
  .home-service-copy h2,
  .method-title h2,
  .coverage-copy h2,
  .closing h2,
  .directory-heading h2,
  .inner-section-heading h2,
  .digital-solutions-heading h2,
  .web-portfolio-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .digital-solutions-heading,
  .web-portfolio-heading {
    gap: 24px;
  }

  .digital-sector-grid,
  .web-portfolio-grid {
    margin-top: 40px;
  }

  .web-portfolio-grid {
    grid-template-columns: minmax(0, 380px);
    justify-content: center;
  }

  .digital-sector-copy {
    padding: 30px 23px;
  }

  .digital-sector-visual {
    min-height: 250px;
  }

  .software-visual {
    padding: 25px 20px;
  }

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

  .portfolio-project-copy {
    grid-template-columns: 1fr;
    padding: 15px 16px 16px;
  }

  .portfolio-project-copy > a {
    grid-column: 1;
  }

  .inner-page-hero {
    padding-top: 18px;
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }

  .inner-hero-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .inner-page-lead {
    font-size: 15px;
  }

  .web-city-skyline {
    right: -16%;
    width: 116%;
    height: 40%;
    gap: 7px;
    opacity: 0.2;
  }

  .web-city-skyline i {
    gap: 9px;
    padding: 12px 6px;
  }

  .web-city-connectors {
    display: none;
  }

  .web-city-emoji {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .web-city-emoji-one { top: 13%; right: 6%; }
  .web-city-emoji-two { right: 12%; bottom: 11%; }
  .web-city-emoji-three { display: none; }

  .web-city-atmosphere span {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .web-city-atmosphere span:nth-child(2),
  .web-city-atmosphere span:nth-child(4) {
    display: none;
  }

  .page-diseno-web .inner-section-card:nth-child(4) {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-diseno-web .inner-section-card:nth-child(4) .inner-card-mark {
    align-self: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(224, 201, 142, 0.2);
  }

  .page-diseno-web .inner-section-card:nth-child(4) p {
    grid-column: 1;
  }

  .inner-content-grid,
  .directory-grid,
  .contact-detail-grid,
  .related-page-grid {
    grid-template-columns: 1fr;
  }

  .directory-heading {
    gap: 25px;
  }

  .directory-grid,
  .inner-content-grid {
    margin-top: 40px;
  }

  .directory-card,
  .inner-section-card,
  .related-page-grid > a,
  .contact-detail-grid > a,
  .contact-detail-grid > div {
    min-height: 0;
  }

  .home-service-actions,
  .home-service-actions .button {
    width: 100%;
  }

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

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

  .home-service-card {
    padding: 36px 24px;
  }

  .home-service-zones {
    grid-template-columns: 1fr;
  }

  .home-service-zone {
    min-height: 230px;
  }

  .home-service-zone-colonia {
    margin-top: 0;
  }

  .history-timeline {
    padding-left: 34px;
  }

  .history-timeline::before {
    left: 7px;
  }

  .history-dot {
    left: -34px;
  }

  .history-item {
    padding: 24px 22px;
  }

  .owner-attention-card {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 30px 24px;
  }

  .owner-attention-mark {
    align-self: auto;
    justify-content: space-between;
    flex-direction: row;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(224, 201, 142, 0.2);
  }

  .owner-attention-heart .site-vector-icon {
    width: 40px;
    height: 40px;
  }

  .owner-attention-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .owner-attention-handshake {
    font-size: 38px;
  }

  .owner-attention-heading h2 {
    font-size: clamp(38px, 12vw, 49px);
  }

  .owner-attention-copy {
    grid-column: 1;
    padding-top: 22px;
  }

  .owner-attention-copy p {
    font-size: 14px;
  }

  .owner-attention-story-link {
    grid-template-columns: 1fr;
  }

  .owner-attention-story-link strong,
  .owner-attention-story-link span {
    grid-column: 1;
    grid-row: auto;
  }

  .owner-attention-story-link span {
    margin-top: 5px;
  }

  .service-shortcuts {
    padding: 18px;
  }

  .service-shortcuts nav,
  .home-method-steps {
    grid-template-columns: 1fr;
  }

  .home-method-steps article,
  .home-method-steps article:first-child {
    min-height: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(224, 201, 142, 0.16);
    border-left: 0;
  }

  .home-method-steps article:first-child {
    border-top: 0;
  }

  .owner-attention-float {
    width: 47px;
    height: 47px;
    font-size: 19px;
  }

  .owner-attention-float-one {
    top: 9%;
    left: 4px;
  }

  .owner-attention-float-two {
    right: 4px;
    bottom: 3%;
  }

  .method-steps article {
    grid-template-columns: 48px 1fr;
  }

  .route-card {
    min-height: 490px;
  }

  .place-mvd {
    top: 42px;
    right: 22px;
  }

  .place-col {
    bottom: 42px;
    left: 22px;
  }

  .route-line {
    top: 125px;
    left: 30%;
    width: 165px;
    height: 230px;
  }

  .route-label {
    top: 51%;
    right: 19px;
    font-size: 8px;
  }

  .closing-card {
    padding: 34px 24px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
  }

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

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

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

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

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