@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin.woff2") format("woff2");
}

:root {
  --ink: #0d0716;
  --indigo: #1b0081;
  --violet: #6842f5;
  --violet-dark: #4d2ed1;
  --gold: #f5b942;
  --cream: #fffaf2;
  --lavender: #f4f2fb;
  --lavender-active: #8e71f8;
  --lavender-card: #ede9fa;
  --gold-soft: #fdecc8;
  --muted-strong: #423a60;
  --muted: #5b5470;
  --border: #e4defb;
  --white: #fff;
  --success: #177a4b;
  --error: #b42318;
  --shadow-sm: 0 12px 32px rgba(27, 0, 129, 0.08);
  --shadow-lg: 0 26px 70px rgba(19, 10, 42, 0.16);
  --radius: 20px;
  --max: 1180px;
}

.rs-icon {
  display: block;
  flex: none;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Quicksand", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Archivo", "Arial Black", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 5.8vw, 5.25rem);
}

h2 {
  color: var(--indigo);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p {
  margin: 0;
}

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

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

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

.section {
  padding-block: clamp(72px, 9vw, 112px);
}

.section--compact {
  padding-block: clamp(56px, 7vw, 82px);
}

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

.section--lavender {
  background: var(--lavender);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--violet-dark);
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Archivo", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 12px 24px rgba(104, 66, 245, 0.24);
}

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

.button--secondary {
  color: var(--indigo);
  border-color: var(--indigo);
  background: transparent;
}

.button--secondary:hover {
  color: var(--white);
  background: var(--indigo);
}

.button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(19, 10, 42, 0.22);
  backdrop-filter: blur(6px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(27, 0, 129, 0.08);
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button),
.nav-mega-toggle {
  position: relative;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.site-nav > a:not(.button)::after,
.nav-mega-toggle::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a[aria-current="page"]::after,
.site-nav > a:not(.button):hover::after,
.nav-mega-toggle[aria-current="page"]::after,
.nav-mega-toggle:hover::after,
.nav-mega-toggle[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-mega {
  position: static;
}

.nav-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-mega-toggle[aria-expanded="true"] .nav-chevron {
  transform: translateY(3px) rotate(225deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.08fr;
  overflow: hidden;
  border: 1px solid rgba(104, 66, 245, 0.14);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 22px 22px;
  background: var(--white);
  box-shadow: 0 28px 72px rgba(27, 0, 129, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transform-origin: top;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-mega[data-open="true"] .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-intro,
.mega-service-column,
.mega-seo-spotlight {
  min-height: 380px;
  padding: 30px;
}

.mega-intro {
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, var(--cream), var(--lavender));
}

.mega-label {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-intro h2,
.mega-service-column h2,
.mega-seo-spotlight h2 {
  margin: 10px 0 8px;
  color: var(--indigo);
  font-size: 1.12rem;
  line-height: 1.2;
}

.mega-intro h2 {
  font-size: 1.8rem;
}

.mega-intro p,
.mega-service-column p,
.mega-seo-spotlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.mega-all-services {
  margin-top: auto;
  color: var(--indigo);
  font-size: 0.9rem;
  font-weight: 800;
}

.mega-all-services span,
.mega-service-column a span {
  color: var(--violet);
}

.mega-service-column {
  border-left: 1px solid var(--border);
}

.mega-service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--violet);
  background: var(--lavender);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.mega-service-column ul,
.mega-seo-spotlight ul {
  display: grid;
  gap: 2px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.mega-service-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-left: -10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #33294b;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.mega-service-column a:hover,
.mega-service-column a:focus-visible {
  color: var(--violet);
  background: var(--lavender);
}

.mega-seo-spotlight {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(155deg, var(--indigo), var(--violet));
}

.mega-seo-spotlight::before {
  position: absolute;
  top: -82px;
  right: -60px;
  width: 210px;
  height: 210px;
  border: 46px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.mega-seo-spotlight > * {
  position: relative;
}

.mega-seo-spotlight .mega-label,
.mega-seo-spotlight h2 {
  color: var(--white);
}

.mega-seo-spotlight h2 {
  font-size: 1.7rem;
}

.mega-seo-spotlight p {
  color: rgba(255, 255, 255, 0.8);
}

.mega-seo-spotlight ul {
  gap: 8px;
  margin-block: 22px;
  font-size: 0.84rem;
}

.mega-seo-spotlight li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
}

.mega-seo-spotlight > a {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--indigo);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.mega-seo-spotlight > a:hover,
.mega-seo-spotlight > a:focus-visible {
  background: var(--white);
}

.nav-contact {
  min-height: 44px;
  padding-inline: 18px;
  border-color: transparent;
  color: var(--violet);
  background: var(--lavender-card);
  box-shadow: none;
  font-size: 0.84rem;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 12px 28px rgba(104, 66, 245, 0.28);
  transform: translateY(-2px);
}

@media (min-width: 821px) {
  .site-nav {
    align-self: stretch;
  }

  .nav-mega {
    display: flex;
    align-self: stretch;
    align-items: center;
  }

  .nav-mega.is-hover-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--indigo);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  border-radius: 9px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  background: var(--hero-image) var(--hero-position, center) / cover no-repeat;
}

.hero::after {
  background: linear-gradient(90deg, rgba(12, 5, 31, 0.92) 0%, rgba(12, 5, 31, 0.74) 43%, rgba(12, 5, 31, 0.12) 78%);
}

.hero--home {
  --hero-image: url("../images/original/hero-photo.png");
}

.hero--seo {
  --hero-image: url("../images/original/seo-hero-photo.jpg");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  align-items: center;
  padding-block: 88px;
}

.hero-content {
  max-width: 790px;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 820px;
  color: var(--white);
}

.hero p {
  max-width: 680px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.value-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(27, 0, 129, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.value-item {
  padding: 28px 32px;
}

.value-item + .value-item {
  border-left: 1px solid var(--border);
}

.value-item strong {
  display: block;
  color: var(--indigo);
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
}

.value-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-cloud-section {
  padding-block: 88px 28px;
  background: var(--white);
}

.logo-cloud-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.logo-cloud-layout h2 {
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.logo-tile {
  display: grid;
  min-height: 82px;
  padding: 14px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.logo-tile img {
  width: 100%;
  height: 52px;
  object-fit: contain;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
}

.split-copy p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
}

.image-card {
  position: relative;
}

.image-card::before {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 34% 66% 67% 33% / 39% 35% 65% 61%;
  background: var(--gold);
  content: "";
  transform: rotate(12deg);
}

.image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.service-card,
.feature-card,
.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(104, 66, 245, 0.36);
  box-shadow: 0 22px 48px rgba(27, 0, 129, 0.12);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
}

.icon-badge {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--violet);
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card h3,
.feature-card h3 {
  color: var(--indigo);
}

.service-card p,
.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.feature-card {
  padding: 26px;
}

.feature-card--gold {
  border-color: transparent;
  background: var(--gold);
}

.feature-card--gold p {
  color: #4f3600;
}

.proof-section {
  color: var(--white);
  background: var(--indigo);
}

.proof-section .section-heading h2 {
  color: var(--white);
}

.proof-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.case-card {
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(5, 0, 32, 0.2);
}

.case-industry {
  display: inline-flex;
  margin: -30px -30px 24px;
  padding: 10px 30px;
  color: var(--indigo);
  background: var(--gold);
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-stat {
  display: block;
  color: var(--gold);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  line-height: 1;
}

.case-card h3 {
  margin-top: 10px;
  color: var(--white);
}

.result-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  list-style: none;
}

.result-list li {
  position: relative;
  padding-left: 18px;
}

.result-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.recognition-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
}

.recognition-band h3 {
  margin-top: 8px;
  color: var(--indigo);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.recognition-band p {
  margin-top: 6px;
  color: #4f3600;
}

.award-row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.award-row img {
  width: auto;
  height: 92px;
  object-fit: contain;
}

.results-note {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  text-align: center;
}

.purpose {
  overflow: hidden;
  background: var(--gold);
}

.purpose h2 {
  color: var(--indigo);
}

.purpose .split-copy p {
  color: #4f3600;
}

.purpose-action {
  margin-top: 30px;
}

.purpose-photo {
  width: 100%;
  height: 260px;
  margin-top: 36px;
  border-radius: 16px;
  object-fit: cover;
}

.purpose-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.purpose-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 26px;
  border-radius: 16px;
  background: var(--gold-soft);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.purpose-card > div {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
}

.purpose-card h3 {
  color: var(--indigo);
  font-size: 1.08rem;
}

.purpose-card p {
  margin-top: 6px;
  color: #2e2e2e;
  font-size: 0.94rem;
  line-height: 1.5;
}

.purpose-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.purpose-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.purpose-list li::before {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  content: "✓";
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  border-top: 4px solid var(--violet);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  content: "0" counter(process);
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.process-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.insight-card {
  overflow: hidden;
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-card-body {
  padding: 24px;
}

.insight-card-body span {
  color: var(--violet-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: 10px;
  color: var(--indigo);
}

.insight-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 14px;
  margin: 44px auto 0;
}

.faq-list details {
  border: 1px solid rgba(104, 66, 245, 0.2);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--indigo);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--violet);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--indigo);
}

.contact-section::before {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(245, 185, 66, 0.13);
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(48px, 8vw, 90px);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.contact-points li::before {
  color: var(--gold);
  content: "✓";
}

.contact-form {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.consent-label {
  font-size: 0.86rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid #cfc6e4;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  outline: 3px solid rgba(104, 66, 245, 0.18);
}

.consent-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--violet);
}

.consent-label a {
  color: var(--violet-dark);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.form-status {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.turnstile-field {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.turnstile-field p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.turnstile-widget {
  min-height: 65px;
  max-width: 100%;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.contact-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-awards img {
  width: auto;
  height: 74px;
  object-fit: contain;
}

.page-ending {
  display: block;
}

.page-ending-trust {
  padding-block: clamp(64px, 8vw, 92px);
}

.contact-strip {
  color: var(--indigo);
  background: var(--gold);
}

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

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--indigo);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
}

.final-cta {
  padding-block: clamp(56px, 7vw, 80px);
  color: var(--ink);
  background: var(--gold);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 10px;
  color: var(--indigo);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
}

.final-cta p {
  max-width: 680px;
  margin: 14px auto 0;
  color: #4f3600;
}

.final-cta-actions {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 48px;
  padding-block: 72px 48px;
}

.footer-brand img {
  width: 200px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 430px;
  margin-top: 20px;
}

.footer-column h2 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.86rem;
}

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

.page-hero {
  padding-block: clamp(76px, 9vw, 120px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--indigo));
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.prose {
  max-width: 820px;
}

.prose h2,
.prose h3 {
  margin-top: 42px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose ul {
  margin-top: 18px;
  color: var(--muted);
}

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

.error-page {
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.error-code {
  color: var(--gold);
  font-family: "Archivo", sans-serif;
  font-size: clamp(6rem, 20vw, 13rem);
  font-weight: 800;
  line-height: 0.8;
}

.error-page h1 {
  margin-top: 28px;
  color: var(--indigo);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.error-page p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav .button {
    display: none;
  }

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

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

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav[data-open="true"] {
    max-height: calc(100vh - 82px);
    padding: 12px 20px 24px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.button),
  .nav-mega-toggle {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(27, 0, 129, 0.08);
    font-size: 1rem;
  }

  .site-nav > a::after,
  .nav-mega-toggle::after {
    display: none;
  }

  .nav-mega {
    width: 100%;
  }

  .nav-mega-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    border-top-width: 2px;
    border-radius: 0 0 16px 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-mega[data-open="true"] .mega-menu {
    display: grid;
  }

  .mega-intro,
  .mega-service-column,
  .mega-seo-spotlight {
    min-height: 0;
    padding: 22px;
  }

  .mega-intro h2 {
    font-size: 1.5rem;
  }

  .mega-service-column {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .mega-all-services {
    margin-top: 18px;
  }

  .site-nav .nav-contact {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(12, 5, 31, 0.91), rgba(12, 5, 31, 0.55));
  }

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

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .logo-cloud-layout,
  .recognition-band {
    grid-template-columns: 1fr;
  }

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

  .image-card {
    max-width: 620px;
    margin-inline: auto;
  }

  .value-strip-inner {
    grid-template-columns: 1fr;
  }

  .value-item + .value-item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand img {
    width: 160px;
  }

  .hero {
    min-height: calc(100svh - 82px);
  }

  .hero--home {
    --hero-position: 76% center;
  }

  .hero--seo {
    --hero-position: 62% center;
  }

  .hero-inner {
    padding-block: 68px;
  }

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

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

  .hero-note {
    display: grid;
  }

  .value-strip {
    margin-top: 0;
    padding-top: 24px;
  }

  .card-grid,
  .feature-grid,
  .insights-grid,
  .process-grid,
  .logo-cloud,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .logo-cloud-section {
    padding-block: 64px 12px;
  }

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

  .contact-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .contact-awards img {
    height: 62px;
  }

  .recognition-band {
    padding: 24px;
  }

  .award-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .field--full,
  .footer-brand {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

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

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

/* Claude export fidelity layer. Keep these shared ending styles modular. */
.contact-strip {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  color: #fff;
  background: var(--indigo);
}

.contact-strip-inner {
  min-height: 118px;
  padding: 30px 44px;
  border-radius: 20px;
  background: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(50%);
}

.contact-strip-inner strong,
.contact-strip a {
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  text-decoration: none;
}

.page-ending-trust {
  padding-block: 132px 80px;
}

.map-footer {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  background: #f1eeea;
}

.map-footer::before {
  position: absolute;
  inset: 0;
  background: url("../images/original/world-map-dots.png") center / cover no-repeat;
  content: "";
  opacity: 0.9;
}

.map-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.map-footer img {
  width: 220px;
}

.map-footer p {
  max-width: 470px;
  margin-top: 22px;
}

.map-footer-contact {
  display: grid;
  justify-items: end;
  gap: 9px;
  color: var(--indigo);
  text-align: right;
}

.map-footer-contact a {
  color: var(--violet);
  text-decoration: none;
}

.social-icon-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-block: 20px;
}

.social-icon-row > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
}

.site-footer {
  color: #423a60;
  background: #fff;
}

.footer-brand img {
  width: 230px;
  filter: none;
}

.footer-brand h2 {
  max-width: 360px;
  margin-top: 22px;
  color: #0d0716;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.footer-brand .social-icon-row {
  margin-top: 22px;
}

.footer-column h2,
.footer-bottom a {
  color: #0d0716;
}

.footer-bottom {
  border-top-color: #eee;
}

.testimonial-section {
  background: var(--cream);
  text-align: center;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  margin-top: 48px;
}

.testimonial-card {
  min-height: 350px;
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(27, 0, 129, 0.06);
  text-align: left;
}

.testimonial-card--featured {
  background: #ede9fa;
  box-shadow: 0 20px 40px rgba(27, 0, 129, 0.12);
  transform: scale(1.06);
}

.testimonial-card p {
  margin: 28px 0 40px;
  font-size: 1.12rem;
}

.testimonial-card strong {
  color: var(--indigo);
}

.testimonial-quote {
  display: block;
  color: #b9b4c6;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
  text-align: right;
}

.cta-strip {
  padding-block: 80px;
  color: #fff;
  background: var(--violet);
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-strip p {
  max-width: 680px;
  margin: 18px auto 30px;
  color: #e4defb;
}

.button--gold {
  color: var(--indigo);
  background: var(--gold);
}

.team-photo img {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  object-fit: cover;
}

.seo-difference {
  background: #fffaf2;
}

.seo-problem-section {
  background: var(--lavender);
}

.seo-problem-layout,
.seo-difference-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
}

.seo-problem-copy h2,
.seo-difference-copy h2 {
  margin-top: 16px;
  color: var(--indigo);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
}

.seo-problem-copy > p,
.seo-difference-copy > p {
  margin-top: 14px;
  color: var(--muted-strong);
}

.seo-problem-badge,
.seo-difference-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--indigo);
  background: #fff;
  font-size: 0.84rem;
}

.seo-problem-badge > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #3aa655;
  font-size: 0.7rem;
}

.seo-problem-copy > img {
  width: 100%;
  margin-top: 28px;
  border-radius: 20px;
}

.seo-problem-list,
.seo-difference-grid {
  display: grid;
  gap: 12px;
}

.seo-problem-list article,
.seo-difference-grid article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(27, 0, 129, 0.06);
}

.seo-problem-list article > div,
.seo-difference-grid article > div {
  display: grid;
  width: 36px;
  height: 36px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
}

.seo-problem-list h3,
.seo-difference-grid h3 {
  color: var(--indigo);
  font-size: 0.91rem;
}

.seo-problem-list p,
.seo-difference-grid p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.5;
}

.seo-process-section {
  color: #3a2e00;
  background: var(--gold);
  text-align: center;
}

.seo-process-section .section-heading h2 {
  color: var(--violet);
}

.seo-process-section .section-heading p {
  color: #3a2e00;
}

.seo-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.seo-process-grid::before {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: rgba(104, 66, 245, 0.35);
  content: "";
}

.seo-process-grid article {
  position: relative;
  z-index: 1;
}

.seo-process-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}

.seo-process-grid h3 {
  color: var(--violet);
  font-size: 1rem;
}

.seo-process-grid p {
  margin-top: 8px;
  color: #4a3200;
  font-size: 0.8rem;
  line-height: 1.5;
}

.seo-difference-layout {
  max-width: var(--container);
  gap: 60px;
}

.seo-difference-badge {
  color: var(--indigo);
}

.seo-difference-badge .rs-icon {
  flex: none;
  color: var(--gold);
}

.seo-difference-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.seo-difference-grid article {
  justify-content: space-between;
  padding: 18px;
}

.seo-difference-grid article > div {
  order: 2;
}

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

.seo-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.seo-why-grid article {
  padding: 26px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.seo-why-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
}

.seo-why-grid h3 {
  color: var(--indigo);
  font-size: 1.08rem;
}

.seo-why-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.seo-why-grid article:hover,
.seo-why-grid article:focus-within {
  color: #fff;
  background: var(--violet);
  transform: translateY(-3px);
}

.seo-why-grid article:hover strong,
.seo-why-grid article:hover h3,
.seo-why-grid article:hover p,
.seo-why-grid article:focus-within strong,
.seo-why-grid article:focus-within h3,
.seo-why-grid article:focus-within p {
  color: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.industry-grid article {
  display: grid;
  min-height: 126px;
  padding: 20px;
  place-items: center;
  border-radius: 16px;
  color: var(--indigo);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-align: center;
}

.industry-grid .rs-icon {
  margin-bottom: 12px;
  color: var(--violet);
}

.reporting-section {
  background: #fff;
}

.reporting-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.reporting-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.reporting-copy > p {
  max-width: 590px;
  margin-top: 18px;
  color: var(--muted-strong);
}

.reporting-items {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.reporting-items article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.reporting-items article > div {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--violet);
}

.reporting-items h3 {
  color: var(--indigo);
  font-size: 0.97rem;
}

.reporting-items p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.report-card {
  margin-top: 190px;
  padding: 28px;
  border-radius: 16px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 20px 40px rgba(27, 0, 129, 0.15);
}

.report-card-head,
.report-card-highlight,
.report-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.report-card-head {
  color: #e4defb;
  font-size: 0.82rem;
}

.report-card-head strong {
  color: var(--gold);
}

.report-card-highlight {
  justify-content: flex-start;
  margin-top: 18px;
}

.report-card-highlight strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.65rem;
}

.report-card-highlight span {
  color: #e4defb;
  font-size: 0.84rem;
}

.report-bars {
  display: flex;
  height: 58px;
  gap: 6px;
  align-items: flex-end;
  margin-block: 22px;
}

.report-bars i {
  width: 100%;
  height: var(--bar);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.report-bars .is-highlight {
  background: var(--gold);
}

.report-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
  color: #e4defb;
  font-size: 0.82rem;
}

.report-card dd {
  margin: 0;
  color: #7fe0a8;
  font-weight: 700;
}

/* Export-faithful reusable service grid. */
.why-section {
  padding-block: 100px;
  background: var(--lavender);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.why-copy p {
  max-width: 560px;
  margin: 24px 0 32px;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.why-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.why-card:hover,
.why-card:focus-within {
  color: #fff;
  background: var(--gold);
  transform: translateY(-3px);
}

.why-card-icon {
  margin-bottom: 14px;
  color: var(--indigo);
}

.why-card h3 {
  color: var(--indigo);
  font-size: 1.2rem;
  transition: color 220ms ease;
}

.why-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  transition: color 220ms ease;
}

.why-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--indigo);
  font-size: 1.4rem;
  text-decoration: none;
}

.why-card:hover h3,
.why-card:hover p,
.why-card:hover .why-card-icon,
.why-card:hover a,
.why-card:focus-within h3,
.why-card:focus-within p,
.why-card:focus-within .why-card-icon,
.why-card:focus-within a {
  color: #fff;
}

.export-services {
  padding-block: 100px 128px;
  background: var(--cream);
}

.export-services--lavender {
  background: var(--lavender);
}

.export-section-heading {
  max-width: 720px;
}

.export-section-heading .eyebrow {
  margin-bottom: 18px;
}

.export-section-heading h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.export-section-heading p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
}

.export-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.export-service-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(27, 0, 129, 0.05);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.export-service-card:nth-child(3n + 2) {
  transform: translateY(32px);
}

.export-service-card:hover,
.export-service-card:focus-within,
.export-service-card--featured {
  color: #fff;
  background: var(--gold);
}

.export-service-card:hover,
.export-service-card:focus-within {
  transform: translateY(-4px);
}

.export-service-card:nth-child(3n + 2):hover,
.export-service-card:nth-child(3n + 2):focus-within {
  transform: translateY(28px);
}

.export-icon-badge {
  display: grid;
  width: 52px;
  height: 52px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
}

.export-service-card h3 {
  color: var(--indigo);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  transition: color 220ms ease;
}

.export-service-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  transition: color 220ms ease;
}

.export-service-card:hover h3,
.export-service-card:focus-within h3,
.export-service-card--featured h3 {
  color: #fff;
}

.export-service-card:hover p,
.export-service-card:focus-within p,
.export-service-card--featured p {
  color: #fbefd2;
}

.export-card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--violet-dark);
  font-weight: 700;
}

.export-service-card:hover .export-card-link,
.export-service-card:focus-within .export-card-link,
.export-service-card--featured .export-card-link {
  color: #fff;
}

@media (max-width: 820px) {
  .map-footer-inner {
    grid-template-columns: 1fr;
  }

  .map-footer-contact {
    justify-items: start;
    text-align: left;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-card--featured {
    transform: none;
  }

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

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

  .why-layout {
    grid-template-columns: 1fr;
  }

  .reporting-layout {
    grid-template-columns: 1fr;
  }

  .seo-problem-layout,
  .seo-difference-layout {
    grid-template-columns: 1fr;
  }

  .seo-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .seo-process-grid::before {
    display: none;
  }

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

  .report-card {
    margin-top: 0;
  }

  .export-service-card:nth-child(3n + 2),
  .export-service-card:nth-child(3n + 2):hover,
  .export-service-card:nth-child(3n + 2):focus-within {
    transform: none;
  }
}

@media (max-width: 600px) {
  .contact-strip-inner {
    min-height: 0;
    padding: 26px 24px;
  }

  .page-ending-trust {
    padding-top: 92px;
  }

  .export-services {
    padding-block: 72px;
  }

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

  .seo-difference-grid,
  .seo-why-grid {
    grid-template-columns: 1fr;
  }

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

  .why-section {
    padding-block: 72px;
  }

  .why-card-grid {
    grid-template-columns: 1fr;
  }

  .export-service-card {
    min-height: auto;
    padding: 26px;
  }
}
