:root {
  color-scheme: light;
  --navy-950: #031126;
  --navy-900: #061a35;
  --navy-800: #0a2b55;
  --navy-700: #123f74;
  --blue-500: #2877c9;
  --yellow-500: #f5c52f;
  --yellow-400: #ffd95b;
  --yellow-200: #fff0aa;
  --page: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #ebf1f8;
  --surface-strong: #dfe9f4;
  --ink: #071a33;
  --muted: #5b6b7f;
  --border: rgba(6, 26, 53, 0.13);
  --border-strong: rgba(6, 26, 53, 0.24);
  --header-bg: rgba(255, 255, 255, 0.9);
  --shadow: 0 24px 70px rgba(13, 38, 69, 0.13);
  --shadow-soft: 0 16px 45px rgba(13, 38, 69, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #050d18;
  --surface: #0a1727;
  --surface-soft: #0e2035;
  --surface-strong: #132b45;
  --ink: #edf5ff;
  --muted: #a6b5c8;
  --border: rgba(202, 221, 244, 0.13);
  --border-strong: rgba(202, 221, 244, 0.24);
  --header-bg: rgba(5, 13, 24, 0.9);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition), color var(--transition);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  font-weight: 760;
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.65rem);
  font-weight: 740;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

em {
  color: var(--yellow-500);
  font-style: normal;
}

::selection {
  background: var(--yellow-500);
  color: var(--navy-950);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--navy-700);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

html[data-theme="dark"] .eyebrow {
  color: #91b9e7;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--yellow-500);
  content: "";
}

.eyebrow--light {
  color: #dbe9fb;
}

.eyebrow--light::before {
  background: var(--yellow-500);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.26), transparent 70%);
  content: "";
  transform: translateX(-130%);
  transition: transform 600ms ease;
}

.button:hover::before {
  transform: translateX(130%);
}

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

.button--small {
  min-height: 44px;
  padding: 0 20px;
}

.button--large {
  min-height: 56px;
  padding: 0 27px;
}

.button--yellow {
  background: var(--yellow-500);
  color: var(--navy-950);
  box-shadow: 0 14px 40px rgba(245, 197, 47, 0.2);
}

.button--yellow:hover {
  background: var(--yellow-400);
  box-shadow: 0 18px 48px rgba(245, 197, 47, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 5px;
  color: var(--ink);
  font-weight: 800;
  transition: border-color var(--transition), color var(--transition), gap var(--transition);
}

.text-link:hover {
  gap: 14px;
  border-color: var(--yellow-500);
  color: var(--navy-700);
}

html[data-theme="dark"] .text-link:hover {
  color: var(--yellow-400);
}

/* Shared header */
.topbar {
  position: relative;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-950);
  color: #dbe9fb;
  font-family: var(--font-mono);
  font-size: 0.71rem;
  letter-spacing: 0.04em;
}

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

.topbar p {
  margin: 0;
}

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

.topbar__links a {
  transition: color var(--transition);
}

.topbar__links a:hover {
  color: var(--yellow-400);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 5px rgba(245, 197, 47, 0.13);
  animation: signal 2.4s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(3, 17, 38, 0.12);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 30px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand__plate {
  display: inline-flex;
  min-width: 197px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 26, 53, 0.08);
  border-radius: 13px;
  background: #fff;
  padding: 5px 10px;
  box-shadow: 0 8px 24px rgba(3, 17, 38, 0.08);
}

.brand__plate img {
  width: 177px;
  height: auto;
}

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

.site-nav__link {
  position: relative;
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav__link::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  background: var(--yellow-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: var(--surface-soft);
  color: var(--ink);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

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

.theme-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 13px;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.theme-toggle:hover {
  border-color: var(--border-strong);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.theme-toggle__icon {
  font-size: 1.1rem;
}

.theme-toggle__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-toggle,
.site-nav__mobile-cta {
  display: none;
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(40, 119, 201, 0.24), transparent 31%),
    radial-gradient(circle at 24% 70%, rgba(245, 197, 47, 0.1), transparent 28%),
    var(--navy-950);
  color: #fff;
}

.hero__grid,
.page-hero__grid,
.error-page__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000 10%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.hero__grid::after,
.page-hero__grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 45%, rgba(245, 197, 47, 0.04), transparent 70%);
  content: "";
  animation: grid-sweep 9s linear infinite;
}

.hero__layout {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
  padding-block: 88px 100px;
}

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

.hero__eyebrow {
  color: #dbe9fb;
  animation: rise-in 700ms both;
}

.hero__eyebrow::before {
  display: none;
}

.hero__eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--yellow-500);
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 28px;
  animation: rise-in 800ms 80ms both;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 0.05em;
  left: 0;
  z-index: -1;
  height: 0.17em;
  border-radius: 20px;
  background: rgba(245, 197, 47, 0.22);
  content: "";
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #c3d4e8;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  animation: rise-in 800ms 160ms both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: rise-in 800ms 240ms both;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebfd3;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  animation: rise-in 800ms 320ms both;
}

.hero__proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__proof b {
  color: var(--yellow-500);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  animation: rise-in 900ms 180ms both;
}

.hero-visual::before {
  position: absolute;
  top: 10%;
  right: -14%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(40, 119, 201, 0.24);
  filter: blur(70px);
  content: "";
}

.hero-visual__frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.4);
  transform: perspective(1200px) rotateY(-5deg) rotateX(1.5deg);
}

.hero-visual__frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-visual__frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 900ms ease;
}

.hero-visual:hover img {
  transform: scale(1.035);
}

.hero-visual__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 17, 38, 0.92), transparent 58%),
    linear-gradient(120deg, rgba(3, 17, 38, 0.35), transparent 60%);
}

.hero-visual__status {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(3, 17, 38, 0.66);
  padding: 10px 14px;
  color: #eaf2fc;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-visual__metric {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 4px 18px;
}

.hero-visual__metric > span {
  grid-row: span 2;
  color: var(--yellow-500);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-visual__metric strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-visual__metric small {
  color: #c4d2e3;
  font-size: 0.82rem;
}

.orbit-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(6, 26, 53, 0.78);
  padding: 9px 13px;
  color: #dceafa;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  animation: float-card 5s ease-in-out infinite;
}

.orbit-card--one {
  top: 24%;
  left: -32px;
}

.orbit-card--two {
  right: -18px;
  bottom: 26%;
  animation-delay: -2.5s;
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

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

.trust-strip__grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 136px;
  padding: 26px 34px;
  border-right: 1px solid var(--border);
}

.trust-strip__grid > div:first-child {
  padding-left: 0;
}

.trust-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip__number {
  color: var(--navy-800);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

html[data-theme="dark"] .trust-strip__number {
  color: var(--yellow-400);
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Shared sections */
.section {
  position: relative;
  padding-block: clamp(86px, 11vw, 144px);
}

.section--contrast {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

.section--contrast::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(40, 119, 201, 0.08);
  content: "";
  filter: blur(30px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(46px, 7vw, 78px);
}

.section-heading__copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.service-card::before {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(40, 119, 201, 0.08);
  content: "";
  transition: transform 500ms ease, background-color 500ms ease;
}

.service-card:hover {
  border-color: rgba(40, 119, 201, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::before {
  background: rgba(245, 197, 47, 0.12);
  transform: scale(1.45);
}

.service-card__number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.service-card__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 62px;
  border-radius: 16px;
  background: var(--navy-900);
  color: var(--yellow-500);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 25px rgba(6, 26, 53, 0.18);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
}

.service-card__link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-card__link b {
  color: var(--navy-700);
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.service-card:hover .service-card__link b {
  transform: translate(3px, -3px);
}

html[data-theme="dark"] .service-card__link b {
  color: var(--yellow-400);
}

.split-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.split-feature--reverse .split-feature__media {
  order: 2;
}

.split-feature__media {
  position: relative;
}

.split-feature__media::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 92px;
  height: 92px;
  border-top: 2px solid var(--yellow-500);
  border-left: 2px solid var(--yellow-500);
  content: "";
}

.split-feature__media img {
  width: 100%;
  min-height: 510px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(3, 17, 38, 0.83);
  padding: 17px 20px;
  color: #fff;
  backdrop-filter: blur(14px);
}

.image-label span {
  color: var(--yellow-500);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-label strong {
  max-width: 260px;
  font-size: 0.96rem;
  line-height: 1.35;
  text-align: right;
}

.split-feature__content h2 {
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.split-feature__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 650;
}

.check-list span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-strong);
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 30px 34px 10px 0;
  border-right: 1px solid var(--border);
}

.step-card:not(:first-child) {
  padding-left: 34px;
}

.step-card:last-child {
  border-right: 0;
}

.step-card > span {
  position: absolute;
  top: -13px;
  left: 0;
  display: inline-flex;
  width: 38px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.step-card:not(:first-child) > span {
  left: 34px;
}

.step-card__tag {
  margin: 24px 0 46px;
  color: var(--navy-700);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[data-theme="dark"] .step-card__tag {
  color: #91b9e7;
}

.step-card h3 {
  margin-bottom: 15px;
}

.step-card p:last-child {
  color: var(--muted);
}

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(40, 119, 201, 0.28), transparent 30%),
    radial-gradient(circle at 14% 100%, rgba(245, 197, 47, 0.08), transparent 30%),
    var(--navy-950);
  color: #fff;
}

.page-hero__layout {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: end;
  gap: 80px;
  padding-block: 100px 88px;
}

.page-hero__copy h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6vw, 6.1rem);
  animation: rise-in 780ms both;
}

.page-hero__copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #c4d3e5;
  font-size: 1.15rem;
  animation: rise-in 780ms 100ms both;
}

.page-hero__aside {
  align-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 28px;
  color: #b7c8dc;
}

.page-hero__aside p {
  margin: 28px 0 0;
}

.page-hero__index {
  color: var(--yellow-500);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

/* Services */
.solutions-list {
  border-top: 1px solid var(--border-strong);
}

.solution-row {
  display: grid;
  grid-template-columns: 58px minmax(220px, 0.82fr) minmax(260px, 1.15fr) minmax(210px, 0.8fr);
  align-items: start;
  gap: 28px;
  border-bottom: 1px solid var(--border);
  padding-block: 42px;
  transition: background-color var(--transition), padding-inline var(--transition);
}

.solution-row:hover {
  background: var(--surface);
  padding-inline: 18px;
}

.solution-row__number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.solution-row__title {
  display: flex;
  gap: 18px;
}

.solution-row__title .service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 13px;
  font-size: 0.68rem;
}

.solution-row h3 {
  margin: 5px 0 0;
  font-size: 1.45rem;
}

.solution-row > p {
  margin: 0;
  color: var(--muted);
}

.solution-row ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.87rem;
  list-style: none;
}

.solution-row li::before {
  margin-right: 9px;
  color: var(--yellow-500);
  content: "→";
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-strong);
  padding-top: 24px;
}

.mini-metrics > div {
  padding-right: 16px;
  border-right: 1px solid var(--border);
}

.mini-metrics > div:not(:first-child) {
  padding-left: 16px;
}

.mini-metrics > div:last-child {
  border-right: 0;
}

.mini-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-700);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

html[data-theme="dark"] .mini-metrics strong {
  color: var(--yellow-400);
}

.mini-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section--clients {
  background: var(--surface);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.client-logo {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  transition: background-color var(--transition);
}

.client-logo:hover {
  background: var(--surface-soft);
}

.client-logo img {
  max-width: 142px;
  max-height: 66px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

html[data-theme="dark"] .client-logo {
  background: #fff;
}

/* About */
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 140px);
}

.story-layout__intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.story-layout__copy {
  padding-top: 50px;
}

.story-layout__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-layout__copy .lead-copy {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 670;
  line-height: 1.35;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-tags span {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  padding: 10px 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

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

.value-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 34px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.value-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 115px;
  height: 115px;
  border: 22px solid rgba(40, 119, 201, 0.08);
  border-radius: 50%;
  content: "";
}

.value-card:hover {
  border-color: rgba(245, 197, 47, 0.65);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.value-card__mark {
  display: block;
  margin-bottom: 84px;
  color: var(--navy-700);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 850;
}

html[data-theme="dark"] .value-card__mark {
  color: var(--yellow-400);
}

.value-card h3 {
  margin-bottom: 14px;
}

.value-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.section--timeline {
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

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

.timeline__line {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--border-strong);
}

.timeline__item {
  position: relative;
  padding-top: 48px;
}

.timeline__item::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 1px var(--yellow-500);
  content: "";
}

.timeline__item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-700);
  font-size: 1.25rem;
}

html[data-theme="dark"] .timeline__item strong {
  color: var(--yellow-400);
}

.timeline__item span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.contact-layout__copy {
  position: sticky;
  top: 130px;
}

.contact-layout__copy h2 {
  margin-bottom: 24px;
}

.contact-layout__copy > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  position: relative;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a.contact-card:hover {
  border-color: rgba(40, 119, 201, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.contact-card--primary {
  background: var(--navy-900);
  color: #fff;
}

.contact-card__icon {
  display: inline-flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--navy-800);
  font-family: var(--font-mono);
  font-weight: 900;
}

.contact-card--primary .contact-card__icon {
  background: var(--yellow-500);
  color: var(--navy-950);
}

.contact-card__label {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card--primary .contact-card__label,
.contact-card--primary small {
  color: #b8cae0;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1.03rem;
}

.contact-card small {
  margin-top: auto;
  padding-top: 17px;
  color: var(--muted);
}

.contact-card > b {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--navy-700);
  transition: transform var(--transition);
}

.contact-card--primary > b {
  color: var(--yellow-500);
}

.contact-card:hover > b {
  transform: translate(3px, -3px);
}

.section--map {
  padding-top: 0;
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.map-panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
}

.map-panel__header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.map-frame {
  height: 460px;
  border-top: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(1.04);
}

html[data-theme="dark"] .map-frame iframe {
  filter: invert(0.9) hue-rotate(175deg) saturate(0.65) contrast(1.08);
}

/* CTA and footer */
.section--cta {
  padding-top: 34px;
}

.cta-panel {
  position: relative;
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 25%, rgba(40, 119, 201, 0.32), transparent 28%),
    var(--navy-950);
  padding: clamp(42px, 7vw, 80px);
  color: #fff;
  box-shadow: 0 34px 80px rgba(3, 17, 38, 0.25);
}

.cta-panel__copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.cta-panel p:last-child {
  max-width: 580px;
  color: #bed0e4;
  font-size: 1.06rem;
}

.cta-panel > .button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.cta-panel__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent 20%, #000);
}

.site-footer {
  margin-top: clamp(60px, 9vw, 120px);
  background: var(--navy-950);
  color: #dce9f8;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 1fr 0.6fr;
  gap: 60px;
  padding-block: 76px;
}

.brand__plate--footer {
  margin-bottom: 22px;
}

.site-footer__brand p {
  max-width: 330px;
  color: #9fb2ca;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--yellow-500);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-links a {
  width: fit-content;
  color: #b7c8dc;
  font-size: 0.9rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-social {
  display: flex;
  gap: 9px;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 850;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--yellow-500);
  background: var(--yellow-500);
  color: var(--navy-950);
}

.site-footer__bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #849ab5;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}

.site-footer__bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #20b95a;
  padding: 0 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 16px 42px rgba(3, 17, 38, 0.3);
  transition: transform var(--transition), background-color var(--transition);
}

.whatsapp-float:hover {
  background: #169d4a;
  transform: translateY(-4px);
}

.whatsapp-float > span:nth-child(2) {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(32, 185, 90, 0.65);
  border-radius: inherit;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

/* Error */
.error-page {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
  text-align: center;
}

.error-page__content {
  position: relative;
  z-index: 2;
  padding-block: 90px;
}

.error-page__content .eyebrow {
  justify-content: center;
}

.error-page__content > strong {
  display: block;
  margin-bottom: -30px;
  color: rgba(245, 197, 47, 0.12);
  font-size: clamp(9rem, 24vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-page h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.error-page p {
  margin-bottom: 30px;
  color: #b8cae0;
}

/* Reveal and animation */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-grid .reveal:nth-child(2),
.values-grid .reveal:nth-child(2),
.contact-cards .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.service-grid .reveal:nth-child(3),
.values-grid .reveal:nth-child(3),
.contact-cards .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.contact-cards .reveal:nth-child(4) {
  transition-delay: 270ms;
}

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

@keyframes signal {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(245, 197, 47, 0.1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 197, 47, 0.02);
  }
}

@keyframes grid-sweep {
  from {
    transform: translateX(-25%);
  }
  to {
    transform: translateX(25%);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .site-header__inner {
    gap: 18px;
  }

  .brand__plate {
    min-width: 172px;
  }

  .brand__plate img {
    width: 152px;
  }

  .site-nav__link {
    padding-inline: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero__layout {
    min-height: 680px;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

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

  .hero-visual__frame,
  .hero-visual__frame img {
    min-height: 470px;
    height: 470px;
  }

  .solution-row {
    grid-template-columns: 45px minmax(200px, 0.8fr) minmax(240px, 1.2fr);
  }

  .solution-row ul {
    grid-column: 3;
  }

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

@media (max-width: 840px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .topbar__message {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__links {
    width: 100%;
    justify-content: center;
  }

  .topbar__links > span,
  .topbar__links > a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand__plate {
    min-width: 158px;
    min-height: 50px;
  }

  .brand__plate img {
    width: 142px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform var(--transition);
  }

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

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    display: flex;
    max-height: calc(100vh - 84px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    overflow-y: auto;
    margin: 0;
    border-bottom: 1px solid var(--border);
    background: var(--page);
    padding: 28px 20px 42px;
    box-shadow: 0 28px 60px rgba(3, 17, 38, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__link {
    padding: 17px 14px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 1.4rem;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__mobile-cta {
    display: inline-flex;
    margin-top: 18px;
  }

  .site-header__actions {
    order: 2;
  }

  .theme-toggle__label {
    display: none;
  }

  .theme-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-block: 72px 84px;
  }

  .hero__content {
    max-width: 680px;
  }

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

  .hero-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .hero-visual__frame {
    transform: none;
  }

  .orbit-card--one {
    left: -8px;
  }

  .orbit-card--two {
    right: -8px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

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

  .section-heading__copy {
    max-width: 620px;
  }

  .service-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card__icon {
    margin-bottom: 42px;
  }

  .split-feature {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .split-feature--reverse .split-feature__media {
    order: 0;
  }

  .split-feature__media img {
    min-height: 430px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .step-card,
  .step-card:not(:first-child) {
    min-height: auto;
    padding: 44px 0;
    border-top: 1px solid var(--border);
    border-right: 0;
  }

  .step-card > span,
  .step-card:not(:first-child) > span {
    top: -13px;
    left: 0;
  }

  .step-card__tag {
    margin-bottom: 24px;
  }

  .page-hero__layout {
    min-height: 500px;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 78px 68px;
  }

  .page-hero__aside {
    max-width: 580px;
  }

  .solution-row {
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }

  .solution-row > p,
  .solution-row ul {
    grid-column: 2;
  }

  .solutions-list .solution-row:hover {
    padding-inline: 0;
    background: transparent;
  }

  .story-layout__intro,
  .contact-layout__copy {
    position: static;
  }

  .story-layout__copy {
    padding-top: 0;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .timeline__line {
    display: none;
  }

  .timeline__item {
    padding-top: 35px;
    border-top: 1px solid var(--border-strong);
  }

  .timeline__item::before {
    top: -7px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 48px 32px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 26px, 520px);
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .hero__layout {
    padding-top: 58px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hero-visual__frame,
  .hero-visual__frame img {
    min-height: 420px;
    height: 420px;
  }

  .hero-visual__metric {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-visual__status {
    top: 18px;
    left: 18px;
  }

  .orbit-card {
    display: none;
  }

  .trust-strip__grid > div {
    grid-template-columns: 92px 1fr;
  }

  .section {
    padding-block: 78px;
  }

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

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

  .split-feature__media img {
    min-height: 360px;
  }

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

  .image-label strong {
    text-align: left;
  }

  .page-hero__layout {
    min-height: 520px;
  }

  .page-hero__aside {
    padding-left: 19px;
  }

  .solution-row {
    padding-block: 34px;
  }

  .solution-row__title {
    flex-direction: column;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .mini-metrics > div,
  .mini-metrics > div:not(:first-child) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .mini-metrics > div:last-child {
    border-bottom: 0;
  }

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

  .client-logo {
    min-height: 120px;
    padding: 20px;
  }

  .timeline,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .map-panel__header {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .map-frame {
    height: 380px;
  }

  .cta-panel {
    min-height: 420px;
    padding: 36px 26px;
  }

  .cta-panel > .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding-block: 60px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float__text {
    display: none;
  }
}

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

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

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