@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  --navy: #15243b;
  --navy-soft: #203653;
  --navy-lift: #2a466a;
  --ink: #17233a;
  --ink-soft: #58657a;
  --blue: #2867d7;
  --blue-deep: #1d4fb0;
  --cyan: #24b7eb;
  --orange: #ff7b32;
  --yellow: #ffc52f;
  --green: #22b87a;
  --violet: #7558e8;
  --paper: #ffffff;
  --mist: #f5f7fb;
  --mist-blue: #edf4ff;
  --line: #dce4ee;
  --line-dark: #dce4ee;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-sm: 0 12px 32px rgba(21, 36, 59, 0.07);
  --shadow-lg: 0 32px 90px rgba(21, 36, 59, 0.13);
  --container: 1240px;
  color-scheme: only light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

::selection {
  background: rgba(255, 197, 47, 0.75);
  color: var(--navy);
}

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

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

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

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

.section {
  padding: 128px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a8c8ff;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 0 5px rgba(255, 197, 47, 0.11);
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 96px;
  align-items: end;
}

.split-heading h2,
.centered-heading h2,
.solutions-copy h2,
.process-heading h2,
.about-copy h2,
.faq-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.7rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.split-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 140ms var(--ease-out);
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: linear-gradient(135deg, #2d6dde 0%, var(--blue) 54%, #1748a3 100%);
  box-shadow: 0 14px 34px rgba(40, 103, 215, 0.28);
  color: white;
}

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

.button-outline {
  border: 1px solid #bcc8d8;
  background: transparent;
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  gap: 12px;
  padding: 0 17px;
  border-radius: 8px;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #aab5c4;
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    gap 180ms var(--ease-out);
}

.text-link-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.text-link span {
  font-size: 1rem;
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    box-shadow: 0 18px 42px rgba(40, 103, 215, 0.4);
    transform: translateY(-2px);
  }

  .button-dark:hover {
    background: var(--blue);
    transform: translateY(-2px);
  }

  .button-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: white;
  }

  .text-link:hover {
    gap: 17px;
    border-color: var(--blue);
    color: var(--blue);
  }

  .text-link-light:hover {
    border-color: var(--yellow);
    color: var(--yellow);
  }
}

/* Header */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.09);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(20px) saturate(140%);
  transition:
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 34px rgba(7, 17, 31, 0.08);
}

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

.brand {
  display: inline-flex;
  width: 190px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: #303c4e;
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 180ms var(--ease-out);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 9px;
  background: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 99px;
  background: white;
  transition:
    transform 180ms var(--ease-out),
    width 180ms var(--ease-out);
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 82px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(40, 103, 215, 0.22), transparent 36%),
    var(--navy);
  color: white;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 4px;
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  font-weight: 620;
  letter-spacing: -0.04em;
}

.mobile-menu nav > a > span {
  color: #7f95b0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.mobile-menu nav .mobile-menu-cta {
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  font-size: 1rem;
  letter-spacing: 0;
}

.mobile-menu nav .mobile-menu-cta span {
  color: white;
  font-size: 1rem;
}

.mobile-menu-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
  color: #a8b8cc;
  font-size: 0.82rem;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/* Hero */

.hero {
  position: relative;
  overflow: clip;
  padding: 100px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy);
  background-position: center;
  background-size: 70px 70px;
  color: white;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.09), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(40, 103, 215, 0.28), transparent 68%);
}

.hero-glow-two {
  bottom: -230px;
  left: -200px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 123, 50, 0.13), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(40px, 4.5vw, 70px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 5.2vw, 5.6rem);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  background: linear-gradient(95deg, #fff 2%, #bcd5ff 46%, #7bbcff 72%, #ffd46a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: #b7c5d8;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.button-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}

.hero-meta p {
  margin: 0;
  color: #91a4bb;
  font-size: 0.78rem;
  line-height: 1.65;
}

.hero-meta a {
  display: block;
  color: white;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: linear-gradient(135deg, #16335b, #285d9f);
  color: #dbe8fb;
  font-size: 0.53rem;
  font-weight: 650;
}

.hero-avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, var(--orange), #d94f1e);
}

.product-stage {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 85px 0 75px;
}

.stage-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 660px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #101d2e;
  box-shadow:
    0 48px 100px rgba(0, 0, 0, 0.4),
    0 0 0 10px rgba(255, 255, 255, 0.025);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.stage-toolbar {
  display: flex;
  height: 52px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #8da1b9;
  font-size: 0.67rem;
}

.toolbar-dots {
  display: flex;
  gap: 5px;
}

.toolbar-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42566f;
}

.toolbar-dots span:first-child {
  background: var(--orange);
}

.toolbar-dots span:nth-child(2) {
  background: var(--yellow);
}

.toolbar-dots span:last-child {
  background: var(--green);
}

.stage-label {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c5d2e2;
}

.stage-status i,
.board-live i,
.footer-signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40d796;
  box-shadow: 0 0 0 4px rgba(64, 215, 150, 0.11);
}

.stage-image {
  position: relative;
  height: 445px;
  overflow: hidden;
  background: #eaf0f6;
}

.stage-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 70%, rgba(40, 103, 215, 0.14));
  content: "";
  pointer-events: none;
}

.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.stage-footer {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 18px;
  color: #889bb2;
  font-size: 0.63rem;
}

.stage-footer span:first-child {
  color: white;
  font-weight: 600;
}

.stage-orbit {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -24%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(73, 134, 236, 0.28);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  border: 1px solid rgba(73, 134, 236, 0.15);
  border-radius: 50%;
  content: "";
}

.stage-orbit::before {
  inset: 58px;
}

.stage-orbit::after {
  inset: 126px;
}

.stage-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(40, 103, 215, 0.14);
}

.stage-orbit span:first-child {
  top: 34px;
  left: 160px;
}

.stage-orbit span:nth-child(2) {
  right: 21px;
  bottom: 180px;
  background: var(--orange);
}

.stage-orbit span:last-child {
  bottom: 23px;
  left: 210px;
  background: var(--yellow);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(19, 37, 61, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

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

.floating-card strong {
  color: white;
  font-size: 0.72rem;
}

.floating-card small {
  margin-top: 2px;
  color: #9bacc0;
  font-size: 0.61rem;
}

.floating-card-top {
  top: 54px;
  right: -28px;
  padding: 13px 16px;
}

.floating-card-bottom {
  right: auto;
  bottom: 46px;
  left: -32px;
  padding: 13px 17px;
}

.floating-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
}

.mini-chart {
  display: flex;
  width: 56px;
  height: 35px;
  align-items: end;
  gap: 4px;
}

.mini-chart span {
  width: 7px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--blue), var(--cyan));
}

.mini-chart .chart-bar-1 {
  height: 34%;
}

.mini-chart .chart-bar-2 {
  height: 52%;
}

.mini-chart .chart-bar-3 {
  height: 43%;
}

.mini-chart .chart-bar-4 {
  height: 76%;
}

.mini-chart .chart-bar-5 {
  height: 92%;
}

.capability-bar {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: #96a8bd;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.capability-bar i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #405773;
}

/* Services */

.services {
  background:
    radial-gradient(circle at 8% 5%, rgba(40, 103, 215, 0.05), transparent 28%),
    var(--paper);
}

.services-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition:
    background-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    transform 200ms var(--ease-out);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-child(n + 4) {
  border-bottom: 0;
}

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

.service-number {
  color: #9aa7b8;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.service-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #718097;
  font-size: 0.9rem;
  transition:
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 38px 0 28px;
  place-items: center;
  border-radius: 14px;
}

.service-icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-blue {
  background: #eaf2ff;
  color: var(--blue);
}

.icon-orange {
  background: #fff0e9;
  color: #ef6527;
}

.icon-cyan {
  background: #e7f9fe;
  color: #0d9ece;
}

.icon-violet {
  background: #f0edff;
  color: var(--violet);
}

.icon-yellow {
  background: #fff7d9;
  color: #d99b00;
}

.icon-green {
  background: #e8f8f1;
  color: #159e68;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.36rem;
  font-weight: 680;
  letter-spacing: -0.03em;
}

.service-card p {
  min-height: 76px;
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-link {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 650;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    z-index: 1;
    background: var(--mist);
    box-shadow: 0 20px 50px rgba(7, 17, 31, 0.11);
    transform: translateY(-4px);
  }

  .service-card:hover .service-arrow {
    background: var(--navy);
    color: white;
    transform: rotate(45deg);
  }
}

/* Statement */

.statement-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(40, 103, 215, 0.25), transparent 28%),
    linear-gradient(115deg, #07111f, #0b1b31 65%, #112745);
  color: white;
}

.statement-section::after {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 100px;
  align-items: center;
}

.statement-mark {
  position: relative;
  min-height: 320px;
}

.orbit-ring {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(74, 140, 255, 0.38);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.orbit-ring::after {
  position: absolute;
  top: 46px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(255, 197, 47, 0.13);
  content: "";
}

.bolt {
  position: absolute;
  z-index: 2;
  clip-path: polygon(44% 0, 100% 0, 63% 40%, 88% 40%, 21% 100%, 39% 56%, 9% 56%);
}

.bolt-one {
  top: 68px;
  left: 43%;
  width: 115px;
  height: 200px;
  background: linear-gradient(160deg, var(--yellow), var(--orange));
  filter: drop-shadow(0 18px 25px rgba(255, 123, 50, 0.25));
  transform: translateX(-50%);
}

.bolt-two {
  top: 102px;
  left: 62%;
  width: 70px;
  height: 128px;
  background: linear-gradient(160deg, #51c9f4, var(--blue));
  opacity: 0.72;
  transform: translateX(-50%) rotate(8deg);
}

.statement-copy h2 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 5.2vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.statement-copy > p {
  max-width: 710px;
  margin-bottom: 34px;
  color: #aebfd3;
  font-size: 1.06rem;
  line-height: 1.85;
}

/* Projects */

.projects {
  background: var(--mist);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.project-card {
  overflow: hidden;
  border-radius: 14px;
  background: white;
  box-shadow: 0 1px 0 rgba(7, 17, 31, 0.03);
}

.project-card-wide {
  grid-column: 1 / -1;
}

.project-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #e3e9f0;
}

.project-card-wide .project-image {
  height: 520px;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.12), transparent 42%);
  content: "";
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 700ms var(--ease-out);
}

.project-card-wide .project-image img {
  object-position: top left;
}

.project-index {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.64);
  color: white;
  font-size: 0.67rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.project-copy {
  padding: 28px 30px 32px;
}

.project-tags {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin-bottom: 9px;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.project-copy p:last-of-type {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.project-copy .text-link {
  margin-top: 18px;
}

.projects-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.projects-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.projects-cta > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (hover: hover) and (pointer: fine) {
  .project-card:hover .project-image img {
    transform: scale(1.025);
  }
}

/* Solutions */

.solutions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(40, 103, 215, 0.06), transparent 34%),
    white;
}

.solutions::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(40, 103, 215, 0.1);
  border-radius: 50%;
  content: "";
}

.solutions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(64px, 8vw, 130px);
  align-items: center;
}

.solutions-copy h2 {
  margin-bottom: 28px;
}

.solutions-copy > p {
  margin-bottom: 35px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.solutions-board {
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 15px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.board-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  font-size: 0.72rem;
  font-weight: 650;
}

.board-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748a;
  font-size: 0.61rem;
  font-weight: 650;
}

.solution-row {
  display: grid;
  min-height: 98px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms var(--ease-out),
    padding 180ms var(--ease-out);
}

.solution-row:last-child {
  border-bottom: 0;
}

.solution-row > span:last-child {
  color: #9eabba;
}

.solution-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: var(--mist-blue);
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 650;
}

.solution-row strong,
.solution-row small {
  display: block;
}

.solution-row strong {
  margin-bottom: 4px;
  font-size: 0.94rem;
}

.solution-row small {
  color: #748196;
  font-size: 0.72rem;
}

@media (hover: hover) and (pointer: fine) {
  .solution-row:hover {
    padding-right: 18px;
    padding-left: 26px;
    background: var(--mist);
  }
}

/* Process */

.process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.process::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 550px;
  height: 550px;
  border: 100px solid rgba(40, 103, 215, 0.08);
  border-radius: 50%;
  content: "";
}

.process-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 70px;
}

.process-heading h2 {
  margin-bottom: 24px;
}

.process-heading > p {
  max-width: 620px;
  margin-bottom: 0;
  color: #9eb0c5;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 34px 0 0;
}

.process-number {
  display: block;
  margin-bottom: 22px;
  color: #7592b4;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.process-line {
  position: relative;
  height: 1px;
  margin-bottom: 34px;
  background: var(--line-dark);
}

.process-line::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 103, 215, 0.3);
  content: "";
}

.process-list li:last-child .process-line::before {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 197, 47, 0.18);
}

.process-list h3 {
  margin-bottom: 13px;
  font-size: 1.4rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.process-list p {
  min-height: 100px;
  margin-bottom: 20px;
  color: #9eafc2;
  font-size: 0.87rem;
  line-height: 1.75;
}

.process-time {
  color: #6f859f;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* About */

.about {
  background:
    linear-gradient(90deg, rgba(40, 103, 215, 0.035), transparent 42%),
    white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 9vw, 140px);
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-lead {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.9;
}

.about-copy blockquote {
  margin: 38px 0;
  padding: 24px 0 24px 25px;
  border-left: 3px solid var(--orange);
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.7;
}

.about-contact {
  display: grid;
  gap: 10px;
  color: #78869a;
  font-size: 0.78rem;
}

.about-contact a {
  color: var(--blue);
  font-weight: 600;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 58px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 138px;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.timeline-year {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 650;
}

.timeline li > div {
  padding-top: 4px;
}

.timeline h3 {
  margin-bottom: 7px;
  font-size: 1.2rem;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.7;
}

.timeline-current .timeline-year {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 22px rgba(40, 103, 215, 0.22);
}

/* Reasons */

.reasons {
  padding-top: 40px;
  background: white;
}

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

.reasons-grid article {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--mist);
}

.reason-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 1.2rem;
}

.reasons-grid article:nth-child(2) .reason-symbol {
  background: var(--blue);
}

.reasons-grid article:nth-child(3) .reason-symbol {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--navy);
}

.reasons-grid h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.reasons-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.75;
}

/* Resources */

.resources {
  background: var(--mist);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.resource-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  transition:
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    transform 200ms var(--ease-out);
}

.resource-card-featured {
  border-color: transparent;
  background:
    linear-gradient(145deg, rgba(40, 103, 215, 0.96), rgba(12, 34, 66, 0.98)),
    var(--blue);
  color: white;
}

.resource-card-featured::before {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.025),
    0 0 0 96px rgba(255, 255, 255, 0.015);
  content: "";
}

.resource-category {
  position: absolute;
  top: 27px;
  left: 30px;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-card-featured .resource-category {
  color: #c8dcff;
}

.resource-card h3 {
  position: relative;
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.resource-meta {
  color: #7c899b;
  font-size: 0.67rem;
  font-weight: 650;
}

.resource-card-featured .resource-meta {
  color: #b8c9df;
}

.resource-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #708096;
  transition:
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.resource-card-featured .resource-arrow {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

@media (hover: hover) and (pointer: fine) {
  .resource-card:hover {
    border-color: #c0ccdb;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
  }

  .resource-card:hover .resource-arrow {
    background: var(--navy);
    color: white;
    transform: rotate(45deg);
  }

  .resource-card-featured:hover .resource-arrow {
    background: white;
    color: var(--navy);
  }
}

/* FAQ */

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(60px, 8vw, 125px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro h2 {
  margin-bottom: 23px;
}

.faq-intro > p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 650;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #748196;
  font-size: 1rem;
  font-weight: 400;
  transition:
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.accordion details[open] summary span {
  background: var(--navy);
  color: white;
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 700px;
  margin: -5px 56px 25px 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.8;
}

/* Contact */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(40, 103, 215, 0.24), transparent 30%),
    linear-gradient(120deg, #07111f 0%, #0b1c32 72%, #0e2b52 100%);
  color: white;
}

.contact-orbit {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.012),
    0 0 0 200px rgba(255, 255, 255, 0.008);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 118px;
}

.contact-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.contact-intro > p {
  color: #aabbd0;
  line-height: 1.85;
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.contact-direct > * {
  display: grid;
  gap: 5px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-direct span {
  color: #7890ab;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: white;
  font-size: 0.9rem;
  font-weight: 570;
}

.contact-form {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  color: var(--ink);
}

.form-heading {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-step {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 650;
}

.form-heading h3 {
  margin-bottom: 2px;
  font-size: 1.15rem;
  font-weight: 680;
}

.form-heading p {
  margin: 0;
  color: #7b8799;
  font-size: 0.7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #526075;
  font-size: 0.68rem;
  font-weight: 650;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d4dde8;
  border-radius: 8px;
  background: #fbfcfe;
  font-size: 0.84rem;
  outline: none;
  transition:
    border-color 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    background-color 160ms var(--ease-out);
}

.form-grid input,
.form-grid select {
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(40, 103, 215, 0.1);
}

.form-grid textarea::placeholder {
  color: #9ba7b7;
}

.form-full {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-grid .consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
}

.form-grid .consent input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-grid .consent > span {
  color: #667489;
  font-weight: 500;
  line-height: 1.55;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.form-status {
  margin: 0;
  color: #526075;
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #0e8b5b;
  font-weight: 650;
}

.form-status.is-error {
  color: #c13b2c;
  font-weight: 650;
}

.contact-form.is-sending .button {
  cursor: wait;
  opacity: 0.7;
}

/* Footer */

.site-footer {
  padding: 70px 0 26px;
  background: #030a13;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr 0.7fr;
  gap: 55px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: #7f91a7;
  font-size: 0.83rem;
  line-height: 1.75;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: #697d96;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  margin-bottom: 10px;
  color: #c0cbd8;
  font-size: 0.79rem;
}

.footer-bottom {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #60748c;
  font-size: 0.65rem;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.footer-signal {
  display: flex;
  align-items: center;
  gap: 9px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: #20b96b;
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.24);
  color: white;
  transition:
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.whatsapp-float svg {
  width: 26px;
  fill: currentColor;
}

/* Subpages */

.subpage-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.subpage-nav > a:not(.button) {
  color: #48566a;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 100px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy);
  background-size: 70px 70px;
  color: white;
}

.blog-hero::after,
.legal-hero::after {
  position: absolute;
  top: -250px;
  right: -170px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(73, 134, 236, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(73, 134, 236, 0.025),
    0 0 0 140px rgba(73, 134, 236, 0.015);
  content: "";
}

.blog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
  align-items: end;
}

.blog-hero h1,
.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6.6vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.blog-hero-grid > p,
.legal-hero .container > p:last-child {
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  color: #a9b9cb;
  line-height: 1.8;
}

.blog-archive {
  padding: 70px 0 120px;
  background: var(--mist);
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.blog-toolbar p {
  margin: 0;
  color: #6b788c;
  font-size: 0.78rem;
}

.blog-toolbar strong {
  color: var(--ink);
}

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

.blog-card {
  scroll-margin-top: 110px;
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.blog-card:target {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(40, 103, 215, 0.1);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 60px;
  color: #8b97a8;
  font-size: 0.62rem;
  font-weight: 650;
}

.blog-card-meta span {
  color: var(--blue);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 14px;
  font-size: 1.34rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.blog-card p {
  margin-bottom: 25px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.72;
}

.blog-card > a {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 650;
}

.blog-cta {
  padding: 90px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(40, 103, 215, 0.22), transparent 30%),
    var(--navy);
  color: white;
}

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

.blog-cta h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

/* Editorial articles */

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 82% 28%, rgba(40, 103, 215, 0.32), transparent 32%),
    var(--navy);
  background-size:
    70px 70px,
    70px 70px,
    auto,
    auto;
  color: white;
}

.article-hero::after {
  position: absolute;
  top: -280px;
  right: -190px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 197, 47, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 197, 47, 0.018),
    0 0 0 160px rgba(40, 103, 215, 0.02);
  content: "";
}

.article-hero-inner {
  position: relative;
  z-index: 1;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 4px;
  color: #c5d2e2;
  font-size: 0.72rem;
  font-weight: 600;
}

.article-hero .eyebrow {
  margin-bottom: 22px;
}

.article-hero h1 {
  max-width: 1120px;
  margin-bottom: 48px;
  overflow-wrap: anywhere;
  font-size: clamp(3.15rem, 6.1vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aabbd0;
  font-size: 0.72rem;
  font-weight: 650;
}

.article-meta span {
  color: #7f95b0;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: clamp(54px, 7vw, 100px);
  justify-content: center;
  padding-top: 92px;
  padding-bottom: 122px;
}

.article-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
}

.article-aside-label {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-aside p {
  margin-bottom: 22px;
  color: #667489;
  font-size: 0.77rem;
  line-height: 1.7;
}

.article-aside a {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 650;
}

.article-body {
  min-width: 0;
  color: #344054;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  line-height: 1.9;
}

.article-body p {
  margin-bottom: 1.55em;
}

.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  color: var(--ink);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.article-body h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-body h3 {
  margin: 2em 0 0.65em;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.article-body h4,
.article-body h5,
.article-body h6 {
  margin: 2em 0 0.7em;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.8em;
  padding-left: 1.4em;
}

.article-body li {
  margin-bottom: 0.62em;
  padding-left: 0.2em;
}

.article-body strong,
.article-body b {
  color: var(--ink);
  font-weight: 600;
}

.article-body a {
  color: var(--blue);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 2.2em 0;
  padding: 6px 0 6px 25px;
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 560;
}

.article-body figure {
  margin: 42px 0;
}

.article-body img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.article-body figcaption {
  margin-top: 10px;
  color: #7b8799;
  font-size: 0.75rem;
  text-align: center;
}

.article-body .article-video-link {
  margin-bottom: 42px;
  padding: 20px 22px;
  border: 1px solid #cbd9ee;
  border-radius: 11px;
  background: var(--mist-blue);
}

.article-body .article-video-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
}

.article-body .article-video-link a::after {
  content: "Ver video ↗";
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body table,
.article-body pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.article-body table {
  margin: 32px 0;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-body pre {
  padding: 20px;
  border-radius: 10px;
  background: var(--navy);
  color: #e7eef8;
  font-size: 0.85rem;
}

.article-cta {
  padding: 86px 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(40, 103, 215, 0.3), transparent 32%),
    var(--navy);
  color: white;
}

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

.article-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.compact-footer {
  padding-top: 24px;
}

.legal-hero {
  padding-bottom: 84px;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin-bottom: 25px;
}

.legal-hero .container > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  gap: 90px;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 120px;
}

.legal-index {
  position: sticky;
  top: 112px;
  display: flex;
  align-self: start;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--mist);
}

.legal-index strong {
  margin-bottom: 15px;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-index a {
  padding: 7px 0;
  color: #667489;
  font-size: 0.76rem;
}

.legal-content section {
  scroll-margin-top: 110px;
  margin-bottom: 72px;
}

.legal-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content h2 {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 630;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.legal-content h3 {
  margin: 36px 0 12px;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 7px;
}

.legal-contact {
  padding: 38px;
  border-radius: 13px;
  background: var(--mist-blue);
}

.legal-contact a {
  color: var(--blue);
  font-weight: 600;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy);
  background-size: 64px 64px;
  color: white;
}

.error-page main {
  position: relative;
  z-index: 1;
  max-width: 790px;
  text-align: center;
}

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

.error-page h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.error-page main > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 34px;
  color: #aabbd0;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.error-orbit {
  display: grid;
  width: 130px;
  height: 130px;
  margin: 0 auto 34px;
  place-items: center;
  border: 1px solid rgba(73, 134, 236, 0.36);
  border-radius: 50%;
  box-shadow:
    0 0 0 25px rgba(73, 134, 236, 0.05),
    0 0 0 50px rgba(73, 134, 236, 0.025);
}

.error-orbit span {
  font-size: 3rem;
}

.success-page h1 {
  max-width: 900px;
}

.success-orbit {
  border-color: rgba(64, 215, 150, 0.4);
  box-shadow:
    0 0 0 25px rgba(64, 215, 150, 0.05),
    0 0 0 50px rgba(64, 215, 150, 0.025);
}

.success-orbit span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.8rem;
  font-weight: 650;
}

@media (hover: hover) and (pointer: fine) {
  .footer-grid a:hover,
  .footer-bottom a:hover {
    color: white;
  }

  .whatsapp-float:hover {
    box-shadow: 0 18px 38px rgba(32, 185, 107, 0.32);
    transform: translateY(-3px);
  }

  .blog-card:hover {
    border-color: #c0ccda;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
  }

  .subpage-nav > a:not(.button):hover,
  .legal-index a:hover {
    color: var(--blue);
  }
}

/* Motion */

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Responsive */

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

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 5.3vw, 4.9rem);
  }

  .floating-card-top {
    right: -10px;
  }

  .floating-card-bottom {
    left: -10px;
  }

  .stage-image {
    height: 390px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 96px 0;
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 80px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    padding-bottom: 10px;
  }

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

  .product-stage {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 40px 30px 74px;
  }

  .stage-window {
    margin: 0 auto;
    transform: none;
  }

  .stage-orbit {
    right: -5%;
  }

  .capability-bar {
    overflow-x: auto;
    justify-content: flex-start;
    margin-top: 10px;
    scrollbar-width: none;
  }

  .capability-bar::-webkit-scrollbar {
    display: none;
  }

  .capability-bar span {
    flex: 0 0 auto;
  }

  .split-heading,
  .statement-grid,
  .solutions-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    max-width: 620px;
  }

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

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(n + 5) {
    border-bottom: 0;
  }

  .statement-grid {
    gap: 45px;
  }

  .statement-mark {
    width: min(100%, 360px);
    min-height: 300px;
    margin: 0 auto;
  }

  .solutions-grid {
    gap: 60px;
  }

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

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 52px 0;
  }

  .process-list p {
    min-height: auto;
  }

  .about-grid {
    gap: 70px;
  }

  .about-copy {
    max-width: 760px;
  }

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

  .resource-card-featured {
    grid-column: 1 / -1;
  }

  .faq-intro,
  .contact-intro {
    position: static;
  }

  .faq-grid,
  .contact-grid {
    gap: 60px;
  }

  .contact-intro {
    max-width: 760px;
  }

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

  .contact-direct > * {
    padding-right: 20px;
    border-right: 1px solid var(--line-dark);
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout {
    grid-template-columns: minmax(0, 780px);
    gap: 48px;
  }

  .article-aside {
    position: static;
    max-width: 520px;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .header-inner {
    height: 72px;
  }

  .brand {
    width: 164px;
  }

  .subpage .brand {
    width: 146px;
  }

  .mobile-menu {
    top: 72px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 5.1rem);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-meta {
    margin-top: 34px;
  }

  .product-stage {
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 32px 0 70px;
  }

  .stage-window {
    border-radius: 11px;
  }

  .stage-toolbar {
    height: 46px;
  }

  .stage-status {
    display: none;
  }

  .stage-image {
    height: 320px;
  }

  .stage-footer {
    justify-content: flex-start;
  }

  .stage-footer span:last-child {
    display: none;
  }

  .floating-card-top {
    top: 14px;
    right: -5px;
  }

  .floating-card-bottom {
    bottom: 28px;
    left: -5px;
  }

  .stage-orbit {
    top: 0;
    right: -65%;
  }

  .capability-bar {
    min-height: 70px;
  }

  .split-heading h2,
  .centered-heading h2,
  .solutions-copy h2,
  .process-heading h2,
  .about-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .services-grid {
    border-radius: 10px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .service-card:last-child {
    border-bottom: 0 !important;
  }

  .service-card p {
    min-height: 0;
  }

  .service-icon {
    margin: 28px 0 23px;
  }

  .statement-section {
    padding: 82px 0;
  }

  .statement-mark {
    width: 280px;
    min-height: 255px;
  }

  .bolt-one {
    top: 55px;
    width: 92px;
    height: 165px;
  }

  .bolt-two {
    top: 85px;
    width: 58px;
    height: 105px;
  }

  .statement-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

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

  .project-card-wide {
    grid-column: auto;
  }

  .project-image,
  .project-card-wide .project-image {
    height: 310px;
  }

  .project-copy {
    padding: 24px;
  }

  .projects-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .projects-cta > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .solutions-grid {
    gap: 48px;
  }

  .solution-row {
    min-height: 92px;
    gap: 13px;
    padding: 14px 16px;
  }

  .solution-row small {
    display: none;
  }

  .board-header {
    padding: 0 16px;
  }

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

  .process-list li {
    padding-right: 0;
  }

  .timeline::before {
    left: 42px;
  }

  .timeline li {
    grid-template-columns: 72px 1fr;
    gap: 15px;
  }

  .timeline-year {
    width: 55px;
  }

  .reasons {
    padding-top: 12px;
  }

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

  .reasons-grid article {
    min-height: 230px;
  }

  .reason-symbol {
    margin-bottom: 32px;
  }

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

  .resource-card-featured {
    grid-column: auto;
  }

  .resource-card {
    min-height: 280px;
  }

  .accordion summary {
    min-height: 78px;
    font-size: 0.96rem;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-intro h2 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .contact-direct > * {
    padding-right: 0;
    border-right: 0;
  }

  .contact-form {
    padding: 28px 22px;
    border-radius: 12px;
  }

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

  .form-full {
    grid-column: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 22px;
  }

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

  .subpage-nav {
    gap: 0;
  }

  .subpage-nav .button {
    display: inline-flex;
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .blog-hero,
  .legal-hero {
    padding: 82px 0 72px;
  }

  .blog-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog-hero h1,
  .legal-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .blog-archive {
    padding: 48px 0 80px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 300px;
  }

  .blog-card-meta {
    margin-bottom: 44px;
  }

  .blog-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero {
    padding: 70px 0 76px;
  }

  .article-back {
    margin-bottom: 45px;
  }

  .article-hero h1 {
    margin-bottom: 36px;
    font-size: clamp(2.65rem, 11vw, 4.5rem);
  }

  .article-layout {
    padding-top: 66px;
    padding-bottom: 84px;
  }

  .article-body {
    font-size: 0.96rem;
  }

  .article-cta {
    padding: 72px 0;
  }

  .article-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .legal-index {
    position: static;
  }

  .legal-contact {
    padding: 28px;
  }

  .error-actions {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .subpage .brand {
    width: 120px;
  }

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

  .stage-image {
    height: 250px;
  }

  .floating-card-top {
    display: none;
  }

  .floating-card-bottom {
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .article-hero h1 {
    font-size: 2.35rem;
  }

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

  .article-aside {
    padding: 21px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Light visual direction */

.desktop-nav a,
.subpage-nav > a:not(.button) {
  color: #3e4c61;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.button {
  font-weight: 650;
}

.eyebrow,
.service-number,
.service-link,
.project-tags,
.resource-category,
.blog-card-meta span,
.article-aside-label,
.legal-kicker,
.contact-direct span,
.footer-grid h2 {
  font-weight: 650;
}

.hero h1,
.statement-copy h2,
.contact-intro h2,
.blog-hero h1,
.legal-hero h1,
.article-hero h1,
.blog-cta h2,
.article-cta h2,
.error-page h1 {
  font-weight: 560;
}

.split-heading h2,
.centered-heading h2,
.solutions-copy h2,
.process-heading h2,
.about-copy h2,
.faq-intro h2,
.project-copy h3,
.service-card h3,
.process-list h3,
.timeline h3,
.reasons-grid h3,
.resource-card h3,
.accordion summary,
.blog-card h2,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6,
.legal-content h2 {
  font-weight: 590;
}

.button-dark {
  background: linear-gradient(135deg, #2d6dde 0%, var(--blue) 62%, #1d4fb0 100%);
  box-shadow: 0 10px 26px rgba(40, 103, 215, 0.2);
  color: white;
}

.button-outline {
  border-color: #b9c7d8;
  background: rgba(255, 255, 255, 0.72);
}

.text-link-light {
  border-color: #9fb0c5;
  color: var(--ink);
}

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

.site-header,
.site-header.is-scrolled {
  border-color: rgba(21, 36, 59, 0.09);
  background: rgba(255, 255, 255, 0.94);
}

.menu-button {
  border: 1px solid #d8e1ec;
  background: #f3f6fa;
  box-shadow: 0 8px 22px rgba(21, 36, 59, 0.08);
}

.menu-button span {
  background: var(--ink);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 8%, rgba(40, 103, 215, 0.1), transparent 34%),
    #ffffff;
  color: var(--ink);
}

.mobile-menu nav > a {
  border-color: var(--line);
  font-weight: 520;
}

.mobile-menu nav > a > span,
.mobile-menu-meta {
  color: #718096;
}

.mobile-menu nav .mobile-menu-cta {
  background: var(--blue);
  color: white;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(40, 103, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 103, 215, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, rgba(36, 183, 235, 0.13), transparent 34%),
    radial-gradient(circle at 6% 72%, rgba(255, 197, 47, 0.12), transparent 28%),
    #f8fafc;
  color: var(--ink);
}

.hero::before {
  background: linear-gradient(transparent, rgba(40, 103, 215, 0.13), transparent);
}

.hero-glow-one {
  background: radial-gradient(circle, rgba(40, 103, 215, 0.12), transparent 68%);
}

.hero-glow-two {
  background: radial-gradient(circle, rgba(255, 123, 50, 0.1), transparent 68%);
}

.hero h1 span {
  background: linear-gradient(95deg, #1d4fb0 2%, #2867d7 48%, #0d9ece 72%, #d9791d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.hero-meta p {
  color: var(--ink-soft);
}

.hero-meta a {
  color: var(--ink);
}

.hero-avatars span {
  border-color: #f8fafc;
  background: linear-gradient(135deg, #e3edfb, #c9dcf5);
  color: #385273;
}

.stage-window {
  border-color: #d7e1ed;
  background: white;
  box-shadow:
    0 38px 90px rgba(21, 36, 59, 0.18),
    0 0 0 10px rgba(40, 103, 215, 0.035);
}

.stage-toolbar {
  border-color: var(--line);
  background: #f8fafc;
  color: #66758a;
}

.toolbar-dots span {
  background: #b6c2d2;
}

.stage-status {
  color: #4f6077;
}

.stage-footer {
  border-top: 1px solid var(--line);
  background: white;
  color: #718096;
}

.stage-footer span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.floating-card {
  border-color: rgba(190, 204, 221, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(21, 36, 59, 0.16);
}

.floating-card strong {
  color: var(--ink);
}

.floating-card small {
  color: #718096;
}

.capability-bar {
  border-color: var(--line);
  color: #64748b;
  font-weight: 600;
}

.capability-bar i {
  background: #b2c0d1;
}

.statement-section {
  border-top: 1px solid #dbe6f3;
  border-bottom: 1px solid #dbe6f3;
  background:
    radial-gradient(circle at 10% 50%, rgba(40, 103, 215, 0.11), transparent 29%),
    linear-gradient(115deg, #f4f8ff, #edf4ff 62%, #f9fbff);
  color: var(--ink);
}

.statement-section::after {
  border-color: rgba(40, 103, 215, 0.1);
}

.statement-copy > p {
  color: var(--ink-soft);
}

.orbit-ring {
  border-color: rgba(40, 103, 215, 0.27);
}

.project-index {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(21, 36, 59, 0.12);
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 8%, rgba(40, 103, 215, 0.09), transparent 28%),
    #f8fafc;
  color: var(--ink);
}

.process::before {
  border-color: rgba(40, 103, 215, 0.06);
}

.process-heading > p,
.process-list p {
  color: var(--ink-soft);
}

.process-number,
.process-time {
  color: #667b95;
}

.process-line {
  background: #cad6e4;
}

.process-line::before {
  border-color: #f8fafc;
}

.reason-symbol,
.accordion details[open] summary span,
.form-step {
  background: var(--blue);
  color: white;
}

.resource-card-featured {
  border-color: #cbdcf4;
  background:
    radial-gradient(circle at 88% 8%, rgba(40, 103, 215, 0.14), transparent 38%),
    linear-gradient(145deg, #f4f8ff, #eaf2ff);
  color: var(--ink);
}

.resource-card-featured::before {
  border-color: rgba(40, 103, 215, 0.12);
  box-shadow:
    0 0 0 48px rgba(40, 103, 215, 0.025),
    0 0 0 96px rgba(40, 103, 215, 0.015);
}

.resource-card-featured .resource-category {
  color: var(--blue);
}

.resource-card-featured .resource-meta {
  color: #65758b;
}

.resource-card-featured .resource-arrow {
  border-color: #b9cbe2;
  color: var(--blue);
}

.contact-section {
  border-top: 1px solid #dbe5f1;
  background:
    radial-gradient(circle at 12% 24%, rgba(40, 103, 215, 0.11), transparent 31%),
    radial-gradient(circle at 92% 82%, rgba(36, 183, 235, 0.08), transparent 28%),
    #f2f6fc;
  color: var(--ink);
}

.contact-orbit {
  border-color: rgba(40, 103, 215, 0.1);
  box-shadow:
    0 0 0 100px rgba(40, 103, 215, 0.018),
    0 0 0 200px rgba(40, 103, 215, 0.012);
}

.contact-intro > p {
  color: var(--ink-soft);
}

.contact-direct {
  border-color: #cad6e4;
}

.contact-direct > * {
  border-color: #cad6e4;
}

.contact-direct span {
  color: #607188;
}

.contact-direct strong {
  color: var(--ink);
  font-weight: 530;
}

.contact-form {
  border-color: #d6e0eb;
  background: white;
  box-shadow: 0 30px 75px rgba(21, 36, 59, 0.14);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.footer-brand p,
.footer-bottom {
  color: #66758a;
}

.footer-grid h2 {
  color: #64748b;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  color: #3f4f65;
}

.footer-bottom {
  border-color: var(--line);
}

.blog-hero,
.legal-hero,
.article-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(40, 103, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 103, 215, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(40, 103, 215, 0.12), transparent 33%),
    #f6f9fd;
  color: var(--ink);
}

.blog-hero::after,
.legal-hero::after,
.article-hero::after {
  border-color: rgba(40, 103, 215, 0.14);
  box-shadow:
    0 0 0 70px rgba(40, 103, 215, 0.02),
    0 0 0 140px rgba(40, 103, 215, 0.012);
}

.blog-hero-grid > p,
.legal-hero .container > p:last-child,
.error-page main > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.article-back {
  border-color: #aebdd0;
  color: #53647b;
}

.article-meta {
  border-color: #ced9e6;
  color: #607188;
}

.article-meta span {
  color: #70829a;
}

.blog-cta,
.article-cta {
  border-top: 1px solid #d8e4f2;
  border-bottom: 1px solid #d8e4f2;
  background:
    radial-gradient(circle at 82% 18%, rgba(40, 103, 215, 0.11), transparent 31%),
    #edf4ff;
  color: var(--ink);
}

.article-body pre {
  border: 1px solid var(--line);
  background: #f2f5f9;
  color: #26364c;
}

.error-page {
  background:
    linear-gradient(rgba(40, 103, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 103, 215, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(40, 103, 215, 0.12), transparent 32%),
    #f7f9fc;
  color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .button-dark:hover,
  .button-outline:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: white;
  }

  .text-link-light:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .service-card:hover .service-arrow,
  .resource-card:hover .resource-arrow {
    background: var(--blue);
    color: white;
  }

  .resource-card-featured:hover .resource-arrow {
    background: white;
    color: var(--blue);
  }

  .footer-grid a:hover,
  .footer-bottom a:hover {
    color: var(--blue);
  }
}

@media (max-width: 440px) {
  .subpage .brand {
    width: 110px;
  }

  .subpage-nav .button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.68rem;
  }
}

/* SEO service architecture */
.service-page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 104px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(40, 103, 215, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 103, 215, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(40, 103, 215, 0.13), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(255, 123, 50, 0.08), transparent 30%),
    #f7f9fc;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 72px;
  color: #64748b;
  font-size: 0.77rem;
  font-weight: 520;
  letter-spacing: 0.025em;
}

.breadcrumbs a {
  transition: color 160ms var(--ease-out);
}

.breadcrumbs span[aria-hidden] {
  color: #a5b2c2;
}

.service-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.62fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: end;
}

.service-page-hero h1 {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5.9vw, 6.4rem);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.service-page-summary {
  padding-bottom: 8px;
}

.service-page-summary > p {
  margin-bottom: 32px;
  color: #46566d;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

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

.service-page-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 850px);
  gap: clamp(56px, 9vw, 132px);
  justify-content: center;
  padding-top: 112px;
  padding-bottom: 128px;
}

.service-page-index {
  position: sticky;
  top: 116px;
  display: grid;
  align-self: start;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid #bdcadd;
  border-bottom: 1px solid #d9e2ed;
}

.service-page-index strong {
  margin-bottom: 12px;
  color: #506178;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-page-index a {
  padding: 8px 0;
  color: #637289;
  font-size: 0.79rem;
  line-height: 1.45;
  transition: color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.service-page-index a:last-child {
  margin-top: 10px;
  color: var(--blue);
  font-weight: 600;
}

.service-copy-section {
  padding: 0 0 88px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 88px;
  scroll-margin-top: 128px;
}

.service-copy-section:last-child {
  margin-bottom: 0;
}

.service-copy-section > h2 {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  font-weight: 590;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.service-copy-section > p:not(.legal-kicker) {
  max-width: 760px;
  color: #485970;
  font-size: 1.04rem;
  line-height: 1.85;
}

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

.service-capability-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid #d7e1ed;
  border-radius: 20px;
  background: #fbfcfe;
  box-shadow: 0 18px 38px rgba(21, 36, 59, 0.045);
}

.service-capability-grid article > span {
  display: block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.service-capability-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.service-capability-grid p {
  margin-bottom: 0;
  color: #607086;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.service-check-list li {
  position: relative;
  padding-left: 31px;
  color: #485970;
  line-height: 1.65;
}

.service-check-list li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  content: "✓";
  font-size: 0.67rem;
  font-weight: 700;
  place-items: center;
}

.service-proof {
  display: grid;
  gap: 4px;
  margin-top: 48px;
  padding: 28px 30px;
  border: 1px solid #cfdbeb;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 103, 215, 0.1), transparent 38%),
    #f3f7fd;
}

.service-proof strong {
  margin-bottom: 8px;
  color: #65758b;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-proof a {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #dce5f0;
  color: #273a56;
  font-weight: 570;
}

.service-proof a:last-child {
  border-bottom: 0;
}

.service-proof a span {
  color: var(--blue);
}

.service-process-list {
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.service-process-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.service-process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-process-list li > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.service-process-list h3 {
  margin-bottom: 7px;
  font-size: 1.14rem;
  font-weight: 610;
}

.service-process-list p {
  margin-bottom: 0;
  color: #607086;
}

.service-investment-note {
  margin-top: 44px;
  padding: 28px 30px;
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: #fff8f3;
}

.service-investment-note strong {
  display: block;
  margin-bottom: 7px;
  color: #8b421b;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-investment-note p {
  margin-bottom: 0;
  color: #624c40;
  line-height: 1.75;
}

.service-faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.service-faq-list details {
  border-bottom: 1px solid var(--line);
}

.service-faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: #263953;
  cursor: pointer;
  font-weight: 590;
  list-style: none;
}

.service-faq-list summary::-webkit-details-marker {
  display: none;
}

.service-faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-size: 1.2rem;
}

.service-faq-list details[open] summary::after {
  content: "–";
}

.service-faq-list details p {
  max-width: 700px;
  padding: 0 40px 26px 0;
  margin-bottom: 0;
  color: #607086;
}

.related-services {
  padding: 112px 0;
  border-top: 1px solid var(--line);
  background: #f6f9fd;
}

.related-services .section-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
}

.related-services .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 590;
  letter-spacing: -0.055em;
}

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

.related-services-grid > a,
.service-hub-secondary article {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid #d5e0ec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 36, 59, 0.05);
}

.related-services-grid h3,
.service-hub-secondary h2 {
  margin-bottom: 15px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.related-services-grid p,
.service-hub-secondary article > p:not(.legal-kicker) {
  color: #65748a;
  font-size: 0.9rem;
  line-height: 1.7;
}

.related-services-grid > a > span {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 620;
}

.related-services-grid i {
  font-style: normal;
}

.service-page-cta .container {
  align-items: center;
}

.service-page-cta p {
  max-width: 630px;
  color: #5c6d83;
}

.seo-services-directory {
  padding: 120px 0 132px;
}

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

.seo-services-directory .section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.seo-services-directory .section-heading > p {
  margin-bottom: 0;
  color: #5f6f85;
}

.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition:
    background 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.seo-service-index {
  margin-bottom: 64px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.seo-service-card h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.seo-service-card p {
  color: #64748a;
  font-size: 0.88rem;
  line-height: 1.7;
}

.seo-service-link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  color: #365277;
  font-size: 0.8rem;
  font-weight: 600;
}

.seo-service-link i {
  color: var(--blue);
  font-style: normal;
}

.service-hub-guidance {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 123, 50, 0.07), transparent 28%),
    #f7f9fc;
}

.service-hub-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: clamp(64px, 10vw, 150px);
}

.service-hub-guidance h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.service-hub-guidance-grid > div:last-child {
  color: #52637a;
  font-size: 1.04rem;
  line-height: 1.85;
}

.service-hub-secondary {
  padding: 112px 0;
}

.service-hub-secondary article .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.article-service-link {
  margin-top: 64px;
  padding: 34px;
  border: 1px solid #cfdbeb;
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 103, 215, 0.1), transparent 42%),
    #f4f8fd;
}

.article-service-link h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.article-service-link > p:not(.legal-kicker) {
  color: #5b6c82;
}

@media (hover: hover) and (pointer: fine) {
  .breadcrumbs a:hover,
  .service-page-index a:hover {
    color: var(--blue);
  }

  .service-page-index a:hover {
    transform: translateX(3px);
  }

  .service-proof a:hover {
    color: var(--blue);
  }

  .related-services-grid > a:hover,
  .seo-service-card:hover {
    background: #f0f5fc;
  }

  .seo-service-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 980px) {
  .service-page-hero {
    padding: 40px 0 80px;
  }

  .breadcrumbs {
    margin-bottom: 52px;
  }

  .service-page-hero-grid,
  .service-hub-guidance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-page-summary {
    max-width: 720px;
  }

  .service-page-layout {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 84px;
    padding-bottom: 96px;
  }

  .service-page-index {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 20px;
  }

  .service-page-index strong {
    grid-column: 1 / -1;
  }

  .seo-services-directory .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seo-service-grid,
  .related-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-services-grid > a:last-child,
  .service-hub-secondary article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .service-page-hero {
    padding: 28px 0 64px;
    background-size: 32px 32px, 32px 32px, auto, auto, auto;
  }

  .breadcrumbs {
    margin-bottom: 42px;
    font-size: 0.7rem;
  }

  .service-page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
    line-height: 1;
  }

  .service-page-summary > p {
    font-size: 1rem;
  }

  .service-page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-page-actions .button {
    justify-content: center;
  }

  .service-page-index {
    display: none;
  }

  .service-page-layout {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .service-copy-section {
    padding-bottom: 64px;
    margin-bottom: 64px;
  }

  .service-capability-grid,
  .service-check-list,
  .seo-service-grid,
  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .service-capability-grid article {
    min-height: auto;
    padding: 24px;
  }

  .service-capability-grid article > span {
    margin-bottom: 28px;
  }

  .service-check-list {
    gap: 16px;
  }

  .related-services {
    padding: 84px 0;
  }

  .related-services .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-services-grid > a,
  .related-services-grid > a:last-child,
  .service-hub-secondary article,
  .service-hub-secondary article:last-child {
    min-height: 240px;
    grid-column: auto;
  }

  .seo-services-directory {
    padding: 84px 0 96px;
  }

  .seo-service-card {
    min-height: 300px;
    padding: 26px;
  }

  .seo-service-index {
    margin-bottom: 44px;
  }

  .service-hub-guidance,
  .service-hub-secondary {
    padding: 84px 0;
  }

  .article-service-link {
    padding: 26px;
  }
}
