:root {
  --ink: #101828;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --soft-blue: #eef5ff;
  --line: #d7e1df;
  --teal: #0b7285;
  --blue: #3461ff;
  --green: #7fa32b;
  --coral: #e35d46;
  --gold: #c58a08;
  --shadow: 0 22px 70px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.2rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(52, 97, 255, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--ink);
  color: #ffffff;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 225, 223, 0.7);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.7rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 185px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  font-size: 1.1rem;
}

.brand-text {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  color: #344054;
  padding: 0.62rem 0.86rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #eef5f4;
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #ffffff;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(127, 163, 43, 0.18), transparent 28rem),
    linear-gradient(135deg, #fbfdfd 0%, #eef6f3 54%, #f7fbff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3.8rem 0 2.6rem;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

.hero h1,
.page-hero h1 {
  margin-top: 0.9rem;
}

body[data-page="home"] .hero h1 {
  font-size: 3.55rem;
}

.hero-lede,
.page-hero p {
  max-width: 680px;
  margin-top: 1.25rem;
  font-size: 1.18rem;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 900;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button-primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.18);
}

.button-primary:hover {
  background: var(--teal);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--teal);
}

.hero-media {
  min-width: 0;
  margin: 0;
}

.hero-media img,
.page-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-strip {
  background: var(--ink);
  color: #ffffff;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.signal-grid span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 1rem;
  color: #e7f7f2;
  text-align: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: 5.8rem 0;
}

.section-tint {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.split h2,
.cta-panel h2,
.outcome-band h2,
.quote-band blockquote p {
  margin-top: 0.65rem;
}

.section-heading p:not(.eyebrow),
.split p:not(.eyebrow),
.cta-panel p,
.outcome-band p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.service-grid,
.detail-grid,
.capability-grid,
.gate-grid,
.three-grid,
.value-grid,
.industry-grid {
  display: grid;
  gap: 1rem;
}

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

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

.industry-heading {
  max-width: 980px;
}

.industry-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.industry-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.62rem 0.85rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.delivery-model-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 114, 133, 0.96), rgba(16, 24, 40, 0.98));
  border-radius: 8px;
}

.delivery-model-copy {
  display: grid;
  align-content: center;
}

.delivery-model-copy .eyebrow {
  color: #8fdad2;
}

.delivery-model-copy h2 {
  margin-top: 0.7rem;
  color: #ffffff;
}

.delivery-model-copy p:not(.eyebrow) {
  margin-top: 1rem;
  color: #dcebea;
  font-size: 1.05rem;
}

.delivery-model-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.delivery-model-visual article {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.delivery-model-visual article::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.1rem 1.25rem;
  height: 5px;
  background: linear-gradient(90deg, #8fdad2, #ffffff);
  border-radius: 999px;
  opacity: 0.85;
}

.delivery-model-visual span {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 36px;
  padding: 0 0.75rem;
  color: #101828;
  background: #ffffff;
  border-radius: 999px;
  font-weight: 900;
}

.delivery-model-visual h3 {
  margin-top: 1.2rem;
  color: #ffffff;
  font-size: 1.28rem;
}

.delivery-model-visual p {
  margin-top: 0.75rem;
  color: #dcebea;
}

.service-card,
.detail-card,
.compact-card,
.industry-grid article,
.capability-grid article,
.gate-grid article,
.value-grid article,
.contact-aside,
.hero-note,
.contact-summary {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  padding: 1.3rem;
}

.industry-grid article {
  position: relative;
  min-height: 300px;
  padding: 1.4rem;
  overflow: hidden;
}

.industry-grid article::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.2rem;
  height: 4px;
  background: linear-gradient(90deg, rgba(11, 114, 133, 0.85), rgba(52, 97, 255, 0.45));
  border-radius: 999px;
}

.industry-tag {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 34px;
  padding: 0 0.75rem;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3,
.detail-card h2,
.compact-card h3,
.industry-grid h3,
.capability-grid h2,
.gate-grid h3,
.value-grid h3,
.contact-aside h2,
.contact-summary h2,
.hero-note h2 {
  margin-top: 1rem;
}

.service-card p,
.detail-card p,
.compact-card p,
.industry-grid p,
.capability-grid p,
.gate-grid p,
.value-grid p,
.contact-aside p,
.hero-note p {
  margin-top: 0.65rem;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.teal { background: var(--teal); }
.blue { background: var(--blue); }
.green { background: var(--green); }
.coral { background: var(--coral); }
.gold { background: var(--gold); }
.ink { background: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.process-list {
  display: grid;
  gap: 0.8rem;
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span,
.timeline span {
  color: var(--teal);
  font-weight: 900;
}

.process-list p {
  grid-column: 2;
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.outcome-band,
.cta-panel,
.quote-band {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  padding: 2rem;
  background: var(--ink);
  border-radius: 8px;
}

.outcome-band {
  grid-template-columns: 1.15fr 1fr auto;
}

.outcome-band h2,
.outcome-band p,
.cta-panel h2,
.cta-panel p,
.quote-band h2,
.quote-band p,
.quote-band blockquote p {
  color: #ffffff;
}

.outcome-band .eyebrow,
.quote-band .eyebrow {
  color: #8fdad2;
}

.page-hero {
  background:
    linear-gradient(135deg, #f8fbff 0%, #f1f8f4 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 3rem;
  align-items: center;
  padding: 5.2rem 0;
}

body[data-page="expertise"] .page-hero-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4.6rem 0;
}

body[data-page="approach"] .page-hero-grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
  gap: 2.35rem;
}

body[data-page="approach"] .page-hero h1 {
  font-size: 3rem;
}

body[data-page="expertise"] .page-hero h1 {
  max-width: 860px;
  font-size: 3rem;
}

body[data-page="expertise"] .page-hero p {
  max-width: 820px;
}

body[data-page="expertise"] .page-visual {
  width: min(100%, 980px);
  margin: 0 auto;
}

.page-visual {
  min-width: 0;
  margin: 0;
}

.hero-note,
.contact-summary {
  padding: 1.6rem;
}

.hero-note h2,
.contact-summary h2 {
  font-size: 1.45rem;
}

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

.detail-card {
  padding: 1.45rem;
}

.check-list {
  display: grid;
  gap: 0.62rem;
  margin-top: 1.2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #344054;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--teal);
  border-radius: 2px;
}

.three-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.compact-card {
  padding: 1.4rem;
}

.compact-card h3 {
  margin-top: 0;
}

.cta-panel {
  justify-items: start;
  background:
    linear-gradient(135deg, rgba(11, 114, 133, 0.94), rgba(16, 24, 40, 0.98));
}

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

.capability-grid article,
.gate-grid article,
.value-grid article {
  padding: 1.35rem;
}

.capability-grid h2,
.gate-grid h3,
.value-grid h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.stack-list div {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
}

.stack-list h3 {
  margin-bottom: 0.5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.timeline article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.timeline h2 {
  margin-top: 0.8rem;
  font-size: 1.45rem;
}

.timeline p {
  margin-top: 0.7rem;
}

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

.approach-showcase,
.approach-preview {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 2rem;
  align-items: center;
}

.approach-preview {
  grid-template-columns: minmax(520px, 1.16fr) minmax(0, 0.84fr);
}

.approach-showcase h2,
.approach-preview h2 {
  margin-top: 0.65rem;
}

.approach-showcase p:not(.eyebrow),
.approach-preview p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.approach-thread-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.approach-thread-grid article {
  min-height: 190px;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.approach-thread-grid h3 {
  font-size: 1.12rem;
}

.approach-thread-grid p {
  margin-top: 0.75rem;
}

.approach-preview figure {
  min-width: 0;
  margin: 0;
}

.approach-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.approach-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 1.45rem;
}

.approach-mini-list span {
  color: #344054;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.narrow {
  max-width: 850px;
  padding: 5.2rem 0;
}

.narrow p {
  margin-top: 1.25rem;
  font-size: 1.18rem;
}

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

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

.leader-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.leader-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: 110px minmax(0, 1fr);
  padding: 1.8rem;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5fbfa 55%, #eef5ff 100%);
}

.leader-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
}

.leader-card-featured .leader-avatar {
  width: 96px;
  height: 96px;
  font-size: 1.45rem;
}

.leader-role {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leader-content h3 {
  margin-top: 0.35rem;
  font-size: 1.45rem;
}

.leader-content p:not(.leader-role) {
  margin-top: 0.75rem;
}

.leader-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.leader-points li {
  position: relative;
  padding-left: 1.3rem;
  color: #344054;
}

.leader-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal);
  border-radius: 2px;
}

.quote-band {
  justify-items: start;
}

.quote-band blockquote {
  margin: 0;
  max-width: 920px;
}

.quote-band blockquote p {
  font-size: 3rem;
  line-height: 1.12;
}

.contact-summary {
  display: grid;
  gap: 0.6rem;
}

.contact-logo {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 0.25rem;
}

.contact-summary a {
  color: var(--teal);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

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

label {
  color: #344054;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 0.95rem;
}

textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 700;
}

.contact-aside {
  padding: 1.4rem;
}

.site-footer {
  padding: 3.2rem 0 1.5rem;
  color: #d6e3e1;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 2rem;
}

.footer-brand {
  display: inline-flex;
  padding: 0.4rem 0.55rem;
  background: #ffffff;
  border-radius: 6px;
}

.footer-brand .brand-logo {
  height: 40px;
  max-width: 195px;
}

.footer-grid p {
  max-width: 420px;
  margin-top: 1rem;
  color: #a7b5bb;
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 0.5rem;
  color: #d6e3e1;
}

.footer-grid .footer-brand {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #8fdad2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a7b5bb;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .delivery-model-band,
  .approach-showcase,
  .approach-preview,
  .outcome-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  body[data-page="expertise"] .page-hero-grid,
  body[data-page="approach"] .page-hero-grid,
  .approach-preview {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .page-visual img {
    max-width: 100%;
  }

  .outcome-band {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .signal-grid,
  .service-grid,
  .detail-grid,
  .capability-grid,
  .gate-grid,
  .industry-grid,
  .approach-thread-grid,
  .three-grid,
  .value-grid,
  .leadership-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .signal-grid span {
    min-height: 56px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-logo {
    height: 32px;
    max-width: 150px;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero-grid,
  .page-hero-grid,
  .narrow {
    padding: 2.35rem 0;
  }

  .section {
    padding: 3.6rem 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lede,
  .page-hero p,
  .narrow p {
    font-size: 1.03rem;
  }

  .hero-lede {
    margin-top: 1rem;
  }

  .button-row {
    margin-top: 1.4rem;
  }

  .hero-media img {
    height: 210px;
    object-fit: cover;
    object-position: center;
  }

  .button-row,
  .form-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-model-band {
    padding: 1.25rem;
  }

  .delivery-model-visual {
    grid-template-columns: 1fr;
  }

  .delivery-model-visual article {
    min-height: 170px;
  }

  .button {
    width: 100%;
  }

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

  .process-list p {
    grid-column: 1;
  }

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

  .leader-card,
  .leader-card-featured {
    grid-template-columns: 1fr;
  }

  .leader-card-featured {
    padding: 1.35rem;
  }

  .quote-band blockquote p {
    font-size: 2rem;
  }
}
