:root {
  --color-background: #ffffff;
  --color-text: #3c3c4b;
  --color-muted: #616a80;
  --color-primary: #1d5d9c;
  --color-secondary: #e96e01;
  --color-accent-1: #f4a500;
  --color-accent-2: #00a28b;
  --color-accent-3: #fbf2dd;
  --color-border: #e5e7eb;
  --hero-background: #fbf2dd;
  --max-width: 1200px;
  --font-sans:
    "Cabin", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}

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

html {
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  font-weight: 300;
  font-size: 1rem;
  font-family: "Open Sans", var(--font-sans);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-secondary);
}

button,
[role="button"] {
  cursor: pointer;
  font-family: inherit;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.container {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: auto;
  height: 32px;
}

.brand--text {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.nav-link--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.hero {
  background: var(--hero-background);
  border-bottom: 1px solid var(--color-border);
}

.hero--ai {
  position: relative;
  background:
    radial-gradient(
      120% 150% at 80% -10%,
      rgba(0, 162, 139, 0.18),
      transparent
    ),
    linear-gradient(135deg, rgba(29, 93, 156, 0.14), rgba(251, 242, 221, 0.95)),
    url("/realdigit-homepage.png") right top / auto 100% no-repeat;
  border-bottom: none;
  padding: 5rem 0 3.5rem;
}

.hero-ai-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-ai-inner h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 3rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.12;
}

.hero-lede {
  font-size: 1.05rem;
  font-family: "Open Sans", var(--font-sans);
  color: var(--color-muted);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  text-decoration: none;
  width: fit-content;
}

.primary-button {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(233, 110, 1, 0.25);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(233, 110, 1, 0.2);
  background: #ffffff;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.secondary-button {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(29, 93, 156, 0.1);
}

.logo-strip {
  background: #10131a;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.25rem 0;
}

.logo-strip .container {
  display: grid;
  gap: 1.25rem;
}

.logo-strip-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.logo-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
  font-weight: 600;
}

.logo-strip-row img {
  height: 96px;
  width: auto;
  opacity: 1;
}

.logo-strip-row img.logo-strip-invert {
  filter: brightness(0) invert(1);
}

.logo-strip-row img.logo-strip-invert-text {
  position: relative;
  filter: drop-shadow(0 0 0 white);
}

.logo-strip-row img.logo-strip-invert-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, white 60%, white 100%);
  mix-blend-mode: color;
  pointer-events: none;
}

.services-section {
  padding: 5rem 0;
  background: #f4f7fb;
}

.services-layout {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: start;
}

.services-summary h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3vw, 2.6rem);
  color: var(--color-primary);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(29, 93, 156, 0.75);
  margin-bottom: 1rem;
}

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

.service-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(29, 93, 156, 0.3);
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent-1)
  );
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

.service-item[data-icon="layers"] .service-icon::after {
  background: linear-gradient(135deg, #00a28b, #1d5d9c);
}

.service-item[data-icon="flow"] .service-icon::after {
  background: linear-gradient(135deg, #f4a500, #e96e01);
}

.service-item[data-icon="cube"] .service-icon::after {
  background: linear-gradient(135deg, #1d5d9c, #3c3c4b);
}

.service-item[data-icon="wave"] .service-icon::after {
  background: linear-gradient(135deg, #e96e01, #fbf2dd);
}

.service-item[data-icon="target"] .service-icon::after {
  background: linear-gradient(135deg, #00a28b, #f4a500);
}

.service-item h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 500;
}

.service-item p {
  margin: 0.4rem 0 0;
  color: var(--color-muted);
  font-weight: 300;
}

.story-section {
  padding: 5rem 0;
  background: #ffffff;
}

.story-content {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.story-content h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--color-primary);
}

.story-content p {
  color: var(--color-muted);
  margin: 0;
  font-weight: 300;
}

.cta-panel {
  padding: 4rem 0;
}

.cta-panel--learn {
  background: #0f1219;
  color: rgba(255, 255, 255, 0.85);
}

.cta-panel--learn h3 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  color: #ffffff;
}

.cta-panel--learn p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.cta-panel--book {
  background: #ffffff;
  color: var(--color-text);
}

.cta-panel--book .container {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 0;
  padding: 0;
}

.cta-book-primary {
  background: var(--color-primary);
  color: #ffffff;
  padding: 4rem;
  display: grid;
  gap: 1.5rem;
}

.cta-book-primary h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  color: #ffffff;
}

.cta-book-primary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-book-quote {
  padding: 4rem;
  display: grid;
  gap: 1.5rem;
  background: #f6f7fb;
}

.cta-book-quote blockquote {
  margin: 0;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
}

.cta-book-quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

.cta-book-quote span {
  color: var(--color-muted);
  font-weight: 400;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 19, 26, 0.2);
}

.testimonial-dots span.is-active {
  background: var(--color-primary);
  width: 18px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 4.5rem 0;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 720px;
  font-weight: 300;
  font-family: "Open Sans", var(--font-sans);
}

.story-stack {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 0 5rem;
  display: grid;
  gap: 1.5rem;
}

.about-content {
  max-width: 900px;
  padding: 4rem 0 5rem;
}

.about-content p {
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-video {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  float: left;
  margin: 0 1.5rem 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-actions {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  background-color: var(--color-secondary);
  border: none;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background-color: var(--color-accent-1);
  transform: translateY(-1px);
}

.two-column {
  padding: 3.5rem 0;
}

.two-column-inner {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.two-column-sidebar {
  position: sticky;
  top: 5rem;
  padding-right: 1rem;
}

.sidebar-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.sidebar-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-muted);
}

.sidebar-badges {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8rem;
  background-color: var(--color-accent-3);
  color: var(--color-primary);
}

.sidebar-meta {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.sidebar-meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-muted);
}

.sidebar-meta-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toc-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  color: var(--color-muted);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.toc-link:hover,
.toc-link:focus-visible {
  color: var(--color-secondary);
}

.toc-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.85rem;
  height: 0.85rem;
  background: transparent;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  opacity: 0;
  transform: translateX(-0.25rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toc-link--active {
  color: var(--color-primary);
  font-weight: 600;
}

.toc-link--active::before {
  opacity: 1;
  background: var(--color-accent-1);
  transform: translateX(0);
}

.two-column-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 1rem;
}

.two-column-content section,
.two-column-content article {
  position: relative;
  padding-left: 1.75rem;
  scroll-margin-top: 6.5rem;
}

.two-column-content section::before,
.two-column-content article::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: transparent;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.two-column-content section[data-section-active="true"]::before,
.two-column-content article[data-section-active="true"]::before {
  opacity: 1;
  background: var(--color-accent-1);
  transform: translateX(-0.25rem);
}

.two-column-content ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 1rem;
}

.two-column-content li {
  color: var(--color-muted);
  line-height: 1.6;
  font-weight: 400;
  font-family: "Open Sans", var(--font-sans);
}

.section-heading {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-heading-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}

.section-heading-link:hover,
.section-heading-link:focus-visible {
  color: var(--color-secondary);
}

.section-description {
  color: var(--color-muted);
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Open Sans", var(--font-sans);
}

.work-heading {
  font-size: 2rem;
  font-weight: 600;
  margin: 4rem 0 3rem 0;
  color: var(--color-text);
}

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

.case-study-card {
  display: block;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 1 / 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.case-study-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  padding-bottom: 60px;
  position: relative;
}

.case-study-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #000;
  line-height: 1.2;
  transition: all 0.3s ease;
  z-index: 3;
  position: relative;
}

.case-study-card:hover .card-title {
  color: var(--color-primary);
  transform: translateY(-60px);
}

.card-hover-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--color-primary), rgba(29, 93, 156, 0.95));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.case-study-card:hover .card-hover-content {
  transform: translateY(0);
}

.case-study-card .card-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

.card-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--color-primary), rgba(29, 93, 156, 0.95));
  padding: 1.5rem 2rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

/* Keep existing card styles for other pages */
.card-list {
  display: grid;
  gap: 1.5rem;
}

.card {
  border-radius: 16px;
  padding: 1.75rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(29, 93, 156, 0.12);
  box-shadow: 0 24px 48px rgba(60, 60, 75, 0.08);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.site-footer {
  border-top: 1px solid var(--color-border);
  background-color: #11131a;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 260px;
}

.footer-brand .footer-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  width: auto;
  height: 32px;
  max-width: 148px;
  align-self: flex-start;
}

.footer-tagline {
  margin: 0;
  line-height: 1.5;
}

.footer-column h3 {
  margin: 0.75rem 0 1rem;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-column:first-child h3 {
  margin-top: 0;
}

.footer-column ul,
.footer-social,
.footer-bottom-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-column a,
.footer-social-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--color-accent-1);
}

.footer-social {
  flex-direction: row;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.footer-social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.75);
  transition: fill 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: var(--color-accent-1);
  transform: translateY(-2px);
}

.footer-social-link:hover svg,
.footer-social-link:focus-visible svg {
  fill: var(--color-accent-1);
}

.footer-bottom {
  background: #0c0e13;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}

.footer-bottom-inner ul {
  flex-direction: row;
  gap: 1.25rem;
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-inner a:hover,
.footer-bottom-inner a:focus-visible {
  color: var(--color-accent-1);
}

h2,
h3,
h4 {
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Open Sans", var(--font-sans);
}

p + p {
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .two-column-inner {
    grid-template-columns: 1fr;
  }

  .two-column-sidebar {
    position: static;
    padding-right: 0;
  }

  .hero-inner {
    padding: 3.5rem 0;
  }

  .about-video {
    max-width: 300px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 2rem);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .two-column {
    padding: 3rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .logo-strip-row img {
    height: 64px;
  }

  .about-video {
    float: none;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }

  .about-content {
    padding: 3rem 0 4rem;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .work-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .case-study-card {
    aspect-ratio: 1 / 1;
  }

  .card-content {
    padding: 1.5rem;
  }

  .case-study-card .card-title {
    font-size: 1.1rem;
  }
}

.why-section {
  padding: 5rem 0;
  background: #ffffff;
}

.why-layout {
  display: grid;
  gap: 2.5rem 5rem;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: start;
}

.why-summary h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.5vw, 2.75rem);
  color: var(--color-primary);
  line-height: 1.2;
}

.why-summary p {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.why-grid {
  display: grid;
  gap: 2.75rem;
  max-width: 640px;
}

.why-item {
  max-width: 100%;
}

.why-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-primary);
}

.why-item p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 900px) {
  .cta-panel--book .container {
    grid-template-columns: 1fr;
  }

  .cta-book-primary,
  .cta-book-quote {
    padding: 3rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
