:root {
  --ink: #161b2a;
  --muted: #687083;
  --line: #dce2ec;
  --blue: #3d6ef6;
  --blue-deep: #245cf0;
  --blue-soft: #eef4ff;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(30, 43, 74, 0.14);
  --progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    "Aptos",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.scroll-scene {
  position: relative;
  min-height: 260dvh;
}

.hero {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  overflow: hidden;
  padding: 96px 36px 28px;
  background: #fff;
}

.hero::before {
  display: none;
}

.nav,
.hero-copy,
.hero-stage,
.hero-strip {
  position: relative;
  z-index: 2;
}

.nav {
  display: grid;
  grid-template-columns: 220px 1fr 270px;
  align-items: center;
  gap: 28px;
  max-width: 1720px;
  margin: 0 auto;
}

.brand-logo {
  display: block;
  width: 164px;
  height: 40px;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 172px;
  height: auto;
  transform: translate(-4px, -37px);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 4vw, 74px);
  color: #1f2638;
  font-size: 15px;
  font-weight: 520;
}

.nav-links a,
.login-link {
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--blue);
  opacity: 1;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 540;
}

.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 54px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #4073ff 0%, var(--blue-deep) 100%);
  box-shadow: 0 16px 34px rgba(61, 110, 246, 0.27);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(61, 110, 246, 0.34);
}

.demo-button:active {
  transform: translateY(1px) scale(0.99);
}

.hero-copy {
  z-index: 8;
  max-width: 1260px;
  margin: 26px auto 0;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 4.35vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 780;
  text-wrap: balance;
  white-space: nowrap;
}

.hero-copy h1 span {
  color: var(--ink);
  position: relative;
  z-index: 12;
}

.hero-copy p {
  max-width: 600px;
  margin: 20px auto 0;
  color: #596173;
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.45;
  text-wrap: balance;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 780;
  color: #fff;
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 26px rgba(61, 110, 246, 0.36),
    0 2px 6px rgba(20, 40, 120, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
  text-decoration: none;
  position: relative;
  z-index: 12;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 38px rgba(61, 110, 246, 0.44),
    0 4px 10px rgba(20, 40, 120, 0.20);
}

.hero-cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.hero-cta-note {
  font-size: 13px;
  color: #8a96aa;
  font-weight: 500;
  position: relative;
  z-index: 12;
}

.hero-stage {
  width: min(1680px, 100%);
  height: clamp(470px, 50vh, 560px);
  margin: 8px auto 0;
}

.flow-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
}

.ghost-lines path {
  stroke: rgba(35, 56, 99, 0.28);
  stroke-width: 2.4;
}

.flow-path {
  stroke-width: 4.2;
  opacity: 0.96;
}

.flow-path.blue {
  stroke: var(--blue);
}

.flow-path.navy {
  stroke: #1a1f2e;
}

.line-nodes circle {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 4;
}

.flow-packet {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 3;
  opacity: 0;
}

.source-stack,
.outcome-stack {
  position: absolute;
  top: 18px;
  display: grid;
  gap: 30px;
  z-index: 8;
}

.source-stack {
  left: 40px;
}

.outcome-stack {
  right: 40px;
}

.flow-card {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  width: 240px;
  min-height: 66px;
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(133, 148, 176, 0.28);
  border-radius: 16px;
  color: #252b3a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 16px 35px rgba(31, 44, 72, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: none;
  transition: border-color 180ms linear, box-shadow 180ms linear;
}

.outcome-card {
  grid-template-columns: 42px 1fr 32px;
  width: 284px;
  transform: none;
}

.flow-card.is-live {
  opacity: 1;
  border-color: rgba(61, 110, 246, 0.35);
}

.flow-card span:not(.card-icon) {
  font-size: 16px;
  font-weight: 560;
  white-space: nowrap;
}

.card-icon,
.checkmark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.card-icon {
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(133, 148, 176, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.card-icon svg,
.checkmark svg,
.hero-strip svg,
.phone-card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon path,
.hero-strip path,
.hero-strip circle,
.phone-card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkmark {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 9px 18px rgba(61, 110, 246, 0.25);
}

.checkmark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connector-dot {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  border: 3px solid #fff;
  transform: translateY(-50%);
  box-shadow: 0 6px 12px rgba(61, 110, 246, 0.32);
}

.device-system {
  position: absolute;
  left: 50%;
  top: -108px;
  width: min(1120px, 70vw);
  height: auto;
  transform: translateX(-50%);
  z-index: 4;
}

.device-system::after {
  display: none;
}

.device-system > :not(.system-art) {
  display: none !important;
}

.system-art {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  filter: none;
  -webkit-mask-image: radial-gradient(ellipse 84% 72% at 50% 52%, #000 74%, transparent 98%);
  mask-image: radial-gradient(ellipse 84% 72% at 50% 52%, #000 74%, transparent 98%);
}

.blue-k {
  position: absolute;
  inset: 26px 76px 12px 86px;
  z-index: 3;
  pointer-events: none;
  opacity: calc(0.78 + var(--progress) * 0.22);
  filter: drop-shadow(0 20px 38px rgba(61, 110, 246, 0.2));
}

.k-stem,
.k-arm {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #4a7bff, #2162f5);
}

.k-stem {
  left: 246px;
  top: 92px;
  width: 70px;
  height: 332px;
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
  opacity: 0.95;
}

.k-arm {
  left: 270px;
  width: 294px;
  height: 104px;
  transform-origin: left center;
  clip-path: polygon(12% 0, 100% 0, 80% 100%, 0 100%);
}

.k-arm-top {
  top: 122px;
  transform: skewX(-10deg) rotate(-48deg);
}

.k-arm-bottom {
  top: 292px;
  transform: skewX(10deg) rotate(49deg);
}

.laptop {
  position: absolute;
  left: 62px;
  bottom: 66px;
  width: 600px;
  z-index: 2;
}

.laptop-lid {
  position: relative;
  width: 100%;
  height: 410px;
  padding: 14px;
  border-radius: 20px 20px 13px 13px;
  background: linear-gradient(180deg, #171c28, #0e1220);
  border: 1px solid rgba(28, 33, 48, 0.5);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.23);
  overflow: hidden;
}

.laptop-lid::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 12px;
  border-radius: 12px 12px 0 0;
  background: #101727;
}

.window-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8b95a8;
}

.address-pill {
  width: 180px;
  height: 9px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.site-preview {
  height: calc(100% - 30px);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0 58%, rgba(246, 249, 255, 0.95) 58% 100%);
  overflow: hidden;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 56px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(31, 44, 72, 0.08);
  color: #1d2433;
  font-size: 7px;
}

.site-nav strong {
  margin-right: auto;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.site-nav strong::first-letter {
  color: var(--blue);
}

.site-content {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 16px;
  padding: 48px 34px 18px;
}

.site-copy h2 {
  margin: 0;
  color: #141927;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: 0;
}

.site-copy h2 span {
  color: var(--blue);
}

.site-copy p {
  max-width: 190px;
  margin: 18px 0 20px;
  color: #627088;
  font-size: 13px;
  line-height: 1.45;
}

.site-copy button {
  border: 0;
  border-radius: 9px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(61, 110, 246, 0.24);
}

.villa-card {
  position: relative;
  min-height: 210px;
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(236, 242, 255, 0.8), rgba(226, 234, 248, 0.7)),
    linear-gradient(135deg, #f5f8ff, #dbe4f5);
}

.villa-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.9), transparent 14%),
    linear-gradient(180deg, #ecf3ff 0 42%, #cbd6e8 42% 100%);
}

.villa-house {
  position: absolute;
  left: 36px;
  right: 18px;
  bottom: 34px;
  height: 116px;
  background: linear-gradient(135deg, #2f3948, #778190);
  clip-path: polygon(0 34%, 48% 0, 100% 34%, 100% 100%, 0 100%);
  box-shadow: 0 18px 30px rgba(25, 33, 48, 0.25);
}

.villa-house span {
  position: absolute;
  bottom: 18px;
  width: 30%;
  height: 48px;
  background: linear-gradient(180deg, #f4d59d, #715d42);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.villa-house span:nth-child(1) {
  left: 12%;
}

.villa-house span:nth-child(2) {
  left: 46%;
}

.villa-house span:nth-child(3) {
  left: 79%;
  width: 12%;
}

.villa-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background:
    linear-gradient(90deg, rgba(57, 82, 48, 0.55), rgba(171, 184, 153, 0.7)),
    linear-gradient(180deg, transparent, rgba(65, 79, 61, 0.72));
}

.site-metrics {
  display: flex;
  gap: 26px;
  padding: 4px 36px 0;
  color: #6d7485;
  font-size: 7px;
}

.site-metrics span {
  display: grid;
  gap: 2px;
}

.site-metrics strong {
  color: #1b2231;
  font-size: 14px;
}

.laptop-base {
  position: relative;
  width: 680px;
  height: 32px;
  margin-left: -40px;
  background: linear-gradient(180deg, #eef2f8, #aeb7c5);
  clip-path: polygon(8% 0, 92% 0, 100% 56%, 84% 100%, 16% 100%, 0 56%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 34px rgba(30, 43, 74, 0.16);
}

.laptop-base::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 4px;
  width: 16%;
  height: 10px;
  border-radius: 0 0 9px 9px;
  background: rgba(107, 119, 139, 0.24);
}

.phone {
  position: absolute;
  right: 8px;
  bottom: 64px;
  width: 205px;
  height: 394px;
  padding: 12px 12px 16px;
  border-radius: 36px;
  background: linear-gradient(180deg, #111827, #070b13);
  border: 5px solid #1b2230;
  box-shadow:
    0 26px 58px rgba(22, 27, 42, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 80px;
  height: 18px;
  border-radius: 0 0 15px 15px;
  background: #070b13;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 3px 10px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.phone-top span:last-child {
  width: 42px;
  height: 7px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0 30%, transparent 30% 42%, #fff 42% 63%, transparent 63% 74%, #fff 74%);
  opacity: 0.88;
}

.chat-head {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 8px;
  padding: 9px 2px 12px;
  color: #fff;
}

.chat-head strong {
  display: block;
  font-size: 12px;
}

.chat-head small {
  display: block;
  color: #b9c2d2;
  font-size: 9px;
}

.mini-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.chat-head i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cfd6e4;
  border-left-color: transparent;
}

.bubble {
  width: fit-content;
  max-width: 142px;
  margin-top: 10px;
  padding: 10px 11px;
  border-radius: 13px;
  font-size: 11px;
  line-height: 1.32;
}

.inbound-bubble {
  color: #222a37;
  background: #eef1f6;
}

.outbound-bubble {
  margin-left: auto;
  color: #fff;
  background: var(--blue);
}

.bubble.small {
  padding-block: 8px;
}

.phone-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  margin-top: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(210, 218, 232, 0.65);
  border-radius: 11px;
  color: #263044;
  background: rgba(255, 255, 255, 0.95);
  font-size: 10px;
}

.phone-card small {
  color: #657184;
}

.phone-card-icon {
  display: grid;
  place-items: center;
  color: #22b857;
}

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

.quote-card strong {
  font-size: 14px;
}

.quote-card small {
  color: #21a15a;
  align-self: end;
}

.komplete-badge {
  position: absolute;
  left: 50%;
  bottom: 190px;
  display: grid;
  place-items: center;
  width: 315px;
  height: 100px;
  border: 1px solid rgba(159, 171, 194, 0.45);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 26px 52px rgba(31, 44, 72, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateX(-50%) scale(calc(0.98 + var(--progress) * 0.03));
  z-index: 7;
  overflow: hidden;
}

.komplete-badge img {
  width: 338px;
  height: auto;
  transform: translateY(-73px);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(1440px, calc(100% - 160px));
  margin: 14px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(129, 143, 169, 0.26);
}

.hero-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 46px;
  color: #3b4354;
  font-size: 16px;
  font-weight: 510;
  border-right: 1px solid rgba(129, 143, 169, 0.26);
}

.hero-strip span:last-child {
  border-right: 0;
}

.hero-strip svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  flex: 0 0 auto;
}

.after-hero {
  min-height: 72dvh;
  color: #596173;
  background: #f5f8fe;
  font-size: 18px;
}

.pain-section {
  position: relative;
  overflow: hidden;
  padding: 82px 32px 112px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 66%, #f3f7ff 100%);
}

.pain-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(237, 244, 255, 0.78) 100%);
  pointer-events: none;
}

.pain-k-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  opacity: 0.115;
  overflow: hidden;
  pointer-events: none;
}

.pain-k-parallax img {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: clamp(760px, 62vw, 1120px);
  height: auto;
  transform: translate3d(-50%, var(--pain-k-screen-y, 28vh), 0) translateY(-50%) rotate(-2deg);
  will-change: transform;
}

.pain-inner {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.pain-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(61, 110, 246, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(238, 244, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
}

.pain-heading h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.pain-heading p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #596173;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
  text-wrap: balance;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1060px;
  margin: 44px auto 0;
}

.proof-stat {
  padding: 20px 22px 22px;
  border: 1px solid rgba(139, 159, 199, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 44, 72, 0.07);
}

.proof-stat span {
  display: block;
  color: #5d6679;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-stat strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.proof-stat p {
  margin: 10px 0 0;
  color: #687083;
  font-size: 14px;
  line-height: 1.45;
}

.leak-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 24px;
  margin-top: 54px;
  padding: 16px 0 220px;
}

.leak-lines {
  position: absolute;
  inset: 0 0 22px;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.leak-line,
.repair-line {
  stroke-linecap: round;
  stroke-width: 3.6;
  vector-effect: non-scaling-stroke;
}

.leak-line {
  stroke: url(#leakFade);
  stroke-width: 3.8;
  opacity: calc(0.5 + (var(--pain-progress, 0) * 0.36));
}

.repair-line {
  display: none;
  stroke: var(--blue);
  stroke-width: 4.4;
  stroke-dasharray: var(--repair-length, 560);
  stroke-dashoffset: var(--repair-offset, 560);
  opacity: calc(var(--pain-progress, 0) * 0.26);
  filter: drop-shadow(0 10px 18px rgba(61, 110, 246, 0.2));
}

.leak-channel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 572px;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(139, 159, 199, 0.24);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(30, 43, 74, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 90ms);
}

.pain-section.is-visible .leak-channel,
.pain-section.is-visible .proof-stat {
  opacity: 1;
  transform: translateY(0);
}

.proof-stat {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-stat:nth-child(2) {
  transition-delay: 80ms;
}

.proof-stat:nth-child(3) {
  transition-delay: 160ms;
}

.channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(61, 110, 246, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 24px rgba(61, 110, 246, 0.1);
}

.channel-icon svg {
  width: 23px;
  height: 23px;
}

.channel-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leak-status {
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #596173;
  background: #f5f8fe;
  font-size: 12px;
  font-weight: 760;
}

.project-shot-frame,
.call-visual,
.chat-visual {
  position: relative;
  margin-top: 22px;
  height: clamp(240px, 18vw, 284px);
  border: 1px solid rgba(139, 159, 199, 0.24);
  border-radius: 14px;
  background: #f8fbff;
  overflow: hidden;
}

.project-shot-frame {
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.project-shot-image,
.media-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-shot-image {
  flex: 1;
  min-height: 0;
  height: auto;
  padding: 10px;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.95) contrast(1.04);
  background: #0f1422;
}

.project-proof-badge {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(26, 31, 46, 0.72);
  box-shadow: 0 10px 24px rgba(26, 31, 46, 0.24);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.media-visual {
  display: block;
  padding: 0;
  background: #fff;
}

.media-visual img {
  min-height: 100%;
  object-position: center;
  transform: scale(1.01);
}

.browser-dots {
  display: flex;
  gap: 7px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(139, 159, 199, 0.14);
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b6bfd2;
}

.project-shot-placeholder {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 24px;
  background:
    linear-gradient(130deg, rgba(61, 110, 246, 0.16), transparent 42%),
    linear-gradient(180deg, #fff, #f6f9ff);
}

.project-shot-placeholder span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-shot-placeholder strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.project-shot-placeholder small {
  display: block;
  margin-top: 12px;
  color: #687083;
  font-size: 13px;
}

.call-visual {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(61, 110, 246, 0.17), transparent 38%),
    #fff;
}

.call-ring {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(61, 110, 246, 0.2);
  border-radius: 999px;
  animation: pulseRing 2.6s ease-out infinite;
}

.call-visual strong {
  color: var(--ink);
  font-size: 24px;
}

.call-visual p,
.call-visual small {
  margin: 0;
  color: #687083;
}

.chat-visual {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f7faff);
}

.chat-visual p {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 14px;
  color: #1f2638;
  background: #eef2f8;
  font-size: 14px;
  font-weight: 650;
}

.chat-visual p:nth-child(2) {
  justify-self: end;
  color: #fff;
  background: var(--blue);
}

.chat-visual .faded {
  color: #98a2b6;
  border: 1px dashed rgba(61, 110, 246, 0.25);
  background: #fff;
}

.leak-channel h3 {
  margin: 26px 0 0;
  color: var(--blue);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leak-channel h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
  min-height: 74px;
}

.leak-channel > p {
  margin: 14px 0 0;
  color: #687083;
  font-size: 16px;
  line-height: 1.5;
}

.komplete-repair {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(96%, 480px);
  min-height: 116px;
  padding: 14px 22px 14px 16px;
  border: 1px solid rgba(61, 110, 246, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 24px 70px rgba(31, 44, 72, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
}

.repair-core-image {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 26px rgba(61, 110, 246, 0.16));
}

.komplete-repair p {
  margin: 0;
  color: var(--ink);
  max-width: 310px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 820;
}

.pain-action {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 10px;
  text-align: center;
}

.pain-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #4073ff 0%, var(--blue-deep) 100%);
  box-shadow: 0 18px 38px rgba(61, 110, 246, 0.28);
  font-size: 15px;
  font-weight: 820;
}

.pain-action p {
  margin: 0;
  color: #687083;
  font-size: 15px;
}

@keyframes pulseRing {
  0% {
    opacity: 0.75;
    transform: scale(0.75);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.mobile-flow {
  display: none;
}

.mobile-flow-chip svg {
  width: 22px;
  height: 22px;
}

.mobile-flow-chip path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1320px) {
  .hero {
    padding-inline: 24px;
  }

  .hero-stage {
    transform: scale(0.86);
    transform-origin: top center;
    width: 1320px;
    max-width: none;
    margin-left: 50%;
    translate: -50% 0;
  }

  .hero-strip {
    width: 100%;
    margin-top: -36px;
  }
}

@media (max-width: 880px) {
  .scroll-scene {
    min-height: auto;
  }

  .pain-section {
    padding: 78px 18px 92px;
  }

  .pain-section::before {
    height: 34%;
  }

  .pain-k-parallax {
    width: 100%;
    opacity: 0.105;
  }

  .pain-k-parallax img {
    width: 620px;
  }

  .pain-heading h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .pain-heading p {
    font-size: 17px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .leak-map {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding-bottom: 158px;
  }

  .leak-lines {
    display: none;
  }

  .leak-channel {
    min-height: auto;
    height: auto;
    padding: 18px;
  }

  .project-shot-frame,
  .call-visual,
  .chat-visual {
    height: 220px;
  }

  .komplete-repair {
    bottom: 20px;
    width: min(100%, 356px);
    min-height: 104px;
    border-radius: 22px;
  }

  .repair-core-image {
    width: 70px;
    height: 70px;
  }

  .komplete-repair p {
    font-size: 14px;
  }

  .hero {
    position: relative;
    min-height: auto;
    padding: 18px 18px 34px;
    overflow: hidden;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 152px;
  }

  .brand-logo img {
    width: 162px;
    transform: translate(-4px, -35px);
  }

  .nav-links,
  .login-link {
    display: none;
  }

  .nav-actions {
    justify-content: end;
  }

  .demo-button {
    min-width: 134px;
    min-height: 46px;
    border-radius: 9px;
    font-size: 14px;
  }

  .hero-copy {
    margin-top: 44px;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(48px, 13vw, 58px);
    line-height: 0.98;
    white-space: normal;
  }

  .hero-copy h1 span {
    display: block;
    margin-top: 3px;
  }

  .hero-copy p {
    max-width: 336px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .hero-stage {
    display: none;
  }

  .hero-strip {
    display: none;
  }

  .mobile-flow {
    display: block;
    position: relative;
    max-width: 430px;
    margin: 30px auto 0;
    padding: 0 0 36px;
  }

  .mobile-chip-stack {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 5;
    width: min(100%, 292px);
    margin-inline: auto;
  }

  .mobile-flow-chip {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 51px;
    padding: 8px 14px;
    border: 1px solid rgba(139, 159, 199, 0.3);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2638;
    box-shadow: 0 14px 32px rgba(31, 44, 72, 0.08);
    font-size: 15px;
    font-weight: 640;
  }

  .mobile-chip-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(139, 159, 199, 0.24);
    border-radius: 999px;
    color: var(--blue);
    background: #fff;
  }

  .mobile-inbound-stack {
    padding-bottom: 8px;
  }

  .mobile-system-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    height: clamp(326px, 88vw, 380px);
    margin: 42px auto 0;
  }

  .mobile-system-art {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 3;
    width: min(454px, 116vw);
    max-width: none;
    height: auto;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
    -webkit-mask-image: radial-gradient(ellipse 78% 70% at 50% 50%, #000 72%, transparent 99%);
    mask-image: radial-gradient(ellipse 78% 70% at 50% 50%, #000 72%, transparent 99%);
  }

  .mobile-flow-map {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
  }

  .mobile-ghost-lines path {
    stroke: rgba(41, 63, 105, 0.22);
    stroke-width: 2;
  }

  .mobile-flow-path {
    stroke: var(--blue);
    stroke-width: 3.35;
    opacity: 0;
  }

  .mobile-outbound-path {
    stroke-width: 2.65;
  }

  .mobile-flow-path:nth-child(1) {
    stroke: #1a1f2e;
  }

  .mobile-flow-packet {
    fill: var(--blue);
    stroke: #fff;
    stroke-width: 3.4;
    opacity: 0;
  }

  .mobile-outcome-stack {
    width: min(100%, 344px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
  }

  .mobile-outcome-chip {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 88px;
    gap: 8px;
    padding: 12px 8px 10px;
    text-align: center;
    font-size: 13px;
  }

  .mobile-outcome-chip::after {
    content: "";
    display: none;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 9px 18px rgba(61, 110, 246, 0.24);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 12.5l3.2 3.2 7.2-7.3' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 344px);
    min-height: 58px;
    margin: 20px auto 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(180deg, #4073ff 0%, var(--blue-deep) 100%);
    box-shadow: 0 18px 38px rgba(61, 110, 246, 0.3);
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-cta:active {
    transform: translateY(1px) scale(0.99);
  }
}

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

/* Aftercare engine section */

.aftercare-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 94px 32px 110px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #eef5ff 100%);
  border-top: 1px solid rgba(129, 143, 169, 0.16);
}

.aftercare-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(61, 110, 246, 0.045) 34% 35%, transparent 35% 100%),
    linear-gradient(60deg, transparent 0 58%, rgba(26, 31, 46, 0.035) 58% 59%, transparent 59% 100%);
  opacity: 0.9;
  pointer-events: none;
}

.aftercare-section::after {
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -220px;
  z-index: 0;
  width: 180px;
  background: linear-gradient(90deg, transparent, rgba(61, 110, 246, 0.09), transparent);
  transform: skewX(-17deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}

.aftercare-section.is-visible::after {
  opacity: 0;
}

.aftercare-background,
.aftercare-grid,
.aftercare-field-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aftercare-background {
  z-index: 0;
}

.aftercare-grid {
  background-image:
    linear-gradient(rgba(61, 110, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 110, 246, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.aftercare-field-map {
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.field-line {
  fill: none;
  stroke: rgba(61, 110, 246, 0.18);
  stroke-width: 1.2;
  stroke-dasharray: 7 15;
}

.field-line-b,
.field-line-d {
  stroke: rgba(26, 31, 46, 0.12);
  stroke-dasharray: 11 18;
}

.aftercare-section.is-visible .field-line {
  animation: none;
}

.aftercare-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.aftercare-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.aftercare-section.is-visible .aftercare-heading {
  opacity: 1;
  transform: translateY(0);
}

.aftercare-heading h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: 1;
  font-weight: 820;
  text-wrap: balance;
}

.aftercare-heading h2 span {
  color: var(--blue);
  background: linear-gradient(180deg, #4d7cff 0%, #1e5cf4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aftercare-heading p {
  max-width: 690px;
  margin: 18px auto 0;
  color: #596173;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.48;
  text-wrap: balance;
}

.aftercare-stage {
  position: relative;
  width: min(1240px, 100%);
  height: 610px;
  margin: 50px auto 0;
}

.aftercare-routes {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.route,
.route-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route {
  stroke: rgba(26, 31, 46, 0.18);
  stroke-width: 1.4;
}

.route-glow {
  stroke: var(--blue);
  stroke-width: 2.3;
  stroke-dasharray: 16 22;
  stroke-dashoffset: 240;
  opacity: 0;
}

.aftercare-section.is-visible .route-glow {
  opacity: 0.74;
  animation: aftercareRouteFlow 5.4s linear infinite;
}

.aftercare-station {
  --x: 0;
  --y: 0;
  position: absolute;
  z-index: 5;
  width: 276px;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(139, 159, 199, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86));
  box-shadow:
    0 22px 64px rgba(31, 44, 72, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translate(var(--x), calc(var(--y) + 22px)) scale(0.985);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.aftercare-section.is-visible .aftercare-station {
  opacity: 1;
  transform: translate(var(--x), var(--y)) scale(1);
}

.aftercare-station::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(61, 110, 246, 0.06);
  border-radius: 14px;
  pointer-events: none;
}

.station-follow {
  left: 0;
  top: 44px;
}

.station-reactivate {
  left: 18px;
  top: 374px;
}

.station-booking {
  right: 0;
  top: 44px;
}

.station-review {
  right: 18px;
  top: 374px;
}

.station-payment {
  display: none;
}

.station-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(61, 110, 246, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(61, 110, 246, 0.12);
}

.station-icon svg {
  width: 23px;
  height: 23px;
}

.station-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.station-icon-gold {
  color: #d28b08;
  border-color: rgba(210, 139, 8, 0.24);
}

.station-icon-gold path {
  fill: currentColor;
  stroke: none;
}

.station-kicker {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aftercare-station h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 820;
}

.aftercare-station p {
  margin: 12px 0 0;
  color: #626b7d;
  font-size: 14px;
  line-height: 1.48;
}

.aftercare-engine {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 3;
  width: 322px;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 24px)) scale(0.965);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.aftercare-section.is-visible .aftercare-engine {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.aftercare-device {
  position: relative;
  margin: 0;
  border-radius: 34px;
}

.aftercare-device::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 2%;
  height: 32px;
  border-radius: 999px;
  background: rgba(25, 36, 62, 0.18);
  filter: blur(18px);
  transform: translateY(20px);
  z-index: -1;
}

.aftercare-device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  transform: translateZ(0);
}

@keyframes aftercareRouteFlow {
  to {
    stroke-dashoffset: -220;
  }
}

.aftercare-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1040px, 100%);
  margin: 34px auto 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1) 200ms,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) 200ms;
}

.aftercare-section.is-visible .aftercare-proof-row {
  opacity: 1;
  transform: translateY(0);
}

.aftercare-proof-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(61, 110, 246, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #3f485a;
  box-shadow: 0 10px 26px rgba(31, 44, 72, 0.06);
  font-size: 13px;
  font-weight: 780;
}

@media (max-width: 1180px) {
  .aftercare-stage {
    height: 610px;
  }

  .aftercare-station {
    width: 250px;
  }

  .aftercare-engine {
    width: 306px;
  }
}

@media (max-width: 900px) {
  .aftercare-section {
    padding: 76px 20px 92px;
  }

  .aftercare-section::after,
  .aftercare-routes {
    display: none;
  }

  .aftercare-grid {
    background-size: 42px 42px;
  }

  .aftercare-field-map {
    opacity: 0.38;
  }

  .aftercare-heading {
    text-align: left;
  }

  .aftercare-heading h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .aftercare-heading p {
    margin-left: 0;
    font-size: 17px;
  }

  .aftercare-stage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
    margin-top: 42px;
  }

  .aftercare-engine,
  .aftercare-station {
    position: relative;
    inset: auto;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .aftercare-engine {
    order: 0;
    transform: translateY(18px) scale(0.97);
  }

  .aftercare-section.is-visible .aftercare-engine {
    transform: translateY(0) scale(1);
  }

  .aftercare-station {
    --x: 0;
    --y: 0;
    min-height: auto;
    padding: 20px;
    transform: translateY(18px) scale(0.99);
  }

  .aftercare-section.is-visible .aftercare-station {
    transform: translateY(0) scale(1);
  }

  .station-follow {
    order: 1;
  }

  .station-booking {
    order: 2;
  }

  .station-review {
    order: 3;
  }

  .station-reactivate {
    order: 4;
  }

  .aftercare-station h3 {
    font-size: 22px;
  }

  .aftercare-device {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .aftercare-proof-row {
    justify-content: flex-start;
    margin-top: 26px;
  }

  .aftercare-proof-row span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}

/* Opportunity tray section */

.opportunity-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
  z-index: 1;
  padding: 124px 32px 128px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 28%, #f4f8ff 100%);
}

.opportunity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(61, 110, 246, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(61, 110, 246, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image:
    linear-gradient(180deg, #000 0%, #000 65%, transparent 100%),
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.35) 44%, transparent 78%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  pointer-events: none;
}

.opportunity-section::after {
  content: "HANDLED";
  position: absolute;
  right: -0.06em;
  bottom: -0.22em;
  z-index: 0;
  color: rgba(61, 110, 246, 0.045);
  font-size: clamp(120px, 18vw, 330px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.opportunity-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: min(8vw, 112px);
  width: min(1400px, 100%);
  margin: 0 auto;
}

.opportunity-copy {
  max-width: 540px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.opportunity-section.is-visible .opportunity-copy {
  opacity: 1;
  transform: translateY(0);
}

.opportunity-copy h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.96;
  font-weight: 850;
  text-wrap: balance;
}

.opportunity-copy p {
  margin: 24px 0 0;
  color: #5e6879;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
}

.opportunity-actions {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.action-pair {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(32px, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(139, 159, 199, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.9)),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 36px rgba(31, 44, 72, 0.055);
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.opportunity-section.is-visible .action-pair {
  opacity: 1;
  transform: translateX(0);
}

.action-signal {
  color: #5d6678;
  font-size: 14px;
  font-weight: 720;
}

.action-rail {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 110, 246, 0.12), rgba(61, 110, 246, 0.52));
}

.action-rail::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(61, 110, 246, 0.1);
  transform: translateY(-50%);
}

.action-pair strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #497bff 0%, var(--blue-deep) 100%);
  box-shadow: 0 12px 24px rgba(61, 110, 246, 0.22);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.opportunity-visual {
  position: relative;
  min-height: 560px;
  opacity: 0;
  transform: translateY(26px) rotate(-1.5deg) scale(0.965);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) 100ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 100ms;
}

.opportunity-section.is-visible .opportunity-visual {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

.opportunity-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 7%;
  z-index: -1;
  height: 72px;
  border-radius: 999px;
  background: rgba(26, 31, 46, 0.12);
  filter: blur(28px);
  transform: rotate(-3deg);
}

.opportunity-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 840px);
  height: auto;
  margin-left: auto;
  transform: translateZ(0);
}

.tray-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.tray-word {
  position: absolute;
  color: rgba(61, 110, 246, 0.07);
  font-size: clamp(64px, 8vw, 132px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.word-visit {
  top: 2%;
  left: 6%;
}

.word-call {
  right: 5%;
  top: 20%;
}

.word-booked {
  left: 18%;
  bottom: 0%;
  color: rgba(26, 31, 46, 0.05);
}

.opportunity-outcomes {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -34px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1) 260ms,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) 260ms;
}

.opportunity-section.is-visible .opportunity-outcomes {
  opacity: 1;
  transform: translateY(0);
}

.opportunity-outcomes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 48px;
  border: 1px solid rgba(61, 110, 246, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(31, 44, 72, 0.07);
  font-size: 15px;
  font-weight: 850;
}

/* Client work section */

.client-work-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 32px 124px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
  border-top: 1px solid rgba(129, 143, 169, 0.14);
}

.client-work-section::before {
  content: none;
}

.client-work-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(700px, 1.42fr);
  gap: min(5vw, 72px);
  align-items: center;
  width: min(1520px, 100%);
  margin: 0 auto;
}

.client-work-copy,
.client-work-stage,
.client-work-controls {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.client-work-section.is-visible .client-work-copy,
.client-work-section.is-visible .client-work-stage,
.client-work-section.is-visible .client-work-controls {
  opacity: 1;
  transform: translateY(0);
}

.client-work-stage {
  transition-delay: 110ms;
}

.client-work-controls {
  transition-delay: 220ms;
}

.client-work-copy h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 0.95;
  font-weight: 850;
  text-wrap: balance;
}

.client-work-copy p {
  margin: 24px 0 0;
  color: #5f697a;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.client-build-list {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 8px;
  border: 1px solid rgba(139, 159, 199, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 46px rgba(31, 44, 72, 0.06);
}

.client-build-list span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px 16px 12px 12px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.72));
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
}

.client-build-list b {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(61, 110, 246, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.client-build-list i {
  display: block;
  margin-top: 4px;
  color: #6a7486;
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}

.client-work-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.client-work-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #497bff 0%, var(--blue-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(61, 110, 246, 0.22);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.client-work-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-work-link {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.client-work-stage {
  position: relative;
  min-width: 0;
  perspective: none;
}

.client-showcase-card {
  position: relative;
  margin: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.975);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.client-work-section.is-visible .client-showcase-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.client-showcase-card img {
  display: block;
  width: min(100%, 990px);
  height: auto;
  margin-left: auto;
  transform: translateZ(0);
}

.macbook-frame {
  position: relative;
  width: min(100%, 980px);
  margin-left: auto;
}

.macbook-lid {
  position: relative;
  padding: 18px 18px 22px;
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(135deg, #242a38 0%, #0f1420 48%, #252d3c 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 32px 80px rgba(26, 31, 46, 0.18);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center bottom;
}

.macbook-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #060912;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.macbook-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px 16px 10px 10px;
  background: #f6f8fc;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 0 2px rgba(0, 0, 0, 0.18);
}

.client-screen-shot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(26px) scale(1.015);
  transform-origin: top center;
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.client-screen-shot.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: clientScreenPan 5.8s ease-in-out forwards;
}

@keyframes clientScreenPan {
  0% {
    transform: translateY(0) scale(1.015);
  }

  100% {
    transform: translateY(-12%) scale(1.015);
  }
}

.macbook-base {
  position: relative;
  width: 108%;
  height: 44px;
  margin: -2px 0 0 -4%;
  border-radius: 0 0 44px 44px;
  background:
    linear-gradient(180deg, #d8dde7 0%, #9aa3b4 54%, #f2f5fa 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 26px 44px rgba(26, 31, 46, 0.16);
  transform: rotateY(-7deg);
}

.macbook-base span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 120px;
  height: 12px;
  border-radius: 0 0 18px 18px;
  background: rgba(86, 96, 114, 0.22);
  transform: translateX(-50%);
}

.client-orbit {
  position: absolute;
  right: -5%;
  bottom: 18%;
  z-index: -1;
  display: flex;
  gap: 16px;
  opacity: 0.8;
  transform: translateZ(-120px);
  pointer-events: none;
}

.client-orbit img {
  width: 116px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(26, 31, 46, 0.16);
}

.client-orbit img:nth-child(1) {
  transform: translateY(22px) rotate(-5deg);
}

.client-orbit img:nth-child(2) {
  transform: translateY(-4px) rotate(3deg);
}

.client-orbit img:nth-child(3) {
  transform: translateY(34px) rotate(7deg);
}

.client-work-controls {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: -18px;
}

.client-step {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(61, 110, 246, 0.22);
  cursor: pointer;
  transition:
    width 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.client-step.is-active {
  width: 28px;
  background: var(--blue);
}

.client-step:active {
  transform: scale(0.92);
}

/* Final CTA section */

.final-cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 32px 132px;
  background:
    radial-gradient(circle at 76% 34%, rgba(61, 110, 246, 0.16), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(61, 110, 246, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f8ff 0%, #f5f8ff 30%, #f5f8ff 56%, #ffffff 100%);
}

.final-cta-section::before {
  content: "KOMPLETE";
  position: absolute;
  left: -0.06em;
  bottom: -0.28em;
  z-index: -1;
  color: rgba(61, 110, 246, 0.045);
  font-size: clamp(138px, 18vw, 310px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  pointer-events: none;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(61, 110, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 110, 246, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, rgba(0, 0, 0, 0.55) 78%, transparent 100%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(680px, 1.18fr);
  gap: min(6vw, 92px);
  align-items: center;
  width: min(1520px, 100%);
  margin: 0 auto;
}

.final-cta-copy,
.final-cta-visual {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.final-cta-section.is-visible .final-cta-copy,
.final-cta-section.is-visible .final-cta-visual {
  opacity: 1;
  transform: translateY(0);
}

.final-cta-visual {
  transition-delay: 110ms;
}

.final-cta-copy h2 {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 6.2vw, 104px);
  line-height: 0.93;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.final-cta-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #5d687a;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.final-primary,
.final-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 880;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.final-primary {
  min-width: 170px;
  color: #fff;
  background: linear-gradient(180deg, #4d7fff 0%, var(--blue-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 22px 46px rgba(61, 110, 246, 0.24);
}

.final-secondary {
  min-width: 150px;
  color: var(--ink);
  border: 1px solid rgba(121, 142, 181, 0.24);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 36px rgba(31, 44, 72, 0.07);
}

.final-primary:hover,
.final-secondary:hover {
  transform: translateY(-2px);
}

.final-primary:active,
.final-secondary:active {
  transform: translateY(0) scale(0.98);
}

.final-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 570px;
  margin-top: 28px;
}

.final-proof-line span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(61, 110, 246, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #4f5b6f;
  font-size: 13px;
  font-weight: 790;
}

.final-cta-visual {
  position: relative;
  min-height: 680px;
  transform-style: preserve-3d;
}

.final-cta-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 12%;
  top: 50%;
  height: 150px;
  border-radius: 999px;
  background: rgba(61, 110, 246, 0.16);
  filter: blur(54px);
  transform: translateY(-50%) rotate(-8deg);
}

.final-route-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.final-route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(46vw, 720px);
  height: 360px;
  border: 1px solid rgba(61, 110, 246, 0.2);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    inset 0 0 28px rgba(61, 110, 246, 0.035),
    0 0 42px rgba(61, 110, 246, 0.04);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) 260ms,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1) 260ms;
}

.route-top {
  transform: translate(-50%, -50%) rotate(-12deg) scale(0.78);
}

.route-wide {
  width: min(50vw, 790px);
  height: 410px;
  border-color: rgba(61, 110, 246, 0.14);
  transform: translate(-50%, -50%) rotate(8deg) scale(0.74);
}

.route-mid {
  width: min(40vw, 620px);
  height: 292px;
  border-style: dashed;
  transform: translate(-50%, -50%) rotate(22deg) scale(0.72);
}

.route-bottom {
  width: min(34vw, 520px);
  height: 226px;
  transform: translate(-50%, -50%) rotate(-42deg) scale(0.7);
}

.final-cta-section.is-visible .final-route {
  opacity: 1;
}

.final-cta-section.is-visible .route-top {
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
}

.final-cta-section.is-visible .route-wide {
  transform: translate(-50%, -50%) rotate(8deg) scale(1);
}

.final-cta-section.is-visible .route-mid {
  transform: translate(-50%, -50%) rotate(22deg) scale(1);
}

.final-cta-section.is-visible .route-bottom {
  transform: translate(-50%, -50%) rotate(-42deg) scale(1);
}

.final-particle-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.final-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0 18%, #5f8bff 19% 48%, rgba(61, 110, 246, 0.05) 49% 100%);
  box-shadow:
    0 0 0 4px rgba(61, 110, 246, 0.08),
    0 0 28px rgba(61, 110, 246, 0.36);
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.72);
}

.final-cta-section.is-visible .final-star {
  opacity: var(--alpha);
  animation: finalStarDrift var(--drift) ease-in-out var(--delay) infinite;
}

.star-a {
  --x: 12%;
  --y: 18%;
  --size: 8px;
  --alpha: 0.72;
  --drift: 7.4s;
  --delay: 0ms;
}

.star-b {
  --x: 82%;
  --y: 14%;
  --size: 10px;
  --alpha: 0.9;
  --drift: 8.2s;
  --delay: 260ms;
}

.star-c {
  --x: 68%;
  --y: 74%;
  --size: 7px;
  --alpha: 0.62;
  --drift: 6.8s;
  --delay: 520ms;
}

.star-d {
  --x: 22%;
  --y: 68%;
  --size: 11px;
  --alpha: 0.78;
  --drift: 9.6s;
  --delay: 140ms;
}

.star-e {
  --x: 47%;
  --y: 9%;
  --size: 6px;
  --alpha: 0.52;
  --drift: 7.9s;
  --delay: 820ms;
}

.star-f {
  --x: 92%;
  --y: 50%;
  --size: 6px;
  --alpha: 0.54;
  --drift: 8.8s;
  --delay: 460ms;
}

.star-g {
  --x: 35%;
  --y: 86%;
  --size: 8px;
  --alpha: 0.66;
  --drift: 7.2s;
  --delay: 680ms;
}

.star-h {
  --x: 8%;
  --y: 44%;
  --size: 6px;
  --alpha: 0.5;
  --drift: 9.2s;
  --delay: 340ms;
}

.star-i {
  --x: 58%;
  --y: 38%;
  --size: 5px;
  --alpha: 0.44;
  --drift: 6.9s;
  --delay: 980ms;
}

.star-j {
  --x: 76%;
  --y: 88%;
  --size: 9px;
  --alpha: 0.7;
  --drift: 8.5s;
  --delay: 720ms;
}

.final-k-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(164px, 14vw, 232px);
  aspect-ratio: 1;
  border: 1px solid rgba(61, 110, 246, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.98) 0 38%, rgba(239, 245, 255, 0.92) 58%, rgba(61, 110, 246, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -22px 42px rgba(61, 110, 246, 0.08),
    0 0 0 14px rgba(61, 110, 246, 0.06),
    0 0 90px rgba(61, 110, 246, 0.34),
    0 38px 90px rgba(31, 44, 72, 0.14);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 180ms,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.final-k-core::before {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px solid rgba(61, 110, 246, 0.14);
  box-shadow: 0 0 44px rgba(61, 110, 246, 0.12);
}

.final-k-core::after {
  content: "";
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  border: 1px dashed rgba(61, 110, 246, 0.18);
  animation: finalRingTurn 22s linear infinite;
}

.final-k-core img {
  position: relative;
  z-index: 1;
  width: 54%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(61, 110, 246, 0.16));
}

.final-cta-section.is-visible .final-k-core {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.final-orbit-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--orbit-start)) scale(0.86);
  transform-origin: 0 0;
  will-change: transform;
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.final-orbit-card {
  display: block;
  height: auto;
  translate: calc(var(--orbit-x) - 50%) calc(var(--orbit-y) - 50%);
  rotate: var(--card-angle);
  scale: 0.94;
  filter: drop-shadow(0 26px 38px rgba(31, 44, 72, 0.14));
  will-change: rotate, scale;
  transition:
    scale 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.orbit-booking {
  --orbit-start: 32deg;
  --orbit-end: 392deg;
  --orbit-x: 300px;
  --orbit-y: 0px;
  --card-angle: -28deg;
  --card-end-angle: -388deg;
  --orbit-duration: 20s;
}

.orbit-lead {
  --orbit-start: 205deg;
  --orbit-end: 565deg;
  --orbit-x: 282px;
  --orbit-y: 0px;
  --card-angle: -208deg;
  --card-end-angle: -568deg;
  --orbit-duration: 24s;
}

.orbit-call {
  --orbit-start: -22deg;
  --orbit-end: 338deg;
  --orbit-x: 270px;
  --orbit-y: 0px;
  --card-angle: 18deg;
  --card-end-angle: -342deg;
  --orbit-duration: 22s;
}

.orbit-review {
  --orbit-start: 142deg;
  --orbit-end: 502deg;
  --orbit-x: 300px;
  --orbit-y: 0px;
  --card-angle: -144deg;
  --card-end-angle: -504deg;
  --orbit-duration: 28s;
}

.final-card-booking {
  width: min(40vw, 460px);
}

.final-card-lead {
  width: min(40vw, 460px);
}

.final-card-call {
  width: min(38vw, 440px);
}

.final-card-review {
  width: min(45vw, 500px);
}

.final-cta-section.is-visible .final-orbit-shell {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--orbit-start)) scale(1);
  animation: finalSolarOrbit var(--orbit-duration) linear 700ms infinite;
}

.final-cta-section.is-visible .final-orbit-card {
  scale: 1;
  animation: finalCardCounter var(--orbit-duration) linear 700ms infinite;
}

.final-cta-section.is-visible .orbit-booking .final-orbit-card {
  filter: drop-shadow(0 30px 42px rgba(61, 110, 246, 0.16));
}

.final-cta-section.is-visible .orbit-lead .final-orbit-card {
  filter: drop-shadow(0 30px 42px rgba(61, 110, 246, 0.14));
}

.final-cta-section.is-visible .orbit-review .final-orbit-card {
  filter: drop-shadow(0 34px 46px rgba(31, 44, 72, 0.13));
}

@keyframes finalRingTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes finalSolarOrbit {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-start)) scale(1);
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--orbit-end)) scale(1);
  }
}

@keyframes finalCardCounter {
  from {
    rotate: var(--card-angle);
  }

  to {
    rotate: var(--card-end-angle);
  }
}

@keyframes finalStarDrift {
  0%,
  100% {
    transform: translate3d(0, 10px, 0) scale(0.82);
  }

  50% {
    transform: translate3d(18px, -16px, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .opportunity-section {
    padding: 82px 20px 96px;
  }

  .opportunity-section::before {
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.2) 72%, transparent 100%);
  }

  .opportunity-section::after {
    right: -0.2em;
    bottom: 0.06em;
    font-size: 120px;
  }

  .opportunity-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .opportunity-copy {
    max-width: 620px;
  }

  .opportunity-copy h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .opportunity-copy p {
    font-size: 17px;
  }

  .action-pair {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 18px;
  }

  .action-rail {
    display: none;
  }

  .action-pair strong {
    width: fit-content;
  }

  .opportunity-visual {
    min-height: auto;
    margin-inline: -24px;
  }

  .opportunity-visual img {
    width: min(112%, 760px);
    margin: 0 auto;
  }

  .tray-word {
    font-size: 64px;
  }

  .opportunity-outcomes {
    grid-column: 1;
    justify-content: flex-start;
    margin-top: -18px;
  }

  .opportunity-outcomes span {
    min-width: 98px;
    min-height: 42px;
    font-size: 13px;
  }

  .client-work-section {
    padding: 84px 20px 94px;
  }

  .client-work-section::before {
    content: none;
  }

  .client-work-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .client-work-copy h2 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .client-work-copy p {
    font-size: 17px;
  }

  .client-build-list {
    gap: 7px;
    margin-top: 28px;
    padding: 7px;
  }

  .client-build-list span {
    min-height: 62px;
    padding: 10px 12px 10px 10px;
  }

  .client-work-button {
    min-height: 54px;
    padding: 0 20px;
  }

  .client-work-link {
    min-height: 44px;
  }

  .client-work-stage {
    margin-inline: 0;
  }

  .client-showcase-card img {
    width: min(112%, 720px);
    margin: 0 auto;
  }

  .final-cta-section {
    padding: 86px 20px 104px;
  }

  .final-cta-section::before {
    right: auto;
    bottom: -0.16em;
    font-size: 112px;
  }

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

  .final-cta-copy h2 {
    font-size: clamp(44px, 12vw, 60px);
  }

  .final-cta-copy p {
    font-size: 17px;
  }

  .final-cta-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .final-primary,
  .final-secondary {
    min-height: 56px;
    padding: 0 20px;
  }

  .final-proof-line {
    margin-top: 22px;
  }

  .final-cta-visual {
    min-height: 620px;
    margin-inline: -20px;
  }

  .final-cta-visual::before {
    left: 12%;
    right: 12%;
    height: 110px;
    filter: blur(40px);
  }

  .final-k-core {
    top: 50%;
    width: 132px;
    border-radius: 50%;
  }

  .final-k-core::before {
    inset: -20px;
  }

  .final-k-core::after {
    inset: -42px;
  }

  .final-route {
    width: 430px;
    height: 286px;
  }

  .route-top {
    transform: translate(-50%, -50%) rotate(-18deg) scale(0.72);
  }

  .route-wide {
    width: 480px;
    height: 322px;
    transform: translate(-50%, -50%) rotate(8deg) scale(0.72);
  }

  .route-mid {
    width: 374px;
    height: 238px;
    transform: translate(-50%, -50%) rotate(24deg) scale(0.68);
  }

  .route-bottom {
    width: 320px;
    height: 190px;
    transform: translate(-50%, -50%) rotate(-44deg) scale(0.74);
  }

  .final-cta-section.is-visible .route-top {
    transform: translate(-50%, -50%) rotate(-18deg) scale(1);
  }

  .final-cta-section.is-visible .route-wide {
    transform: translate(-50%, -50%) rotate(8deg) scale(1);
  }

  .final-cta-section.is-visible .route-mid {
    transform: translate(-50%, -50%) rotate(24deg) scale(1);
  }

  .final-cta-section.is-visible .route-bottom {
    transform: translate(-50%, -50%) rotate(-44deg) scale(1);
  }

  .orbit-booking {
    --orbit-start: 36deg;
    --orbit-end: 396deg;
    --orbit-x: 126px;
    --orbit-y: 0px;
    --card-angle: -32deg;
    --card-end-angle: -392deg;
    --orbit-duration: 16s;
  }

  .orbit-lead {
    --orbit-start: 206deg;
    --orbit-end: 566deg;
    --orbit-x: 118px;
    --orbit-y: 0px;
    --card-angle: -209deg;
    --card-end-angle: -569deg;
    --orbit-duration: 20s;
  }

  .orbit-call {
    --orbit-start: -24deg;
    --orbit-end: 336deg;
    --orbit-x: 122px;
    --orbit-y: 0px;
    --card-angle: 20deg;
    --card-end-angle: -340deg;
    --orbit-duration: 19s;
  }

  .orbit-review {
    --orbit-start: 142deg;
    --orbit-end: 502deg;
    --orbit-x: 130px;
    --orbit-y: 0px;
    --card-angle: -144deg;
    --card-end-angle: -504deg;
    --orbit-duration: 22s;
  }

  .final-card-booking {
    width: 218px;
  }

  .final-card-lead {
    width: 218px;
  }

  .final-card-call {
    width: 214px;
  }

  .final-card-review {
    width: min(78vw, 270px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-k-core::after,
  .final-cta-section.is-visible .final-orbit-shell,
  .final-cta-section.is-visible .final-orbit-card,
  .final-cta-section.is-visible .final-star {
    animation: none;
  }
}

/* ============================================================
   BRAND CAROUSEL
   ============================================================ */

.brand-carousel {
  padding: 28px 0 30px;
  background: #f8faff;
  border-top: 1px solid rgba(129, 143, 169, 0.10);
  border-bottom: 1px solid rgba(61, 110, 246, 0.08);
  overflow: hidden;
}

.carousel-label {
  text-align: center;
  font-size: 12px;
  font-weight: 640;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9aa3b5;
  margin: 0 0 22px;
}

.carousel-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding: 0 40px;
}

.carousel-logo {
  flex: 1 1 100px;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}

.carousel-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: filter 260ms ease, opacity 260ms ease;
}

.carousel-logo.logo-natural img {
  filter: grayscale(1) opacity(0.50);
}

.carousel-logo.logo-dark img {
  filter: grayscale(1) brightness(0.35) opacity(0.70);
}

.carousel-logo.logo-invert img {
  filter: grayscale(1) invert(1) opacity(0.42);
}

.carousel-logo.logo-sgs img {
  filter: grayscale(1) invert(1) opacity(0.46);
}

.carousel-logo:hover img {
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .brand-carousel {
    padding: 20px 0 22px;
  }

  .carousel-label {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .carousel-logo-row {
    gap: 24px 32px;
    padding: 0 20px;
  }

  .carousel-logo {
    height: 32px;
  }
}

/* ============================================================
   PREMIUM BUTTON SYSTEM
   ============================================================ */

@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ---- Arrow icon shared ---- */
.btn-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.pain-cta:hover .btn-arrow,
.final-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* ---- Shared blue button look ---- */
.demo-button,
.pain-cta,
.client-work-button,
.final-primary,
.mobile-cta {
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(61, 110, 246, 0.32),
    0 2px 5px rgba(20, 40, 120, 0.18);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.demo-button:hover,
.pain-cta:hover,
.client-work-button:hover,
.final-primary:hover,
.mobile-cta:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 36px rgba(61, 110, 246, 0.42),
    0 4px 10px rgba(20, 40, 120, 0.18);
}

/* ---- Nav "Book a call" ---- */
.demo-button {
  position: relative;
  overflow: hidden;
}

.demo-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.demo-button:hover::after {
  opacity: 1;
  animation: btnShimmer 0.55s ease forwards;
}

.demo-button:active {
  transform: translateY(1px) scale(0.985);
}

/* ---- Pain CTA ---- */
.pain-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pain-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.pain-cta:hover::after {
  opacity: 1;
  animation: btnShimmer 0.55s ease forwards;
}

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

.pain-cta:active {
  transform: translateY(0) scale(0.98);
}

/* ---- Client work button ---- */
.client-work-button {
  position: relative;
  overflow: hidden;
}

.client-work-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.client-work-button:hover::after {
  opacity: 1;
  animation: btnShimmer 0.55s ease forwards;
}

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

.client-work-button:active {
  transform: translateY(0) scale(0.98);
}

/* ---- Final primary ---- */
.final-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(61, 110, 246, 0.38),
    0 4px 10px rgba(20, 40, 120, 0.20);
}

.final-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.final-primary:hover::after {
  opacity: 1;
  animation: btnShimmer 0.55s ease forwards;
}

.final-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 24px 52px rgba(61, 110, 246, 0.46),
    0 6px 14px rgba(20, 40, 120, 0.22);
}

.final-primary:active {
  transform: translateY(0) scale(0.98);
}

/* ---- Final secondary ---- */
.final-secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(121, 142, 181, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 4px 14px rgba(31, 44, 72, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.final-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 110, 246, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 8px 22px rgba(31, 44, 72, 0.10);
}

.final-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* ---- Mobile CTA override (inside media query context) ---- */
@media (max-width: 767px) {
  .mobile-cta {
    background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 12px 28px rgba(61, 110, 246, 0.34),
      0 2px 6px rgba(20, 40, 120, 0.16);
  }
}

/* ============================================================
   Case Study Section — Inspire Clinic proof + testimonial
   ============================================================ */
.case-study-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 132px 32px 140px;
  background:
    radial-gradient(circle at 88% 12%, rgba(61, 110, 246, 0.08), transparent 38%),
    radial-gradient(circle at 6% 92%, rgba(61, 110, 246, 0.06), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 22%, #f7faff 100%);
}

.case-study-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(61, 110, 246, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(61, 110, 246, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image:
    radial-gradient(circle at 50% 0%, #000 0%, rgba(0, 0, 0, 0.55) 38%, transparent 75%);
  -webkit-mask-image:
    radial-gradient(circle at 50% 0%, #000 0%, rgba(0, 0, 0, 0.55) 38%, transparent 75%);
  pointer-events: none;
}

.case-study-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(580px, 1.18fr);
  align-items: center;
  gap: min(6vw, 88px);
  width: min(1380px, 100%);
  margin: 0 auto;
}

.case-study-copy,
.case-study-visual {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-visual {
  transition-delay: 120ms;
}

.case-study-section.is-visible .case-study-copy,
.case-study-section.is-visible .case-study-visual {
  opacity: 1;
  transform: translateY(0);
}

.case-study-copy h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.case-study-lede {
  margin: 22px 0 0;
  color: #4a5468;
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}

.case-study-quote {
  margin: 32px 0 0;
  padding: 26px 28px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(61, 110, 246, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 38px rgba(20, 40, 120, 0.07),
    0 2px 6px rgba(20, 40, 120, 0.04);
  position: relative;
  max-width: 540px;
}

.case-study-quote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(61, 110, 246, 0.22);
  font-weight: 700;
}

.case-study-quote blockquote {
  margin: 0;
  padding: 0;
}

.case-study-quote blockquote p {
  margin: 0;
  color: #1f2638;
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 500;
}

.case-study-quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 40, 120, 0.08);
}

.case-study-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: #eef2f8;
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(20, 40, 120, 0.10),
    0 6px 16px rgba(20, 40, 120, 0.12);
}

.case-study-attrib-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.case-study-attrib-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.005em;
}

.case-study-attrib-role {
  color: #8a96aa;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-study-chips {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(61, 110, 246, 0.08);
  color: #1e42c6;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: -0.005em;
  border: 1px solid rgba(61, 110, 246, 0.14);
}

.case-study-chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3d6ef6;
  box-shadow: 0 0 0 3px rgba(61, 110, 246, 0.18);
}

.case-study-action {
  margin-top: 32px;
}

.case-study-cta {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 780;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.005em;
}

.case-study-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-study-frame {
  margin: 0;
  width: 100%;
  max-width: 760px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(20, 40, 120, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px rgba(20, 40, 120, 0.10),
    0 6px 18px rgba(20, 40, 120, 0.05);
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 32px 72px rgba(20, 40, 120, 0.13),
    0 8px 22px rgba(20, 40, 120, 0.06);
}

.case-study-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .case-study-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .case-study-copy h2 {
    font-size: clamp(34px, 5.6vw, 52px);
  }

  .case-study-frame {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .case-study-section {
    padding: 88px 20px 96px;
  }

  .case-study-copy h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .case-study-lede {
    font-size: 15.5px;
  }

  .case-study-quote {
    padding: 22px 20px 20px;
    margin-top: 24px;
  }

  .case-study-quote blockquote p {
    font-size: 15.5px;
  }

  .case-study-avatar {
    width: 56px;
    height: 56px;
  }

  .case-study-chips {
    gap: 8px;
  }

  .case-study-chips li {
    padding: 8px 14px;
    font-size: 13px;
  }

  .case-study-frame {
    border-radius: 16px;
  }

  .case-study-frame:hover {
    transform: none;
  }

  .case-study-action {
    margin-top: 26px;
  }

  .case-study-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-study-copy,
  .case-study-visual {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .case-study-frame {
    transition: none;
  }

  .case-study-frame:hover {
    transform: none;
  }
}

/* ============================================================
   Testimonial Trio Section
   ============================================================ */
.testimonial-trio-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 32px 124px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 60%, #f6f9ff 100%);
}

.testimonial-trio-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.testimonial-trio-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-trio-section.is-visible .testimonial-trio-header {
  opacity: 1;
  transform: none;
}

.testimonial-trio-header h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.testimonial-trio-header p {
  margin: 16px 0 0;
  color: #4a5468;
  font-size: 16.5px;
  line-height: 1.6;
}

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

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 28px 26px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(20, 40, 120, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(20, 40, 120, 0.07),
    0 2px 6px rgba(20, 40, 120, 0.04);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-trio-section.is-visible .testimonial-card {
  opacity: 1;
  transform: none;
}

.testimonial-trio-section.is-visible .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonial-trio-section.is-visible .testimonial-card:nth-child(2) { transition-delay: 100ms; }
.testimonial-trio-section.is-visible .testimonial-card:nth-child(3) { transition-delay: 200ms; }

.testimonial-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(61, 110, 246, 0.09);
  color: #1e42c6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}

.testimonial-card blockquote p {
  margin: 0;
  color: #1f2638;
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 500;
}

.testimonial-card blockquote p::before {
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(61, 110, 246, 0.35);
  font-size: 22px;
  line-height: 0;
  margin-right: 2px;
  position: relative;
  top: 4px;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 40, 120, 0.08);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: #f3f6fb;
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(20, 40, 120, 0.10),
    0 4px 10px rgba(20, 40, 120, 0.10);
}

.testimonial-avatar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 6px;
}

.testimonial-avatar-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.1) contrast(1.05);
}

.testimonial-avatar-logo--dark {
  background: #0e1320;
  padding: 0;
  border-color: rgba(20, 40, 120, 0.18);
}

.testimonial-avatar-logo--dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.testimonial-attrib {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.testimonial-role {
  color: #8a96aa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testimonial-outcome {
  margin-top: -4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(61, 110, 246, 0.08), rgba(61, 110, 246, 0.05));
  color: #1e42c6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-align: center;
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .testimonial-trio-section {
    padding: 80px 20px 88px;
  }

  .testimonial-trio-header {
    margin-bottom: 36px;
  }

  .testimonial-trio-header h2 {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 24px 22px 22px;
  }
}

/* ============================================================
   ROI Counter Strip — white edition
   ============================================================ */
.roi-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 32px 116px;
  background:
    radial-gradient(circle at 12% 8%, rgba(61, 110, 246, 0.08), transparent 32%),
    radial-gradient(circle at 92% 88%, rgba(61, 110, 246, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 50%, #ffffff 100%);
  color: var(--ink);
}

.roi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(61, 110, 246, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(61, 110, 246, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, rgba(0, 0, 0, 0.5) 48%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, rgba(0, 0, 0, 0.5) 48%, transparent 82%);
  pointer-events: none;
}

.roi-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.roi-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-section.is-visible .roi-header {
  opacity: 1;
  transform: none;
}

.roi-header h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.roi-header p {
  margin: 14px 0 0;
  color: #4a5468;
  font-size: 16.5px;
  line-height: 1.6;
}

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

.roi-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 30px 26px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(20, 40, 120, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 38px rgba(20, 40, 120, 0.07),
    0 2px 6px rgba(20, 40, 120, 0.04);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-section.is-visible .roi-stat {
  opacity: 1;
  transform: none;
}

.roi-section.is-visible .roi-stat:nth-child(1) { transition-delay: 0ms; }
.roi-section.is-visible .roi-stat:nth-child(2) { transition-delay: 80ms; }
.roi-section.is-visible .roi-stat:nth-child(3) { transition-delay: 160ms; }
.roi-section.is-visible .roi-stat:nth-child(4) { transition-delay: 240ms; }

.roi-label {
  color: #6b7689;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roi-after {
  display: block;
  font-size: clamp(46px, 4.4vw, 62px);
  font-weight: 850;
  letter-spacing: -0.024em;
  line-height: 1;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #2d58e0 0%, #1e42c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e42c6;
}

.roi-from {
  display: inline-block;
  margin-top: 6px;
  color: #8a96aa;
  font-size: 13px;
  font-weight: 500;
}

.roi-delta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 40, 120, 0.08);
  color: #1e42c6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.roi-note {
  margin: 36px auto 0;
  max-width: 680px;
  text-align: center;
  color: #6b7689;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .roi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .roi-section {
    padding: 76px 20px 80px;
  }

  .roi-header {
    margin-bottom: 36px;
  }

  .roi-header h2 {
    font-size: 28px;
  }

  .roi-stat {
    padding: 22px 20px;
  }

  .roi-after {
    font-size: 38px;
  }
}

/* ============================================================
   Pricing Tiers
   ============================================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 32px 124px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 50%, #ffffff 100%);
}

.pricing-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-section.is-visible .pricing-header {
  opacity: 1;
  transform: none;
}

.pricing-header h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.pricing-header p {
  margin: 14px 0 0;
  color: #4a5468;
  font-size: 16.5px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 26px 26px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(20, 40, 120, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(20, 40, 120, 0.06),
    0 2px 6px rgba(20, 40, 120, 0.04);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms ease;
}

.pricing-section.is-visible .pricing-card {
  opacity: 1;
  transform: none;
}

.pricing-section.is-visible .pricing-card:nth-child(1) { transition-delay: 0ms; }
.pricing-section.is-visible .pricing-card:nth-child(2) { transition-delay: 100ms; }
.pricing-section.is-visible .pricing-card:nth-child(3) { transition-delay: 200ms; }

.pricing-card-featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(61, 110, 246, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 50px rgba(61, 110, 246, 0.18),
    0 4px 10px rgba(20, 40, 120, 0.06);
  transform: translateY(22px) scale(1);
}

@media (min-width: 981px) {
  .pricing-section.is-visible .pricing-card-featured {
    transform: translateY(-6px) scale(1.02);
  }
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 6px 14px rgba(61, 110, 246, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.pricing-card header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.pricing-card header p {
  margin: 8px 0 0;
  color: #5b667c;
  font-size: 14.5px;
  line-height: 1.55;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card ul li {
  position: relative;
  padding-left: 26px;
  color: #1f2638;
  font-size: 14.5px;
  line-height: 1.5;
}

.pricing-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 35%, transparent 36%),
    linear-gradient(135deg, #5585ff 0%, #2d58e0 100%);
}

.pricing-card ul li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 1.8px solid #2d58e0;
  border-bottom: 1.8px solid #2d58e0;
  transform: rotate(-45deg);
}

.pricing-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 40, 120, 0.08);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.005em;
  background: rgba(61, 110, 246, 0.08);
  color: #1e42c6;
  border: 1px solid rgba(61, 110, 246, 0.18);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pricing-cta:hover {
  background: rgba(61, 110, 246, 0.14);
  border-color: rgba(61, 110, 246, 0.28);
}

.pricing-cta-primary {
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  color: #ffffff;
  border: 1px solid rgba(61, 110, 246, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(61, 110, 246, 0.32),
    0 2px 5px rgba(20, 40, 120, 0.18);
}

.pricing-cta-primary:hover {
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  color: #ffffff;
  border-color: rgba(61, 110, 246, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(61, 110, 246, 0.4),
    0 4px 10px rgba(20, 40, 120, 0.18);
}

.pricing-note {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  color: #6b7689;
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    order: -1;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 80px 20px 88px;
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-header h2 {
    font-size: 28px;
  }

  .pricing-card {
    padding: 26px 22px 24px;
  }
}

/* ============================================================
   FAQ / Objection Block
   ============================================================ */
.faq-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 32px 120px;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.faq-inner {
  width: min(880px, 100%);
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section.is-visible .faq-header {
  opacity: 1;
  transform: none;
}

.faq-header h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -0.012em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(20, 40, 120, 0.08);
  box-shadow: 0 6px 18px rgba(20, 40, 120, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.faq-section.is-visible .faq-item {
  opacity: 1;
  transform: none;
}

.faq-section.is-visible .faq-item:nth-child(1) { transition-delay: 0ms; }
.faq-section.is-visible .faq-item:nth-child(2) { transition-delay: 70ms; }
.faq-section.is-visible .faq-item:nth-child(3) { transition-delay: 140ms; }
.faq-section.is-visible .faq-item:nth-child(4) { transition-delay: 210ms; }

.faq-item[open] {
  border-color: rgba(61, 110, 246, 0.24);
  box-shadow:
    0 10px 28px rgba(61, 110, 246, 0.10),
    0 2px 6px rgba(20, 40, 120, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  user-select: none;
}

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

.faq-item summary > span:first-child {
  flex: 1;
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(61, 110, 246, 0.10);
  transition: background 200ms ease, transform 240ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.8px;
  background: #1e42c6;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 240ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle {
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
}

.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
  background: #ffffff;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-body {
  padding: 0 24px 22px;
}

.faq-body p {
  margin: 0;
  color: #4a5468;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 76px 20px 84px;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 15.5px;
  }

  .faq-body {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-trio-header,
  .testimonial-card,
  .roi-header,
  .roi-stat,
  .pricing-header,
  .pricing-card,
  .faq-header,
  .faq-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pricing-section.is-visible .pricing-card-featured {
    transform: none;
  }

  .faq-toggle,
  .faq-toggle::before,
  .faq-toggle::after {
    transition: none;
  }
}

/* ============================================================
   Sticky Site Header + Hamburger
   ============================================================ */
html {
  scroll-padding-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(20, 40, 120, 0.08);
  box-shadow: 0 6px 24px rgba(20, 40, 120, 0.06);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 1720px;
  margin: 0 auto;
  padding: 16px 36px;
}

.site-header .brand-logo {
  display: block;
  width: 164px;
  height: 40px;
  overflow: hidden;
}

.site-header .brand-logo img {
  display: block;
  width: 172px;
  height: auto;
  transform: translate(-4px, -37px);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 3.4vw, 56px);
  font-size: 14.5px;
  font-weight: 600;
  color: #1f2638;
}

.site-nav a {
  position: relative;
  padding: 4px 2px;
  color: #1f2638;
  opacity: 0.85;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--blue);
  opacity: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: right 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover::after {
  right: 0;
}

.site-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.site-header .demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 11px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 750;
  letter-spacing: -0.005em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(20, 40, 120, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover {
  background: #ffffff;
  border-color: rgba(61, 110, 246, 0.32);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(20, 40, 120, 0.08);
}

.mobile-nav-panel[hidden] {
  display: none;
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  padding: 14px 4px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  border-bottom: 1px solid rgba(20, 40, 120, 0.06);
}

.mobile-nav-panel a:last-of-type {
  border-bottom: none;
}

.mobile-nav-panel .mobile-nav-cta {
  margin-top: 12px;
  justify-content: center;
  min-height: 52px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 780;
  border-bottom: none;
  letter-spacing: -0.005em;
}

@media (max-width: 880px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 20px;
  }

  .site-nav {
    display: none;
  }

  .site-header-inner .demo-button {
    display: none;
  }

  .mobile-nav-panel .demo-button.mobile-nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ============================================================
   Anchor scroll-margin so sticky header doesn't cover targets
   ============================================================ */
#results,
#packages,
#faq,
#contact,
#our-work,
#how-it-works,
#top {
  scroll-margin-top: 96px;
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 80px;
  }

  #results,
  #packages,
  #faq,
  #contact,
  #our-work,
  #how-it-works,
  #top {
    scroll-margin-top: 80px;
  }
}

/* ============================================================
   Sticky mobile bottom CTA bar
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 22px;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 40px rgba(20, 40, 120, 0.28),
    0 4px 10px rgba(20, 40, 120, 0.16);
  opacity: 0;
  transform: translateY(120%);
  transition:
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sticky-mobile-cta.is-pinned {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sticky-mobile-cta-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.1;
}

.sticky-mobile-cta-sub {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.78;
  margin-top: 2px;
  letter-spacing: 0;
}

.sticky-mobile-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.sticky-mobile-cta-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 880px) {
  .sticky-mobile-cta {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-nav a::after,
  .nav-toggle,
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after,
  .sticky-mobile-cta {
    transition: none;
  }
}

/* ============================================================
   Parallax band wrapping ROI + Pricing sections
   Uses sticky-pinned background (NOT background-attachment:fixed)
   to keep performance good on mobile.
   ============================================================ */
.parallax-band {
  position: relative;
  isolation: isolate;
}

.parallax-band-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  background: url("./assets/ig_068ee66291da2ba10169fc9e22ed688191a6e6a0c3313b5952.webp")
    center / cover no-repeat;
  margin-bottom: -100vh;
  pointer-events: none;
  will-change: transform;
}

.parallax-band > section {
  position: relative;
  z-index: 1;
}

/* Make ROI + pricing transparent so the parallax bg shows through.
   Cards keep their own white bg + shadows so content stays legible. */
.parallax-band .roi-section,
.parallax-band .pricing-section {
  background: transparent;
}

.parallax-band .roi-section::before,
.parallax-band .pricing-section::before {
  display: none;
}

/* Slight white wash at the edges to keep section transitions soft */
.parallax-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 18%,
    rgba(255, 255, 255, 0.18) 82%,
    rgba(255, 255, 255, 0.55) 100%
  );
  pointer-events: none;
}

@media (max-width: 767px) {
  /* On mobile, sticky-pinned bg can feel jarring on Safari iOS — fall back
     to a static centered cover that still gives the same calm tone. */
  .parallax-band-bg {
    position: absolute;
    height: 100%;
    margin-bottom: 0;
  }
}

/* ============================================================
   CTA Modal (Get my custom plan)
   ============================================================ */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.cta-modal[hidden] {
  display: flex;
}

.cta-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease, visibility 0s linear 0s;
}

.cta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 19, 32, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cta-modal-card {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 36px 80px rgba(20, 40, 120, 0.30),
    0 8px 24px rgba(20, 40, 120, 0.14);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-modal.is-open .cta-modal-card {
  transform: none;
  opacity: 1;
}

.cta-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 40, 120, 0.06);
  border: 1px solid rgba(20, 40, 120, 0.08);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  z-index: 2;
}

.cta-modal-close svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.cta-modal-close:hover {
  background: rgba(20, 40, 120, 0.10);
  transform: scale(1.05);
}

.cta-modal-content,
.cta-modal-success {
  padding: 36px 32px 32px;
}

.cta-modal-kicker {
  display: inline-flex;
}

.cta-modal-content h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.cta-modal-sub {
  margin: 10px 0 22px;
  color: #4a5468;
  font-size: 14.5px;
  line-height: 1.55;
}

.cta-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Honeypot: visually hidden but still focusable so screen readers ignore it
   without aria-hidden conflict with form controls. Bots that auto-fill any
   input will trip this. */
.cta-modal-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-modal-label {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-modal-form input {
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 40, 120, 0.14);
  background: #fafbff;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cta-modal-form input::placeholder {
  color: #aab1bf;
}

.cta-modal-form input:focus {
  border-color: rgba(61, 110, 246, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(61, 110, 246, 0.14);
}

.cta-modal-form input.is-invalid {
  border-color: #e0556e;
  background: #fff7f8;
}

.cta-modal-form input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(224, 85, 110, 0.14);
}

.cta-modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  height: 54px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 28px rgba(61, 110, 246, 0.34),
    0 2px 6px rgba(20, 40, 120, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 38px rgba(61, 110, 246, 0.42),
    0 4px 10px rgba(20, 40, 120, 0.20);
}

.cta-modal-submit:active {
  transform: translateY(0) scale(0.98);
}

.cta-modal-submit:disabled {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

.cta-modal-submit .btn-arrow {
  width: 16px;
  height: 16px;
}

.cta-modal-note {
  margin: 4px 0 0;
  color: #8a96aa;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

.cta-modal-success {
  text-align: center;
}

.cta-modal-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5585ff 0%, #2d58e0 55%, #1e42c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 32px rgba(61, 110, 246, 0.36);
}

.cta-modal-check svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-modal-success h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.cta-modal-success p {
  margin: 8px 0 0;
  color: #4a5468;
  font-size: 14.5px;
  line-height: 1.55;
}

body.cta-modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .cta-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .cta-modal-card {
    max-height: 92dvh;
    width: 100%;
    border-radius: 22px 22px 14px 14px;
  }

  .cta-modal-content,
  .cta-modal-success {
    padding: 30px 24px 24px;
  }

  .cta-modal-content h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-modal,
  .cta-modal-card,
  .cta-modal-close,
  .cta-modal-submit,
  .cta-modal-form input {
    transition: none;
  }
}
