:root {
  --navy-950: #071a33;
  --navy-900: #0a2342;
  --navy-800: #12345b;
  --slate-900: #152238;
  --slate-700: #3c4a5f;
  --slate-500: #6d7788;
  --slate-300: #c5cfdb;
  --slate-200: #d9e1ec;
  --slate-100: #edf2f7;
  --white: #ffffff;
  --ice: #f7fafc;
  --accent: #1fa7a1;
  --accent-dark: #147d7a;
  --line: rgba(15, 35, 66, 0.12);
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(217, 225, 236, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.08);
}

.nav {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 62%, var(--accent));
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 640;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy-950);
}

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

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(7, 26, 51, 0.16);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white) !important;
  background: var(--navy-800);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 2px 0;
  display: block;
  background: var(--navy-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(31, 167, 161, 0.22), transparent 29%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #0e2b4f);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.hero-inner {
  position: relative;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 104px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.35;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(31, 167, 161, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(4, 14, 28, 0.24);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--slate-100);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 720;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.signal-card,
.metric,
.trust-item,
.service-card,
.timeline-step,
.principles,
.fit-item,
.insight-card,
.case-study-card,
.pull-quote,
.newsletter-inner,
.article-card,
.post-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.signal-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.signal-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.signal-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(31, 167, 161, 0.12);
  border: 1px solid rgba(31, 167, 161, 0.32);
  border-radius: var(--radius);
}

.signal-icon svg,
.mini-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.metric {
  min-height: 112px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.metric span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.metric strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.25;
}

.section {
  padding: 104px 0;
}

.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p,
.section-heading li {
  color: var(--slate-700);
  font-size: 1.05rem;
}

.section-heading-wide {
  max-width: 860px;
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.trust {
  background: var(--ice);
}

.trust-grid,
.fit-grid,
.insights-grid,
.case-study-grid {
  display: grid;
  gap: 18px;
}

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

.trust-item,
.service-card,
.fit-item,
.insight-card,
.case-study-card,
.pull-quote,
.article-card {
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-item {
  padding: 24px;
}

.trust-item:hover,
.service-card:hover,
.fit-item:hover,
.insight-card:hover,
.article-card:hover,
.case-study-card:hover,
.pull-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 167, 161, 0.28);
  box-shadow: var(--shadow);
}

.mini-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(31, 167, 161, 0.1);
  border-radius: var(--radius);
}

.trust-item p,
.service-card p,
.fit-item p,
.timeline-step p,
.why-copy p,
.about-copy p,
.cta p,
.footer p,
.insight-card p,
.case-study-card p,
.pull-quote p,
.article-card p,
.post-content p,
.post-content li,
.newsletter-copy p,
.form-note,
.form-status,
.cta-support {
  color: var(--slate-700);
}

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

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

.service-card {
  grid-column: span 2;
  min-height: 290px;
  padding: 28px;
}

.service-card-featured {
  grid-column: span 4;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 167, 161, 0.14), transparent 46%),
    var(--navy-950);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card-featured h3,
.service-card-featured p {
  color: var(--white);
}

.service-card-featured p {
  opacity: 0.78;
}

.card-number {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process {
  background: var(--ice);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 62px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
}

.timeline-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  font-weight: 800;
}

.timeline-step p {
  margin-bottom: 0;
}

.why {
  background: var(--navy-950);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 62px;
}

.why h2,
.why h3,
.why strong {
  color: var(--white);
}

.why-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.principles {
  padding: 12px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.principles div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.principles strong,
.principles span {
  display: block;
}

.principles span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
}

.fit {
  background: var(--white);
}

.fit-item {
  padding: 26px;
}

.insights-preview {
  background: var(--ice);
}

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

.insight-card {
  padding: 28px;
}

.insight-card h3 {
  font-size: 1.24rem;
}

.insight-card h3 a:hover,
.insight-card h3 a:focus-visible {
  color: var(--navy-800);
}

.insight-meta,
.post-date {
  margin-bottom: 10px;
  color: var(--slate-500);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about-accent {
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-accent span {
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(7, 26, 51, 0.08);
}

.about-accent span:nth-child(2),
.about-accent span:nth-child(3) {
  color: var(--white);
  background: var(--navy-900);
}

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

.about-copy p {
  font-size: 1.06rem;
}

.case-study {
  background: var(--ice);
}

.case-study-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: start;
}

.case-study-card {
  padding: 30px;
}

.case-study-topline {
  margin-bottom: 26px;
}

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

.case-study-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-stack {
  display: grid;
  gap: 18px;
}

.pull-quote {
  margin: 0;
  padding: 24px;
}

.pull-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 0.92rem;
}

.case-study-outcome {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.newsletter {
  background: var(--white);
}

.newsletter-inner {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(31, 167, 161, 0.09), transparent 44%),
    var(--ice);
}

.newsletter-copy h2 {
  margin-bottom: 12px;
}

.newsletter-copy p {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.newsletter-form {
  display: grid;
  gap: 16px;
  align-content: center;
}

.newsletter-embed {
  min-height: 116px;
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid rgba(15, 35, 66, 0.16);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus {
  border-color: rgba(31, 167, 161, 0.8);
  box-shadow: 0 0 0 4px rgba(31, 167, 161, 0.14);
  outline: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
}

.form-note,
.form-status,
.cta-support {
  margin: 0;
  font-size: 0.92rem;
}

.post-cta {
  margin-top: 30px;
  padding: 24px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-cta p {
  margin-bottom: 12px;
}

.form-status {
  width: 100%;
  min-height: 1.5em;
}

.form-status.is-success {
  color: var(--accent-dark);
}

.form-status.is-muted {
  color: var(--slate-500);
}

.cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 167, 161, 0.24), transparent 48%),
    var(--navy-900);
}

.cta-inner {
  max-width: 860px;
  text-align: center;
}

.cta h2,
.cta p,
.cta-support {
  color: var(--white);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 30px;
  opacity: 0.78;
  font-size: 1.08rem;
}

.cta-support {
  margin-top: 16px;
  opacity: 0.7;
}

.footer {
  color: rgba(255, 255, 255, 0.74);
  background: #041326;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 32px;
}

.footer .brand {
  color: var(--white);
}

.footer p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer a {
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.page-hero {
  padding: 150px 0 88px;
  background:
    linear-gradient(180deg, rgba(237, 242, 247, 0.95), rgba(247, 250, 252, 0.86)),
    var(--white);
}

.page-hero-content {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  max-width: 880px;
}

.page-hero h1 {
  color: var(--navy-950);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  color: var(--slate-700);
  font-size: 1.08rem;
}

.listing-section {
  padding-top: 0;
}

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

.article-card {
  padding: 28px;
}

.article-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.article-card p {
  max-width: 780px;
}

.post-body {
  padding: 32px 0 104px;
  background: var(--white);
}

.post-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(7, 26, 51, 0.08);
}

.post-kicker {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-title {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
}

.post-content {
  display: grid;
  gap: 20px;
}

.post-content ul {
  margin: 0;
  padding-left: 20px;
}

.post-content li + li {
  margin-top: 8px;
}

.post-content h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.post-newsletter {
  margin-top: 34px;
}

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

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

:focus-visible {
  outline: 3px solid rgba(31, 167, 161, 0.45);
  outline-offset: 3px;
}

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

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

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

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

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(7, 26, 51, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 13px 16px !important;
    text-align: center;
  }

  .hero-inner,
  .process-layout,
  .why-layout,
  .about-layout,
  .newsletter-inner,
  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 82px;
  }

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

  .service-card,
  .service-card-featured {
    grid-column: span 3;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .nav,
  .section-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom p,
  .page-hero-content,
  .post-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .section,
  .post-body {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .hero-actions,
  .button,
  .form-actions .button {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .fit-grid,
  .readiness-grid,
  .footer-inner,
  .insights-grid-two,
  .form-row,
  .case-study-columns {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    grid-column: span 1;
    min-height: auto;
  }

  .timeline-step {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .timeline-step span {
    width: 38px;
    height: 38px;
  }

  .about-accent {
    min-height: 230px;
  }

  .newsletter-inner,
  .post-shell,
  .article-card,
  .insight-card,
  .case-study-card,
  .pull-quote {
    padding: 22px;
  }
}
