:root {
  --ink: #061d3d;
  --ink-2: #0b2f5b;
  --muted: #667282;
  --paper: #fbf7ee;
  --white: #ffffff;
  --soft: #f2f8f5;
  --line: #dce4ea;
  --orange: #ff5a1f;
  --orange-2: #ff8b2a;
  --mint: #66d6b4;
  --blue: #4ca7d8;
  --plum: #6f4bb8;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(6, 29, 61, .15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(6, 29, 61, .045) 1px, transparent 1px),
    linear-gradient(rgba(255, 90, 31, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  animation: gridDrift 28s linear infinite;
  line-height: 1.6;
  overflow-x: clip;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 228, 234, .82);
  background: rgba(251, 247, 238, .9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.brand-logo {
  width: min(238px, 52vw);
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform .22s ease, filter .22s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(6, 29, 61, .14));
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 29, 61, .13);
  transition: transform .22s ease, box-shadow .22s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-3deg) translateY(-1px);
  box-shadow: 0 16px 34px rgba(6, 29, 61, .18);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.btn {
  border: 0;
  border-radius: 8px;
  min-height: 40px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .32) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 36px rgba(255, 90, 31, .28);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(255, 90, 31, .32);
}

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

.btn-secondary:hover {
  border-color: rgba(255, 90, 31, .45);
}

.nav-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(102, 214, 180, .18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -120px;
  height: 230px;
  background: repeating-linear-gradient(90deg, rgba(6, 29, 61, .08) 0 20px, rgba(255, 90, 31, .14) 20px 40px);
  transform: rotate(-2deg);
  animation: stripeShift 18s ease-in-out infinite alternate;
  z-index: 0;
}

.story-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.story-shapes span {
  position: absolute;
  border-radius: 8px;
  border: 2px solid rgba(6, 29, 61, .12);
  animation: drift 10s ease-in-out infinite;
}

.story-shapes span:nth-child(1) {
  width: 170px;
  height: 170px;
  left: -64px;
  top: 120px;
  transform: rotate(12deg);
}

.story-shapes span:nth-child(2) {
  width: 110px;
  height: 110px;
  right: 12%;
  top: 120px;
  border-color: rgba(255, 90, 31, .25);
  animation-delay: -4s;
}

.story-shapes span:nth-child(3) {
  width: 160px;
  height: 160px;
  right: -60px;
  bottom: 56px;
  border-color: rgba(102, 214, 180, .34);
  animation-delay: -7s;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }

  50% {
    transform: translate3d(14px, -14px, 0) rotate(-2deg);
  }
}

@keyframes gridDrift {
  to {
    background-position: 34px 34px, 34px 34px, 0 0;
  }
}

@keyframes stripeShift {
  to {
    transform: translateY(-12px) rotate(-2deg);
  }
}

.hero-shell {
  position: relative;
  z-index: 2;
  padding: 54px 0 48px;
  display: grid;
  gap: 22px;
}

.hero-shell > * {
  min-width: 0;
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: .95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.hero-copy .lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.story-board,
.brief-panel,
.faq-item,
.form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 44px rgba(6, 29, 61, .08);
}

.story-board {
  min-height: 100%;
  padding: 18px;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(76, 167, 216, .14), transparent 46%),
    rgba(255, 255, 255, .86);
}

.board-card {
  min-width: 0;
  min-height: 128px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 6px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.board-card:hover {
  animation: none;
  transform: translateY(-5px);
  border-color: rgba(255, 90, 31, .36);
  box-shadow: 0 18px 46px rgba(6, 29, 61, .12);
}

.board-card span {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-weight: 950;
  font-size: 13px;
}

.board-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

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

.card-large {
  background: var(--ink);
  color: #fff;
  animation: cardFloat 7s ease-in-out infinite;
}

.card-large p {
  color: #d8e4ed;
}

.card-tilt {
  transform: rotate(-1.4deg);
  border-color: rgba(255, 90, 31, .28);
  animation: tiltFloat 7.5s ease-in-out infinite;
}

.card-dark {
  background:
    linear-gradient(135deg, rgba(102, 214, 180, .2), transparent 44%),
    var(--ink-2);
  color: #fff;
  animation: cardFloat 8s ease-in-out infinite reverse;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes tiltFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1.4deg);
  }

  50% {
    transform: translateY(-7px) rotate(-.5deg);
  }
}

.card-dark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 4px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.brief-panel {
  min-width: 0;
  padding: 20px;
  border-top: 4px solid var(--orange);
}

.brief-panel p {
  color: var(--muted);
}

.form {
  margin-top: 16px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdbe3;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 90, 31, .16);
  border-color: var(--orange);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

section {
  padding: 50px 0;
}

.angle {
  background: #fff;
}

.angle-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.angle-media,
.services-media,
.process-media,
.deliverables-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 29, 61, .1);
}

.angle-media img,
.services-media img,
.process-media img,
.deliverables-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  animation: imageBreath 18s ease-in-out infinite alternate;
  transition: transform .7s ease, filter .7s ease;
}

@keyframes imageBreath {
  to {
    transform: scale(1.04) translate3d(1.2%, -1.2%, 0);
  }
}

.angle-media {
  aspect-ratio: 16 / 7;
}

.angle-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-head {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.services {
  background:
    linear-gradient(135deg, rgba(255, 90, 31, .1), transparent 34%),
    #fff;
}

.services-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(102, 214, 180, .16), transparent 46%),
    #fff;
  box-shadow: 0 14px 44px rgba(6, 29, 61, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.services-intro:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 214, 180, .46);
  box-shadow: 0 22px 58px rgba(6, 29, 61, .12);
}

.services-intro p {
  color: var(--muted);
}

.services-media {
  margin-top: 20px;
  aspect-ratio: 16 / 10;
}

.service-lanes {
  display: grid;
  gap: 12px;
}

.service-lane {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 36px rgba(6, 29, 61, .07);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 90, 31, .08) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events: none;
}

.service-lane:hover,
.service-lane:focus {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, .38);
  box-shadow: 0 20px 54px rgba(6, 29, 61, .12);
  outline: 0;
}

.service-lane:hover::before,
.service-lane:focus::before {
  transform: translateX(120%);
}

.service-lane span {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 950;
  transition: transform .22s ease;
}

.service-lane:hover span,
.service-lane:focus span {
  transform: rotate(-4deg) scale(1.04);
}

.service-lane:nth-child(even) span {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.service-lane p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  color: #fff;
  background: var(--ink);
}

.process .eyebrow {
  color: #ffbe82;
}

.process-wrap {
  display: grid;
  gap: 24px;
}

.process-top {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.process-head {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-media {
  min-height: 260px;
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.process-line {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
}

.process-line article {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(76, 167, 216, .12), transparent 52%),
    #0b2f5b;
  transition: transform .22s ease, background .22s ease;
}

.process-line article:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(102, 214, 180, .18), transparent 52%),
    #123f6f;
}

.process-line span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.process-line p {
  margin-bottom: 0;
  color: #dfe9f0;
}

.deliverables {
  background: var(--soft);
}

.deliverables-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.deliverables-copy {
  min-height: 100%;
  padding: 22px 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.deliverables-media {
  margin-top: 18px;
  aspect-ratio: 16 / 10;
  max-height: 360px;
}

.deliverable-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 100%;
}

.deliverable-list div {
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(6, 29, 61, .07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.deliverable-list div:hover {
  transform: translateX(4px);
  border-left-color: var(--mint);
  box-shadow: 0 18px 46px rgba(6, 29, 61, .1);
}

.deliverable-list strong,
.deliverable-list span {
  display: block;
}

.deliverable-list strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.deliverable-list span {
  color: var(--muted);
}

.faq {
  background:
    linear-gradient(135deg, rgba(255, 90, 31, .06), transparent 38%),
    var(--paper);
}

.faq-head {
  max-width: 680px;
  margin-bottom: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-button span:last-child {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  flex: 0 0 auto;
  transition: transform .22s ease;
}

.faq-item.is-open .faq-button span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.site-footer {
  padding: 44px 0 22px;
  color: #e9f1f6;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, .16), transparent 36%),
    var(--ink);
}

.footer-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  color: #fff;
}

.footer-logo .brand-logo {
  width: min(250px, 70vw);
  background: rgba(255, 255, 255, .96);
  padding: 4px 8px;
}

.footer-logo .brand-mark {
  box-shadow: none;
}

.footer-grid p {
  color: #dce8ef;
  margin-bottom: 0;
}

.copyright {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.footer-contact p + p {
  margin-top: 5px;
}

.footer-grid a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #fff;
  font-weight: 750;
}

.footer-links a {
  transition: color .2s ease, transform .2s ease;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 29, 61, .68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(102, 214, 180, .12), rgba(255, 90, 31, .1)),
    #fff;
  box-shadow: 0 30px 80px rgba(6, 29, 61, .3);
}

.modal-card img {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.modal-card h2 {
  margin-bottom: 8px;
}

.modal-card p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--orange));
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background:
    linear-gradient(135deg, rgba(102, 214, 180, .14), transparent 34%),
    var(--paper);
}

.response-card {
  max-width: 720px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.response-card h1 {
  margin-top: 24px;
  font-size: clamp(36px, 5vw, 56px);
}

.legal-main {
  padding: 46px 0 64px;
  background: #fff;
}

.legal-main article {
  max-width: 860px;
}

.legal-main h1 {
  font-size: clamp(36px, 6vw, 56px);
}

.legal-main h2 {
  margin-top: 26px;
  font-size: 24px;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: flex;
  box-shadow: 0 18px 48px rgba(6, 29, 61, .28);
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (min-width: 720px) {
  .angle-grid,
  .services-layout,
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .angle-media {
    grid-column: 1 / -1;
  }

  .process-top {
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  }

  .process-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(260px, 1.2fr) minmax(220px, .8fr) minmax(170px, .5fr);
  }
}

@media (min-width: 940px) {
  .nav-links,
  .nav-cta {
    display: inline-flex;
  }

  .hero-shell {
    grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
    padding: 62px 0 54px;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo {
    width: min(200px, 62vw);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .hero-shell {
    padding: 38px 0 30px;
  }

  .story-shapes span:nth-child(2) {
    display: none;
  }

  h1 {
    font-size: 32px;
    line-height: 1;
  }

  h2 {
    font-size: 25px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .story-board,
  .brief-panel,
  .services-intro,
  .service-lane,
  .process-line article,
  .deliverable-list div {
    padding: 16px;
  }

  .services-intro {
    position: static;
  }

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

  .angle-media,
  .services-media,
  .process-media,
  .deliverables-media {
    aspect-ratio: 4 / 3;
  }

  .process-media {
    min-height: 0;
  }
}
