:root {
  color-scheme: dark;
  --blue-900: #0a1128;
  --blue-800: #121d3a;
  --blue-700: #1c2b4b;
  --blue-500: #2b4570;
  --cyan: #38bdf8;
  --aqua: #2dd4bf;
  --teal: #14b8a6;
  --green: #22c55e;
  --rose: #f43f5e;
  --violet: #8b5cf6;
  --gold: #fbbf24;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --bg: #030712;
  --surface: #111827;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

section {
  scroll-margin-top: 92px;
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  font-weight: 850;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 4.8vw, 4.7rem);
  line-height: 1.02;
  font-weight: 830;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.06rem, 1.5vw, 1.35rem);
  line-height: 1.18;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(3, 7, 18, 0.6);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(12, 45, 87, 0.14));
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.brand-copy small {
  max-width: 245px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.18;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(12, 45, 87, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(12, 45, 87, 0.18);
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(100svh - 82px), 800px);
  overflow: hidden;
  background: var(--blue-900);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(56, 189, 248, 0.15), transparent 40%),
    radial-gradient(circle at 18% 70%, rgba(139, 92, 246, 0.15), transparent 40%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.96) 0%, rgba(3, 7, 18, 0.88) 42%, rgba(3, 7, 18, 0.3) 78%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.1), rgba(3, 7, 18, 0.7)),
    url("assets/hero-infrastructure.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100% - 44px, var(--max));
  min-height: clamp(640px, calc(100svh - 82px), 800px);
  margin: 0 auto;
  padding: 70px 0 88px;
}

.hero-logo {
  width: clamp(78px, 11vw, 132px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.38));
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.hero .eyebrow,
.services .eyebrow {
  color: #fff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--aqua));
  color: #1c2741;
  box-shadow: 0 18px 38px rgba(81, 214, 201, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible,
.header-contact:hover,
.header-contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25);
}

.hero-mail {
  width: fit-content;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(81, 214, 201, 0.7);
  text-underline-offset: 5px;
}

.section {
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
  padding: clamp(66px, 9vw, 118px) 0;
}

.section-intro {
  max-width: 800px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.section-intro p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.04rem;
}

.section-intro.centered p:not(.eyebrow) {
  margin-inline: auto;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(34px, 7vw, 86px);
  background: var(--surface);
  border-radius: 16px;
  padding: clamp(34px, 7vw, 64px);
  margin-top: 40px;
  box-shadow: var(--shadow);
}

.experience-title h2 span {
  display: block;
  color: var(--blue-500);
  font-size: clamp(4.7rem, 12vw, 8.6rem);
  line-height: 0.8;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.metrics article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 12px;
  border: 3px solid rgba(60, 141, 204, 0.38);
  border-radius: 50%;
  color: var(--blue-700);
  font-weight: 950;
}

.metrics strong {
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.metrics p {
  max-width: 230px;
  margin: 10px 0 0;
}

.competencies {
  background: transparent;
}

.competency-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.competency-card {
  position: relative;
  min-height: 280px;
  padding: 22px;
  border-radius: 12px;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.competency-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.4);
}

.competency-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border: 14px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.competency-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 70px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-weight: 950;
}

.competency-card h3,
.competency-card p {
  position: relative;
  z-index: 1;
}

.competency-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.competency-card.blue { border-top: 3px solid var(--blue-500); }
.competency-card.rose { border-top: 3px solid var(--rose); }
.competency-card.green { border-top: 3px solid var(--green); }
.competency-card.teal { border-top: 3px solid var(--teal); }
.competency-card.violet { border-top: 3px solid var(--violet); }

.competency-card.blue span { color: var(--blue-500); }
.competency-card.rose span { color: var(--rose); }
.competency-card.green span { color: var(--green); }
.competency-card.teal span { color: var(--teal); }
.competency-card.violet span { color: var(--violet); }

.expertise {
  background: transparent;
}

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

.expertise-grid article {
  position: relative;
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(60, 141, 204, 0.08), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.expertise-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 142px;
  height: 142px;
  border: 18px solid rgba(12, 45, 87, 0.06);
  border-radius: 50%;
}

.expertise-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  color: #fff;
  font-weight: 950;
}

.expertise-grid h3,
.expertise-grid p {
  position: relative;
  z-index: 1;
}

.expertise-grid p {
  margin-bottom: 0;
}

.services {
  background:
    radial-gradient(circle at 50% 0%, rgba(81, 214, 201, 0.18), transparent 28%),
    linear-gradient(135deg, #071a36, var(--blue-900));
  color: #fff;
}

.services-inner {
  padding-top: clamp(74px, 10vw, 126px);
  padding-bottom: clamp(78px, 10vw, 132px);
}

.section-intro.light p,
.services .section-intro h2 {
  color: #fff;
}

.service-stack {
  display: grid;
  gap: 34px;
  max-width: 690px;
  margin: 0 auto;
}

.service-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: #4091cf;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service-card.dark {
  background: #1a467c;
}

.service-card h3 {
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.service-card li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.03rem;
}

.service-card li + li {
  margin-top: 22px;
}

.service-card li svg {
  display: block;
  flex-shrink: 0;
}

.blueprint {
  background:
    radial-gradient(circle at 85% 15%, rgba(81, 214, 201, 0.12), transparent 28%),
    var(--bg);
}

.blueprint-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr);
  gap: 18px;
  align-items: stretch;
}

.blueprint-core,
.blueprint-steps article,
.blueprint-outcomes {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blueprint-core {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(150deg, rgba(12, 45, 87, 0.92), rgba(30, 95, 168, 0.9)),
    var(--blue-900);
  color: #fff;
  overflow: hidden;
}

.blueprint-core img {
  width: 92px;
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.3));
}

.blueprint-core span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blueprint-core h3 {
  max-width: 360px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.blueprint-core p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.blueprint-steps article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
}

.blueprint-steps article:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 158px;
  background:
    linear-gradient(135deg, rgba(81, 214, 201, 0.1), transparent 55%),
    var(--surface);
}

.blueprint-steps article::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 16px solid rgba(30, 95, 168, 0.06);
  border-radius: 50%;
}

.blueprint-steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  color: #fff;
  font-weight: 950;
}

.blueprint-steps h3,
.blueprint-steps p {
  position: relative;
  z-index: 1;
}

.blueprint-steps p {
  margin-bottom: 0;
}

.blueprint-outcomes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.blueprint-outcomes h3 {
  margin-bottom: 0;
  color: var(--cyan);
}

.blueprint-outcomes ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.blueprint-outcomes li {
  display: grid;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.method {
  background: transparent;
}

.animated-infographic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.flow-node .circle {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--blue-900);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.flow-node .circle.pulse {
  animation: pulse-glow 6s infinite ease-in-out;
}

.flow-node .label {
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.flow-connector {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin: -35px 15px 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.flow-connector .line.move {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: move-line 6s infinite linear;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(56, 189, 248, 0.2); transform: scale(1); border-color: var(--cyan); }
  25% { box-shadow: 0 0 35px rgba(139, 92, 246, 0.8); transform: scale(1.05); border-color: var(--violet); color: var(--violet); }
  50% { box-shadow: 0 0 15px rgba(56, 189, 248, 0.2); transform: scale(1); border-color: var(--cyan); color: var(--cyan); }
}

@keyframes move-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(500%); }
}

@media (max-width: 768px) {
  .animated-infographic {
    flex-direction: column;
    padding: 40px 20px;
    gap: 0;
  }
  .flow-connector {
    width: 4px;
    height: 40px;
    margin: 10px 0;
    flex-grow: 0;
  }
  .flow-connector .line.move {
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    animation: move-line-vertical 6s infinite linear;
  }
}

@keyframes move-line-vertical {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(500%); }
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.method-grid span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--blue-900);
  color: #fff;
  font-weight: 950;
}

.ecosystem {
  padding-top: 0;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tech-strip span {
  display: grid;
  place-items: center;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact p {
  max-width: 720px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.contact-actions .button {
  min-height: 46px;
}

.contact-box {
  position: relative;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(81, 214, 201, 0.16), transparent 38%),
    var(--blue-900);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-box img {
  width: 72px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}

.contact-box li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-box li + li {
  margin-top: 10px;
}

.contact-box .button {
  width: 100%;
  margin-top: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(22px, calc((100vw - var(--max)) / 2)) 34px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--blue-800);
  font-weight: 850;
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

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

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



  .blueprint-board {
    grid-template-columns: 1fr;
  }

  .blueprint-core {
    min-height: auto;
  }

  .blueprint-outcomes {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    min-height: 74px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 48px;
    height: 36px;
  }

  .brand-copy small {
    max-width: 150px;
  }

  .brand-copy strong {
    max-width: 170px;
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .header-contact {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - 74px);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 22, 46, 0.9) 0%, rgba(8, 22, 46, 0.82) 62%, rgba(8, 22, 46, 0.58)),
      url("assets/hero-infrastructure.jpg") center right / cover no-repeat;
  }

  .hero-content,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }

  .hero-actions,
  .metrics,
  .competency-grid,
  .expertise-grid,
  .blueprint-steps,
  .method-grid,
  .tech-strip,
  .contact-actions,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .experience-title h2 span {
    font-size: clamp(4rem, 22vw, 6.5rem);
  }

  .service-card li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    font-size: 0.96rem;
  }

  .service-card li span {
    width: 40px;
    height: 40px;
  }

  .blueprint-steps article:nth-child(5) {
    grid-column: auto;
  }

  .blueprint-outcomes ul {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
