.zseo {
  --zseo-bg: #ffffff;
  --zseo-surface: #ffffff;
  --zseo-surface-soft: #f7f7f5;
  --zseo-line: rgba(17, 17, 17, 0.08);
  --zseo-line-strong: rgba(17, 17, 17, 0.14);
  --zseo-ink: #171717;
  --zseo-ink-soft: #626262;
  --zseo-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  --zseo-shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.035);
  --zseo-card-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
  --zseo-shell: 90vw;
  --zseo-hero-progress: 0;
  max-width: none;
  width: 100%;
  float: none;
  padding: 0 0 150px;
  overflow-x: clip;
  background: #ffffff;
  color: var(--zseo-ink);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  -webkit-text-size-adjust: 100%;
}

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

.zseo h1,
.zseo h2,
.zseo h3,
.zseo h4,
.zseo h5,
.zseo h6 {
  font-family: inherit;
  font-weight: bold;
  line-height: normal;
  color: inherit;
}

.zseo p,
.zseo span,
.zseo a,
.zseo li,
.zseo strong,
.zseo em,
.zseo summary,
.zseo details,
.zseo blockquote,
.zseo label,
.zseo input,
.zseo button,
.zseo div {
  font-family: inherit;
}

.zseo h1,
.zseo h2,
.zseo h3,
.zseo h4,
.zseo h5,
.zseo h6,
.zseo p,
.zseo ul,
.zseo ol,
.zseo figure,
.zseo blockquote,
.zseo details {
  padding: 0;
}

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

.zseo img {
  display: block;
  width: 100%;
  height: auto;
}

.zseo img.lazyload,
.zseo img.lazyloading,
.zseo img.lazyloaded {
  opacity: 1 !important;
}

.zseo-shell {
  width: var(--zseo-shell);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.zseo-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--zseo-shadow);
}

.zseo-board--content {
  border-color: rgba(17, 17, 17, 0.06);
}

.zseo-board-section {
  padding: 32px 18px;
  border-top: 0;
}

.zseo-board-section:first-child {
  border-top: 0;
}

.zseo-hero-scroll {
  position: relative;
  height: 108svh;
  margin-bottom: 20px;
}

.zseo-hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.zseo-hero-frame {
  width: calc(var(--zseo-shell) + (100vw - var(--zseo-shell)) * (1 - var(--zseo-hero-progress)));
  max-width: 100vw;
  height: calc(100svh - 88px * var(--zseo-hero-progress));
  margin: 0 auto;
  transform: translate3d(0, calc(14px * var(--zseo-hero-progress)), 0);
  transform-origin: center top;
  will-change: width, height, transform;
}

.zseo-hero {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: calc(6px + 24px * var(--zseo-hero-progress));
  background: #d8d8d6;
  box-shadow:
    0 calc(8px + 14px * var(--zseo-hero-progress))
    calc(22px + 36px * var(--zseo-hero-progress))
    rgba(0, 0, 0, calc(0.06 + 0.08 * var(--zseo-hero-progress)));
}

.zseo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.84) 16%,
      rgba(255, 255, 255, 0.62) 30%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(255, 255, 255, 0.08) 66%,
      rgba(255, 255, 255, 0) 78%
    );
}

.zseo-hero::after {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 48%, rgba(255, 255, 255, 0.64) 0, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 233, 210, 0.28) 0, rgba(255, 233, 210, 0.04) 18%, rgba(255, 233, 210, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.1) 100%);
  filter: blur(5px);
}

.zseo-hero__media {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #d8d8d6;
}

.zseo-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.02 + 0.04 * (1 - var(--zseo-hero-progress))));
}

.zseo-hero__content {
  position: absolute;
  top: 50%;
  left: clamp(34px, 5.2vw, 76px);
  z-index: 2;
  width: calc(50% - clamp(34px, 5.2vw, 76px));
  max-width: 50%;
  transform: translateY(-50%);
}

.zseo-hero__icons {
  display: flex;
  align-items: center;
}

.zseo-hero__icons img {
  width: auto;
  height: 26px;
  max-width: min(280px, 100%);
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.9;
}

.zseo-hero__family {
  margin: 20px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 11.2px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zseo-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.zseo-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  color: #232323;
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1;
}

.zseo-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #747474;
  font-size: 11.52px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zseo-kicker::before {
  display: none;
}

.zseo-kicker--light {
  color: rgba(255, 255, 255, 0.84);
}

.zseo-kicker--light::before {
  background: rgba(255, 255, 255, 0.7);
}

.zseo-kicker--hero {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.62);
}

.zseo-kicker--hero::before {
  background: rgba(17, 17, 17, 0.5);
}

.zseo-title {
  margin: 0 auto;
  max-width: 12.5ch;
  color: #ffffff;
  font-size: clamp(30.4px, 3.8vw, 52.8px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.zseo-heading {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(21.76px, 2.1vw, 30.72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.zseo-hero .zseo-title {
  margin: 10px 0 0;
  max-width: 100%;
  color: #101010;
  font-size: clamp(31.2px, 3.55vw, 52.8px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  text-shadow: none;
  text-wrap: normal;
}

.zseo-hero__accent {
  margin: 16px 0 0;
  padding-top: 6px;
  max-width: 100%;
  color: #292929;
  font-size: clamp(14.72px, 1.02vw, 16.64px);
  font-weight: 600;
  line-height: 1.34;
}

.zseo-lead,
.zseo-paragraph {
  margin: 14px 0 0;
  max-width: 672px;
  line-height: 1.72;
}

.zseo-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.68px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.zseo-hero .zseo-lead {
  margin-top: 14px;
  max-width: 100%;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(14.4px, 0.96vw, 15.68px);
  text-shadow: none;
}

.zseo-paragraph {
  color: var(--zseo-ink-soft);
}

.zseo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.zseo-actions--center {
  justify-content: center;
}

.zseo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.44);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  font-size: 14.72px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.zseo-button:visited,
.zseo-button:hover,
.zseo-button:focus-visible,
.zseo-button * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.zseo-button--ghost {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.28);
  color: #161616 !important;
  -webkit-text-fill-color: #161616;
}

.zseo-button--ghost:visited,
.zseo-button--ghost:hover,
.zseo-button--ghost:focus-visible,
.zseo-button--ghost * {
  color: #161616 !important;
  -webkit-text-fill-color: #161616;
}

.zseo-button:hover,
.zseo-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(16, 16, 16, 0.56);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.zseo-button--ghost:hover,
.zseo-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.44);
}

.zseo-hero .zseo-actions {
  margin-top: 20px;
  gap: 10px;
}

.zseo-hero .zseo-button {
  min-height: 48px;
  padding: 0 20px;
  border-color: rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: #101010;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 12px 22px rgba(16, 16, 16, 0.1);
  font-size: 14.4px;
}

.zseo-hero .zseo-button:hover,
.zseo-hero .zseo-button:focus-visible {
  background: #1a1a1a;
}

.zseo-hero .zseo-button--ghost {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 22px rgba(16, 16, 16, 0.05);
}

.zseo-hero .zseo-button--ghost:hover,
.zseo-hero .zseo-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.zseo-summary-strip,
.zseo-overview,
.zseo-feature {
  display: grid;
  gap: 14px;
}

.zseo-feature {
  gap: 24px;
}

.zseo-feature__copy {
  padding-left: 4px;
}

.zseo-gallery-showcase {
  display: grid;
  gap: 18px;
}

.zseo-gallery-separator {
  height: 1px;
  background: var(--zseo-surface);
}

.zseo-gallery-grid {
  display: grid;
  gap: 14px;
}

.zseo-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #d9d9d6;
  box-shadow: var(--zseo-card-shadow);
  min-height: 240px;
}

.zseo-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.12) 100%);
}

.zseo-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zseo-gallery-card--copy {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #eef1f4 0%, #f9f9f8 18%, #ffffff 58%);
}

.zseo-gallery-card--copy::after {
  display: none;
}

.zseo-gallery-card__ghost {
  position: absolute;
  inset: auto auto 18px 18px;
  z-index: 0;
  color: rgba(17, 17, 17, 0.045);
  font-size: clamp(60.8px, 10vw, 128px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.zseo-gallery-card__copy-stage {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  width: 100%;
  min-height: 100%;
  text-align: center;
}

.zseo-gallery-card__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(17, 17, 17, 0.48);
  font-size: 12.16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zseo-gallery-card__headline {
  --zseo-gallery-headline-size: clamp(24.8px, 2.9vw, 48px);
  --zseo-gallery-headline-size-actual: var(--zseo-gallery-headline-size);
  --zseo-gallery-headline-secondary-size-actual: calc(var(--zseo-gallery-headline-size-actual) * 0.84);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 8px);
  width: min(100%, 544px);
  min-height: calc(var(--zseo-gallery-headline-size-actual) * 1.96);
  margin: 0;
  color: #161616;
  text-align: center;
}

.zseo-gallery-card__headline-line {
  display: block;
  white-space: nowrap;
  margin: 0;
}

.zseo-gallery-card__headline-line--primary {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(var(--zseo-gallery-headline-size-actual) * 1.02);
  color: #161616;
  font-size: var(--zseo-gallery-headline-size-actual);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.zseo-gallery-card__headline-line--secondary {
  color: rgba(17, 17, 17, 0.94);
  font-size: var(--zseo-gallery-headline-secondary-size-actual);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  min-height: calc(var(--zseo-gallery-headline-secondary-size-actual) * 0.95);
}

.zseo-gallery-card__subline {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(15.2px, 1.25vw, 17.28px);
  font-weight: 500;
  line-height: 1.55;
}

.zseo-gallery-card__headline--rotating {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transform-origin: 50% 100%;
  transition:
    opacity 900ms cubic-bezier(.22, .61, .36, 1),
    transform 1200ms cubic-bezier(.22, .61, .36, 1),
    filter 1200ms cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform, filter;
}

.zseo-gallery-card__headline--rotating.is-leaving,
.zseo-gallery-card__headline--rotating.is-entering {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(10px);
}

.zseo-gallery-card__phrase-bank {
  display: none;
}

.zseo-gallery-card__microtags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 512px;
}

.zseo-gallery-card__microtags span {
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(17, 17, 17, 0.64);
  font-size: 11.84px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.zseo-gallery-card__panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--zseo-card-shadow);
}

.zseo-gallery-card__panel strong {
  color: #191919;
  font-size: 15.2px;
  line-height: 1.15;
}

.zseo-gallery-card__panel span:last-child {
  color: #5d5d5d;
  font-size: 12.16px;
  line-height: 1.45;
}

.zseo-proof {
  display: grid;
  gap: 34px;
}

.zseo-proof__center {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 12px 8px 8px;
  text-align: center;
}

.zseo-proof__strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.zseo-proof__strip--top {
  order: 1;
}

.zseo-proof__center {
  order: 2;
}

.zseo-proof__title {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(35.2px, 5vw, 54.4px);
  line-height: 0.94;
  text-align: center;
}

.zseo-proof__copy {
  max-width: 60ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(16px, 1.35vw, 18.24px);
  font-weight: 500;
  line-height: 1.56;
  text-align: center;
}

.zseo-proof__general {
  max-width: 68ch;
  margin: 0;
  font-size: clamp(15.68px, 1.16vw, 16.8px);
  line-height: 1.72;
  text-align: center;
}

.zseo-proof .zseo-actions {
  justify-content: center;
  margin-top: 12px;
}

.zseo-proof .zseo-button {
  min-height: 48px;
  padding: 0 22px;
  border-color: rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #101010;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--zseo-card-shadow);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  font-size: 15.04px;
}

.zseo-proof .zseo-button:hover,
.zseo-proof .zseo-button:focus-visible {
  background: #1b1b1b;
}

.zseo-proof .zseo-button--ghost {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--zseo-card-shadow);
  color: #161616 !important;
  -webkit-text-fill-color: #161616;
}

.zseo-proof .zseo-button--ghost:visited,
.zseo-proof .zseo-button--ghost:hover,
.zseo-proof .zseo-button--ghost:focus-visible,
.zseo-proof .zseo-button--ghost * {
  color: #161616 !important;
  -webkit-text-fill-color: #161616;
}

.zseo-proof .zseo-button--ghost:hover,
.zseo-proof .zseo-button--ghost:focus-visible {
  background: #ffffff;
}

.zseo-proof__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #d9d9d6;
  box-shadow: var(--zseo-card-shadow);
  min-height: 152px;
}

.zseo-proof__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.zseo-proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zseo-proof__media--1 img {
  object-position: center 32%;
}

.zseo-proof__media--2 img {
  object-position: 42% 50%;
}

.zseo-proof__media--3 img {
  object-position: center 46%;
}

.zseo-proof__media--4 img {
  object-position: center 42%;
}

.zseo-proof__media--5 img {
  object-position: center 58%;
}

.zseo-proof__media--6 img {
  object-position: 55% 50%;
}

.zseo-proof__media--7 img {
  object-position: center 68%;
}

.zseo-proof__media--8 img {
  object-position: center 60%;
}

.zseo-proof__media--tall {
  aspect-ratio: 0.78 / 1.2;
}

.zseo-proof__media--medium {
  aspect-ratio: 0.84 / 1.04;
}

.zseo-proof__media--short {
  aspect-ratio: 0.88 / 0.96;
}

.zseo-summary-banner,
.zseo-service-card,
.zseo-quote-card,
.zseo-faq__item,
.zseo-cta-panel {
  border: 1px solid var(--zseo-line);
  border-radius: 22px;
  background: var(--zseo-surface-soft);
  box-shadow: var(--zseo-card-shadow);
}

.zseo-summary-banner {
  display: grid;
  gap: 18px;
  padding: 24px 22px;
}

.zseo-summary-banner--proof {
  gap: 20px;
  padding: 24px 22px;
  margin-top: 0;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(250, 250, 248, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: var(--zseo-card-shadow);
}

.zseo-proof-separator {
  margin: 16px auto 28px;
  max-width: min(880px, 100%);
}

.zseo-summary-banner__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(27.2px, 2.55vw, 39.2px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.zseo-summary-banner__features {
  display: grid;
  gap: 12px;
}

.zseo-summary-feature {
  --zseo-summary-pointer-x: 50%;
  --zseo-summary-pointer-y: 50%;
  --zseo-summary-rotate-x: 0deg;
  --zseo-summary-rotate-y: 0deg;
  --zseo-summary-drift-x: 0px;
  --zseo-summary-drift-y: 0px;
  --zseo-summary-lift-y: 0px;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  isolation: isolate;
  gap: 12px;
  min-height: 146px;
  padding: 18px 14px;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(252, 252, 252, 0.98) 0%, rgba(245, 246, 248, 0.96) 100%);
  text-align: center;
  backface-visibility: hidden;
  transform: perspective(920px) rotateX(var(--zseo-summary-rotate-x)) rotateY(var(--zseo-summary-rotate-y)) translate3d(0, var(--zseo-summary-lift-y), 0);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-summary-banner--proof .zseo-summary-feature {
  box-shadow: var(--zseo-card-shadow);
}

.zseo-summary-feature::before,
.zseo-summary-feature::after {
  content: "";
  position: absolute;
  inset: -34%;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
  transform-origin: center;
  will-change: transform, opacity, background-position;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-summary-feature::before {
  background:
    radial-gradient(circle at var(--zseo-summary-pointer-x) var(--zseo-summary-pointer-y), rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 16%, rgba(236, 241, 247, 0.46) 32%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 76% 74%, rgba(219, 223, 229, 0.5) 0%, rgba(219, 223, 229, 0.18) 34%, rgba(219, 223, 229, 0) 62%);
  background-size: 150% 150%;
  opacity: 0.96;
  animation: zseo-summary-wave 11s cubic-bezier(0.42, 0.05, 0.2, 0.98) infinite alternate;
  transform: translate3d(var(--zseo-summary-drift-x), var(--zseo-summary-drift-y), 0) scale(1.02);
}

.zseo-summary-feature::after {
  background:
    radial-gradient(circle at calc(var(--zseo-summary-pointer-x) + 8%) calc(var(--zseo-summary-pointer-y) - 10%), rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.52) 18%, rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 34% 78%, rgba(231, 235, 240, 0.34) 0%, rgba(231, 235, 240, 0.12) 28%, rgba(231, 235, 240, 0) 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0) 16%, rgba(232, 237, 244, 0.34) 42%, rgba(255, 255, 255, 0.1) 62%, rgba(255, 255, 255, 0) 84%);
  background-size: 150% 150%;
  opacity: 0.86;
  animation: zseo-summary-wave-alt 15s cubic-bezier(0.42, 0.05, 0.2, 0.98) infinite alternate;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--zseo-summary-drift-x) * -0.8), calc(var(--zseo-summary-drift-y) * -0.8), 0) scale(1.06);
}

.zseo-summary-feature__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #1a1a1a;
  transform: translateZ(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-summary-feature__icon svg {
  width: 30px;
  height: 30px;
}

.zseo-summary-feature strong {
  position: relative;
  z-index: 1;
  font-size: 15.68px;
  line-height: 1.2;
  transform: translateZ(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-trust-section {
  position: relative;
  background: #ffffff;
}

.zseo-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.zseo-company-technical {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(640px, 1fr);
  gap: 64px;
  align-items: start;
  min-width: 0;
  padding: 0;
  background: transparent;
}

.zseo-trust-section .zseo-kicker {
  display: block;
  margin: 0 0 13px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.zseo-trust-section .zseo-kicker::before {
  display: none;
}

.zseo-trust-section .zseo-heading {
  margin: 0 0 20px;
  max-width: 780px;
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.zseo-company-copy .zseo-paragraph {
  margin: -4px 0 0;
  max-width: 560px;
  color: var(--zseo-ink-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.zseo-company-table-wrap {
  min-width: 0;
  padding-top: 2px;
}

.zseo-company-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.zseo-company-table th,
.zseo-company-table td {
  vertical-align: middle;
  padding: 12px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.zseo-company-table tr:first-child th,
.zseo-company-table tr:first-child td {
  border-top: 0;
}

.zseo-company-table th {
  width: 122px;
  padding-right: 24px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.zseo-company-table td {
  color: #292a2c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.zseo-company-table a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.zseo-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-top: 44px;
  padding-top: 0;
  border-top: 0;
}

.zseo-related {
  display: grid;
  gap: 0;
  min-width: 0;
  padding: 0;
  background: transparent;
}

.zseo-related__head {
  display: grid;
  gap: 0;
}

.zseo-related--locations .zseo-heading {
  margin-bottom: 24px;
}

.zseo-related__body {
  min-width: 0;
}

.zseo-related-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zseo-related-list li {
  min-width: 0;
}

.zseo-related-list a,
.zseo-related--locations .zseo-related-list__current,
.zseo-related--locations .zseo-related-list__pending {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: #686a6d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: color 150ms ease;
}

.zseo-related-list a::after {
  display: none;
}

.zseo-related-list a:hover {
  color: var(--zseo-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.zseo-related--products .zseo-related-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 10px;
}

.zseo-related--products .zseo-related-list a {
  white-space: nowrap;
}

.zseo-related--locations .zseo-related-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 10px;
}

.zseo-related--locations .zseo-related-list__current {
  color: var(--zseo-ink);
  font-weight: 800;
}

.zseo-related--locations .zseo-related-list__pending {
  color: #686a6d;
}

.zseo-related__empty {
  margin: 0;
  color: var(--zseo-ink-soft);
  font-size: 13.6px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .zseo-company-technical {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zseo-company-copy .zseo-paragraph {
    max-width: 820px;
  }

  .zseo-related--locations .zseo-related-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .zseo-related-grid {
    gap: 30px;
    margin-top: 30px;
  }

  .zseo-related--products .zseo-related-list,
  .zseo-related--locations .zseo-related-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 11px;
  }

  .zseo-related--products .zseo-related-list a {
    white-space: normal;
  }

  .zseo-company-table {
    table-layout: auto;
  }

  .zseo-company-table th,
  .zseo-company-table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .zseo-company-table th {
    padding-bottom: 5px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .zseo-company-table td {
    padding-top: 0;
    border-top: 0;
  }

  .zseo-company-table tr:first-child th {
    border-top: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .zseo-service-card.is-hovering {
    --zseo-service-lift-y: -5px;
    box-shadow:
      0 24px 40px rgba(12, 18, 28, 0.12),
      0 10px 20px rgba(12, 18, 28, 0.06);
  }

  .zseo-service-card.is-hovering::before {
    filter: blur(36px) saturate(1.08);
    opacity: 1;
  }

  .zseo-service-card.is-hovering::after {
    filter: blur(28px) saturate(1.05);
    opacity: 0.9;
  }

  .zseo-service-card.is-hovering .zseo-service-card__top img,
  .zseo-service-card.is-hovering h3 {
    transform: translateZ(18px);
  }

  .zseo-service-card.is-hovering p,
  .zseo-service-card.is-hovering .zseo-service-card__more {
    transform: translateZ(10px);
  }

  .zseo-summary-feature.is-hovering {
    --zseo-summary-lift-y: -4px;
    box-shadow:
      0 20px 34px rgba(17, 17, 17, 0.08),
      0 10px 18px rgba(17, 17, 17, 0.05);
  }

  .zseo-summary-feature.is-hovering::before {
    filter: blur(36px) saturate(1.08);
    opacity: 1;
  }

  .zseo-summary-feature.is-hovering::after {
    filter: blur(28px) saturate(1.06);
    opacity: 0.94;
  }

  .zseo-summary-feature.is-hovering .zseo-summary-feature__icon,
  .zseo-summary-feature.is-hovering strong {
    transform: translateZ(18px);
  }

  .zseo-trust-link:hover {
    border-color: rgba(17, 17, 17, 0.62);
  }

  .zseo-related-list a:hover {
    border-color: rgba(17, 17, 17, 0.2);
    color: #000000;
  }
}

@keyframes zseo-summary-wave {
  0% {
    transform: translate3d(-10%, -8%, 0) scale(1.02) rotate(-2deg);
    background-position: 12% 18%, 78% 72%;
    opacity: 0.84;
  }

  50% {
    transform: translate3d(5%, 4%, 0) scale(1.1) rotate(3deg);
    background-position: 48% 34%, 46% 58%;
    opacity: 0.98;
  }

  100% {
    transform: translate3d(11%, -4%, 0) scale(1.14) rotate(-3deg);
    background-position: 82% 22%, 26% 64%;
    opacity: 0.9;
  }
}

@keyframes zseo-summary-wave-alt {
  0% {
    transform: translate3d(8%, 9%, 0) scale(1.02) rotate(2deg);
    background-position: 76% 18%, 26% 78%, 0% 0%;
    opacity: 0.74;
  }

  50% {
    transform: translate3d(-7%, -2%, 0) scale(1.11) rotate(-3deg);
    background-position: 52% 30%, 46% 52%, 42% 36%;
    opacity: 0.92;
  }

  100% {
    transform: translate3d(-9%, 6%, 0) scale(1.16) rotate(4deg);
    background-position: 24% 26%, 74% 38%, 100% 100%;
    opacity: 0.82;
  }
}

.zseo-story-card,
.zseo-feature__media,
.zseo-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #d9d9d6;
  box-shadow: var(--zseo-card-shadow);
}

.zseo-story-card {
  min-height: 330px;
}

.zseo-story-card--overview {
  min-height: 260px;
}

.zseo-feature__media {
  min-height: 320px;
}

.zseo-media--mosaic-large {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.zseo-media--mosaic-small {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.zseo-story-card img,
.zseo-feature__media img,
.zseo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zseo-story-card__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: #5d5d5d;
  font-size: 11.52px;
  font-weight: 700;
  line-height: 30px;
}

.zseo-overview__panel {
  display: grid;
}

.zseo-overview-cards {
  display: grid;
  gap: 12px;
}

.zseo-overview-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 108px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #262626 0%, #181818 100%);
  box-shadow: var(--zseo-card-shadow);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.zseo-overview-card-row__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  padding: 8px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #f7f5ef 0%, #e7e4dc 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.zseo-overview-card-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.zseo-overview-card-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.04) saturate(1.02);
}

.zseo-overview-card-row__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.zseo-overview-card-row__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11.2px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zseo-overview-card-row__copy strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.28;
}

.zseo-overview-card-row__copy span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.48px;
  line-height: 1.5;
}

.zseo-section-heading {
  max-width: 660px;
  margin-bottom: 16px;
}

.zseo-section-heading--center {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.zseo-section-heading--center .zseo-heading {
  margin-inline: auto;
  max-width: 12ch;
}

.zseo-services .zseo-section-heading--center .zseo-heading {
  max-width: none;
  font-size: clamp(31.2px, 3.2vw, 43.2px);
  line-height: 1.04;
}

.zseo-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 700;
}

.zseo-inline-link::after {
  content: "\2197";
  font-size: 15.2px;
}

.zseo-service-grid,
.zseo-faq {
  display: grid;
  gap: 14px;
}

.zseo-faq-section .zseo-heading {
  max-width: 24ch;
  text-wrap: balance;
}

.zseo-faq-section {
}

.zseo-service-card {
  --zseo-service-pointer-x: 50%;
  --zseo-service-pointer-y: 50%;
  --zseo-service-rotate-x: 0deg;
  --zseo-service-rotate-y: 0deg;
  --zseo-service-drift-x: 0px;
  --zseo-service-drift-y: 0px;
  --zseo-service-lift-y: 0px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 16%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 86% 88%, rgba(228, 232, 237, 0.82) 0%, rgba(228, 232, 237, 0.28) 24%, rgba(228, 232, 237, 0) 52%),
    linear-gradient(180deg, #f8f9fb 0%, #f1f3f5 100%);
  box-shadow: var(--zseo-card-shadow);
  padding: 22px 22px 82px;
  backface-visibility: hidden;
  transform: perspective(1100px) rotateX(var(--zseo-service-rotate-x)) rotateY(var(--zseo-service-rotate-y)) translate3d(0, var(--zseo-service-lift-y), 0);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-service-card::before,
.zseo-service-card::after {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  transform-origin: center;
  will-change: transform, opacity, background-position;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-service-card::before {
  background:
    radial-gradient(circle at var(--zseo-service-pointer-x) var(--zseo-service-pointer-y), rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 18%, rgba(235, 240, 246, 0.46) 34%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 82% 74%, rgba(223, 227, 233, 0.46) 0%, rgba(223, 227, 233, 0.18) 36%, rgba(223, 227, 233, 0) 62%);
  background-size: 155% 155%;
  opacity: 0.94;
  animation: zseo-summary-wave 14s cubic-bezier(0.42, 0.05, 0.2, 0.98) infinite alternate;
  transform: translate3d(var(--zseo-service-drift-x), var(--zseo-service-drift-y), 0) scale(1.04);
}

.zseo-service-card::after {
  background:
    radial-gradient(circle at calc(var(--zseo-service-pointer-x) + 10%) calc(var(--zseo-service-pointer-y) - 9%), rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.56) 18%, rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 30% 80%, rgba(228, 232, 237, 0.34) 0%, rgba(228, 232, 237, 0.12) 28%, rgba(228, 232, 237, 0) 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0) 18%, rgba(232, 237, 244, 0.28) 42%, rgba(255, 255, 255, 0.08) 62%, rgba(255, 255, 255, 0) 84%);
  background-size: 155% 155%;
  opacity: 0.82;
  mix-blend-mode: screen;
  animation: zseo-summary-wave-alt 18s cubic-bezier(0.42, 0.05, 0.2, 0.98) infinite alternate;
  transform: translate3d(calc(var(--zseo-service-drift-x) * -0.72), calc(var(--zseo-service-drift-y) * -0.72), 0) scale(1.08);
}

.zseo-service-card > * {
  position: relative;
  z-index: 1;
}

.zseo-service-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zseo-service-card__top img {
  flex: 0 0 auto;
  width: auto;
  max-width: 42px;
  height: 32px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transform: translateZ(0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-service-card h3 {
  margin: 0;
  color: #17181b;
  font-size: 16.32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.022em;
  max-width: none;
  transform: translateZ(0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-service-card p {
  margin: 26px 0 0;
  color: rgba(35, 38, 44, 0.82);
  line-height: 1.72;
  transform: translateZ(0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 20px;
  bottom: 18px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(22, 24, 28, 0.8) !important;
  -webkit-text-fill-color: rgba(22, 24, 28, 0.8);
  font-size: 12.48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
  box-shadow: none;
  transition: color 180ms ease, transform 180ms ease;
  transform: translateZ(0);
}

.zseo-service-card__more::after {
  content: "\2192";
  font-size: 13.12px;
  transform: translateY(-0.5px);
}

.zseo-service-card__more:visited,
.zseo-service-card__more:hover,
.zseo-service-card__more:focus-visible {
  color: #111111 !important;
  -webkit-text-fill-color: #111111;
  transform: translateY(-1px);
}

.zseo-local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.zseo-local-tags--center {
  justify-content: center;
}

.zseo-proof .zseo-local-tags {
  margin-top: 6px;
}

.zseo-local-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  color: rgba(23, 23, 23, 0.72);
  font-size: 11.84px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: var(--zseo-card-shadow);
}

.zseo-faq__item {
  overflow: hidden;
  padding: 0;
}

.zseo-faq__item summary {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
  padding: 18px 58px 18px clamp(22px, 1.2vw, 34px);
  font-weight: 700;
  line-height: 1.45;
}

.zseo-faq__item summary::-webkit-details-marker {
  display: none;
}

.zseo-faq__item summary::after {
  content: "+";
  position: absolute;
  right: clamp(22px, 1.2vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  color: #161616;
  font-size: 19.2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.zseo-faq__item[open] summary::after {
  content: "-";
}

.zseo-faq__body {
  height: 0;
  overflow: hidden;
  transition: height 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zseo-faq__content {
  display: grid;
  gap: 12px;
  padding: 0 clamp(22px, 1.2vw, 34px) 20px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.zseo-faq__item[open] .zseo-faq__content,
.zseo-faq__item.is-animating .zseo-faq__content {
  opacity: 1;
  transform: translateY(0);
}

.zseo-faq__item p {
  margin: 0;
  color: var(--zseo-ink-soft);
  line-height: 1.72;
}

.zseo-cta-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.zseo-cta-copy {
  display: grid;
  gap: 0;
}

.zseo-cta-copy .zseo-local-tags {
  margin-top: 18px;
}

.zseo [data-zgs-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.zseo [data-zgs-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 979px) {
  .zseo {
    padding-top: 24px;
  }

  .zseo-hero-scroll {
    height: auto;
    margin-bottom: 18px;
  }

  .zseo-hero-stage {
    position: relative;
    height: auto;
    padding: 0;
  }

  .zseo-hero-frame {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
  }

  .zseo-hero {
    min-height: 620px;
    border-radius: 24px;
    box-shadow: var(--zseo-shadow);
  }

  .zseo-hero__content {
    top: auto;
    right: 24px;
    bottom: 34px;
    left: 24px;
    width: min(560px, calc(100% - 48px));
    max-width: none;
    transform: none;
  }

  .zseo-hero__icons {
    gap: 0;
  }

  .zseo-hero__icons img {
    height: 24px;
  }

  .zseo-hero .zseo-title {
    max-width: 100%;
    font-size: clamp(30.4px, 6.6vw, 48px);
  }

  .zseo-hero__accent {
    max-width: 100%;
    font-size: 15.36px;
  }

  .zseo-hero .zseo-lead {
    max-width: 100%;
    font-size: 14.72px;
  }

}

@media (min-width: 720px) {
  .zseo-board-section {
    padding: 42px 24px;
  }

  .zseo-summary-banner {
    grid-template-columns: minmax(360px, 1.35fr) minmax(420px, 0.9fr);
    align-items: center;
  }

  .zseo-summary-banner--proof {
    grid-template-columns: minmax(360px, 1.15fr) minmax(420px, 0.95fr);
  }

  .zseo-proof-separator {
    margin-bottom: 36px;
  }

  .zseo-summary-banner__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zseo-summary-feature {
    min-height: 160px;
  }

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

  .zseo-service-card {
    min-height: 320px;
  }

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

  .zseo-gallery-card--large,
  .zseo-gallery-card--wide {
    grid-column: 1 / span 2;
  }

  .zseo-proof {
    gap: 22px;
  }

  .zseo-proof__center {
    max-width: 860px;
    margin-inline: auto;
  }

  .zseo-proof__strip--top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

}

@media (min-width: 980px) {
  .zseo-hero {
    min-height: 100%;
  }

  .zseo-hero__content {
    width: calc(50% - clamp(34px, 5.2vw, 76px));
    max-width: 50%;
  }

  .zseo-overview {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    align-items: center;
  }

  .zseo-overview-cards {
    gap: 14px;
  }

  .zseo-feature {
    grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 40px;
  }

  .zseo-feature__copy {
    padding-left: 10px;
  }

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

  .zseo-service-card {
    min-height: 352px;
    padding: 22px 20px 104px;
  }

  .zseo-gallery-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(220px, 0.84fr) minmax(220px, 0.84fr);
    grid-template-areas:
      "large small-a small-b"
      "large wide wide";
    align-items: stretch;
  }

  .zseo-gallery-card--large {
    grid-area: large;
    min-height: 100%;
  }

  .zseo-gallery-card--small-a {
    grid-area: small-a;
    min-height: 220px;
  }

  .zseo-gallery-card--small-b {
    grid-area: small-b;
    min-height: 220px;
  }

  .zseo-gallery-card--wide {
    grid-area: wide;
    min-height: 250px;
  }

  .zseo-proof {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 24px 20px;
    align-items: start;
  }

  .zseo-proof__center {
    grid-column: 2 / 12;
    grid-row: 2;
    max-width: none;
    gap: 20px;
    padding: 8px 0 10px;
    margin-inline: 0;
    align-self: start;
    z-index: 2;
  }

  .zseo-summary-banner--proof {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 44px;
  }

  .zseo-proof__strip--top {
    display: contents;
  }

  .zseo-proof__media {
    min-height: 0;
  }

  .zseo-proof__media--1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    margin-top: 10px;
  }

  .zseo-proof__media--2 {
    grid-column: 3 / span 2;
    grid-row: 1;
    margin-top: 42px;
  }

  .zseo-proof__media--3 {
    grid-column: 5 / span 2;
    grid-row: 1;
    margin-top: 20px;
  }

  .zseo-proof__media--4 {
    grid-column: 7 / span 2;
    grid-row: 1;
    margin-top: 36px;
  }

  .zseo-proof__media--5 {
    grid-column: 9 / span 2;
    grid-row: 1;
    margin-top: 18px;
  }

  .zseo-proof__media--6 {
    grid-column: 11 / span 2;
    grid-row: 1;
    margin-top: 0;
  }

  .zseo-proof__title {
    max-width: 18ch;
    font-size: clamp(40px, 3.2vw, 64px);
    line-height: 0.94;
  }

  .zseo-proof__copy {
    max-width: 64ch;
    font-size: 17.28px;
  }

  .zseo-proof__general {
    max-width: 72ch;
  }

  .zseo-proof .zseo-local-tags {
    max-width: 920px;
    justify-content: center;
  }

  .zseo-proof__media--tall {
    aspect-ratio: 0.8 / 1.18;
  }

  .zseo-proof__media--medium {
    aspect-ratio: 0.9 / 1.02;
  }

  .zseo-proof__media--short {
    aspect-ratio: 0.94 / 0.96;
  }

  .zseo-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .zseo-faq-section .zseo-heading {
    max-width: 26ch;
  }
}

@media (max-width: 719px) {
  .zseo {
    --zseo-shell: 100%;
    max-width: 100vw;
    padding: 90px 0 72px;
    overflow-x: hidden;
  }

  .zseo *,
  .zseo *::before,
  .zseo *::after {
    min-width: 0;
  }

  .zseo-shell {
    width: 100%;
    max-width: 100vw;
  }

  .zseo-board {
    max-width: 100vw;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .zseo-board-section {
    padding: 28px 16px;
  }

  .zseo-title {
    max-width: none;
  }

  .zseo-hero-scroll {
    margin-bottom: 0;
  }

  .zseo-hero-frame {
    max-width: 100vw;
    overflow: hidden;
  }

  .zseo-hero {
    min-height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .zseo-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.62) 0%,
        rgba(255, 255, 255, 0.34) 38%,
        rgba(255, 255, 255, 0.9) 100%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.62) 48%,
        rgba(255, 255, 255, 0.16) 100%
      );
  }

  .zseo-hero::after {
    inset: -4%;
    filter: blur(3px);
  }

  .zseo-hero__media {
    height: min(78svh, 620px);
    min-height: 520px;
  }

  .zseo-hero__media img {
    object-position: 58% center;
    transform: none;
  }

  .zseo-hero__content {
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
    max-width: none;
    padding: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
  }

  .zseo-hero__icons img {
    height: 20px;
  }

  .zseo-hero__family {
    font-size: 9.6px;
    letter-spacing: 0.28em;
  }

  .zseo-hero .zseo-title {
    max-width: 100%;
    font-size: clamp(26px, 8.2vw, 36px);
    line-height: 1.02;
  }

  .zseo-hero__accent {
    font-size: 13px;
    line-height: 1.36;
  }

  .zseo-hero .zseo-lead {
    font-size: 13px;
    line-height: 1.55;
  }

  .zseo-hero__chips span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .zseo-actions {
    align-items: stretch;
    gap: 8px;
  }

  .zseo-button,
  .zseo-hero .zseo-button,
  .zseo-proof .zseo-button {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    padding: 0 14px;
    font-size: 12px;
    white-space: normal;
  }

  .zseo-actions--center {
    align-items: center;
    justify-content: center;
  }

  .zseo-actions--center .zseo-button {
    width: 100%;
    min-width: 0;
  }

  .zseo-proof {
    gap: 20px;
  }

  .zseo-proof__strip--top {
    order: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .zseo-proof__media {
    min-height: 0;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
  }

  .zseo-proof__media:nth-child(n+3) {
    display: none;
  }

  .zseo-proof__center {
    order: 2;
    gap: 12px;
    padding: 4px 0 0;
  }

  .zseo-proof-separator {
    order: 3;
    margin: 8px auto 12px;
  }

  .zseo-summary-banner--proof {
    order: 4;
  }

  .zseo-hero__content,
  .zseo-proof__center,
  .zseo-summary-banner,
  .zseo-service-card,
  .zseo-gallery-card,
  .zseo-overview-card-row,
  .zseo-feature__copy,
  .zseo-cta-copy {
    min-width: 0;
  }

  .zseo-title,
  .zseo-heading,
  .zseo-proof__title,
  .zseo-summary-banner__title,
  .zseo-gallery-card__headline,
  .zseo-service-card h3,
  .zseo-faq__item summary {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .zseo-hero .zseo-title,
  .zseo-related--locations .zseo-heading {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .zseo-hero .zseo-title {
    font-size: clamp(24px, 7.8vw, 34px);
    line-height: 1.06;
  }

  .zseo-related--locations .zseo-heading {
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.15;
  }

  .zseo-related--locations .zseo-related-list {
    display: block;
    column-gap: 0;
    row-gap: 0;
  }

  .zseo-related--locations .zseo-related-list li {
    display: inline;
  }

  .zseo-related--locations .zseo-related-list li:not(:last-child)::after {
    content: ", ";
    color: #686a6d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
  }

  .zseo-related--locations .zseo-related-list a,
  .zseo-related--locations .zseo-related-list__current,
  .zseo-related--locations .zseo-related-list__pending {
    display: inline;
    padding: 0;
    font-size: 14px;
    line-height: 1.9;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .zseo-summary-banner__title {
    max-width: none;
    font-size: clamp(24px, 7vw, 34px);
  }

  .zseo-proof__title {
    max-width: 12ch;
    font-size: clamp(30px, 10vw, 42px);
    line-height: 0.98;
  }

  .zseo-proof__copy {
    max-width: 34ch;
    font-size: 13.6px;
    line-height: 1.5;
  }

  .zseo-proof__general {
    max-width: 36ch;
    font-size: 13.4px;
    line-height: 1.58;
  }

  .zseo-local-tags {
    gap: 6px;
    margin-top: 14px;
  }

  .zseo-local-tags span {
    max-width: 100%;
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .zseo-service-card__more {
    right: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    justify-content: flex-end;
    white-space: normal;
  }

  .zseo-summary-banner,
  .zseo-summary-banner--proof {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .zseo-summary-banner__features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .zseo-summary-feature {
    min-height: 72px;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    align-content: center;
    gap: 12px;
    padding: 14px 16px;
    text-align: left;
    transform: none;
  }

  .zseo-summary-feature__icon {
    width: 34px;
    height: 34px;
  }

  .zseo-summary-feature__icon svg {
    width: 22px;
    height: 22px;
  }

  .zseo-service-grid,
  .zseo-gallery-grid,
  .zseo-overview,
  .zseo-feature,
  .zseo-overview-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .zseo-service-card {
    min-height: auto;
    padding: 18px 18px 58px;
    border-radius: 20px;
    transform: none;
  }

  .zseo-service-card p {
    margin-top: 14px;
    font-size: 13.4px;
    line-height: 1.58;
  }

  .zseo-gallery-card {
    min-height: 220px;
    border-radius: 18px;
  }

  .zseo-gallery-card--small-a,
  .zseo-gallery-card--small-b {
    display: none;
  }

  .zseo-gallery-card--large {
    min-height: 420px;
  }

  .zseo-gallery-card--copy {
    min-height: auto;
    padding: 28px 18px;
  }

  .zseo-gallery-card__headline {
    --zseo-gallery-headline-size: clamp(24px, 7vw, 34px);
  }

  .zseo-gallery-card__headline-line {
    white-space: normal;
  }

  .zseo-gallery-card__headline-line--primary,
  .zseo-gallery-card__headline-line--secondary {
    min-height: auto;
  }

  .zseo-gallery-card__ghost {
    bottom: 14px;
    left: 14px;
    font-size: 52px;
  }

  .zseo-gallery-card__subline {
    max-width: 30ch;
    font-size: 13.6px;
  }

  .zseo-gallery-card__microtags span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10.8px;
    line-height: 22px;
  }

  .zseo-story-card,
  .zseo-feature__media,
  .zseo-media {
    min-height: 220px;
    border-radius: 18px;
  }

  .zseo-overview-card-row {
    min-height: auto;
    padding: 10px;
    border-radius: 18px;
  }

  .zseo-overview-card-row__media {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .zseo-faq {
    gap: 10px;
  }

  .zseo-faq__item {
    border-radius: 18px;
  }

  .zseo-faq__item summary {
    padding: 16px 46px 16px 18px;
    font-size: 14.4px;
    line-height: 1.42;
  }

  .zseo-faq__item summary::after {
    right: 18px;
  }

  .zseo-faq__content {
    padding: 0 18px 18px;
  }

  .zseo [data-zgs-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .zseo-summary-feature::before,
  .zseo-summary-feature::after,
  .zseo-service-card::before,
  .zseo-service-card::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zseo [data-zgs-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .zseo-button {
    transition: none;
  }

  .zseo-summary-feature::before,
  .zseo-summary-feature::after,
  .zseo-service-card::before,
  .zseo-service-card::after {
    animation: none;
    transform: none;
  }

  .zseo-summary-feature,
  .zseo-summary-feature__icon,
  .zseo-summary-feature strong,
  .zseo-service-card,
  .zseo-service-card__top img,
  .zseo-service-card h3,
  .zseo-service-card p,
  .zseo-service-card__more {
    transition: none;
    transform: none;
  }
}
