:root {
  --ink: #071a2b;
  --blue: #0d5bd7;
  --signal: #e9683b;
  --cream: #f4f0e7;
  --paper: #fbfaf7;
  --white: #fff;
  --muted: #5f6a73;
  --line: rgba(7, 26, 43, 0.15);
  --font-sans: "DM Sans", Arial, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --container: 1240px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(6, 24, 40, 0.18);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

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

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

.section {
  padding: 120px 0;
}

.kicker,
.eyebrow,
.service-label {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker-light {
  color: #7bb1ff;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4.3rem, 7vw, 7.6rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

h3 {
  font-size: 2rem;
  line-height: 1.08;
}

.lead {
  font-size: 1.3rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #094dbb;
}

.button-light {
  color: var(--ink);
  background: var(--cream);
}

.button-light:hover {
  background: var(--white);
}

.button-accent {
  color: var(--white);
  background: var(--signal);
  cursor: pointer;
}

.button-accent:hover {
  background: #d65428;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.dark-link {
  margin-top: 12px;
  color: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 8px 30px rgba(7, 26, 43, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.83rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 105px;
  background:
    radial-gradient(circle at 84% 12%, rgba(13, 91, 215, 0.14), transparent 27%),
    var(--paper);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(13, 91, 215, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: clamp(50px, 7vw, 100px);
}

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

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--signal);
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 36px;
  color: #344550;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

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

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31a36d;
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(49, 163, 109, 0.35);
  border-radius: inherit;
  content: "";
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 16, 27, 0.84));
  content: "";
}

.image-frame img {
  width: 100%;
  height: auto;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 23px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-card {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: -31px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--signal);
  box-shadow: 0 10px 25px rgba(7, 26, 43, 0.15);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-inner {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 44px;
}

.proof-inner > p {
  flex: 0 0 auto;
  margin: 0;
  color: #7f93a4;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-inner ul {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-inner li {
  color: #d7e0e6;
  font-family: var(--font-serif);
  font-size: 1.13rem;
}

.stakes-section {
  background: var(--cream);
}

.stakes-grid {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: 1fr 0.75fr;
  gap: 100px;
}

.stakes-copy {
  padding-top: 42px;
  color: #3d4c55;
}

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

.outcome-card {
  min-height: 280px;
  padding: 38px 38px 20px 0;
  border-right: 1px solid var(--line);
}

.outcome-card:not(:first-child) {
  padding-left: 38px;
}

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

.outcome-number,
.service-index {
  display: block;
  margin-bottom: 56px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
}

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

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

.services-section {
  color: var(--white);
  background: var(--ink);
}

.services-heading {
  display: grid;
  align-items: end;
  margin-bottom: 75px;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 80px;
}

.services-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.services-heading > p {
  margin: 0 0 8px;
  color: #a6b5c0;
  font-size: 1.03rem;
}

.service-row {
  display: grid;
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 0.18fr 0.85fr 1fr;
  gap: 38px;
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-index {
  margin: 7px 0 0;
  color: #7295af;
}

.service-label {
  margin-bottom: 12px;
  color: #7bb1ff;
}

.service-title h3 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-detail {
  max-width: 560px;
  color: #bdc8d0;
}

.service-detail > p {
  font-size: 1.05rem;
}

.service-detail ul {
  display: grid;
  margin: 25px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 18px;
  color: #e4e9ed;
  font-size: 0.85rem;
}

.service-detail li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 42px;
}

.services-cta p {
  margin: 0;
  color: #94a5b2;
  font-size: 0.85rem;
}

.showreel-section {
  background: var(--paper);
}

.showreel-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(60px, 8vw, 120px);
}

.showreel-section h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
}

.showreel-section .section-heading > p:not(.kicker) {
  max-width: 480px;
  color: var(--muted);
}

.reel-switcher {
  display: inline-flex;
  margin-top: 24px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.reel-button {
  padding: 10px 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.reel-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.video-shell {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-shell::before {
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -22px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(13, 91, 215, 0.3);
  content: "";
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-section {
  color: var(--white);
  background: var(--ink);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(60px, 9vw, 140px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-bottom: 7px solid var(--blue);
  object-fit: cover;
  object-position: 100% center;
}

.about-image p {
  position: absolute;
  right: -34px;
  bottom: 44px;
  margin: 0;
  padding: 12px 17px;
  color: var(--white);
  background: var(--signal);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-section .kicker {
  color: #7bb1ff;
}

.about-copy .lead {
  color: #e4e9ed;
}

.about-copy > p:not(.kicker):not(.lead) {
  color: #a6b5c0;
}

.about-section .dark-link {
  color: var(--white);
}

.process-section {
  background: var(--paper);
}

.process-section .section-heading {
  max-width: 710px;
  margin-bottom: 70px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 250px;
  padding: 38px 38px 20px 0;
  border-right: 1px solid var(--line);
  grid-template-rows: 1fr auto;
}

.process-list li:not(:first-child) {
  padding-left: 38px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 10px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 100px;
}

.faq-grid h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 45px 26px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 38px;
  right: 6px;
  width: 15px;
  height: 1px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--muted);
}

.contact-section {
  padding: 120px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 91, 215, 0.28), transparent 44%),
    var(--ink);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

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

.contact-copy h2 {
  font-size: clamp(3.2rem, 5.3vw, 5.4rem);
}

.contact-copy > p:not(.kicker) {
  max-width: 520px;
  color: #afbdc8;
  font-size: 1.05rem;
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.contact-form {
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9da7ad;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form .button {
  width: 100%;
  margin-top: 10px;
  border: 0;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-note.is-success {
  color: #247c53;
  font-weight: 600;
}

.site-footer {
  padding: 58px 0 30px;
  color: var(--white);
  background: #04111d;
}

.footer-top {
  display: grid;
  align-items: center;
  padding-bottom: 45px;
  grid-template-columns: 1fr auto 1fr;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--cream);
}

.footer-top > p {
  margin: 0;
  color: #8799a8;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #b5c1ca;
  font-size: 0.77rem;
  font-weight: 600;
}

.social-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #738798;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

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

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 45px;
  }

  h1 {
    font-size: clamp(4.1rem, 8.5vw, 6.4rem);
  }

  .proof-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .proof-inner ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .service-row {
    grid-template-columns: 60px 0.85fr 1fr;
  }

  .showreel-grid {
    grid-template-columns: 0.72fr 1fr;
    gap: 60px;
  }
}

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

  .section,
  .contact-section {
    padding: 86px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    place-content: center;
    gap: 6px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 90px 40px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  html:not(.js) .menu-toggle {
    display: none;
  }

  html:not(.js) .primary-nav {
    position: static;
    visibility: visible;
    width: auto;
    align-items: flex-end;
    padding: 0;
    color: var(--ink);
    background: transparent;
    opacity: 1;
  }

  html:not(.js) .primary-nav a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
  }

  .primary-nav a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
    padding: 12px 18px;
    border-color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 0.83rem;
  }

  .menu-open .brand,
  .menu-open .menu-toggle {
    color: var(--white);
  }

  .menu-open .brand-mark {
    color: var(--ink);
    background: var(--white);
  }

  .menu-open .menu-toggle span {
    background: var(--white);
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-grid,
  .stakes-grid,
  .services-heading,
  .showreel-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

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

  .stakes-grid {
    gap: 10px;
  }

  .stakes-copy {
    padding-top: 0;
  }

  .services-heading,
  .showreel-grid,
  .faq-grid,
  .contact-grid {
    gap: 55px;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
  }

  .service-detail {
    grid-column: 2;
  }

  .about-image {
    max-width: 600px;
  }

  .contact-copy {
    position: static;
  }
}

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

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 72px;
  }

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

  .hero {
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(3.65rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .text-link {
    align-self: flex-start;
  }

  .image-caption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .signal-card {
    top: -17px;
    left: 14px;
  }

  .proof-inner ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
  }

  .proof-inner li {
    font-size: 0.98rem;
  }

  .outcomes-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .outcome-card,
  .outcome-card:not(:first-child),
  .process-list li,
  .process-list li:not(:first-child) {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-number {
    margin-bottom: 32px;
  }

  .service-row {
    padding: 38px 0;
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .service-detail {
    padding-top: 10px;
    grid-column: 1 / -1;
  }

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

  .reel-switcher {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    padding-right: 20px;
  }

  .about-image p {
    right: -5px;
  }

  .process-list li {
    display: grid;
    gap: 35px;
    grid-template-rows: auto auto;
  }

  .form-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    justify-items: start;
    gap: 25px;
  }

  .social-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

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

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