@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@500;600;700&family=Outfit:wght@300;400;500;700&display=swap");

@font-face {
  font-family: "Inter Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://rsms.me/inter/font-files/InterDisplay-Medium.woff2?v=4.1") format("woff2");
}

:root {
  --sp-ink: #101817;
  --sp-muted: #5f6f6b;
  --sp-paper: #f7faf8;
  --sp-soft: #eef6f3;
  --sp-line: #d8e8e4;
  --sp-teal: #0f766e;
  --sp-teal-dark: #0b4f49;
  --sp-lime: #d8f36f;
  --sp-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--sp-paper);
  color: var(--sp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.sp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 248, 0.94);
  border-bottom: 1px solid var(--sp-line);
  backdrop-filter: blur(16px);
}

.sp-wrap {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.sp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.sp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sp-ink);
  font-weight: 900;
  text-decoration: none;
}

.sp-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.sp-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-links a {
  color: var(--sp-ink);
  text-decoration: none;
}

.sp-btn,
.sp-links .sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--sp-teal);
  border-radius: 4px;
  background: var(--sp-teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.sp-btn::after {
  content: "→";
  margin-left: 9px;
}

.sp-btn-ghost {
  background: transparent;
  color: var(--sp-teal-dark);
}

.sp-hero {
  padding: 92px 0 38px;
  text-align: center;
}

.sp-eyebrow {
  margin: 0 0 18px;
  color: var(--sp-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sp-hero h1,
.sp-section-head h2,
.sp-final h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sp-mobile-break {
  display: none;
}

.sp-rotating-headline {
  display: grid;
  gap: 0.12em;
  font-size: clamp(2.45rem, 4.9vw, 4rem);
  max-width: min(1120px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.sp-fixed-headline {
  display: block;
  max-width: 100%;
}

.sp-rotating-slot {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  letter-spacing: 0;
}

.sp-rotating-text {
  display: block;
  height: 100%;
  line-height: 1.04;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(90deg, var(--sp-teal-dark), #17b8a6, var(--sp-teal));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.sp-rotating-text.is-leaving {
  animation: sp-phrase-out 420ms ease forwards;
}

.sp-rotating-text.is-entering {
  animation: sp-phrase-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sp-phrase-out {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -0.75em, 0);
  }
}

@keyframes sp-phrase-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.sp-hero p {
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: var(--sp-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.sp-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.sp-proof-note {
  margin-top: 42px;
  color: var(--sp-teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-csos-hero {
  padding-top: 76px;
  text-align: left;
}

.sp-csos-hero .sp-wrap {
  width: min(1500px, calc(100vw - 28px));
}

.sp-hero-test-grid {
  display: grid;
  grid-template-columns: minmax(104px, 150px) minmax(0, 1fr) minmax(104px, 150px);
  gap: clamp(24px, 3.4vw, 52px);
  align-items: center;
}

.sp-csos-hero .sp-rotating-headline {
  max-width: min(1080px, 100%);
  font-size: clamp(2.65rem, 4.65vw, 4.28rem);
}

.sp-csos-hero .sp-fixed-headline {
  white-space: nowrap;
}

.sp-hero-copy {
  min-width: 0;
  text-align: center;
}

.sp-hero-testimonials {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: 18px;
  mask-image: linear-gradient(to bottom, transparent 0, black 18%, black 82%, transparent 100%);
}

.sp-hero-testimonial-track {
  display: grid;
  gap: 18px;
  animation: sp-testimonial-up 34s linear infinite;
}

.sp-hero-testimonials:hover .sp-hero-testimonial-track {
  animation-play-state: paused;
}

.sp-mini-testimonial,
.sp-testimonial-card {
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.72)),
    #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.07);
}

.sp-mini-testimonial {
  min-height: 116px;
  padding: 15px;
}

.sp-mini-testimonial blockquote,
.sp-testimonial-card blockquote {
  margin: 0;
  color: var(--sp-ink);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.34;
}

.sp-mini-testimonial blockquote {
  font-size: 0.82rem;
}

.sp-stars {
  margin-top: 10px;
  color: #f6b72b;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.sp-mini-testimonial figcaption,
.sp-testimonial-card figcaption {
  margin-top: 10px;
  color: var(--sp-teal-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes sp-testimonial-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.sp-marquee {
  overflow: hidden;
  padding: 28px 0 58px;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.sp-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--sp-gap, 20px);
  animation: sp-marquee-left var(--sp-speed, 45s) linear infinite;
}

.sp-marquee-stack {
  display: grid;
  gap: 18px;
  padding: 8px 0 18px;
}

.sp-marquee-stack .sp-marquee-track {
  padding: 0 0 4px;
}

.sp-email-row-reverse {
  animation-name: sp-marquee-right;
}

.sp-marquee:hover .sp-marquee-track {
  animation-play-state: paused;
}

@keyframes sp-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sp-email-card,
.sp-video-card {
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 24, 23, 0.08);
}

.sp-email-card {
  width: 220px;
  height: 420px;
}

.sp-marquee-stack .sp-email-card {
  width: 188px;
  height: 356px;
  border-radius: 12px;
}

.sp-video-card {
  position: relative;
  width: 200px;
  height: 356px;
  background: #000;
}

.sp-email-card img,
.sp-video-card img,
.sp-video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.sp-video-card iframe {
  pointer-events: none;
}

.sp-logo-strip {
  max-width: 100%;
  padding: 20px 0;
  border-top: 0;
  border-bottom: 0;
  background: #050706;
  overflow: hidden;
}

.sp-logo-label {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.sp-logo-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: sp-strip-move 34s linear infinite;
}

.sp-logo-strip:hover .sp-logo-track {
  animation-play-state: paused;
}

.sp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 46px;
  opacity: 0.9;
}

.sp-logo-mark img {
  width: auto;
  max-width: 220px;
  max-height: 34px;
  object-fit: contain;
}

@keyframes sp-strip-move {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.sp-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.sp-metrics {
  border-top: 1px solid var(--sp-line);
  border-bottom: 1px solid var(--sp-line);
  background: #fff;
  padding: 42px 0;
}

.sp-metric strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.sp-metric span {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.sp-section {
  padding: 88px 0;
}

.sp-section-alt {
  background: #fff;
}

.sp-section-head {
  width: min(780px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.sp-section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.sp-section-head p {
  margin: 18px auto 0;
  color: var(--sp-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.sp-flow-hero {
  padding: 92px 0 66px;
}

.sp-flow-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.sp-flow-hero-copy h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.65rem, 5.6vw, 4.85rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sp-flow-hero-copy p:not(.sp-eyebrow) {
  width: min(720px, 100%);
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: clamp(1.03rem, 1.45vw, 1.23rem);
  line-height: 1.5;
}

.sp-flow-hero-copy .sp-proof-note {
  width: min(720px, 100%);
  margin-top: 34px;
}

.sp-vsl-card {
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(16, 24, 23, 0.08);
}

.sp-vsl-frame {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.9), rgba(16, 24, 23, 0.96)),
    var(--sp-ink);
  color: #fff;
}

.sp-vsl-play {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--sp-lime);
  font-size: 1.6rem;
  line-height: 1;
}

.sp-vsl-frame span {
  margin-top: -72px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sp-vsl-card p {
  margin: 14px 2px 0;
  color: var(--sp-teal-dark);
  font-weight: 900;
  line-height: 1.35;
}

.sp-centered-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.sp-centered-cta p {
  margin: 0;
  color: var(--sp-teal-dark);
  font-size: 1.06rem;
  font-weight: 900;
}

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

.sp-offer-stack div {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.05);
}

.sp-offer-stack strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.sp-offer-stack span {
  display: block;
  margin-top: 9px;
  color: var(--sp-muted);
  font-weight: 850;
  line-height: 1.25;
}

.sp-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sp-design-section {
  overflow: hidden;
}

.sp-timeline {
  display: grid;
  gap: 14px;
}

.sp-timeline div {
  display: grid;
  grid-template-columns: minmax(94px, 0.32fr) minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(16, 24, 23, 0.045);
}

.sp-timeline span {
  color: var(--sp-teal);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-timeline h3 {
  margin: 0;
  color: var(--sp-ink);
  font-size: 1.22rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.sp-timeline p {
  margin: 0;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.sp-price-card {
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(16, 24, 23, 0.06);
}

.sp-price-card h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sp-price-card strong {
  display: block;
  margin-top: 24px;
  color: var(--sp-teal);
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.sp-price-card p:not(.sp-eyebrow) {
  margin: 18px 0 0;
  color: var(--sp-muted);
  font-size: 1.04rem;
  line-height: 1.52;
}

.sp-guarantee-card {
  background: var(--sp-ink);
  color: #fff;
}

.sp-guarantee-card h2 {
  color: #fff;
}

.sp-guarantee-card p:not(.sp-eyebrow) {
  color: #d8e8e4;
}

.sp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.sp-quote-card,
.sp-comparison-card,
.sp-proof-card,
.sp-service-card,
.sp-faq-card {
  border: 1px solid var(--sp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
}

.sp-quote-card {
  padding: 36px;
}

.sp-quote-card blockquote {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.sp-quote-card cite {
  display: block;
  margin-top: 20px;
  color: var(--sp-teal);
  font-style: normal;
  font-weight: 900;
}

.sp-problem-grid {
  align-items: center;
}

.sp-problem-punch {
  color: var(--sp-ink) !important;
  font-weight: 900;
}

.sp-cycle-card {
  display: grid;
  place-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
  overflow: hidden;
  padding: 14px;
}

.sp-cycle-card img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border-radius: 12px;
}

.sp-symptom-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sp-symptom-list li {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 12px;
  background: rgba(238, 246, 243, 0.72);
  color: var(--sp-ink);
  line-height: 1.34;
}

.sp-symptom-list b {
  color: var(--sp-ink);
  font-size: 1rem;
  font-weight: 900;
}

.sp-symptom-list span {
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.sp-symptom-map {
  display: grid;
  place-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
  padding: 16px;
  overflow: hidden;
}

.sp-symptom-map img {
  display: block;
  width: min(100%, 516px);
  height: auto;
  border-radius: 10px;
}

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

.sp-service-card,
.sp-faq-card {
  padding: 24px;
}

.sp-service-card span,
.sp-proof-card span,
.sp-faq-card span {
  color: var(--sp-teal);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sp-service-card h3,
.sp-proof-card h3,
.sp-faq-card h3 {
  margin: 12px 0 0;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sp-service-card p,
.sp-proof-card p,
.sp-faq-card p {
  margin: 12px 0 0;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-csos-faq-grid {
  width: min(860px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.sp-csos-faq-grid .sp-faq-card {
  padding: 26px 28px;
  border-radius: 16px;
}

.sp-csos-faq-grid .sp-faq-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.sp-csos-faq-grid .sp-faq-card p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.55;
}

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

.sp-step-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--sp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
}

.sp-step-card span {
  color: var(--sp-teal);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sp-step-card h3 {
  margin: 12px 0 0;
  color: var(--sp-ink);
  font-size: 1.32rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.sp-step-card p {
  margin: 12px 0 0;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sp-comparison-card {
  padding: 28px;
}

.sp-comparison-card.good {
  background: var(--sp-teal);
  color: #fff;
}

.sp-comparison-card h3 {
  margin: 0 0 18px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.sp-comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-comparison-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--sp-muted);
  line-height: 1.35;
}

.sp-comparison-card.good li {
  border-top-color: rgba(255, 255, 255, 0.22);
  color: #eafff9;
}

.sp-proof-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 24px;
  color: var(--sp-ink);
  text-decoration: none;
}

.sp-proof-stat {
  margin-top: auto;
  color: var(--sp-teal);
  font-size: 3.2rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.sp-proof-card small {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  font-size: 0.95rem;
}

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

.sp-proof-card-wide {
  position: relative;
  min-height: 430px;
  border-color: rgba(15, 118, 110, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.82)),
    #fff;
  box-shadow:
    0 34px 70px rgba(16, 24, 23, 0.12),
    0 12px 24px rgba(15, 118, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sp-proof-card-wide::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 243, 111, 0.42), rgba(216, 243, 111, 0));
  pointer-events: none;
}

.sp-proof-card-wide:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow:
    0 44px 88px rgba(16, 24, 23, 0.16),
    0 18px 34px rgba(15, 118, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
}

.sp-proof-card-wide p {
  margin: 16px 0 0;
  color: var(--sp-muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.sp-case-hero {
  padding: 86px 0 44px;
}

.sp-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: end;
}

.sp-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sp-teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.sp-back-link::before {
  content: "←";
  margin-right: 8px;
}

.sp-case-hero h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: normal;
  text-wrap: balance;
}

.sp-case-hero p {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--sp-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.sp-case-result-card {
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 23, 0.08);
  padding: 28px;
}

.sp-case-result-card strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.sp-case-result-card span {
  display: block;
  margin-top: 12px;
  color: var(--sp-muted);
  font-weight: 850;
  line-height: 1.35;
}

.sp-case-body {
  padding: 36px 0 86px;
}

.sp-case-section {
  border-top: 1px solid var(--sp-line);
  padding: 34px 0;
}

.sp-case-section h2 {
  margin: 0 0 18px;
  color: var(--sp-ink);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1;
}

.sp-case-section p {
  max-width: 760px;
  margin: 0;
  color: var(--sp-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.sp-case-list div {
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.sp-case-list b {
  display: block;
  margin-bottom: 8px;
  color: var(--sp-teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-case-list span {
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-case-quote {
  margin-top: 20px;
  border-left: 4px solid var(--sp-teal);
  background: var(--sp-soft);
  padding: 20px;
  color: var(--sp-ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
}

.sp-saas-hero {
  padding: 92px 0 58px;
}

.sp-saas-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.sp-saas-hero h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sp-saas-hero p:not(.sp-eyebrow) {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
  line-height: 1.5;
}

.sp-cta-row-left {
  justify-content: flex-start;
}

.sp-slack-proof {
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 23, 0.08);
  overflow: hidden;
}

.sp-slack-proof img {
  display: block;
  width: 100%;
}

.sp-slack-proof figcaption {
  border-top: 1px solid var(--sp-line);
  padding: 14px 18px;
  color: var(--sp-muted);
  font-size: 0.84rem;
  font-weight: 750;
}

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

.sp-chart-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(16, 24, 23, 0.05);
}

.sp-chart-panel h3 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sp-chart-panel p:not(.sp-eyebrow) {
  margin: 14px 0 0;
  color: var(--sp-muted);
  line-height: 1.55;
}

.sp-chart-panel svg {
  width: 100%;
  height: auto;
}

.sp-chart-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
}

.sp-donut-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.sp-chart-legend {
  display: grid;
  gap: 10px;
}

.sp-chart-legend div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  background: var(--sp-soft);
  padding: 12px;
}

.sp-chart-legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.sp-chart-legend b {
  display: block;
  color: var(--sp-ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sp-chart-legend span {
  color: var(--sp-teal-dark);
  font-weight: 900;
}

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

.sp-proof-row div,
.sp-saas-work-list div,
.sp-ops-grid div {
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
}

.sp-proof-row strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.sp-proof-row span,
.sp-saas-work-list span,
.sp-ops-grid span {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-left-head {
  margin: 0;
  text-align: left;
}

.sp-saas-work-list {
  display: grid;
  gap: 12px;
}

.sp-saas-work-list b,
.sp-ops-grid b {
  display: block;
  color: var(--sp-teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-founder-quote {
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--sp-line);
  border-left: 5px solid var(--sp-teal);
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(16, 24, 23, 0.06);
}

.sp-founder-quote blockquote {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.35;
}

.sp-founder-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--sp-teal-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.sp-screenshot-wall figure {
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 24, 23, 0.05);
}

.sp-screenshot-wall img {
  display: block;
  width: 100%;
}

.sp-screenshot-wall figcaption {
  border-top: 1px solid var(--sp-line);
  padding: 12px 16px;
  color: var(--sp-teal-dark);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sp-testimonial-heading {
  margin-bottom: 20px;
}

.sp-testimonial-marquee {
  overflow: hidden;
  padding: 10px 0 24px;
}

.sp-testimonial-marquee-left {
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.sp-testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: sp-marquee-right 48s linear infinite;
}

.sp-testimonial-marquee:hover .sp-testimonial-track {
  animation-play-state: paused;
}

.sp-testimonial-marquee-left .sp-testimonial-track {
  animation-name: sp-marquee-left;
}

.sp-testimonial-marquee-left .sp-testimonial-track figure {
  width: min(360px, 84vw);
}

.sp-testimonial-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.sp-testimonial-card blockquote {
  font-size: 1.14rem;
}

.sp-testimonial-card .sp-stars {
  font-size: 0.9rem;
}

.sp-testimonial-track figure {
  width: min(340px, 82vw);
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 24, 23, 0.06);
}

.sp-testimonial-track img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top;
}

.sp-testimonial-track figcaption {
  border-top: 1px solid var(--sp-line);
  padding: 10px 14px;
  color: var(--sp-teal-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sp-testimonial-track .sp-testimonial-card {
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.72)),
    #fff;
  overflow: visible;
}

.sp-testimonial-track .sp-testimonial-card figcaption {
  border-top: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

@keyframes sp-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.sp-footer {
  border-top: 1px solid var(--sp-line);
  background: #fff;
  padding: 44px 0;
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.7fr));
  gap: 28px;
}

.sp-footer h3 {
  margin: 0 0 12px;
  color: var(--sp-ink);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.sp-footer a,
.sp-footer p {
  display: block;
  margin: 7px 0;
  color: var(--sp-muted);
  font-size: 0.94rem;
  line-height: 1.45;
  text-decoration: none;
}

.sp-footer a:hover {
  color: var(--sp-teal);
}

.sp-final {
  padding: 96px 0;
  text-align: center;
  background: var(--sp-ink);
  color: #fff;
}

.sp-final h2 {
  color: #fff;
}

.sp-final p {
  width: min(620px, 100%);
  margin: 18px auto 0;
  color: #d8e8e4;
  font-size: 1.08rem;
  line-height: 1.5;
}

.sp-final .sp-btn {
  margin-top: 28px;
  background: var(--sp-lime);
  border-color: var(--sp-lime);
  color: var(--sp-ink);
}

@media (max-width: 880px) {
  .sp-wrap {
    width: min(1120px, calc(100vw - 32px));
  }

  .sp-nav-inner {
    min-height: 68px;
  }

  .sp-links {
    display: none;
  }

  .sp-hero {
    padding-top: 70px;
  }

  .sp-flow-hero {
    padding: 58px 0 42px;
  }

  .sp-flow-hero-grid,
  .sp-price-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sp-flow-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.48rem);
    letter-spacing: -0.035em;
    line-height: 1;
    overflow-wrap: normal;
  }

  .sp-flow-hero-copy p:not(.sp-eyebrow) {
    width: min(330px, 100%);
    font-size: 1rem;
  }

  .sp-flow-hero-copy .sp-proof-note {
    width: min(330px, 100%);
  }

  .sp-flow-hero .sp-cta-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .sp-flow-hero .sp-cta-row .sp-btn {
    width: min(330px, 100%);
  }

  .sp-vsl-frame {
    min-height: 210px;
  }

  .sp-csos-hero {
    text-align: center;
  }

  .sp-hero-test-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sp-hero-testimonials {
    display: none;
  }

  .sp-hero-copy {
    text-align: center;
  }

  .sp-hero h1,
  .sp-section-head h2,
  .sp-final h2 {
    font-size: clamp(1.82rem, 8.1vw, 2.16rem);
    letter-spacing: -0.032em;
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sp-hero h1.sp-rotating-headline {
    font-size: clamp(1.55rem, 7vw, 1.82rem);
    max-width: calc(100vw - 32px);
    letter-spacing: -0.032em;
  }

  .sp-mobile-break {
    display: inline;
  }

  .sp-rotating-headline {
    gap: 0.14em;
    max-width: min(340px, calc(100vw - 32px));
  }

  .sp-rotating-slot {
    font-size: 0.68em;
    height: 1.24em;
  }

  .sp-rotating-text {
    height: 100%;
    line-height: 1.08;
    white-space: nowrap;
  }

  .sp-two-col .sp-section-head h2,
  .sp-quote-card blockquote {
    font-size: clamp(1.68rem, 7.6vw, 2rem);
    letter-spacing: -0.032em;
    line-height: 1.05;
  }

  .sp-hero p {
    width: min(300px, 100%);
    font-size: 0.96rem;
  }

  .sp-proof-note {
    width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .sp-cta-row {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .sp-cta-row .sp-btn {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .sp-metric-row,
  .sp-two-col,
  .sp-case-hero-grid,
  .sp-saas-hero-grid,
  .sp-chart-panel,
  .sp-chart-grid,
  .sp-donut-layout,
  .sp-comparison,
  .sp-steps-grid,
  .sp-offer-stack,
  .sp-flow-grid {
    grid-template-columns: 1fr;
  }

  .sp-cycle-card {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .sp-cycle-arrows,
  .sp-cycle-card::before,
  .sp-cycle-card::after {
    display: none;
  }

  .sp-cycle-step {
    position: static;
    width: 100%;
    min-height: 0;
    transform: none;
    padding: 14px;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 16px;
    background: #fff;
    text-align: left;
  }

  .sp-cycle-step {
    border-radius: 14px;
  }

  .sp-cycle-step span,
  .sp-symptom-list li {
    overflow-wrap: anywhere;
  }

  .sp-symptom-map {
    padding: 18px;
  }

  .sp-section-head,
  .sp-two-col > *,
  .sp-quote-card,
  .sp-comparison-card,
  .sp-proof-card,
  .sp-service-card,
  .sp-faq-card,
  .sp-step-card,
  .sp-price-card,
  .sp-timeline > div,
  .sp-offer-stack > div {
    min-width: 0;
    max-width: 100%;
  }

  .sp-section-head {
    width: min(320px, 100%);
  }

  .sp-section-head h2,
  .sp-quote-card blockquote {
    max-width: 12ch;
  }

  .sp-section-head p,
  .sp-quote-card cite {
    max-width: 32ch;
  }

  .sp-section-head p,
  .sp-quote-card blockquote,
  .sp-service-card h3,
  .sp-service-card p,
  .sp-proof-card h3,
  .sp-proof-card p,
  .sp-proof-card small,
  .sp-faq-card h3,
  .sp-faq-card p,
  .sp-step-card h3,
  .sp-step-card p {
    overflow-wrap: anywhere;
  }

  .sp-csos-faq-grid .sp-faq-card h3 {
    font-size: 1rem;
  }

  .sp-csos-faq-grid .sp-faq-card p,
  .sp-step-card p {
    font-size: 0.94rem;
  }

  .sp-testimonial-marquee-left .sp-testimonial-track img {
    height: 230px;
  }

  .sp-proof-card-wide {
    width: 100%;
    min-height: 360px;
    padding: 22px;
  }

  .sp-past-work-grid {
    width: min(280px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .sp-proof-stat {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .sp-services-grid,
  .sp-past-work-grid,
  .sp-case-grid,
  .sp-case-list,
  .sp-proof-row,
  .sp-ops-grid,
  .sp-screenshot-wall,
  .sp-footer-grid,
  .sp-faq-grid,
  .sp-flow-grid {
    grid-template-columns: 1fr;
  }

  .sp-timeline div {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .sp-price-card {
    padding: 24px;
  }

  .sp-price-card h2 {
    font-size: clamp(1.72rem, 8vw, 2.08rem);
    letter-spacing: -0.035em;
    line-height: 1.03;
  }

  .sp-price-card strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .sp-marquee-stack {
    gap: 12px;
  }

  .sp-marquee-stack .sp-email-card {
    width: 150px;
    height: 284px;
    border-radius: 10px;
  }

  .sp-saas-hero {
    padding: 58px 0 36px;
  }

  .sp-saas-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 0.98;
    max-width: 12ch;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sp-saas-hero p:not(.sp-eyebrow) {
    width: min(330px, 100%);
    font-size: 1rem;
  }

  .sp-saas-hero .sp-cta-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .sp-saas-hero .sp-cta-row .sp-btn {
    width: min(330px, 100%);
  }

  .sp-chart-panel {
    padding: 18px;
  }

  .sp-case-hero {
    padding-top: 58px;
  }

  .sp-case-hero .sp-wrap,
  .sp-case-body .sp-wrap {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow-x: hidden;
  }

  .sp-case-hero-grid,
  .sp-case-body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .sp-case-hero-grid > *,
  .sp-case-section,
  .sp-case-result-card,
  .sp-case-list > div {
    min-width: 0;
    max-width: 100%;
  }

  .sp-case-result-card {
    width: 100%;
  }

  .sp-case-hero h1 {
    font-size: clamp(1.68rem, 7.6vw, 2.05rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .sp-case-hero p,
  .sp-case-section p {
    display: block;
    width: min(33ch, 100%);
    max-width: min(33ch, 100%);
    overflow-wrap: normal;
    word-break: normal;
  }

  .sp-case-list span,
  .sp-case-result-card span {
    display: block;
    width: min(29ch, 100%);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sp-email-card {
    width: 168px;
    height: 318px;
    border-radius: 14px;
  }

  .sp-video-card {
    width: 164px;
    height: 292px;
  }

  .sp-logo-label {
    width: min(340px, calc(100vw - 32px));
  }

  .sp-logo-track {
    gap: 30px;
    animation-duration: 28s;
  }

  .sp-logo-mark {
    min-width: 214px;
    height: 40px;
  }

  .sp-logo-mark img {
    max-width: 204px;
    max-height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-marquee-track {
    animation: none;
  }

  .sp-logo-track {
    animation: none;
  }

  .sp-hero-testimonial-track,
  .sp-testimonial-track {
    animation: none;
  }
}

/* Obzia-inspired ecommerce flow lander */
.obz-page {
  --obz-bg: #ffffff;
  --obz-panel: #f3fffc;
  --obz-panel-2: #e7fbf7;
  --obz-ink: #101817;
  --obz-muted: rgba(16, 24, 23, 0.68);
  --obz-line: rgba(15, 118, 110, 0.16);
  --obz-card: #ffffff;
  --obz-teal: #0f766e;
  --obz-teal-bright: #17b8a6;
  --obz-lime: #17b8a6;
  background: var(--obz-bg);
  color: var(--obz-ink);
  font-family: Outfit, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
}

.obz-page img {
  max-width: 100%;
}

.obz-wrap {
  width: min(1120px, calc(100vw - 44px));
  margin: 0 auto;
}

.obz-nav {
  position: fixed;
  z-index: 50;
  top: 16px;
  right: max(16px, calc((100vw - 1080px) / 2));
  display: grid;
  width: auto;
  grid-template-columns: auto;
  gap: 0;
  align-items: center;
  border: 1px solid var(--obz-line);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.76);
  padding: 10px;
  backdrop-filter: blur(18px);
}

.obz-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.obz-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.obz-brand-static {
  display: none;
  color: var(--obz-muted);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0;
}

.obz-nav-links {
  display: none;
  justify-content: center;
  gap: 22px;
}

.obz-nav-links a {
  color: var(--obz-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.obz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(23, 184, 166, 0.74);
  border-radius: 8px;
  background: var(--obz-teal);
  color: #fff;
  padding: 0 24px;
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.18);
}

.obz-button::after {
  content: "→";
  margin-left: 10px;
}

.obz-button-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.obz-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  padding: 96px 0 88px;
  text-align: center;
}

.obz-glow {
  position: absolute;
  inset: -35% -20% auto;
  height: 760px;
  background:
    radial-gradient(circle at 50% 24%, rgba(23, 184, 166, 0.24), rgba(23, 184, 166, 0) 36%),
    radial-gradient(circle at 50% 25%, rgba(15, 118, 110, 0.1), rgba(15, 118, 110, 0) 18%);
  filter: blur(4px);
  pointer-events: none;
}

.obz-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.obz-pill {
  margin: 0;
  color: #d89b00;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.22rem, 1.8vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-shadow: 0 14px 34px rgba(216, 155, 0, 0.2);
}

.obz-hero h1,
.obz-section-head h2,
.obz-cta h2 {
  margin: 0;
  color: var(--obz-ink);
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.5rem, 4.35vw, 3.12rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

.obz-hero h1 {
  max-width: min(1320px, calc(100vw - 40px));
}

.obz-hero h1 span {
  display: block;
  white-space: nowrap;
}

.obz-hero h1 em,
.obz-section-head h2 em {
  color: var(--obz-lime);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.17em;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.obz-subhead {
  width: min(690px, 100%);
  margin: 0;
  color: var(--obz-muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
}

.obz-hero-trust {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: -6px;
}

.obz-hero-trust p {
  margin: 0;
  color: rgba(16, 24, 23, 0.7);
  font-size: 0.86rem;
  font-weight: 500;
}

.obz-hero-trust span {
  color: #f6b100;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.obz-limited-spots {
  margin: -6px 0 0;
  color: var(--obz-teal);
  font-size: 0.86rem;
  font-weight: 600;
}

.obz-trust-wall {
  display: grid;
  overflow: hidden;
  gap: 22px;
  border-top: 1px solid var(--obz-line);
  border-bottom: 1px solid var(--obz-line);
  background: #f5fffc;
  padding: 56px 0 42px;
  mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
}

.obz-trust-wall h2 {
  position: relative;
  left: 50vw;
  width: min(1120px, calc(100vw - 44px));
  margin: 0 0 14px;
  transform: translateX(-50%);
  color: var(--obz-ink);
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}

.obz-trust-wall h2 em {
  color: var(--obz-teal);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.18em;
  font-style: italic;
  font-weight: 400;
}

.obz-trust-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  animation: obz-trust-marquee-left 42s linear infinite;
  will-change: transform;
}

.obz-trust-track-reverse {
  animation-name: obz-trust-marquee-right;
  animation-duration: 48s;
}

.obz-trust-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  color: rgba(16, 24, 23, 0.82);
  padding: 0;
  font-size: 1.1rem;
  font-weight: 400;
  white-space: nowrap;
}

.obz-trust-track-soft span {
  color: var(--obz-teal);
}

.obz-trust-track .logo-display {
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.obz-trust-track .logo-serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.38rem;
  font-style: italic;
  letter-spacing: -0.01em;
}

.obz-trust-track .logo-outfit {
  font-family: Outfit, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.obz-section {
  background: #fff;
  color: #101817;
  padding: 108px 0;
  overflow: hidden;
}

.obz-dark {
  background: #fff;
  color: var(--obz-ink);
}

.obz-section-head {
  display: grid;
  width: min(830px, 100%);
  margin: 0 auto 42px;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.obz-section-head p {
  margin: 0;
  color: var(--obz-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.obz-dark .obz-section-head p {
  color: var(--obz-teal);
}

.obz-section-head h2 {
  color: inherit;
  font-size: clamp(2.25rem, 4.2vw, 3.125rem);
  line-height: 1.1;
}

.obz-designs .obz-section-head {
  width: min(960px, 100%);
}

.obz-section-head span {
  width: min(660px, 100%);
  color: var(--obz-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
}

.obz-section:not(.obz-dark) .obz-section-head span {
  color: rgba(16, 24, 23, 0.68);
}

.obz-testimonials,
#proof {
  padding-bottom: 112px;
}

.obz-quote-marquee,
.obz-email-wall {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 7%, black 93%, transparent 100%);
}

.obz-quote-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: obz-marquee-left 48s linear infinite;
}

.obz-quote-track figure {
  display: grid;
  width: min(390px, 84vw);
  min-height: 220px;
  align-content: space-between;
  margin: 0;
  border: 1px solid #d8e8e4;
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(16, 24, 23, 0.08);
}

.obz-quote-track blockquote {
  margin: 0;
  color: #101817;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.48;
}

.obz-quote-track figcaption {
  margin-top: 22px;
  color: var(--obz-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.obz-designs {
  padding-bottom: 66px;
}

.obz-email-wall {
  display: grid;
  gap: 18px;
}

.obz-email-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: obz-marquee-left 54s linear infinite;
}

.obz-email-track-reverse {
  animation-name: obz-marquee-right;
  animation-duration: 60s;
}

.obz-email-track img {
  width: 250px;
  height: auto;
  aspect-ratio: 560 / 1060;
  border: 1px solid var(--obz-line);
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  object-position: top;
  box-shadow: 0 26px 64px rgba(15, 118, 110, 0.16);
}

.obz-footer {
  border-top: 1px solid var(--obz-line);
  background: #fff;
  padding: 28px 0;
}

.obz-footer .obz-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.obz-footer span,
.obz-footer a {
  color: var(--obz-muted);
  font-size: 0.82rem;
  font-weight: 300;
  text-decoration: none;
}

.obz-footer span {
  color: var(--obz-ink);
  font-weight: 500;
}

.obz-process-grid,
.obz-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.obz-process-grid article,
.obz-guides-grid article {
  border: 1px solid #d8e8e4;
  border-radius: 26px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(16, 24, 23, 0.07);
}

.obz-process-grid article {
  border-color: var(--obz-line);
  background: var(--obz-panel);
  color: var(--obz-ink);
}

.obz-process-grid span,
.obz-guides-grid span {
  display: block;
  color: var(--obz-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.obz-process-grid span {
  color: var(--obz-lime);
}

.obz-process-grid h3,
.obz-guides-grid h3 {
  margin: 16px 0 0;
  color: inherit;
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.obz-process-grid p,
.obz-guides-grid p {
  margin: 14px 0 0;
  color: #5f6f6b;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.obz-process-grid p {
  color: rgba(16, 24, 23, 0.68);
}

.obz-section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.obz-flow-carousel {
  position: relative;
  margin-bottom: 28px;
}

.obz-flow-carousel-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.obz-flow-carousel-top p {
  margin: 0;
  color: var(--obz-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.obz-flow-controls {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.obz-flow-controls button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--obz-teal);
  font-size: 1.18rem;
  box-shadow: 0 14px 38px rgba(15, 118, 110, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.obz-flow-controls button:hover {
  background: var(--obz-teal);
  color: #fff;
}

.obz-flow-viewport {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 74px rgba(15, 118, 110, 0.12);
}

.obz-flow-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
  opacity: 0;
  transform: translateX(72px);
  pointer-events: none;
  transition: opacity 440ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.obz-flow-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.obz-flow-slide.is-exiting-left {
  z-index: 1;
  opacity: 0;
  transform: translateX(-72px);
}

.obz-flow-copy p {
  margin: 0 0 12px;
  color: var(--obz-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.obz-flow-copy h3 {
  max-width: 520px;
  margin: 0;
  color: var(--obz-ink);
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.obz-flow-revenue {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: var(--obz-teal);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
}

.obz-flow-copy ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.obz-flow-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(16, 24, 23, 0.72);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.35;
}

.obz-flow-copy li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--obz-teal);
}

.obz-flow-slide figure {
  display: grid;
  height: 500px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  place-items: center;
  margin: 0;
  overflow: visible;
}

.obz-flow-slide figure span {
  margin-bottom: 10px;
  color: var(--obz-teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.obz-flow-slide img {
  width: auto;
  max-width: min(320px, 100%);
  max-height: 462px;
  height: auto;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(15, 118, 110, 0.18);
}

.obz-flow-slide figcaption {
  margin-top: 12px;
  color: rgba(16, 24, 23, 0.58);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

.obz-flow-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.obz-flow-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.22);
  padding: 0;
  cursor: pointer;
}

.obz-flow-dots button.is-active {
  width: 28px;
  background: var(--obz-teal);
}

.obz-flow-system {
  background: #f8fffc;
}

.obz-flowchart {
  margin: 0;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 10px;
  background: #fffaf0;
  padding: 12px;
  box-shadow: 0 28px 80px rgba(15, 118, 110, 0.13);
  overflow: hidden;
}

.obz-flowchart img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.obz-qualify-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 184, 166, 0.22), rgba(23, 184, 166, 0) 34%),
    linear-gradient(180deg, #f8fffc 0%, #ffffff 100%);
}

.obz-qualify-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.obz-qualify-card {
  display: grid;
  width: min(720px, 100%);
  min-height: 560px;
  align-content: start;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(22px, 5vw, 46px);
  box-shadow: 0 34px 90px rgba(15, 118, 110, 0.14);
}

.obz-qualify-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.obz-qualify-top a,
.obz-qualify-top span {
  color: rgba(16, 24, 23, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.obz-qualify-top a {
  color: var(--obz-teal);
}

.obz-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
}

.obz-progress span {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: var(--obz-teal);
  transition: width 220ms ease;
}

.obz-qualify-step,
.obz-qualify-result {
  display: none;
  padding-top: clamp(50px, 9vw, 86px);
}

.obz-qualify-step.is-active,
.obz-qualify-result:not([hidden]) {
  display: grid;
}

.obz-qualify-kicker {
  margin: 0 0 14px;
  color: #d89b00;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-style: italic;
  line-height: 1.1;
}

.obz-qualify-step h1,
.obz-qualify-result h1 {
  max-width: 620px;
  margin: 0;
  color: var(--obz-ink);
  font-family: "Inter Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 5.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.obz-qualify-result p:not(.obz-qualify-kicker) {
  max-width: 560px;
  margin: 18px 0 28px;
  color: var(--obz-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.obz-choice-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.obz-choice {
  width: 100%;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--obz-ink);
  padding: 17px 18px;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.obz-choice:hover,
.obz-choice:focus-visible,
.obz-choice.is-selected {
  border-color: var(--obz-teal);
  background: #f3fffc;
  color: var(--obz-teal);
  outline: none;
  transform: translateY(-1px);
}

.obz-url-field {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.obz-url-field span {
  color: rgba(16, 24, 23, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.obz-url-field input {
  width: 100%;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--obz-ink);
  padding: 18px;
  font: inherit;
  font-size: 1.05rem;
  outline: none;
}

.obz-url-field input:focus {
  border-color: var(--obz-teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.obz-field-error {
  display: none;
  margin: 10px 0 0;
  color: #b45309;
  font-size: 0.92rem;
  font-weight: 500;
}

.obz-field-error.is-visible {
  display: block;
}

.obz-next-button {
  width: fit-content;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.obz-cta {
  position: relative;
  overflow: hidden;
  background: #f5fffc;
  color: var(--obz-ink);
  padding: 122px 0;
  text-align: center;
}

.obz-cta::before {
  content: "";
  position: absolute;
  inset: auto 10% -240px;
  height: 420px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.14);
  filter: blur(70px);
}

.obz-cta .obz-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.obz-cta h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.2vw, 3.125rem);
}

.obz-cta p {
  width: min(620px, 100%);
  margin: 0;
  color: var(--obz-muted);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.55;
}

.obz-faq {
  display: grid;
  width: min(840px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.obz-faq details {
  border: 1px solid var(--obz-line);
  border-radius: 18px;
  background: var(--obz-panel);
  padding: 0 22px;
}

.obz-faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--obz-ink);
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

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

.obz-faq summary::after {
  content: "+";
  float: right;
  color: var(--obz-lime);
}

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

.obz-faq p {
  margin: -6px 0 22px;
  color: var(--obz-muted);
  font-size: 1rem;
  line-height: 1.55;
}

@keyframes obz-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes obz-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes obz-trust-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes obz-trust-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1100px) {
  .obz-hero h1 span {
    display: inline;
    white-space: normal;
  }
}

@media (max-width: 880px) {
  .obz-wrap {
    width: min(100%, calc(100vw - 28px));
  }

  .obz-nav {
    top: 10px;
    right: 10px;
    width: auto;
    border-radius: 8px;
  }

  .obz-nav-links {
    display: none;
  }

  .obz-brand span {
    display: none;
  }

  .obz-button {
    width: min(330px, 100%);
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .obz-button-small {
    width: auto;
    min-height: 38px;
  }

  .obz-hero {
    min-height: 0;
    padding: 76px 0 68px;
  }

  .obz-pill {
    max-width: 340px;
    text-align: center;
    line-height: 1.15;
  }

  .obz-hero h1,
  .obz-section-head h2,
  .obz-cta h2 {
    font-size: clamp(2rem, 9.4vw, 2.5rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .obz-cta h2 {
    font-size: 1.75rem;
  }

  .obz-subhead,
  .obz-cta p {
    width: min(330px, 100%);
    font-size: 1rem;
  }

  .obz-hero h1 span {
    display: inline;
    white-space: normal;
  }

  .obz-hero-trust {
    margin-top: -2px;
  }

  .obz-trust-wall {
    gap: 16px;
    padding: 42px 0 32px;
  }

  .obz-trust-wall h2 {
    margin-bottom: 8px;
  }

  .obz-trust-track {
    gap: 28px;
  }

  .obz-trust-track span {
    font-size: 0.88rem;
  }

  .obz-section {
    padding: 72px 0;
  }

  .obz-stat-band {
    padding: 42px 0;
  }

  .obz-stat-band strong {
    font-size: clamp(3.1rem, 16vw, 4.4rem);
  }

  .obz-section-head {
    margin-bottom: 30px;
  }

  .obz-process-grid,
  .obz-guides-grid {
    grid-template-columns: 1fr;
  }

  .obz-quote-track figure {
    width: 300px;
    min-height: 230px;
    padding: 20px;
  }

  .obz-email-wall {
    gap: 12px;
  }

  .obz-email-track {
    gap: 12px;
    animation-duration: 42s;
  }

  .obz-email-track img {
    width: 170px;
    height: auto;
    border-radius: 8px;
  }

  .obz-process-grid article,
  .obz-guides-grid article {
    padding: 22px;
    border-radius: 20px;
  }

  .obz-flow-carousel {
    margin-bottom: 22px;
  }

  .obz-flow-viewport {
    min-height: 690px;
  }

  .obz-flow-controls {
    top: 63%;
    right: 18px;
  }

  .obz-flow-controls button {
    width: 42px;
    height: 42px;
  }

  .obz-flow-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 22px;
    padding: 24px 18px;
  }

  .obz-flow-copy h3 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .obz-flow-copy li {
    font-size: 0.96rem;
  }

  .obz-flow-slide figure {
    height: 334px;
  }

  .obz-flow-slide img {
    max-width: min(230px, 78vw);
    max-height: 286px;
  }

  .obz-flowchart {
    width: calc(100vw - 28px);
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    padding: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .obz-flowchart img {
    width: 960px;
    max-width: none;
  }

  .obz-cta {
    padding: 86px 0;
  }

  .obz-faq summary {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .obz-trust-track,
  .obz-quote-track,
  .obz-email-track {
    animation: none;
  }
}
