@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/bricolage-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/sora-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --paper: #f8f7ff;
  --white: #ffffff;
  --ink: #191726;
  --muted: #686579;
  --line: rgba(25, 23, 38, 0.14);
  --blue: #4658f6;
  --blue-dark: #3544df;
  --coral: #ff4e79;
  --magenta: #d82caf;
  --gold: #ffad22;
  --cyan: #27c7e8;
  --dark: #171525;
  --dark-soft: #232036;
  --lime: #bff63e;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(40, 35, 92, 0.16);
  --shadow-strong: 0 30px 90px rgba(17, 14, 45, 0.28);
  --type-display: clamp(3.35rem, 6vw, 5.8rem);
  --type-section: clamp(2.35rem, 4.25vw, 4.35rem);
  --type-feature: clamp(2.1rem, 3.45vw, 3.55rem);
  --wrap: 1180px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: var(--type-display);
}

h2 {
  margin-bottom: 24px;
  font-size: var(--type-section);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--dark);
  border-radius: 10px;
}

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

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

.section-pad {
  padding-block: clamp(88px, 11vw, 150px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 31px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #acb5ff;
}

.gradient-text {
  display: inline;
  color: transparent;
  background: linear-gradient(92deg, var(--blue) 5%, var(--magenta) 46%, var(--coral) 72%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-text .wow-char {
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--magenta) 46%, var(--coral) 72%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 13px 34px rgba(70, 88, 246, 0.28);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 17px 42px rgba(70, 88, 246, 0.35);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(5, 3, 20, 0.22);
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: 74px;
  background: rgba(248, 247, 255, 0.94);
  border-bottom: 1px solid rgba(25, 23, 38, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), 1320px);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand > span:last-child > span {
  color: var(--blue);
}

.brand-bolt {
  display: flex;
  width: 43px;
  height: 45px;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 7px 10px rgba(70, 88, 246, 0.24));
}

.brand-bolt img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav a,
.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  color: var(--blue-dark);
}

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: 99;
  top: 74px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 20px;
  color: var(--ink);
  background: rgba(248, 247, 255, 0.985);
}

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

.mobile-menu a:not(.button) {
  display: flex;
  min-height: 56px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 24px;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--magenta), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
}

.home-hero {
  position: relative;
  padding-top: clamp(132px, 13vw, 185px);
  padding-bottom: 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 78, 121, 0.16), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(70, 88, 246, 0.19), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--paper) 74%);
}

.home-hero::before {
  position: absolute;
  top: 110px;
  left: -95px;
  width: 230px;
  height: 230px;
  content: "";
  border: 42px solid rgba(39, 199, 232, 0.13);
  border-radius: 46% 54% 63% 37%;
  transform: rotate(24deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 40px), 1320px);
  min-height: 650px;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-title {
  max-width: 590px;
  font-size: var(--type-display);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: pretty;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-proof > * {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof > *::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 78, 121, 0.12);
}

.hero-proof a:hover {
  color: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  contain: layout paint;
}

.hero-bolt {
  position: absolute;
  z-index: 0;
  top: -125px;
  left: -150px;
  width: 940px;
  max-width: none;
  filter: drop-shadow(0 35px 55px rgba(34, 24, 97, 0.18));
  transform: rotate(-7deg);
}

.hero-device-stage {
  position: absolute;
  z-index: 2;
  inset: 58px -110px auto -18px;
  min-height: 570px;
}

.tablet-shell {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 0;
  width: min(790px, 108%);
  padding: 12px 12px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #dad9e7 70%, #aaa8b8);
  border: 1px solid rgba(25, 23, 38, 0.2);
  border-radius: 34px;
  box-shadow: 0 42px 95px rgba(18, 15, 51, 0.3), 0 0 0 1px rgba(255,255,255,.82) inset;
  transform: perspective(1400px) rotateY(-3deg);
}

.tablet-screen,
.phone-screen {
  position: relative;
  overflow: hidden;
  background: #0d1221;
}

.tablet-screen {
  aspect-ratio: 1.6;
  border-radius: 24px 24px 16px 16px;
}

.tablet-screen img,
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tablet-home {
  display: block;
  width: 54px;
  height: 5px;
  margin: 11px auto -13px;
  background: #aaa8b5;
  border-radius: 99px;
}

.phone-shell {
  position: absolute;
  z-index: 4;
  top: 250px;
  left: -8px;
  width: 205px;
  padding: 27px 9px 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #d8d7e5 72%, #a9a7b7);
  border: 1px solid rgba(25, 23, 38, 0.22);
  border-radius: 34px;
  box-shadow: 0 34px 70px rgba(18, 15, 51, 0.34), 0 0 0 1px rgba(255,255,255,.82) inset;
  transform: rotate(-4deg);
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 42px;
  height: 5px;
  background: #a4a2af;
  border-radius: 99px;
  transform: translateX(-50%);
}

.phone-screen {
  aspect-ratio: 0.51;
  border-radius: 21px;
}

.phone-screen img {
  width: 315%;
  max-width: none;
  object-position: 11% top;
}

.showcase-label {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 26px;
  margin: 0;
  padding: 11px 16px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(25,23,38,.1);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(25, 23, 60, 0.18);
  line-height: 1.25;
}

.showcase-label span,
.showcase-label b {
  display: block;
}

.showcase-label span {
  color: var(--blue-dark);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.showcase-label b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
}

.browser-device {
  position: absolute;
  z-index: 2;
  top: 74px;
  right: -18px;
  width: min(535px, 102%);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(25, 23, 38, 0.12);
  border-radius: 23px;
  box-shadow: var(--shadow-strong);
  transform: perspective(1100px) rotateY(-6deg) rotateZ(2deg);
}

.browser-top {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 7px;
  padding-inline: 16px;
  color: #9895a8;
  background: #f0eef7;
  font-size: 0.64rem;
}

.browser-top i {
  width: 8px;
  height: 8px;
  background: #ccc9d7;
  border-radius: 50%;
}

.browser-top span {
  flex: 1;
  margin-left: 10px;
  padding: 5px 12px;
  text-align: center;
  background: var(--white);
  border-radius: 999px;
}

.browser-body {
  min-height: 400px;
  padding: 48px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 19%, rgba(255, 173, 34, 0.34), transparent 23%),
    linear-gradient(145deg, #ffffff 0 64%, #e6e9ff 64%);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 58px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.mock-brand span {
  color: var(--coral);
}

.mock-headline,
.mock-copy,
.mock-cta,
.mock-cards i {
  display: block;
  border-radius: 999px;
}

.mock-headline {
  width: 71%;
  height: 25px;
  margin-bottom: 16px;
  background: var(--dark);
  box-shadow: 0 35px 0 -3px var(--dark);
}

.mock-copy {
  width: 62%;
  height: 8px;
  margin-top: 55px;
  margin-bottom: 11px;
  background: #b7b4c5;
}

.mock-copy.short {
  width: 43%;
  margin-top: 0;
}

.mock-cta {
  width: 122px;
  height: 34px;
  margin-top: 27px;
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(70, 88, 246, 0.26);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 52px;
}

.mock-cards i {
  height: 86px;
  background: #eceaf4;
  border-radius: 10px;
}

.mock-cards i:nth-child(2) {
  background: #dce1ff;
}

.mock-cards i:nth-child(3) {
  background: #ffe2b0;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(25, 23, 38, 0.1);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(25, 23, 60, 0.18);
  backdrop-filter: blur(12px);
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  font-size: 0.77rem;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.59rem;
}

.floating-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 10px;
  font-size: 1.25rem;
}

.lead-card {
  top: 116px;
  left: -38px;
  transform: rotate(-4deg);
}

.report-card {
  top: 130px;
  right: -72px;
  transform: rotate(5deg);
}

.mini-chart {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding: 8px;
  background: #e5e8ff;
  border-radius: 10px;
}

.mini-chart i {
  width: 4px;
  height: 9px;
  background: var(--blue);
  border-radius: 99px;
}

.mini-chart i:nth-child(2) {
  height: 15px;
  background: var(--magenta);
}

.mini-chart i:nth-child(3) {
  height: 20px;
  background: var(--gold);
}

.hero-ticker {
  position: relative;
  z-index: 5;
  margin-top: 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-1.2deg) scale(1.02);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  padding: 19px 30px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
}

.ticker-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 1.45em;
}

.section-heading {
  margin-bottom: clamp(45px, 6vw, 75px);
}

.section-heading.centered {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p,
.section-heading > div + p,
.section-heading.centered > p:last-child {
  color: var(--muted);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 50px;
}

.section-heading.split h2 {
  margin-bottom: 0;
}

.section-heading.split > p {
  margin-bottom: 0;
}

.route-section {
  position: relative;
  background: var(--paper);
}

.route-section .section-heading.centered {
  max-width: 680px;
  margin-bottom: 48px;
}

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

.route-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 34px 54px clamp(285px, 48%, 325px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(25, 23, 38, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.route-card::before {
  position: absolute;
  z-index: -1;
  inset: auto -55px -70px auto;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.13;
  box-shadow: 0 0 0 36px currentColor, 0 0 0 72px currentColor;
}

.route-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow);
}

.route-card h3 {
  max-width: 290px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.55vw, 2.35rem);
}

.route-card p {
  max-width: 300px;
  font-size: 0.86rem;
  line-height: 1.65;
}

.route-number {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.route-art {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 4px;
  width: 49%;
  height: 96%;
  margin: 0;
  transform: translate3d(0, calc(-50% + var(--scroll-shift, 0px)), 0) rotate(2deg);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.route-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(17, 14, 45, 0.18));
}

.route-card:hover .route-art {
  transform: translate3d(0, calc(-50% + var(--scroll-shift, 0px) - 5px), 0) rotate(-1deg) scale(1.035);
}

.route-card .text-link {
  position: absolute;
  right: 34px;
  bottom: 25px;
  left: clamp(285px, 48%, 325px);
  font-size: 0.77rem;
  font-weight: 800;
}

.route-blue {
  color: var(--white);
  background: linear-gradient(145deg, #384be9, #5267ff);
  border-radius: 42px 12px 42px 12px;
}

.route-coral {
  background: linear-gradient(145deg, #ff6f90, #ff9c83);
  border-radius: 12px 42px 12px 42px;
}

.route-yellow {
  background: linear-gradient(145deg, #ffc441, #ffdc73);
  border-radius: 50px 18px 30px 8px;
}

.route-ink {
  color: var(--white);
  background: linear-gradient(145deg, #211e34, #11101b);
  border-radius: 18px 50px 8px 34px;
}

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

.system-bg {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 720px;
  height: 720px;
  background:
    radial-gradient(circle, rgba(70, 88, 246, 0.55) 0, rgba(216, 44, 175, 0.22) 32%, transparent 66%);
  border-radius: 50%;
  filter: blur(8px);
}

.system-bg::after {
  position: absolute;
  right: 130px;
  bottom: 60px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 44% 56% 50% 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.018);
}

.system-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 40px), 1320px);
  grid-template-columns: minmax(360px, 0.58fr) minmax(650px, 1.42fr);
  align-items: center;
  gap: 38px;
}

.system-copy h2 {
  max-width: 610px;
  font-size: clamp(2.45rem, 3.8vw, 3.85rem);
  line-height: 1.01;
}

.system-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 32px;
  color: #c6c2d3;
}

.system-art {
  position: relative;
  padding: 22px 0 22px 32px;
}

.journey-device {
  position: relative;
  width: min(100%, 830px);
  margin-left: auto;
  padding: 12px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--cyan), var(--blue) 38%, var(--magenta) 72%, var(--gold));
  border-radius: 54px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
  transform: translate3d(0, var(--scroll-shift, 0px), 0);
}

.journey-device::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -38px;
  bottom: 12%;
  width: 76px;
  content: "";
  background: var(--gold);
  border-radius: 0 26px 26px 0;
  opacity: 0.78;
}

.journey-device-top {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  background: #efedf6;
  border-radius: 42px 42px 12px 12px;
}

.journey-device-top i {
  width: 8px;
  height: 8px;
  background: #bbb7c8;
  border-radius: 50%;
}

.journey-device-top span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-list {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 16px;
  background: #f8f7ff;
  list-style: none;
}

.journey-list::before {
  position: absolute;
  z-index: 0;
  top: 59px;
  bottom: 59px;
  left: 60px;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), var(--blue), var(--magenta), var(--gold));
  border-radius: 99px;
}

.journey-list li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 124px;
  grid-template-columns: 106px 1fr;
  align-items: center;
  gap: 15px;
  padding: 10px 17px 10px 8px;
  background: var(--white);
  border: 1px solid rgba(25, 23, 38, 0.08);
  border-radius: 21px 10px 21px 10px;
  box-shadow: 0 11px 27px rgba(36, 30, 74, 0.07);
}

.journey-list li:nth-child(even) {
  margin-left: 0;
  border-radius: 10px 21px 10px 21px;
}

.journey-list li img {
  width: 102px;
  height: 102px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(25, 23, 60, 0.16));
}

.journey-list li span,
.journey-list li b,
.journey-list li p {
  display: block;
}

.journey-list li span {
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-list li b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.journey-list li p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.journey-device-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  color: var(--white);
  background: #211e34;
  border-radius: 12px 12px 42px 42px;
}

.journey-device-bottom > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--dark);
  background: var(--gold);
  border-radius: 13px 5px 13px 5px;
  font-size: 1.6rem;
}

.journey-device-bottom small,
.journey-device-bottom b {
  display: block;
}

.journey-device-bottom small {
  color: #aaa6b8;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.journey-device-bottom b {
  font-size: 0.8rem;
}

.services-section {
  background: #fff;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(280px, auto));
  gap: 16px;
}

.service-panel {
  position: relative;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(25, 23, 38, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(36, 30, 74, 0.1);
}

.service-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.service-panel p {
  max-width: 630px;
  margin-bottom: 0;
}

.service-tag {
  display: inline-block;
  margin-bottom: 31px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-main {
  grid-row: 1 / 3;
  min-height: 640px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 78, 121, 0.42), transparent 28%),
    linear-gradient(145deg, #242154, #151323 66%);
}

.service-main::after {
  position: absolute;
  top: 45%;
  right: -72px;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 88px rgba(255,255,255,.02);
}

.service-bolt {
  position: absolute;
  z-index: 1;
  top: -74px;
  right: -86px;
  width: 470px;
  height: auto;
  opacity: 0.82;
  filter: drop-shadow(0 24px 27px rgba(0, 0, 0, 0.28));
  transform: rotate(7deg);
}

.service-main .service-copy {
  position: relative;
  z-index: 3;
  max-width: 530px;
}

.service-main .service-copy h3 {
  max-width: 510px;
  font-size: clamp(2.8rem, 4.3vw, 4.35rem);
}

.service-main .service-copy p {
  max-width: 520px;
  color: #d1cee1;
}

.service-main .service-copy > a {
  display: inline-block;
  margin-top: 23px;
  color: var(--lime);
  font-weight: 800;
}

.mini-browser {
  position: absolute;
  right: -30px;
  bottom: -65px;
  z-index: 2;
  width: 78%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(25, 23, 38, 0.12);
  border-radius: 19px;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(-5deg);
}

.mini-browser-top {
  display: flex;
  height: 33px;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  background: #e0e0ec;
}

.mini-browser-top i {
  width: 6px;
  height: 6px;
  background: #aeabbd;
  border-radius: 50%;
}

.mini-browser-body {
  min-height: 260px;
  padding: 0;
  background: #fff;
}

.mini-browser-body img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

.mini-browser-body > * {
  display: block;
  border-radius: 999px;
}

.mini-browser-body > b {
  width: 67%;
  height: 22px;
  margin-bottom: 19px;
  background: var(--dark);
}

.mini-browser-body > span {
  width: 49%;
  height: 7px;
  margin-bottom: 8px;
  background: #bbb7c7;
}

.mini-browser-body > em {
  width: 100px;
  height: 29px;
  margin-top: 20px;
  background: var(--blue);
}

.mini-browser-body > div {
  display: flex;
  gap: 9px;
  margin-top: 44px;
}

.mini-browser-body > div i {
  width: 30%;
  height: 60px;
  background: #eceaf3;
  border-radius: 9px;
}

.service-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(39, 199, 232, .68), transparent 30%),
    linear-gradient(145deg, #3548e8, #5a34dc 62%, #d82caf);
}

.service-warm {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 78, 121, .48), transparent 28%),
    linear-gradient(145deg, #ffd35f, #ffb62f 55%, #ff8771);
}

.service-blue::after,
.service-warm::after {
  position: absolute;
  z-index: 0;
  inset: auto -42px -90px auto;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.06), 0 0 0 84px rgba(255,255,255,.035);
}

.service-blue > *:not(.service-side-art),
.service-warm > *:not(.service-side-art) {
  position: relative;
  z-index: 2;
}

.service-side-art {
  position: absolute;
  z-index: 1;
  top: -52px;
  right: -52px;
  width: 265px;
  max-width: none;
  opacity: .46;
  filter: drop-shadow(0 18px 25px rgba(22, 17, 66, .22));
  transform: rotate(4deg);
}

.service-warm .service-side-art {
  opacity: .38;
}

.service-blue h3,
.service-warm h3 {
  max-width: 410px;
  font-size: clamp(2rem, 2.8vw, 3.15rem);
}

.service-blue p,
.service-warm p {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.service-detail-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 9px 14px;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.service-detail-link:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .18);
}

.channel-stack {
  position: absolute !important;
  top: 25px;
  right: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
  max-width: 210px;
}

.channel-stack span {
  padding: 6px 9px;
  color: #fff;
  background: rgba(19,17,58,.36);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .56rem;
  font-weight: 800;
}

.metric-chip {
  position: absolute !important;
  top: 25px;
  right: 25px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(32, 26, 65, .86);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 13px;
  box-shadow: 0 14px 25px rgba(40,29,74,.22);
  line-height: 1.2;
}

.metric-chip small,
.metric-chip b {
  display: block;
}

.metric-chip small {
  color: #d7d3ed;
  font-size: .53rem;
  text-transform: uppercase;
}

.metric-chip b {
  font-size: .68rem;
}

.service-blue p,
.service-warm p {
  font-size: 0.9rem;
}

.service-orb,
.dial {
  position: absolute;
  top: 27px;
  right: 28px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 2rem;
}

.service-orb::after {
  position: absolute;
  width: 105px;
  height: 105px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.dial {
  border-color: rgba(25, 23, 38, 0.25);
  background: conic-gradient(var(--coral) 0 34%, var(--blue) 34% 66%, var(--cyan) 66% 82%, rgba(255,255,255,.55) 82%);
}

.dial span {
  width: 51px;
  height: 51px;
  background: #ffc85b;
  border-radius: 50%;
}

.lead-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 90%, rgba(255, 78, 121, 0.35), transparent 26%),
    radial-gradient(circle at 88% 5%, rgba(39, 199, 232, 0.2), transparent 28%),
    linear-gradient(135deg, #393eea, #3c2aca 48%, #241d72);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.lead-visual {
  position: relative;
  min-height: 650px;
}

.lead-visual > img {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 50%;
  width: min(455px, 94%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 55px rgba(7, 4, 42, 0.42));
}

.lead-phone-motion {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 50%;
  width: min(455px, 94%);
  transform: translate3d(-50%, var(--scroll-shift, 0px), 0);
  will-change: transform;
}

.lead-phone-motion img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 34px 55px rgba(7, 4, 42, 0.42));
  animation: phone-float 6s ease-in-out infinite;
}

.lead-notification {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 13px;
  box-shadow: 0 15px 35px rgba(7, 4, 42, .28);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  animation: notification-pulse 5s ease-in-out infinite;
}

.lead-notification i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
  font-style: normal;
}

.lead-notification-one {
  top: 30%;
  right: -4%;
}

.lead-notification-two {
  top: 51%;
  left: -7%;
  animation-delay: 2.5s;
}

[data-scroll-shift] {
  --scroll-shift: 0px;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes notification-pulse {
  0%, 35%, 100% { opacity: .84; transform: translateY(4px) scale(.98); }
  48%, 72% { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.045), 0 0 0 150px rgba(255, 255, 255, 0.025);
}

.lead-copy h2 {
  max-width: 710px;
  font-size: clamp(2.55rem, 4.15vw, 4.35rem);
}

.lead-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #d5d3f3;
  font-size: 1.05rem;
}

.check-list,
.price-card ul {
  margin: 29px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.9rem;
}

.check-list span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--dark);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 900;
}

.pricing-section {
  background: #f6f4fc;
}

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

.price-card {
  position: relative;
  padding: clamp(30px, 4vw, 50px);
  background: var(--white);
  border: 1px solid rgba(25, 23, 38, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(38, 32, 78, 0.08);
}

.price-growth {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: var(--shadow-strong);
}

.popular {
  position: absolute;
  top: 0;
  right: 40px;
  padding: 8px 17px;
  color: var(--dark);
  background: var(--lime);
  border-radius: 0 0 12px 12px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-growth .price-top {
  border-color: rgba(255, 255, 255, 0.15);
}

.price-top i {
  font-style: normal;
  font-size: 1.6rem;
}

.price {
  display: flex;
  min-width: 0;
  align-items: end;
  gap: 12px;
  margin-top: 39px;
  white-space: nowrap;
}

.price b {
  font-family: "Bricolage Grotesque", sans-serif;
  min-width: 0;
  font-size: clamp(2.55rem, 4.25vw, 4.15rem);
  font-weight: 750;
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price span {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-growth .price span,
.price-growth .price-meta {
  color: #aaa6b8;
}

.price-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.72rem;
}

.price-card li {
  display: flex;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.price-growth li {
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card li span {
  color: var(--blue);
  font-weight: 900;
}

.price-growth li span {
  color: var(--gold);
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.price-notes p {
  margin: 0;
  padding: 20px 24px;
  color: var(--muted);
  background: #eae7f5;
  border-radius: 17px;
  font-size: 0.75rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.portrait-wrap {
  position: relative;
  padding: 22px;
}

.portrait-wrap::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--magenta) 56%, var(--gold));
  border-radius: 38% 62% 46% 54% / 56% 38% 62% 44%;
  transform: rotate(-5deg);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  background: #e7e5ef;
  border: 7px solid var(--white);
  border-radius: 35% 65% 42% 58% / 58% 38% 62% 42%;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center top;
}

.portrait-label {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 225px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--dark);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.portrait-label > img {
  width: auto;
  height: 43px;
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.22));
}

.portrait-label b,
.portrait-label small {
  display: block;
}

.portrait-label b {
  font-size: 1rem;
}

.portrait-label small {
  color: #aaa6b8;
  font-size: 0.74rem;
}

.about-copy h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 3.9vw, 3.95rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-points {
  margin: 32px 0;
}

.about-points > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.about-points span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
}

.about-points p,
.about-points b {
  display: block;
  margin: 0;
}

.about-points p {
  color: var(--muted);
  font-size: 0.78rem;
}

.about-points b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.93rem;
}

.text-link.strong {
  color: var(--blue-dark);
  font-weight: 800;
}

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

.light-heading > p {
  color: #aaa6b8 !important;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.work-card {
  grid-column: span 4;
  overflow: hidden;
  color: var(--ink);
  background: #f0eef7;
  border-radius: var(--radius-md);
  transition: transform 220ms ease;
}

.work-card:hover {
  transform: translateY(-7px);
}

.work-card.featured {
  background: #dce1ff;
}

.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ddd;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 500ms ease;
}

.work-card:hover .work-image img {
  transform: scale(1.035);
}

.work-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(23, 21, 37, 0.9);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
}

.work-copy {
  padding: 25px;
}

.work-copy small {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-bottom: 13px;
  font-size: 1.75rem;
}

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

.review-band {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 18px;
  padding: 28px 32px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius-md);
}

.review-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-score > span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.review-score b,
.review-score small {
  display: block;
}

.review-score b {
  font-size: 0.75rem;
}

.review-score small {
  font-size: 0.62rem;
}

.review-band blockquote {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.42;
}

.review-band > a {
  min-width: max-content;
  padding: 11px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.faq-section {
  background: #f6f4fc;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro > p:last-child {
  color: var(--muted);
}

.faq-intro a {
  color: var(--blue-dark);
  font-weight: 800;
}

.faq-list {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(25, 23, 38, 0.1);
  border-radius: var(--radius-md);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 25px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.faq-item button span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: #e8eaff;
  border-radius: 50%;
}

.faq-item.open button {
  color: var(--blue-dark);
}

.faq-answer {
  padding: 0 66px 24px 25px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.contact-section::before {
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 640px;
  height: 640px;
  content: "";
  background: radial-gradient(circle, rgba(255, 78, 121, 0.7), rgba(216, 44, 175, 0.28) 42%, transparent 68%);
}

.contact-bolt {
  position: absolute;
  top: -90px;
  left: -100px;
  width: 620px;
  max-width: none;
  height: auto;
  opacity: 0.12;
  filter: saturate(1.15) drop-shadow(0 30px 55px rgba(8, 6, 61, 0.28));
  transform: rotate(-12deg);
}

.contact-copy h2 {
  max-width: 660px;
  font-size: clamp(2.45rem, 3.9vw, 4rem);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: #d9dcff;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 35px 0 25px;
}

.contact-links a {
  min-height: 82px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
}

.contact-links small,
.contact-links b {
  display: block;
}

.contact-links small {
  color: #c4c8ff;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.contact-links b {
  margin-top: 4px;
  font-size: 0.78rem;
}

.contact-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #d9dcff;
  font-size: 0.69rem;
  font-weight: 700;
}

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

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.form-head i {
  color: var(--coral);
  font-style: normal;
  font-size: 2rem;
}

.contact-form label {
  display: block;
  margin: 14px 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-form label small {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f4f2f8;
  border: 1px solid transparent;
  border-radius: 11px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
}

.contact-form .button {
  width: 100%;
  margin-top: 22px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}

.site-footer {
  padding: 65px 0 24px;
  color: var(--white);
  background: #11101b;
}

.brand-light > span:last-child > span {
  color: #8792ff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-top p,
.footer-top a,
.footer-top span {
  color: #aaa6b8;
  font-size: 0.73rem;
}

.footer-top p {
  max-width: 330px;
  margin-top: 12px;
}

.footer-top b {
  margin-bottom: 8px;
  font-size: 0.76rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 20px;
  color: #777383;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.mobile-call {
  position: fixed;
  z-index: 88;
  right: 16px;
  bottom: 16px;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(255, 78, 121, 0.35);
  font-size: 0.78rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }

  .browser-device {
    right: -90px;
  }

  .report-card {
    right: -35px;
  }

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

  .route-card {
    min-height: 330px;
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .system-grid,
  .lead-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: -20px;
  }

  .browser-device {
    right: 2%;
    width: 78%;
  }

  .hero-bolt {
    left: 4%;
    width: 90%;
  }

  .lead-card {
    left: 3%;
  }

  .report-card {
    right: 1%;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .system-grid {
    gap: 30px;
  }

  .system-art {
    padding-left: 0;
  }

  .journey-device {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-main {
    grid-row: auto;
  }

  .lead-grid {
    grid-template-areas: "copy" "visual";
  }

  .lead-copy {
    grid-area: copy;
  }

  .lead-visual {
    grid-area: visual;
  }

  .work-card,
  .work-card.featured {
    grid-column: span 6;
  }

  .work-card:last-child {
    grid-column: 4 / span 6;
  }

  .review-band {
    grid-template-columns: 160px 1fr;
  }

  .review-band > a {
    grid-column: 1 / -1;
    width: max-content;
  }

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

  .faq-intro {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

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

  .wrap {
    width: min(calc(100% - 30px), var(--wrap));
  }

  .section-pad {
    padding-block: 78px;
  }

  .home-hero {
    padding-top: 126px;
    padding-bottom: 25px;
  }

  .home-hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-proof {
    display: grid;
    gap: 12px;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 25px;
  }

  .hero-bolt {
    top: -65px;
    left: -17%;
    width: 132%;
  }

  .browser-device {
    top: 75px;
    right: -12%;
    width: 95%;
    transform: perspective(900px) rotateY(-5deg) rotateZ(2deg);
  }

  .browser-body {
    min-height: 300px;
    padding: 32px 28px;
  }

  .mock-brand {
    margin-bottom: 42px;
  }

  .mock-cards {
    margin-top: 35px;
  }

  .mock-cards i {
    height: 58px;
  }

  .lead-card {
    top: 355px;
    left: -2%;
  }

  .report-card {
    display: none;
  }

  .ticker-track {
    justify-content: start;
    animation: ticker 18s linear infinite;
  }

  .hero-ticker {
    transform: none;
  }

  .route-grid,
  .pricing-grid,
  .price-notes,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 380px;
  }

  .route-card h3 {
    margin-top: 150px;
  }

  .route-art {
    width: 190px;
    height: 190px;
  }

  .journey-device {
    padding: 8px;
    border-radius: 36px;
    transform: none;
  }

  .journey-device::before {
    display: none;
  }

  .journey-list {
    gap: 7px;
    padding: 10px;
  }

  .journey-list::before {
    left: 49px;
  }

  .journey-list li,
  .journey-list li:nth-child(even) {
    min-height: 92px;
    grid-template-columns: 68px 1fr;
    gap: 10px;
    margin-left: 0;
    padding: 8px 10px 8px 5px;
  }

  .journey-list li img {
    width: 66px;
    height: 66px;
  }

  .journey-list li b {
    font-size: 1.18rem;
  }

  .journey-list li p {
    font-size: 0.67rem;
  }

  .service-main {
    min-height: 560px;
  }

  .mini-browser {
    right: -11%;
    width: 90%;
  }

  .service-blue,
  .service-warm {
    min-height: 350px;
    padding-top: 135px;
  }

  .lead-visual {
    min-height: 520px;
  }

  .lead-visual img {
    bottom: 0;
    width: min(360px, 100%);
  }

  .lead-halo {
    width: 320px;
    height: 320px;
    box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 95px rgba(255,255,255,.025);
  }

  .price-card {
    padding: 31px 23px;
  }

  .price b {
    font-size: clamp(2.15rem, 9.5vw, 2.65rem);
  }

  .price {
    gap: 8px;
  }

  .price span {
    font-size: 0.68rem;
  }

  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

  .contact-bolt {
    top: -15px;
    left: -135px;
    width: 480px;
    opacity: 0.1;
  }

  .portrait-wrap {
    width: min(100%, 430px);
    margin-inline: auto;
  }

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

  .work-card,
  .work-card.featured,
  .work-card:last-child {
    grid-column: auto;
  }

  .review-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }

  .review-band > a {
    grid-column: auto;
  }

  .faq-item button {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 54px 22px 20px;
  }

  .contact-form {
    border-radius: 25px;
  }

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

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-call {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .header-inner {
    width: calc(100% - 26px);
  }

  .brand {
    font-size: 1.35rem;
  }

  .home-hero h1 {
    font-size: 3.05rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .lead-card {
    top: 322px;
    transform: scale(0.9) rotate(-4deg);
    transform-origin: left;
  }

  .service-panel {
    border-radius: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
}

/* V3 visual hierarchy and responsive device showcase */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
    gap: 20px;
  }

  .hero-device-stage {
    right: -155px;
  }

  .tablet-shell {
    width: min(735px, 110%);
  }

  .system-grid {
    grid-template-columns: minmax(330px, .62fr) minmax(600px, 1.38fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 650px;
    margin-top: -12px;
  }

  .hero-device-stage {
    inset: 45px -20px auto 0;
  }

  .tablet-shell {
    width: min(760px, 96%);
  }

  .phone-shell {
    left: 1%;
  }

  .lead-card {
    left: 2%;
  }

  .route-card {
    min-height: 520px;
    justify-content: end;
    padding: 260px 28px 58px;
  }

  .route-card h3,
  .route-card p {
    max-width: none;
  }

  .route-art {
    top: 8px;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate3d(-50%, var(--scroll-shift, 0px), 0) rotate(2deg);
  }

  .route-card:hover .route-art {
    transform: translate3d(-50%, calc(var(--scroll-shift, 0px) - 5px), 0) rotate(-1deg) scale(1.035);
  }

  .route-card .text-link {
    right: 28px;
    left: 28px;
  }

  .system-grid {
    width: min(calc(100% - 40px), 900px);
  }

  .journey-device {
    width: min(100%, 820px);
  }
}

@media (max-width: 680px) {
  .hero-grid {
    width: min(calc(100% - 30px), 1320px);
  }

  .hero-visual {
    min-height: 465px;
    margin-top: 10px;
  }

  .hero-bolt {
    top: -55px;
    left: -24%;
    width: 135%;
  }

  .hero-device-stage {
    inset: 70px -19% auto -2%;
    min-height: 390px;
  }

  .tablet-shell {
    width: 104%;
    padding: 7px 7px 17px;
    border-radius: 23px;
    transform: none;
  }

  .tablet-screen {
    border-radius: 17px 17px 11px 11px;
  }

  .tablet-home {
    width: 38px;
    height: 4px;
    margin-top: 7px;
  }

  .phone-shell {
    top: 160px;
    left: 0;
    width: 35%;
    min-width: 128px;
    padding: 20px 6px 10px;
    border-radius: 25px;
  }

  .phone-speaker {
    top: 8px;
    width: 30px;
    height: 4px;
  }

  .phone-screen {
    border-radius: 16px;
  }

  .showcase-label {
    right: 11%;
    bottom: 18px;
  }

  .lead-card {
    top: 84px;
    left: 0;
    transform: scale(.86) rotate(-3deg);
    transform-origin: left top;
  }

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

  .route-card {
    min-height: 490px;
    padding-top: 245px;
  }

  .route-art {
    width: 235px;
    height: 235px;
  }

  .route-number {
    top: 24px;
    right: 25px;
  }

  .journey-device {
    transform: translate3d(0, var(--scroll-shift, 0px), 0);
  }

  .service-blue,
  .service-warm {
    min-height: 390px;
    padding-top: 118px;
  }

  .service-side-art {
    top: -48px;
    right: -38px;
    width: 235px;
  }

  .channel-stack,
  .metric-chip {
    top: 22px;
    right: 22px;
  }

  .lead-phone-motion {
    bottom: 0;
    width: min(360px, 100%);
  }

  .lead-notification-one {
    right: 0;
  }

  .lead-notification-two {
    left: 0;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 420px;
  }

  .hero-device-stage {
    top: 55px;
  }

  .phone-shell {
    top: 145px;
    min-width: 116px;
  }

  .showcase-label {
    right: 8%;
    bottom: 20px;
    padding: 8px 11px;
  }

  .lead-card {
    top: 70px;
  }

  .lead-notification {
    font-size: .6rem;
  }
}

/* V4 signature hero: full-width laptop showcase */
.home-hero {
  padding-top: clamp(132px, 11vw, 168px);
  padding-bottom: 0;
}

.hero-grid {
  display: block;
  width: min(calc(100% - 40px), 1360px);
  min-height: auto;
}

.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-actions,
.hero-proof {
  justify-content: center;
}

.hero-title {
  max-width: 930px;
  margin-inline: auto;
}

.hero-lead {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
}

.hero-laptop-visual {
  position: relative;
  min-height: 815px;
  margin-top: -34px;
  contain: layout paint;
}

.hero-laptop-visual::after {
  position: absolute;
  z-index: 0;
  right: -9vw;
  bottom: -20px;
  left: -9vw;
  height: 390px;
  content: "";
  background: linear-gradient(108deg, #3d56f5 5%, #612fdf 52%, #ee3ca9 78%, #ff7f66 100%);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
}

.hero-laptop-visual .hero-bolt {
  z-index: 1;
  top: -82px;
  left: 50%;
  width: 1040px;
  opacity: .96;
  transform: translateX(-50%) rotate(-4deg);
}

.laptop-stage {
  position: relative;
  z-index: 3;
  width: min(1280px, 100%);
  min-height: 810px;
  margin-inline: auto;
}

.concept-kicker {
  position: absolute;
  z-index: 7;
  top: 74px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(25,23,38,.1);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(20,16,53,.16);
  text-align: center;
  line-height: 1.25;
  transform: translate(-50%, -50%);
}

.concept-kicker span,
.concept-kicker b {
  display: inline;
}

.concept-kicker span {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.concept-kicker b {
  white-space: nowrap;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .92rem;
}

.laptop-device {
  position: absolute;
  z-index: 4;
  top: 55px;
  left: 50%;
  width: min(1280px, 100%);
  transform: translateX(-50%);
}

.laptop-lid {
  position: relative;
  width: 91.5%;
  margin-inline: auto;
  padding: 17px 17px 21px;
  background: linear-gradient(145deg, #353841, #14151a 72%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 25px 25px 11px 11px;
  box-shadow: 0 42px 90px rgba(16, 12, 48, .34), 0 0 0 1px rgba(0,0,0,.65) inset;
}

.laptop-camera {
  position: absolute;
  z-index: 4;
  top: 6px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #08090b;
  border: 1px solid #4c4f57;
  border-radius: 50%;
  transform: translateX(-50%);
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
  border-radius: 10px 10px 5px 5px;
  container-type: inline-size;
}

.laptop-base {
  position: relative;
  width: 100%;
  height: 49px;
  margin-top: -1px;
  background: linear-gradient(180deg, #f9fafc 0%, #c5c8ce 50%, #92969e 92%, #686c74 100%);
  clip-path: polygon(4.2% 0, 95.8% 0, 100% 72%, 98.2% 100%, 1.8% 100%, 0 72%);
  filter: drop-shadow(0 22px 22px rgba(19,15,52,.3));
}

.laptop-base::after {
  position: absolute;
  right: 3.4%;
  bottom: 4px;
  left: 3.4%;
  height: 2px;
  content: "";
  background: rgba(60,63,69,.48);
  border-radius: 99px;
}

.laptop-base span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15%;
  height: 9px;
  background: linear-gradient(180deg, #aeb1b8, #e7e8eb);
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.concept-page {
  width: 100%;
  height: 100%;
  color: #151526;
  background: #fff;
  font-family: "Sora", sans-serif;
}

.concept-nav {
  display: flex;
  height: 11%;
  align-items: center;
  justify-content: space-between;
  padding-inline: 3.5%;
  background: #fff;
  font-size: 1.25cqw;
}

.concept-nav b,
.concept-nav div {
  display: flex;
  align-items: center;
}

.concept-nav b {
  gap: .65cqw;
  font-size: 1.48cqw;
}

.concept-nav b i {
  display: grid;
  width: 2.5cqw;
  height: 2.5cqw;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--magenta), var(--gold));
  border-radius: .7cqw;
  font-style: normal;
}

.concept-nav div {
  gap: 2.2cqw;
  font-weight: 700;
}

.concept-nav em {
  padding: .82cqw 1.3cqw;
  color: #fff;
  background: var(--blue);
  border-radius: 99px;
  font-style: normal;
}

.concept-site-hero {
  position: relative;
  height: 77%;
  overflow: hidden;
  background: #111827;
}

.concept-site-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8,13,28,.94) 0%, rgba(8,13,28,.72) 37%, rgba(8,13,28,.08) 67%, rgba(8,13,28,.05));
}

.concept-site-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.concept-site-copy {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 5.4%;
  width: 49%;
  color: #fff;
}

.concept-site-copy small {
  display: block;
  margin-bottom: 1.2cqw;
  color: #9eeafd;
  font-size: 1.05cqw;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.concept-site-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.5cqw;
  color: #fff;
  font-size: 5.2cqw;
  line-height: .98;
  letter-spacing: -.05em;
}

.concept-site-copy p {
  max-width: 39ch;
  margin-bottom: 2cqw;
  color: #e4e8f1;
  font-size: 1.28cqw;
  line-height: 1.55;
}

.concept-site-copy > span {
  display: inline-flex;
  align-items: center;
  gap: .75cqw;
  padding: 1.05cqw 1.55cqw;
  background: linear-gradient(135deg, var(--blue), #6b42ef);
  border-radius: 99px;
  box-shadow: 0 1.2cqw 2.8cqw rgba(70,88,246,.32);
  font-size: 1.2cqw;
  font-weight: 800;
}

.concept-site-copy > span i {
  font-style: normal;
}

.concept-proofbar {
  display: grid;
  height: 12%;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, #314ae9, #5d3fe3 58%, #d82caf);
  font-size: 1.05cqw;
  font-weight: 750;
  text-align: center;
}

.concept-proofbar span + span {
  border-left: 1px solid rgba(255,255,255,.24);
}

.concept-phone {
  position: absolute;
  z-index: 6;
  right: 54px;
  bottom: 35px;
  width: 190px;
  padding: 24px 8px 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #32343c, #111216 72%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 31px;
  box-shadow: 0 30px 65px rgba(17,13,49,.42);
  transform: rotate(3deg);
}

.concept-phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 39px;
  height: 4px;
  background: #090a0c;
  border-radius: 99px;
  transform: translateX(-50%);
}

.concept-phone-screen {
  position: relative;
  aspect-ratio: .52;
  overflow: hidden;
  background: #101627;
  border-radius: 21px;
}

.concept-phone-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5,9,21,.1), rgba(5,9,21,.85) 72%);
}

.concept-phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
}

.concept-phone-screen > div {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 17px;
  left: 13px;
  color: #fff;
  line-height: 1.2;
}

.concept-phone-screen small,
.concept-phone-screen b,
.concept-phone-screen span {
  display: block;
}

.concept-phone-screen small {
  margin-bottom: 8px;
  color: #9fe8fb;
  font-size: .54rem;
}

.concept-phone-screen b {
  margin-bottom: 13px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.16rem;
}

.concept-phone-screen span {
  width: max-content;
  padding: 7px 9px;
  background: var(--blue);
  border-radius: 99px;
  font-size: .55rem;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero-laptop-visual {
    min-height: 690px;
  }

  .laptop-stage {
    width: min(1080px, 100%);
    min-height: 660px;
  }

  .laptop-device {
    width: min(1000px, 100%);
  }

  .concept-phone {
    right: 28px;
    bottom: 42px;
    width: 165px;
  }
}

@media (max-width: 900px) {
  .hero-laptop-visual {
    min-height: 595px;
    margin-top: 30px;
  }

  .laptop-stage {
    width: min(900px, 108%);
    min-height: 570px;
    margin-left: -4%;
  }

  .concept-phone {
    right: 1%;
    bottom: 28px;
    width: 145px;
  }
}

@media (max-width: 680px) {
  .hero-copy {
    text-align: left;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: start;
  }

  .hero-laptop-visual {
    min-height: 390px;
    margin-top: 34px;
  }

  .hero-laptop-visual::after {
    right: -30px;
    bottom: 0;
    left: -30px;
    height: 235px;
  }

  .hero-laptop-visual .hero-bolt {
    top: -18px;
    width: 650px;
  }

  .laptop-stage {
    width: 108%;
    min-height: 370px;
    margin-left: -4%;
  }

  .concept-kicker {
    top: 0;
    display: block;
    width: max-content;
    max-width: 92%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(-50%);
  }

  .concept-kicker span,
  .concept-kicker b {
    display: block;
  }

  .concept-kicker span {
    margin-bottom: 3px;
  }

  .concept-kicker b {
    font-size: 1rem;
  }

  .laptop-device {
    top: 67px;
  }

  .laptop-lid {
    padding: 7px 7px 10px;
    border-radius: 13px 13px 6px 6px;
  }

  .laptop-camera {
    top: 2px;
    width: 3px;
    height: 3px;
  }

  .laptop-screen {
    border-radius: 6px 6px 3px 3px;
  }

  .laptop-base {
    height: 24px;
  }

  .concept-phone {
    right: -1%;
    bottom: 13px;
    width: 103px;
    padding: 16px 5px 7px;
    border-radius: 20px;
  }

  .concept-phone-speaker {
    top: 7px;
    width: 25px;
    height: 3px;
  }

  .concept-phone-screen {
    border-radius: 13px;
  }

  .concept-phone-screen > div {
    right: 7px;
    bottom: 10px;
    left: 7px;
  }

  .concept-phone-screen small {
    margin-bottom: 4px;
    font-size: .38rem;
  }

  .concept-phone-screen b {
    margin-bottom: 6px;
    font-size: .72rem;
  }

  .concept-phone-screen span {
    padding: 4px 5px;
    font-size: .35rem;
  }
}

@media (max-width: 430px) {
  .hero-laptop-visual {
    min-height: 365px;
  }

  .laptop-stage {
    min-height: 345px;
  }

  .concept-kicker b {
    font-size: .92rem;
  }
}

/* V5 signature hero: licensed photorealistic devices + real responsive renders */
.hero-laptop-visual {
  min-height: 840px;
  margin-top: -30px;
  contain: layout paint;
}

.hero-laptop-visual::after {
  right: -9vw;
  bottom: -8px;
  left: -9vw;
  height: 420px;
  background: linear-gradient(108deg, #3d56f5 5%, #612fdf 52%, #ee3ca9 78%, #ff7f66 100%);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
}

.hero-laptop-visual .hero-bolt {
  top: -62px;
  width: 1080px;
  opacity: .88;
  transform: translateX(-50%) rotate(-4deg);
}

.laptop-stage {
  width: min(1320px, 100%);
  min-height: 840px;
}

.concept-kicker {
  top: 67px;
  z-index: 8;
}

.primary-device,
.companion-device {
  position: absolute;
  display: block;
}

.primary-device {
  z-index: 4;
  top: 94px;
  left: 50%;
  width: min(1280px, 100%);
  aspect-ratio: 1280 / 772;
  filter: drop-shadow(0 40px 42px rgba(18, 14, 50, .28));
  transform: translateX(-50%);
}

.primary-device img,
.companion-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.companion-device {
  z-index: 6;
  top: 272px;
  right: 52px;
  display: none;
  width: 215px;
  aspect-ratio: 640 / 1643;
  filter: drop-shadow(0 33px 31px rgba(13, 10, 36, .38));
  transform: rotate(2.5deg);
}

.device-caption {
  position: absolute;
  z-index: 7;
  right: 50%;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 10px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(25,23,38,.1);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20,16,53,.17);
  font-size: .72rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  transform: translateX(50%);
}

.device-caption span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: .65rem;
}

@media (min-width: 1024px) {
  .companion-device {
    display: block;
  }
}

@media (max-width: 1120px) {
  .hero-laptop-visual {
    min-height: 730px;
  }

  .laptop-stage {
    width: min(1080px, 100%);
    min-height: 720px;
  }

  .primary-device {
    top: 92px;
    width: min(1050px, 100%);
  }

  .companion-device {
    top: 245px;
    right: 18px;
    width: 178px;
  }
}

@media (max-width: 900px) {
  .hero-laptop-visual {
    min-height: 625px;
    margin-top: 20px;
  }

  .laptop-stage {
    width: 104%;
    min-height: 610px;
    margin-left: -2%;
  }

  .concept-kicker {
    top: 37px;
  }

  .primary-device {
    top: 66px;
    width: 100%;
  }

  .device-caption {
    bottom: 0;
  }
}

@media (max-width: 680px) {
  .hero-laptop-visual {
    min-height: clamp(730px, 210vw, 830px);
    margin-top: 24px;
  }

  .hero-laptop-visual::after {
    right: -30px;
    bottom: 0;
    left: -30px;
    height: 72%;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-laptop-visual .hero-bolt {
    top: 28px;
    width: 650px;
    opacity: .72;
  }

  .laptop-stage {
    width: 100%;
    min-height: clamp(730px, 210vw, 830px);
    margin-left: 0;
  }

  .concept-kicker {
    top: 2px;
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(-50%);
  }

  .concept-kicker span,
  .concept-kicker b {
    display: block;
  }

  .concept-kicker span {
    margin-bottom: 3px;
  }

  .concept-kicker b {
    white-space: normal;
    font-size: 1rem;
  }

  .primary-device {
    top: 58px;
    width: min(74vw, 295px);
    aspect-ratio: 640 / 1643;
    filter: drop-shadow(0 30px 30px rgba(18,14,50,.32));
  }

  .device-caption {
    bottom: 7px;
    padding: 9px 13px;
    font-size: .66rem;
  }
}

@media (max-width: 360px) {
  .device-caption {
    width: min(285px, calc(100% - 24px));
    justify-content: center;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-48%);
  }
}

.blog-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 18%, rgba(39, 199, 232, .2), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(216, 44, 175, .24), transparent 30%),
    var(--dark);
}

.blog-section::before {
  position: absolute;
  top: 82px;
  right: -34px;
  width: 210px;
  height: 210px;
  content: "";
  border: 34px solid rgba(191, 246, 62, .11);
  border-radius: 50%;
}

.blog-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .62fr);
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.blog-heading h2 {
  max-width: 820px;
  margin: 0;
}

.blog-heading h2 em {
  color: var(--lime);
  font-style: normal;
}

.section-heading-side p {
  margin-bottom: 20px;
  color: #b9b5c9;
  font-size: .92rem;
}

.section-heading-side .text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
}

.home-blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 16px;
}

.home-blog-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  color: var(--ink);
  background: #f8f7ff;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .15);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-blog-card:nth-child(2) {
  background: #e7f8fc;
}

.home-blog-card:nth-child(3) {
  background: #f4fbdc;
}

.home-blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 86px rgba(0, 0, 0, .22);
}

.home-blog-card-featured {
  background: linear-gradient(145deg, #4658f6, #663edb);
  color: var(--white);
}

.home-blog-index {
  display: grid;
  width: 48px;
  height: 52px;
  margin-bottom: auto;
  place-items: center;
  color: var(--dark);
  background: var(--lime);
  border-radius: 16px 6px 16px 6px;
  font-size: .68rem;
  font-weight: 900;
}

.home-blog-card:not(.home-blog-card-featured) .home-blog-index {
  color: var(--white);
  background: var(--blue);
}

.home-blog-meta {
  display: flex;
  margin: 28px 0 13px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
}

.home-blog-meta span {
  color: var(--blue-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-blog-card-featured .home-blog-meta,
.home-blog-card-featured .home-blog-meta span {
  color: rgba(255, 255, 255, .76);
}

.home-blog-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1.02;
}

.home-blog-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.home-blog-card-featured p {
  color: rgba(255, 255, 255, .74);
}

.home-blog-card strong {
  margin-top: auto;
  color: var(--blue-dark);
  font-size: .76rem;
}

.home-blog-card-featured strong {
  color: var(--lime);
}

@media (max-width: 940px) {
  .blog-heading,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-card {
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  .blog-section::before { display: none; }
  .home-blog-card { min-height: 310px; }
  .home-blog-meta { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .home-blog-card {
    transition: none;
  }

  .home-blog-card:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V11: mobile navigation and service-card readability */
@media (max-width: 1120px) {
  .mobile-menu {
    top: 74px;
    bottom: auto;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
    background: #f7f5ff;
    box-shadow: 0 24px 54px rgba(21, 16, 43, .18);
    isolation: isolate;
  }

  body.menu-open .mobile-call,
  body.menu-open .wvc-bubble,
  body.menu-open .wvc-panel,
  body.menu-open .wvc-teaser,
  body.menu-open .wv-consent,
  body.menu-open .wv-consent-settings {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 680px) {
  .service-main {
    min-height: 0;
    padding: 32px 24px 0;
  }

  .service-main .service-copy {
    max-width: none;
  }

  .service-main .service-copy h3 {
    max-width: 9.5ch;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: .97;
  }

  .service-main .service-copy p {
    max-width: none;
    color: #eeecf7;
    font-size: .96rem;
    line-height: 1.7;
  }

  .service-main .service-copy > a {
    font-size: .94rem;
    line-height: 1.35;
  }

  .service-bolt {
    top: -58px;
    right: -74px;
    width: 310px;
    opacity: .62;
  }

  .mini-browser {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 26px);
    margin: 34px -38px -22px 12px;
    transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(-2deg);
  }

  .mini-browser-body {
    min-height: 0;
  }

  .mini-browser-body img {
    height: 220px;
  }
}


/* V6 polish: clearer proof, quieter hero, visual customer journey */
.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.mini-bolt {
  display: inline-block;
  width: 19px;
  height: 23px;
  flex: 0 0 auto;
  background: url("assets/brand-bolt-prismatic-a-96.webp?v=1") center / contain no-repeat;
  filter: drop-shadow(0 3px 4px rgba(28, 24, 76, .2));
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-copy .eyebrow .mini-bolt {
  width: 22px;
  height: 27px;
  margin-right: 1px;
}

.hero-proof {
  gap: 12px;
  color: #57536b;
  font-size: .91rem;
  line-height: 1.35;
}

.hero-proof > * {
  min-height: 44px;
  gap: 9px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(50, 48, 83, .1);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 31, 82, .1);
  backdrop-filter: blur(10px);
}

.hero-proof > *::before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 5px rgba(255, 78, 121, .12);
}

.hero-proof b {
  color: var(--ink);
  font-size: .98rem;
}

.hero-laptop-visual {
  min-height: 800px;
  margin-top: -2px;
}

.hero-laptop-visual::after {
  bottom: 0;
  height: 400px;
}

.laptop-stage {
  min-height: 800px;
}

.primary-device {
  top: 26px;
}

.companion-device {
  top: 205px;
}

.ticker-track .mini-bolt {
  width: 24px;
  height: 30px;
  filter: drop-shadow(0 4px 5px rgba(25, 19, 69, .34));
}

.price-card li > .mini-bolt {
  width: 17px;
  height: 21px;
  margin-top: -1px;
}

.system-grid {
  grid-template-columns: 1fr;
  gap: 54px;
}

.system-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.system-copy h2,
.system-copy > p:not(.eyebrow) {
  max-width: none;
}

.system-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
}

.system-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.system-art {
  padding: 0;
}

.journey-device {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px;
  border-radius: 44px;
  box-shadow: 0 44px 100px rgba(0, 0, 0, .42);
}

.journey-device::before {
  display: none;
}

.journey-device-top {
  min-height: 64px;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-radius: 31px 31px 12px 12px;
}

.journey-device-top > span {
  margin: 0;
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -.01em;
  text-transform: none;
}

.journey-device-top strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-device-top strong i {
  width: 9px;
  height: 9px;
  background: #22c98d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 201, 141, .13);
}

.journey-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #f7f6fd;
}

.journey-list::before {
  z-index: 0;
  top: 50%;
  right: 5%;
  bottom: auto;
  left: 5%;
  width: auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta), var(--gold));
  transform: translateY(-50%);
}

.journey-list li,
.journey-list li:nth-child(even) {
  --step: var(--blue);
  --step-tint: #edf1ff;
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin: 0;
  padding: 14px 14px 18px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(33, 29, 72, .09);
  border-radius: 28px 12px 28px 12px;
  box-shadow: 0 16px 34px rgba(35, 29, 78, .1);
}

.journey-list li:nth-child(2) {
  --step: #2b9db0;
  --step-tint: #e9fbfa;
}

.journey-list li:nth-child(3) {
  --step: var(--magenta);
  --step-tint: #fff0f8;
}

.journey-list li:nth-child(4) {
  --step: #c57b00;
  --step-tint: #fff7dc;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -23px;
  display: grid;
  width: 32px;
  height: 32px;
  content: "→";
  place-items: center;
  color: #fff;
  background: #26213d;
  border: 4px solid #f7f6fd;
  border-radius: 50%;
  box-shadow: 0 7px 15px rgba(29, 23, 64, .2);
  font-size: .78rem;
  transform: translateY(-50%);
}

.journey-step-label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.journey-list .journey-step-label span {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0;
  place-items: center;
  color: #fff;
  background: var(--step);
  border-radius: 12px 5px 12px 5px;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.journey-step-label small {
  color: var(--step);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journey-list figure {
  display: grid;
  width: 100%;
  height: 170px;
  margin: 0;
  place-items: center;
  background: var(--step-tint);
  border-radius: 22px 9px 22px 9px;
}

.journey-list li figure img {
  width: 156px;
  height: 156px;
  filter: drop-shadow(0 14px 18px rgba(25, 23, 60, .2));
}

.journey-step-copy {
  padding: 5px 5px 0;
}

.journey-list .journey-step-copy b {
  font-size: 1.45rem;
}

.journey-list .journey-step-copy p {
  margin-top: 7px;
  font-size: .78rem;
  line-height: 1.5;
}

.journey-device-bottom {
  min-height: 78px;
  padding: 12px 24px;
  border-radius: 12px 12px 31px 31px;
}

.journey-device-bottom > .mini-bolt {
  width: 45px;
  height: 45px;
  background: var(--gold) url("assets/brand-bolt-prismatic-a-96.webp?v=1") center / 27px auto no-repeat;
  border-radius: 15px 6px 15px 6px;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .24));
}

.journey-device-bottom small {
  letter-spacing: .08em;
}

.journey-device-bottom b {
  font-size: .92rem;
}

.journey-device-bottom em {
  position: relative;
  display: flex;
  width: 170px;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
}

.journey-device-bottom em::before {
  position: absolute;
  right: 5px;
  left: 5px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta), var(--gold));
}

.journey-device-bottom em i {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.journey-device-bottom em i:nth-child(2) { border-color: var(--cyan); }
.journey-device-bottom em i:nth-child(3) { border-color: var(--magenta); }
.journey-device-bottom em i:nth-child(4) { border-color: var(--gold); }

@media (max-width: 1120px) {
  .hero-laptop-visual {
    min-height: 690px;
  }

  .laptop-stage {
    min-height: 680px;
  }

  .primary-device {
    top: 24px;
  }

  .companion-device {
    top: 175px;
  }
}

@media (max-width: 1000px) {
  .journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-list::before,
  .journey-list li::after {
    display: none;
  }

  .journey-list li,
  .journey-list li:nth-child(even) {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .hero-laptop-visual {
    min-height: 585px;
    margin-top: 20px;
  }

  .laptop-stage {
    min-height: 575px;
  }

  .primary-device {
    top: 18px;
  }
}

@media (max-width: 680px) {
  .mobile-call {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .25s ease, transform .25s ease;
  }

  body.has-scrolled .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-proof {
    display: grid;
    justify-content: stretch;
    gap: 9px;
  }

  .hero-proof > * {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px 7px 16px 7px;
  }

  .hero-laptop-visual {
    min-height: clamp(555px, 164vw, 650px);
    margin-top: 28px;
  }

  .hero-laptop-visual::after {
    height: 76%;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .laptop-stage {
    min-height: clamp(555px, 164vw, 650px);
  }

  .primary-device {
    top: 0;
    width: min(58vw, 235px);
    aspect-ratio: 640 / 1643;
  }

  .system-grid {
    gap: 38px;
  }

  .system-copy {
    text-align: left;
  }

  .system-copy > p:not(.eyebrow) {
    margin-left: 0;
  }

  .journey-device {
    padding: 8px;
    border-radius: 34px;
  }

  .journey-device-top {
    min-height: 58px;
    gap: 12px;
    padding: 0 15px;
    border-radius: 26px 26px 10px 10px;
  }

  .journey-device-top > span {
    font-size: .88rem;
  }

  .journey-device-top strong {
    max-width: 14ch;
    justify-content: flex-end;
    font-size: .56rem;
    line-height: 1.25;
    text-align: right;
  }

  .journey-list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .journey-list li,
  .journey-list li:nth-child(even) {
    display: grid;
    min-height: 156px;
    grid-template-columns: 92px 1fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 5px 12px;
    padding: 12px;
    border-radius: 22px 9px 22px 9px;
  }

  .journey-list li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -24px;
    display: grid;
    width: 30px;
    height: 30px;
    content: "→";
    transform: translateX(50%) rotate(90deg);
  }

  .journey-step-label {
    grid-column: 1 / -1;
  }

  .journey-list figure {
    width: 92px;
    height: 92px;
    grid-column: 1;
    grid-row: 2;
  }

  .journey-list li figure img {
    width: 88px;
    height: 88px;
  }

  .journey-step-copy {
    grid-column: 2;
    grid-row: 2;
    padding: 0;
  }

  .journey-list .journey-step-copy b {
    font-size: 1.25rem;
  }

  .journey-list .journey-step-copy p {
    font-size: .7rem;
  }

  .journey-device-bottom {
    min-height: 70px;
    padding: 10px 14px;
    border-radius: 10px 10px 26px 26px;
  }

  .journey-device-bottom > .mini-bolt {
    width: 40px;
    height: 40px;
  }

  .journey-device-bottom em {
    display: none;
  }
}

/* V7 polish: crisp small marks, calmer device motion and simplified journey */
.ticker-track .mini-bolt {
  width: 14px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--gold);
  clip-path: polygon(56% 0, 10% 55%, 42% 55%, 31% 100%, 90% 40%, 58% 40%);
  filter: none;
}

.journey-list li:not(:last-child)::after {
  display: none;
  content: none;
}

.mobile-call-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.mobile-call-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* V8: customer-evidence CRO layer */
.hero-title {
  max-width: 1060px;
  font-size: clamp(3.1rem, 5.35vw, 5.25rem);
}

.hero-lead {
  max-width: 850px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-proof {
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-proof > * {
  white-space: normal;
}

.ownership-rail {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(39, 199, 232, .24), transparent 30%),
    radial-gradient(circle at 82% 110%, rgba(255, 78, 121, .26), transparent 35%),
    #19172a;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ownership-grid {
  display: grid;
  width: min(calc(100% - 40px), 1320px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ownership-grid > div {
  display: grid;
  min-height: 154px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.ownership-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.ownership-grid > div > span {
  display: grid;
  width: 44px;
  height: 52px;
  place-items: center;
  color: #171525;
  background: var(--lime);
  clip-path: polygon(28% 0, 100% 0, 73% 47%, 100% 47%, 30% 100%, 46% 58%, 0 58%);
  font-size: .65rem;
  font-weight: 900;
}

.ownership-grid > div:nth-child(2) > span { background: var(--cyan); }
.ownership-grid > div:nth-child(3) > span { background: var(--gold); }
.ownership-grid > div:nth-child(4) > span { background: #ff6fa0; }

.ownership-grid p,
.ownership-grid small {
  display: block;
  margin: 0;
}

.ownership-grid b {
  display: block;
  margin-bottom: 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
}

.ownership-grid small {
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  line-height: 1.45;
}

.route-section,
.process-section,
.repair-section,
#weboldal,
#hirdetes,
#google,
#meres {
  scroll-margin-top: 94px;
}

.route-card h3 {
  font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.route-card p {
  font-size: .82rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.process-section::before {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(70, 88, 246, .13), transparent 68%);
  pointer-events: none;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 54px 0 22px;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 54px;
  right: 4%;
  left: 4%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--gold), var(--dark));
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 26px 24px 28px;
  background: #f3f5ff;
  border: 1px solid rgba(70, 88, 246, .15);
  border-radius: 32px 12px 32px 12px;
  box-shadow: 0 18px 46px rgba(37, 32, 84, .1);
}

.process-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 7px solid #fff;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 9px 24px rgba(70, 88, 246, .3);
  font-size: .8rem;
  font-weight: 900;
}

.process-card > small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 1.72rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.62;
}

.process-coral { background: #fff1f5; border-color: rgba(255, 78, 121, .18); }
.process-coral > span { background: var(--coral); box-shadow: 0 9px 24px rgba(255, 78, 121, .28); }
.process-coral > small { color: #d02d57; }
.process-gold { background: #fff8df; border-color: rgba(255, 173, 34, .26); }
.process-gold > span { color: var(--ink); background: var(--gold); box-shadow: 0 9px 24px rgba(255, 173, 34, .3); }
.process-gold > small { color: #9c6500; }
.process-ink { color: #fff; background: var(--dark); border-color: var(--dark); }
.process-ink > span { color: var(--dark); background: var(--lime); box-shadow: 0 9px 24px rgba(191, 246, 62, .2); }
.process-ink > small { color: var(--lime); }
.process-ink p { color: rgba(255, 255, 255, .68); }

.process-decision {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: #edfbea;
  border: 1px solid rgba(71, 153, 73, .2);
  border-radius: 18px 8px 18px 8px;
}

.process-decision > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #379e5b;
  border-radius: 50%;
  font-weight: 900;
}

.process-decision p {
  margin: 0;
  font-size: .82rem;
}

.process-decision a {
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 850;
}

.repair-section {
  padding-top: 0;
  background: #fff;
}

.repair-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: 42px;
  padding: clamp(36px, 5vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(39, 199, 232, .24), transparent 30%),
    linear-gradient(135deg, #211d47 0%, #3c2a83 56%, #45206d 100%);
  border-radius: 48px 18px 48px 18px;
  box-shadow: var(--shadow-strong);
}

.repair-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
  opacity: .15;
}

.repair-copy,
.repair-board {
  position: relative;
  z-index: 1;
}

.repair-copy h2 {
  max-width: 650px;
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
}

.repair-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
}

.repair-board {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 34px 12px 34px 12px;
  backdrop-filter: blur(10px);
}

.repair-board > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border-radius: 18px 7px 18px 7px;
}

.repair-board > div > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 15px 6px 15px 6px;
  font-size: .7rem;
  font-weight: 900;
}

.repair-board > div:nth-child(2) > span { background: var(--coral); }
.repair-board > div:nth-child(3) > span { color: var(--ink); background: var(--gold); }
.repair-board p,
.repair-board small { display: block; margin: 0; }
.repair-board b { display: block; font-size: .9rem; }
.repair-board small { color: var(--muted); font-size: .66rem; }

.repair-board .repair-note {
  margin: 2px 0 0;
  padding: 15px 17px;
  color: #fff;
  background: rgba(9, 7, 29, .35);
  border-radius: 14px 6px 14px 6px;
  font-size: .72rem;
  line-height: 1.55;
}

.service-panel[id] {
  scroll-margin-top: 102px;
}

.price-band-note,
.price-rhythm {
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-radius: 13px 6px 13px 6px;
  font-size: .7rem;
  line-height: 1.5;
}

.price-band-note {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.price-band-note b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .75rem;
}

.growth-scope-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 10px;
  margin: 18px 0;
}

.growth-scope {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px 7px 18px 7px;
}

.growth-included {
  background: rgba(70, 88, 246, .24);
}

.growth-extra {
  background: rgba(255, 255, 255, .065);
}

.growth-scope h4 {
  margin: 0;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .79rem;
  letter-spacing: .04em;
}

.price-card .growth-scope ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.price-card .growth-scope li {
  position: relative;
  gap: 8px;
  padding: 8px 0;
  color: rgba(255, 255, 255, .78);
  border-color: rgba(255, 255, 255, .09);
  font-size: .68rem;
  line-height: 1.45;
}

.price-card .growth-extra li {
  padding-left: 17px;
}

.price-card .growth-extra li::before {
  position: absolute;
  top: 14px;
  left: 1px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 78, 121, .13);
}

.price-card .growth-scope li > .mini-bolt {
  width: 19px;
  height: 22px;
  flex: 0 0 19px;
  background-size: 18px auto;
}

.price-rhythm {
  color: #27213c;
  background: var(--lime);
}

.price-rhythm > b {
  display: block;
  margin-bottom: 9px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .78rem;
}

.price-rhythm ol {
  display: grid;
  grid-template-columns: .8fr .9fr 1.8fr;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card .price-rhythm li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #27213c;
  border: 0;
  font-size: .61rem;
  font-weight: 800;
  line-height: 1.25;
}

.price-card .price-rhythm li > span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: #27213c;
  border-radius: 50%;
  font-size: .55rem;
}

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

.price-notes p {
  min-height: 154px;
  background: #eeecf8;
  border: 1px solid rgba(33, 29, 72, .08);
}

.price-notes p:nth-child(2) { background: #eaf9ff; }
.price-notes p:nth-child(3) { background: #fff4e1; }

.work-case {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.work-case p {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px 5px 13px 5px;
  font-size: .72rem;
  line-height: 1.5;
}

.work-case b {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-split {
  display: grid;
  grid-template-columns: .82fr 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px 9px 24px 9px;
}

.proof-split-heading,
.proof-lane {
  min-height: 154px;
  padding: 19px;
  border-radius: 17px 7px 17px 7px;
}

.proof-split-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(145deg, rgba(70, 88, 246, .42), rgba(216, 44, 175, .28));
}

.proof-split-heading small {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-split-heading h3 {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.04;
}

.proof-lane {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 13px;
  color: var(--ink);
  background: #edf8ff;
}

.proof-lane-result {
  background: #f1fbdf;
}

.proof-lane > span {
  display: grid;
  width: 40px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 14px 5px 14px 5px;
  font-size: .62rem;
  font-weight: 900;
}

.proof-lane-result > span {
  color: var(--dark);
  background: var(--lime);
}

.proof-lane p {
  margin: 0;
  color: #59556c;
  font-size: .7rem;
  line-height: 1.52;
}

.proof-lane b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .92rem;
  line-height: 1.15;
}

.contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 13px 42px 13px 14px;
  color: var(--ink);
  background: #f4f2f8;
  border: 1px solid transparent;
  border-radius: 11px;
  font: inherit;
}

.contact-form select:focus {
  background: #fff;
  border-color: var(--blue);
  outline: none;
}

.services-section.wow-clip {
  clip-path: none !important;
  transition: none !important;
}

@media (max-width: 1080px) {
  .ownership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ownership-grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .ownership-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

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

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

  .process-card {
    min-height: 290px;
  }

  .process-card > span {
    margin-bottom: 28px;
  }

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

  .price-notes {
    grid-template-columns: 1fr;
  }

  .price-notes p {
    min-height: 0;
  }

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

  .proof-split-heading {
    min-height: 128px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .hero-lead {
    font-size: .92rem;
  }

  .hero-proof > * {
    font-size: .78rem;
  }

  .ownership-grid {
    width: min(calc(100% - 24px), 1320px);
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .ownership-grid > div,
  .ownership-grid > div:nth-child(3),
  .ownership-grid > div:nth-child(4) {
    min-height: 112px;
    padding: 18px 12px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }

  .ownership-grid > div:last-child {
    border-bottom: 0;
  }

  .process-section .section-heading,
  .process-grid {
    margin-bottom: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .process-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 56px 1fr;
    gap: 4px 14px;
    padding: 18px;
  }

  .process-card > span {
    width: 54px;
    height: 54px;
    grid-row: 1 / 4;
    margin: 0;
    border-width: 5px;
  }

  .process-card > small,
  .process-card h3,
  .process-card p {
    grid-column: 2;
  }

  .process-card > small { margin: 0; }
  .process-card h3 { margin: 0 0 6px; font-size: 1.4rem; }
  .process-card p { font-size: .72rem; }

  .process-decision {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .process-decision > span {
    width: 40px;
    height: 40px;
  }

  .process-decision a {
    grid-column: 2;
  }

  .repair-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .repair-card {
    gap: 24px;
    padding: 28px 18px;
    border-radius: 32px 12px 32px 12px;
  }

  .repair-copy h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.15rem);
  }

  .repair-board {
    padding: 10px;
  }

  .repair-board > div {
    grid-template-columns: 46px 1fr;
    padding: 12px;
  }

  .repair-board > div > span {
    width: 44px;
    height: 44px;
  }

  .pricing-section .section-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3.3rem);
  }

  .growth-scope-grid,
  .price-rhythm ol,
  .proof-split {
    grid-template-columns: 1fr;
  }

  .proof-split-heading {
    min-height: 0;
    grid-column: auto;
  }

  .proof-lane {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-phone-motion,
  .lead-notification,
  .process-card,
  .repair-card {
    animation: none !important;
    transform: none !important;
  }
}

/* Client references: four authored websites and two service engagements. */
.work-grid-websites > .work-card { grid-column: span 6; }
.client-services { margin-top: 44px; }
.client-services-heading { max-width: 720px; margin-bottom: 22px; }
.client-services-heading h3 { margin-bottom: 12px; color: #fff; font-size: clamp(1.35rem, 2.4vw, 2rem); }
.client-services-heading p { color: #bab6c8; }
.client-services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.client-service-card { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; padding: 28px; border: 1px solid #555063; border-radius: var(--radius-md); background: #282335; color: #fff; }
.client-service-card:hover { border-color: #c5bcf1; background: #30293f; }
.client-service-card:focus-visible { outline: 3px solid #ddd5ff; outline-offset: 4px; }
.client-service-card small { color: #c5bfd5; font-size: .75rem; }
.client-service-card h4 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.25; }
.client-service-card p { margin: 0; color: #d0cadb; font-size: .92rem; }
.client-service-label { margin-top: auto; padding-top: 5px; color: #d7ccff; font-size: .75rem; font-weight: 700; }
@media (max-width: 680px) {
  .work-grid-websites > .work-card { grid-column: auto; }
  .client-services-grid { grid-template-columns: 1fr; }
  .client-service-card { padding: 24px; }
}

/* Direct service CTA arrivals land on the form, below the sticky header. */
#contact-form { scroll-margin-top: 16px; }
.work-service-links { margin: 24px 0; line-height: 2; }
.work-service-links a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }

/* Verified customer reviews, homepage — 2026-09-18. */
.client-reviews { margin-top: 54px; padding-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }
.client-reviews-heading { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 28px; }
.client-reviews-heading h3 { max-width: 620px; margin-bottom: 0; font-size: clamp(2rem, 3.6vw, 3.3rem); }
.client-reviews-score { display: flex; flex-shrink: 0; align-items: center; gap: 14px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-sm); }
.client-reviews-score > strong { font: 800 2.8rem/1 "Bricolage Grotesque", sans-serif; }
.client-reviews-score b, .client-reviews-score small { display: block; }
.client-reviews-score b { color: var(--gold); letter-spacing: .12em; }
.client-reviews-score small { margin-top: 4px; font-size: .7rem; }
.client-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.client-review-card { display: flex; flex-direction: column; gap: 22px; margin: 0; padding: 30px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-md); background: var(--dark-soft); }
.client-review-featured { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.client-review-stars { color: var(--gold); letter-spacing: .16em; font-size: .95rem; }
.client-review-featured .client-review-stars { color: var(--ink); }
.client-review-card blockquote { flex: 1; margin: 0; font: 550 1.18rem/1.5 "Bricolage Grotesque", sans-serif; }
.client-review-card blockquote p { margin: 0; }
.client-review-card figcaption { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.client-review-featured figcaption { border-color: rgba(25,23,38,.24); }
.client-review-card figcaption strong, .client-review-card figcaption span, .client-review-card time { display: block; }
.client-review-card figcaption strong { font-size: .82rem; line-height: 1.5; }
.client-review-card figcaption span, .client-review-card time { margin-top: 5px; color: #c6c2d3; font-size: .66rem; line-height: 1.6; }
.client-review-featured figcaption span, .client-review-featured time { color: #41301c; }
.client-reviews-source { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; margin-top: 20px; font-size: .8rem; text-decoration: underline; text-underline-offset: 5px; }
.client-reviews a:focus-visible { outline: 3px solid var(--white); outline-offset: 5px; }
@media (max-width: 900px) {
  .client-reviews-heading { align-items: flex-start; flex-direction: column; }
  .client-reviews-grid { grid-template-columns: 1fr; }
  .client-review-card { padding: 26px; }
}
