:root {
  --site-scale: 0.8;
  --bg: #05060b;
  --header-bg: #05060b;
  --cyan: #00aef0;
  --cyan-soft: #00b7ff;
  --text: #f7fbff;
  --muted: #9999a7;
  --muted-strong: #a6a6b3;
  --panel: #080b14;
  --line: rgba(255, 255, 255, 0.07);
  --shadow: 0 18px 48px rgba(0, 174, 240, 0.18);
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 78% 4%, rgba(0, 174, 240, 0.14), transparent 26rem),
    linear-gradient(180deg, #05060b 0%, #070915 46%, #05060b 100%);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.google-translate-holder {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  body {
    zoom: var(--site-scale);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 22%, rgba(0, 189, 255, 0.09), transparent 35%),
    radial-gradient(circle at 82% 74%, rgba(30, 111, 255, 0.08), transparent 34%);
  animation: ambient-drift 30s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  z-index: 999;
  background: linear-gradient(90deg, #02d2ff, #3b8dff);
  box-shadow: 0 0 14px rgba(0, 204, 255, 0.6);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 0 17px;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 192px;
  animation: slide-down 0.55s ease both;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 18px;
  border: 3px solid var(--cyan);
  border-radius: 999px;
  filter: drop-shadow(0 0 8px rgba(0, 174, 240, 0.42));
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.brand-mark span {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
}

.brand-mark span:first-child {
  left: 6px;
}

.brand-mark span:last-child {
  right: 6px;
}

.brand-name {
  color: var(--cyan);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px, 2.35vw, 38px);
  padding-right: 38px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: slide-down 0.62s 0.06s ease both;
}

.primary-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #d6d7df;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  padding: 0 24px;
  color: #00131e;
  background: linear-gradient(135deg, #00c3ff 0%, #009cf3 100%);
  border-radius: 9px;
  box-shadow: var(--shadow);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  animation: slide-down 0.67s 0.1s ease both;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 58px rgba(0, 174, 240, 0.27);
  filter: saturate(1.12);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  color: var(--cyan);
  background: rgba(0, 174, 240, 0.08);
  border: 1px solid rgba(0, 174, 240, 0.22);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--cyan);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 68px);
  place-items: center;
  overflow: hidden;
  padding: 28px 22px 54px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.logo-strip-section {
  position: relative;
  width: 100%;
  padding: 16px clamp(14px, 2.8vw, 46px) 8px;
  overflow: hidden;
}

.logo-strip-window {
  --logo-gap: 16px;
  --visible-logos: 5;
  --logo-item-width: 220px;
  width: min(1360px, 100%);
  margin: 0 auto;
  container-type: inline-size;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.logo-strip-track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  will-change: transform;
  animation: logo-marquee 26s linear infinite;
}

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

.logo-strip-item {
  display: grid;
  place-items: center;
  flex: 0 0 var(--logo-item-width);
  width: var(--logo-item-width);
  min-height: 84px;
  border-radius: 14px;
  border: 1px solid rgba(0, 183, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(9, 24, 42, 0.82), rgba(7, 15, 28, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(0, 204, 255, 0.13), transparent 48%);
  box-shadow:
    inset 0 0 24px rgba(0, 174, 240, 0.08),
    0 10px 24px rgba(0, 8, 22, 0.45);
  padding: 12px 14px;
}

.logo-strip-item[href] {
  cursor: pointer;
}

.logo-strip-item img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

@supports (width: 1cqi) {
  .logo-strip-item {
    flex: 0 0 calc((100cqi - (var(--logo-gap) * (var(--visible-logos) - 1))) / var(--visible-logos));
    width: calc((100cqi - (var(--logo-gap) * (var(--visible-logos) - 1))) / var(--visible-logos));
  }
}

.hero > *:not(.hero-glow):not(.hero-grid) {
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 92, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 92, 0.17) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 1));
  pointer-events: none;
}

.hero-title {
  width: min(1020px, 100%);
  max-width: 1020px;
  margin: 0;
  font-size: clamp(3rem, 8.6vw, 9.1rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  background: linear-gradient(180deg, #82ecff 0%, #00a9ee 38%, #4ac0ff 70%, #7ce8ff 100%);
  background-size: 130% 130%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    fade-up 0.72s 0.16s ease both,
    title-glow 7s ease-in-out infinite;
}

.hero-tagline {
  max-width: 980px;
  margin: 20px 0 0;
  color: #1ed0ff;
  font-size: clamp(1.5rem, 3.05vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  animation: fade-up 0.72s 0.22s ease both;
}

.hero-copy {
  max-width: 980px;
  margin: 22px auto 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.68vw, 2rem);
  line-height: 1.43;
  animation: fade-up 0.75s 0.3s ease both;
}

.hero-showcase {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1360px, 100%);
  margin-top: 40px;
  animation: fade-up 0.85s 0.38s ease both;
}

.showcase-card {
  position: relative;
  min-height: 336px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 181, 255, 0.28);
  border-radius: 20px;
  overflow: hidden;
  padding: 22px;
  text-align: left;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.35), rgba(2, 20, 43, 0.78)),
    radial-gradient(circle at 14% 15%, rgba(0, 215, 255, 0.18), transparent 40%);
  box-shadow:
    0 0 0 1px rgba(0, 174, 240, 0.08),
    inset 0 0 50px rgba(0, 174, 240, 0.08),
    0 28px 80px rgba(0, 15, 40, 0.6);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(0, 10, 28, 0.9), transparent);
}

.showcase-card:hover {
  border-color: rgba(84, 214, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(0, 174, 240, 0.14),
    inset 0 0 60px rgba(0, 174, 240, 0.12),
    0 36px 90px rgba(0, 15, 40, 0.8);
}

.showcase-card-voice {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.22), rgba(2, 20, 43, 0.72)),
    radial-gradient(circle at 14% 15%, rgba(0, 215, 255, 0.2), transparent 42%),
    linear-gradient(110deg, rgba(255, 161, 91, 0.36), rgba(19, 31, 54, 0.18) 52%);
}

.showcase-card-auto {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.28), rgba(2, 20, 43, 0.82)),
    radial-gradient(circle at 14% 15%, rgba(0, 215, 255, 0.2), transparent 42%),
    linear-gradient(110deg, rgba(109, 214, 255, 0.1), rgba(0, 0, 0, 0.15) 52%);
}

.showcase-card-live {
  display: flex;
  flex-direction: column;
  min-height: 336px;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.24), rgba(2, 20, 43, 0.8)),
    radial-gradient(circle at 10% 14%, rgba(0, 215, 255, 0.18), transparent 40%),
    linear-gradient(110deg, rgba(138, 233, 255, 0.14), rgba(0, 0, 0, 0.16) 52%);
}

.live-demo-stage {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  height: auto;
  min-height: 142px;
  margin-top: 12px;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
}

.showcase-card-live .card-content {
  margin-top: 12px;
}

.demo-phone,
.demo-chat {
  border: 1px solid rgba(137, 211, 255, 0.26);
  border-radius: 12px;
  background: rgba(6, 18, 33, 0.7);
  box-shadow: inset 0 0 22px rgba(0, 177, 255, 0.08);
}

.demo-phone {
  padding: 9px 9px 8px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 5px;
}

.demo-phone-top {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(171, 225, 255, 0.55);
  margin: 0 auto;
}

.demo-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #00131e;
  background: linear-gradient(135deg, #68e4ff 0%, #25b9ff 100%);
}

.demo-phone-name {
  margin: 0;
  color: #dcf4ff;
  font-size: 0.68rem;
  font-weight: 700;
}

.demo-ask {
  margin: 0;
  color: #9ab4c8;
  font-size: 0.64rem;
  line-height: 1.35;
  opacity: 0;
  animation: demo-fade-in 6s ease-in-out infinite;
}

.demo-chat {
  padding: 8px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.demo-chat-title {
  margin: 0;
  color: #d7f1ff;
  font-size: 0.68rem;
  font-weight: 700;
}

.demo-message {
  margin: 0;
  padding: 6px 7px;
  border-radius: 8px;
  font-size: 0.62rem;
  line-height: 1.3;
  border: 1px solid rgba(142, 211, 255, 0.2);
  opacity: 0;
}

.demo-message-user {
  background: rgba(8, 39, 55, 0.7);
  color: #afddf7;
  animation: demo-fade-in 6s ease-in-out infinite;
}

.demo-message-ai {
  background: rgba(7, 35, 71, 0.76);
  color: #d3f1ff;
  animation: demo-fade-in 6s ease-in-out infinite 1.2s;
}

.demo-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: demo-fade-in 6s ease-in-out infinite 2.2s;
}

.demo-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #56d3ff;
  animation: demo-bounce 1s ease-in-out infinite;
}

.demo-typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.demo-typing span:nth-child(3) {
  animation-delay: 0.28s;
}

.voice-demo-stage,
.auto-demo-stage {
  margin-top: 12px;
  min-height: 146px;
  border: 1px solid rgba(136, 210, 255, 0.24);
  border-radius: 14px;
  background: rgba(6, 18, 33, 0.68);
  box-shadow: inset 0 0 26px rgba(0, 175, 255, 0.08);
  padding: 10px;
  z-index: 1;
}

.voice-demo-stage {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 8px;
}

.voice-call-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-call-head p {
  margin: 0;
  color: #d8efff;
  font-size: 0.72rem;
  font-weight: 700;
}

.voice-call-head span:last-child {
  margin-left: auto;
  color: #8ec8e7;
  font-size: 0.66rem;
}

.voice-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4bff95;
  box-shadow: 0 0 12px rgba(75, 255, 149, 0.85);
  animation: voice-pulse 1.2s ease-in-out infinite;
}

.voice-wave {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  align-items: end;
  height: 30px;
}

.voice-wave span {
  border-radius: 4px;
  background: linear-gradient(180deg, #6ce5ff 0%, #12a8e8 100%);
  height: 20%;
  animation: voice-wave 1.2s ease-in-out infinite;
}

.voice-wave span:nth-child(3n) { animation-delay: 0.12s; }
.voice-wave span:nth-child(4n) { animation-delay: 0.26s; }
.voice-wave span:nth-child(5n) { animation-delay: 0.34s; }

.voice-languages {
  display: flex;
  gap: 6px;
}

.voice-languages span {
  min-width: 28px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(137, 211, 255, 0.26);
  background: rgba(17, 40, 60, 0.65);
  color: #9de0ff;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
}

.voice-bubbles {
  display: grid;
  gap: 6px;
}

.voice-bubbles p {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.25;
  border-radius: 8px;
  padding: 5px 7px;
  border: 1px solid rgba(136, 209, 255, 0.2);
}

.voice-bubbles p:first-child {
  color: #a7d6f3;
  background: rgba(9, 36, 53, 0.74);
  animation: demo-fade-in 6s ease-in-out infinite;
}

.voice-bubbles p:last-child {
  color: #daf4ff;
  background: rgba(11, 39, 71, 0.8);
  animation: demo-fade-in 6s ease-in-out infinite 1.1s;
}

.auto-demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.auto-node {
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(146, 214, 255, 0.2);
  font-size: 0.66rem;
  color: #d9f1ff;
  font-weight: 700;
  background: rgba(8, 30, 53, 0.74);
}

.auto-node-ai { background: rgba(17, 58, 88, 0.76); }
.auto-node-crm { background: rgba(11, 39, 63, 0.72); }
.auto-node-alert { background: rgba(16, 49, 76, 0.74); }

.auto-flow {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(75, 195, 255, 0.2), rgba(75, 195, 255, 0.95), rgba(75, 195, 255, 0.2));
  opacity: 0.7;
}

.auto-flow-1 { top: 36%; left: 23%; width: 54%; }
.auto-flow-2 { top: 67%; left: 23%; width: 54%; }
.auto-flow-3 { top: 52%; left: 48%; width: 2px; height: 28%; }

.auto-pulse {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62dbff;
  box-shadow: 0 0 10px rgba(98, 219, 255, 0.9);
}

.auto-pulse-1 { top: 34%; left: 24%; animation: auto-flow-right 2.4s linear infinite; }
.auto-pulse-2 { top: 65%; left: 24%; animation: auto-flow-right 2.4s linear infinite 0.8s; }
.auto-pulse-3 { top: 49%; left: 48%; animation: auto-flow-down 2.4s linear infinite 1.4s; }

.card-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 204, 255, 0.34);
  border-radius: 999px;
  color: #11d1ff;
  background: rgba(1, 22, 39, 0.7);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d3ff;
  box-shadow: 0 0 12px #00d3ff;
}

.card-content {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  margin-top: auto;
}

.card-title {
  margin: 0;
  color: #f0f7ff;
  font-size: clamp(1.15rem, 1.78vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card-text {
  margin: 10px 0 0;
  color: #a4b7cb;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.34;
  animation: float-glow 8s ease-in-out infinite alternate;
}

.hero-glow-one {
  top: 12%;
  left: -4%;
  background: rgba(0, 174, 240, 0.18);
}

.hero-glow-two {
  right: -4%;
  bottom: 18%;
  background: rgba(37, 108, 255, 0.16);
  animation-delay: -2s;
}

.about-section {
  position: relative;
  padding: 90px clamp(14px, 2.8vw, 46px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 34%, rgba(0, 191, 255, 0.12), transparent 38rem),
    linear-gradient(180deg, #070911 0%, #04060c 100%);
}

.about-layout {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(26px, 3.2vw, 56px);
  align-items: start;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(163, 194, 255, 0.18);
  background: rgba(147, 191, 255, 0.08);
  color: #bed7ff;
  font-size: 0.95rem;
  font-weight: 600;
}

.about-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ea7ff;
  box-shadow: 0 0 14px rgba(110, 167, 255, 0.72);
}

.about-left h2 {
  max-width: 740px;
  margin: 16px 0 0;
  color: #f5fbff;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-left h2 span {
  display: block;
  margin-top: 6px;
  background: linear-gradient(180deg, #74deff 0%, #0ea6e4 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-left p {
  max-width: 706px;
  margin: 24px 0 0;
  color: #b2bfd2;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.6;
}

.about-highlights {
  margin-top: 36px;
  display: grid;
  gap: 22px;
}

.about-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 9px;
  border-radius: 11px;
  border: 1px solid rgba(113, 206, 255, 0.24);
  background: rgba(23, 91, 128, 0.28);
  color: #6dddff;
  font-size: 0.85rem;
  font-weight: 700;
}

.about-item h3 {
  margin: 2px 0 0;
  color: #eff5ff;
  font-size: clamp(1.15rem, 1.4vw, 1.7rem);
  letter-spacing: -0.03em;
}

.about-item p {
  margin: 10px 0 0;
  color: #9eb0c7;
  max-width: 640px;
  font-size: clamp(0.95rem, 1.02vw, 1.1rem);
  line-height: 1.58;
}

.about-right {
  position: relative;
  min-height: 100%;
}

.about-stage {
  position: sticky;
  top: 102px;
  min-height: 700px;
  border-radius: 22px;
  border: 1px solid rgba(84, 150, 199, 0.24);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(6, 24, 34, 0.55), rgba(3, 9, 24, 0.88)),
    radial-gradient(circle at 70% 20%, rgba(99, 201, 255, 0.15), transparent 32rem),
    linear-gradient(128deg, #0d1d30 0%, #05101b 52%, #071e30 100%);
  box-shadow:
    0 0 0 1px rgba(153, 230, 255, 0.08),
    inset 0 0 160px rgba(82, 187, 255, 0.08),
    0 30px 80px rgba(1, 7, 25, 0.65);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.about-stage::before,
.about-stage::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(206, 247, 255, 0.26);
}

.about-stage::before {
  top: 18px;
  left: 18px;
  border-right: 0;
  border-bottom: 0;
}

.about-stage::after {
  right: 18px;
  bottom: 18px;
  border-top: 0;
  border-left: 0;
}

.about-screen {
  width: min(82%, 440px);
  margin: 124px auto 0;
  padding: 34px 34px 30px;
  text-align: center;
  border-radius: 28px;
  background: rgba(15, 32, 48, 0.72);
  border: 1px solid rgba(131, 209, 255, 0.16);
  backdrop-filter: blur(8px);
}

.screen-label {
  color: #9ec8df;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-screen h3 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #caf2ff;
  text-shadow: 0 0 20px rgba(121, 223, 255, 0.3);
}

.about-screen p {
  margin: 16px 0 0;
  color: #93a7ba;
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-screen button {
  margin-top: 20px;
  min-height: 44px;
  border: 1px solid rgba(181, 231, 255, 0.3);
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(180deg, #d6f3ff 0%, #9bdfff 100%);
  color: #051829;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-card {
  width: min(86%, 500px);
  margin: 112px auto 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(190, 237, 255, 0.22);
  background: rgba(4, 16, 28, 0.74);
  backdrop-filter: blur(7px);
}

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

.status-top p {
  margin: 0;
  color: #ebf9ff;
  font-size: 1.05rem;
  font-weight: 700;
}

.status-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(31, 213, 111, 0.2);
  border: 1px solid rgba(116, 255, 180, 0.38);
  color: #78eeb2;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.status-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(163, 207, 245, 0.16);
}

.status-card li span {
  color: #9fbbd0;
  font-size: 0.94rem;
}

.status-card li strong {
  color: #f0f8ff;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: right;
}

.case-studies-section {
  padding: 88px clamp(14px, 2.8vw, 46px) 74px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 35%, rgba(0, 191, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #050810 0%, #04070d 100%);
}

.case-header {
  width: min(1260px, 100%);
  margin: 0 auto 26px;
}

.case-header span {
  color: #76d8ff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.case-header h2 {
  margin: 10px 0 0;
  max-width: 780px;
  color: #f4f8ff;
  font-size: clamp(2rem, 3.9vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.case-slider-window {
  width: min(1260px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

.case-slider-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.case-slide {
  width: 100%;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.case-media {
  min-height: 620px;
  border: 1px solid rgba(169, 219, 255, 0.18);
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 70px rgba(0, 0, 0, 0.26),
    0 20px 60px rgba(3, 12, 28, 0.48);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.case-media-masterworks {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(95, 189, 255, 0.08)),
    linear-gradient(135deg, #0d1728 0%, #08111f 100%);
}

.case-media-jg {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(95, 189, 255, 0.08)),
    linear-gradient(135deg, #102122 0%, #0a1318 100%);
}

.case-media-nerdwallet {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(95, 189, 255, 0.08)),
    linear-gradient(135deg, #1a2114 0%, #0e150c 100%);
}

.case-logo-card {
  min-width: min(420px, calc(100% - 50px));
  min-height: 190px;
  border-radius: 2px;
  display: grid;
  place-items: center;
  background: rgba(6, 10, 18, 0.82);
  border: 1px solid rgba(195, 231, 255, 0.16);
  color: #e8f5ff;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.case-media-nerdwallet .case-logo-card {
  color: #85d447;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.case-content {
  min-height: 620px;
  padding: 42px 40px 34px;
  border: 1px solid rgba(169, 219, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(10, 18, 32, 0.9), rgba(8, 13, 24, 0.9));
  box-shadow: 0 20px 60px rgba(3, 12, 28, 0.45);
  display: flex;
  flex-direction: column;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.case-media:hover,
.case-content:hover {
  border-color: rgba(96, 213, 255, 0.48);
  box-shadow: 0 28px 74px rgba(3, 12, 28, 0.64);
}

.case-tag {
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(72, 196, 255, 0.22);
  border: 1px solid rgba(112, 208, 255, 0.26);
  color: #9de2ff;
  font-size: 1.02rem;
  font-weight: 600;
}

.case-content h3 {
  margin: 18px 0 0;
  color: #f4f8ff;
  font-size: clamp(2rem, 3.1vw, 3rem);
  letter-spacing: -0.04em;
}

.case-content > p {
  margin: 16px 0 0;
  color: #aebed2;
  font-size: clamp(1.08rem, 1.45vw, 1.8rem);
  line-height: 1.45;
}

.case-outcomes {
  margin-top: 30px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(161, 215, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.case-outcomes h4 {
  margin: 0;
  color: #97adbf;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.case-outcomes ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.case-outcomes li {
  position: relative;
  padding-left: 28px;
  color: #e2ebf7;
  font-size: clamp(1rem, 1.28vw, 1.45rem);
  line-height: 1.42;
}

.case-outcomes li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 5px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #20c7ff;
  border-right: 2px solid #20c7ff;
  transform: rotate(45deg) translateY(-50%);
}

.case-cta {
  margin-top: auto;
  min-height: 50px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2bd1ff 0%, #0ea9e6 100%);
  color: #00131e;
  font-size: 1.02rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  background-size: 130% 130%;
}

.case-cta:hover,
.case-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(23, 190, 255, 0.28);
}

.case-controls {
  width: min(1260px, 100%);
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.case-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(164, 219, 255, 0.24);
  background: rgba(8, 20, 32, 0.82);
  color: #e7f5ff;
  font-size: 1.45rem;
  cursor: pointer;
}

.case-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(203, 229, 255, 0.25);
  cursor: pointer;
  transition: all 180ms ease;
}

.case-dots button.is-active {
  width: 40px;
  background: #16bbf8;
}

.process-section {
  position: relative;
  padding: 86px clamp(14px, 2.8vw, 46px) 78px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% -10%, rgba(35, 196, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #060911 0%, #04070d 100%);
}

.process-header {
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.process-header span {
  color: #76d8ff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.86rem;
  font-weight: 700;
}

.process-header h2 {
  margin: 10px 0 0;
  color: #f4f8ff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.process-header p {
  margin: 18px auto 0;
  max-width: 880px;
  color: #aebcd0;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.6;
}

.process-grid {
  width: min(1320px, 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 210px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(90deg, rgba(55, 140, 190, 0.14), rgba(36, 193, 255, 0.38), rgba(55, 140, 190, 0.14));
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 392px;
  padding: 28px 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(165, 222, 255, 0.17);
  background: linear-gradient(170deg, rgba(8, 20, 33, 0.9), rgba(6, 10, 18, 0.95));
  box-shadow:
    inset 0 0 50px rgba(31, 169, 255, 0.06),
    0 20px 50px rgba(2, 10, 24, 0.52);
  text-align: center;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 209, 255, 0.45);
  box-shadow:
    inset 0 0 56px rgba(31, 169, 255, 0.1),
    0 34px 72px rgba(2, 10, 24, 0.64);
}

.process-step {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e8f6ff;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(180deg, #2ecfff 0%, #0f9de0 100%);
  box-shadow: 0 10px 22px rgba(21, 183, 255, 0.3);
}

.process-icon {
  width: 86px;
  height: 86px;
  margin: 24px auto 0;
  border-radius: 50%;
  border: 1px solid rgba(165, 222, 255, 0.2);
  background: rgba(158, 215, 255, 0.1);
  display: grid;
  place-items: center;
  color: #5fd7ff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.process-card h3 {
  margin: 24px 0 0;
  color: #f1f8ff;
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  letter-spacing: -0.03em;
}

.process-card p {
  margin: 16px 0 0;
  color: #a5b7cc;
  font-size: clamp(0.98rem, 1.06vw, 1.15rem);
  line-height: 1.63;
}

.integrations-section {
  padding: 86px clamp(14px, 2.8vw, 46px) 76px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 180, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, #050810 0%, #04070d 100%);
}

.integrations-header {
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.integrations-header span {
  color: #00d1ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  font-weight: 700;
}

.integrations-header h2 {
  margin: 10px 0 0;
  color: #f4f8ff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.integrations-header p {
  margin: 16px auto 0;
  max-width: 760px;
  color: #a8bad1;
  font-size: clamp(1rem, 1.3vw, 1.32rem);
  line-height: 1.62;
}

.integrations-grid {
  width: min(1260px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.integration-card {
  border: 1px solid rgba(157, 214, 255, 0.16);
  border-radius: 16px;
  padding: 20px 16px 16px;
  background: linear-gradient(170deg, rgba(9, 18, 31, 0.94), rgba(6, 10, 18, 0.96));
  box-shadow:
    inset 0 0 34px rgba(29, 152, 237, 0.05),
    0 16px 40px rgba(2, 9, 22, 0.54);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.integration-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 201, 255, 0.48);
  box-shadow:
    inset 0 0 42px rgba(29, 152, 237, 0.1),
    0 28px 62px rgba(2, 9, 22, 0.68);
}

.integration-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(136, 206, 255, 0.22);
  background: rgba(155, 224, 255, 0.08);
  color: #bfe9ff;
  font-size: 0.94rem;
  font-weight: 700;
}

.integration-card h3 {
  margin: 16px 0 0;
  color: #eff5ff;
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  letter-spacing: -0.02em;
}

.integration-card p {
  margin: 10px 0 0;
  color: #9cb0c7;
  font-size: clamp(0.95rem, 1.02vw, 1.06rem);
  line-height: 1.58;
}

.integration-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.integration-card li {
  position: relative;
  padding-left: 24px;
  color: #d8e6f7;
  font-size: 0.95rem;
  line-height: 1.45;
}

.integration-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #31d17b;
  transform: translateY(-50%);
}

.integration-card a {
  margin-top: 14px;
  min-height: 40px;
  border: 1px solid rgba(157, 214, 255, 0.17);
  border-radius: 8px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #d9ecff;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.integration-card a:hover,
.integration-card a:focus-visible {
  border-color: rgba(69, 191, 255, 0.52);
  background: rgba(12, 27, 43, 0.72);
}

.pricing-section {
  position: relative;
  padding: 88px clamp(14px, 2.8vw, 46px) 76px;
}

.pricing-header {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pricing-header span {
  color: #33d5ff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.88rem;
  font-weight: 700;
}

.pricing-header h2 {
  margin: 14px 0 0;
  color: #f4faff;
  font-size: clamp(2rem, 4.3vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.pricing-header p {
  margin: 16px auto 0;
  max-width: 760px;
  color: #a7b7cd;
  font-size: clamp(0.98rem, 1.35vw, 1.3rem);
  line-height: 1.62;
}

.pricing-grid {
  width: min(1260px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(126, 205, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(7, 17, 30, 0.88), rgba(6, 12, 22, 0.95)),
    radial-gradient(circle at 20% 12%, rgba(30, 195, 255, 0.11), transparent 46%);
  box-shadow:
    inset 0 0 32px rgba(0, 176, 240, 0.07),
    0 18px 48px rgba(0, 8, 23, 0.52);
  padding: 20px 18px 18px;
}

.pricing-card.is-highlight {
  border-color: rgba(70, 210, 255, 0.5);
  box-shadow:
    inset 0 0 44px rgba(0, 184, 255, 0.14),
    0 20px 56px rgba(1, 12, 34, 0.62);
  transform: translateY(-3px);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(121, 205, 255, 0.34);
  background: rgba(9, 35, 58, 0.72);
  color: #7cddff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 12px 0 0;
  color: #f1f8ff;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: -0.03em;
}

.pricing-price {
  margin: 10px 0 0;
  color: #3ed4ff;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price span {
  margin-left: 6px;
  color: #9ec5e0;
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-description {
  margin: 12px 0 0;
  color: #9db0c7;
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 60px;
}

.pricing-features {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-features li {
  position: relative;
  padding-left: 20px;
  color: #d9e9f8;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26cfff;
  box-shadow: 0 0 10px rgba(38, 207, 255, 0.8);
}

.pricing-cta {
  margin-top: auto;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(124, 207, 255, 0.34);
  background: linear-gradient(135deg, #2bd1ff 0%, #0ea9e6 100%);
  color: #031525;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 182, 239, 0.3);
}

.who-section,
.use-cases-section,
.faq-section {
  position: relative;
  padding: 84px clamp(14px, 2.8vw, 46px) 72px;
}

.who-header,
.use-cases-header,
.faq-header {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.who-header span,
.use-cases-header span,
.faq-header span {
  color: #33d5ff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.88rem;
  font-weight: 700;
}

.who-header h2,
.use-cases-header h2,
.faq-header h2 {
  margin: 14px 0 0;
  color: #f4faff;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.who-header p,
.use-cases-header p,
.faq-header p {
  margin: 16px auto 0;
  max-width: 760px;
  color: #a7b7cd;
  font-size: clamp(0.98rem, 1.35vw, 1.3rem);
  line-height: 1.62;
}

.who-grid {
  width: min(1260px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.who-card {
  border: 1px solid rgba(126, 205, 255, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(7, 17, 30, 0.88), rgba(6, 12, 22, 0.95)),
    radial-gradient(circle at 20% 12%, rgba(30, 195, 255, 0.11), transparent 46%);
  box-shadow:
    inset 0 0 24px rgba(0, 176, 240, 0.06),
    0 14px 36px rgba(0, 8, 23, 0.44);
  padding: 16px 14px;
}

.who-card h3 {
  margin: 0;
  color: #eff7ff;
  font-size: 1.12rem;
}

.who-card p {
  margin: 10px 0 0;
  color: #a8bdd2;
  font-size: 0.92rem;
  line-height: 1.5;
}

.use-cases-grid {
  width: min(1260px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.use-case-card {
  border: 1px solid rgba(126, 205, 255, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(7, 17, 30, 0.88), rgba(6, 12, 22, 0.95)),
    radial-gradient(circle at 20% 12%, rgba(30, 195, 255, 0.11), transparent 46%);
  box-shadow:
    inset 0 0 24px rgba(0, 176, 240, 0.06),
    0 14px 36px rgba(0, 8, 23, 0.44);
  padding: 18px 16px;
}

.use-case-card h3 {
  margin: 0;
  color: #f2f8ff;
  font-size: 1.22rem;
}

.use-case-card p {
  margin: 10px 0 0;
  color: #a8bdd2;
  font-size: 0.94rem;
  line-height: 1.55;
}

.use-case-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.use-case-card li {
  position: relative;
  padding-left: 18px;
  color: #d8e7f7;
  font-size: 0.9rem;
  line-height: 1.42;
}

.use-case-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22cbff;
}

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

.faq-item {
  border: 1px solid rgba(126, 205, 255, 0.22);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(7, 17, 30, 0.88), rgba(6, 12, 22, 0.95));
  box-shadow: inset 0 0 24px rgba(0, 176, 240, 0.06);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  color: #e9f4ff;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin: 10px 0 0;
  color: #9fb6cd;
  font-size: 0.94rem;
  line-height: 1.6;
}

.audit-section {
  position: relative;
  padding: 90px clamp(14px, 2.8vw, 46px) 92px;
}

.audit-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.audit-label {
  color: #35d6ff;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.88rem;
  font-weight: 700;
}

.audit-wrap h2 {
  margin: 12px 0 0;
  color: #f5fbff;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.audit-wrap p {
  margin: 18px auto 0;
  max-width: 780px;
  color: #aab8cc;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.62;
}

.audit-button {
  margin-top: 26px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, #2bd1ff 0%, #0ea9e6 100%);
  color: #031525;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.audit-button:hover,
.audit-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 182, 239, 0.3);
}

.contact-section {
  padding: 86px clamp(14px, 2.8vw, 46px) 84px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 173, 241, 0.12), transparent 32rem),
    linear-gradient(180deg, #050810 0%, #04070d 100%);
}

.contact-wrap {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 22px;
  align-items: start;
}

.contact-form-card,
.contact-info-card,
.contact-cta-card {
  border: 1px solid rgba(157, 214, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(9, 18, 31, 0.94), rgba(6, 10, 18, 0.96));
  box-shadow:
    inset 0 0 34px rgba(29, 152, 237, 0.05),
    0 16px 40px rgba(2, 9, 22, 0.54);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.contact-form-card:hover,
.contact-info-card:hover,
.contact-cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 209, 255, 0.48);
  box-shadow:
    inset 0 0 44px rgba(29, 152, 237, 0.08),
    0 26px 60px rgba(2, 9, 22, 0.66);
}

.contact-form-card {
  padding: 24px 20px 18px;
}

.contact-form-card h2 {
  margin: 0;
  color: #eff5ff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.contact-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form-card label {
  display: grid;
  gap: 6px;
  color: #b3c5db;
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(170, 216, 246, 0.2);
  border-radius: 8px;
  background: rgba(6, 15, 28, 0.75);
  color: #eaf5ff;
  font-size: 0.95rem;
  padding: 10px 11px;
  font-family: inherit;
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 128px;
}

.message-field {
  margin-top: 10px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: rgba(54, 191, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(39, 166, 225, 0.15);
}

.contact-form-card button {
  margin-top: 14px;
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  padding: 0 16px;
  background: linear-gradient(135deg, #2bd1ff 0%, #0ea9e6 100%);
  color: #00131e;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  background-size: 130% 130%;
}

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

.contact-form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #8fd0ff;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-form-status.is-error {
  color: #ff8f8f;
}

.contact-form-status.is-success {
  color: #7cf3b5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Speed up first render by deferring offscreen section layout/paint */
.about-section,
.who-section,
.case-studies-section,
.process-section,
.integrations-section,
.use-cases-section,
.pricing-section,
.faq-section,
.contact-section,
.audit-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.contact-side {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  padding: 20px 18px;
}

.contact-info-card h3,
.contact-cta-card h3 {
  margin: 0;
  color: #eff5ff;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.contact-info-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-info-card li {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(160, 214, 250, 0.15);
  background: rgba(12, 24, 39, 0.56);
}

.contact-info-card span {
  color: #86b2d5;
  font-size: 0.86rem;
}

.contact-info-card strong {
  color: #eaf4ff;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-cta-card {
  padding: 20px 18px;
  background: linear-gradient(130deg, rgba(27, 114, 255, 0.58), rgba(23, 176, 255, 0.5));
}

.contact-cta-card p {
  margin: 10px 0 0;
  color: #e4f3ff;
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-cta-card a {
  margin-top: 14px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(214, 237, 255, 0.52);
  background: rgba(236, 247, 255, 0.95);
  color: #1555a0;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.contact-cta-card a:hover,
.contact-cta-card a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(214, 237, 255, 0.24);
}

.subscribe-section {
  position: relative;
  padding: 94px clamp(14px, 2.8vw, 46px) 96px;
}

.subscribe-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.subscribe-label {
  color: #35d6ff;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.88rem;
  font-weight: 700;
}

.subscribe-wrap h2 {
  margin: 12px 0 0;
  color: #f5fbff;
  font-size: clamp(2rem, 4.6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.subscribe-wrap p {
  margin: 18px auto 0;
  max-width: 780px;
  color: #aab8cc;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  line-height: 1.62;
}

.subscribe-form {
  width: min(760px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.subscribe-form input {
  min-height: 62px;
  border-radius: 15px;
  border: 1px solid rgba(150, 214, 255, 0.2);
  background: rgba(8, 14, 24, 0.9);
  color: #f1f8ff;
  font: inherit;
  font-size: 1.05rem;
  padding: 0 18px;
  outline: none;
}

.subscribe-form input:focus {
  border-color: rgba(80, 198, 255, 0.64);
  box-shadow: 0 0 0 3px rgba(30, 154, 218, 0.24);
}

.subscribe-form button {
  min-height: 62px;
  padding: 0 30px;
  border-radius: 15px;
  border: 0;
  background: linear-gradient(135deg, #2bd1ff 0%, #0ea9e6 100%);
  color: #021427;
  font: inherit;
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.subscribe-form button:hover,
.subscribe-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 179, 240, 0.35);
}

.subscribe-form button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.subscribe-status {
  min-height: 24px;
  margin-top: 12px;
  color: #8ecfff;
  font-size: 0.94rem;
}

.subscribe-status.is-success {
  color: #7cf3b5;
}

.subscribe-status.is-error {
  color: #ff8f8f;
}

.site-footer {
  position: relative;
  padding: 44px clamp(14px, 2.8vw, 46px) 40px;
  border-top: 1px solid rgba(147, 206, 255, 0.12);
  background: rgba(4, 8, 14, 0.9);
}

.footer-wrap {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand {
  color: #2dd4ff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: #94a6bd;
  font-size: 1rem;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #d7eaff;
}

.footer-service-links {
  width: min(1260px, 100%);
  margin: 12px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-service-links a {
  color: #86b1d3;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-service-links a:hover,
.footer-service-links a:focus-visible {
  color: #bde7ff;
}

.footer-copy {
  width: min(1260px, 100%);
  margin: 18px auto 0;
  color: #6f8198;
  font-size: 0.92rem;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Unified section surface: same visual language as hero */
:is(
    .about-section,
    .who-section,
    .case-studies-section,
    .process-section,
    .integrations-section,
    .use-cases-section,
    .pricing-section,
    .faq-section,
    .contact-section,
    .audit-section
  ) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 0 !important;
  background: transparent !important;
}

:is(
    .about-section,
    .who-section,
    .case-studies-section,
    .process-section,
    .integrations-section,
    .use-cases-section,
    .pricing-section,
    .faq-section,
    .contact-section,
    .audit-section
  )::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 58, 92, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 92, 0.17) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.66;
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

:is(
    .about-section,
    .who-section,
    .case-studies-section,
    .process-section,
    .integrations-section,
    .use-cases-section,
    .pricing-section,
    .faq-section,
    .contact-section,
    .audit-section
  )::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      circle at 50% 52%,
      rgba(0, 184, 255, 0.1),
      rgba(0, 184, 255, 0.05) 26%,
      transparent 58%
    ),
    radial-gradient(
      circle at 12% 50%,
      rgba(0, 174, 240, 0.08),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 50%,
      rgba(49, 133, 255, 0.08),
      transparent 44%
    ),
    radial-gradient(
      circle at 78% 4%,
      rgba(0, 174, 240, 0.14),
      transparent 26rem
    ),
    linear-gradient(180deg, #05060b 0%, #070915 46%, #05060b 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

:is(
    .about-section,
    .who-section,
    .case-studies-section,
    .process-section,
    .integrations-section,
    .use-cases-section,
    .pricing-section,
    .faq-section,
    .contact-section,
    .audit-section
  ) > * {
  position: relative;
  z-index: 2;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms),
    filter 620ms ease var(--reveal-delay, 0ms);
}

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

.placeholder-section {
  display: grid;
  min-height: 48vh;
  place-items: center;
  padding: 72px 20px;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 11, 0.6);
  text-align: center;
}

.placeholder-section span {
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder-section h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #f4f8ff;
  font-size: clamp(2rem, 4vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-glow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 3%, 0) scale(1.05);
  }
}

@keyframes title-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(58, 216, 255, 0.1));
    background-position: 50% 50%;
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(58, 216, 255, 0.2));
    background-position: 50% 35%;
  }
}

@keyframes demo-fade-in {
  0%,
  12% {
    opacity: 0;
    transform: translateY(6px);
  }

  20%,
  62% {
    opacity: 1;
    transform: translateY(0);
  }

  78%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes demo-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes voice-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes voice-wave {
  0%,
  100% {
    height: 24%;
    opacity: 0.52;
  }

  50% {
    height: 95%;
    opacity: 1;
  }
}

@keyframes auto-flow-right {
  0% {
    transform: translateX(0);
    opacity: 0.2;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(160px);
    opacity: 0.2;
  }
}

@keyframes auto-flow-down {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateY(32px);
    opacity: 0.2;
  }
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--logo-gap) / 2)));
  }
}


@media (max-width: 1380px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 18px;
  }

  .hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(1060px, 100%);
  }

  .logo-strip-window {
    --visible-logos: 4;
    --logo-item-width: 210px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding: 0 0 14px;
    font-size: 15px;
  }

  .header-cta {
    justify-self: end;
  }
}

@media (max-width: 1020px) {
  .site-header {
    display: flex;
    min-height: 68px;
    padding: 0 15px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 34px;
    right: 15px;
    z-index: 3;
    transform: translateY(-50%);
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    background: rgba(5, 6, 11, 0.98);
    border: 1px solid rgba(0, 174, 240, 0.16);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    animation: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .primary-nav a:hover {
    background: rgba(0, 174, 240, 0.08);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    min-width: 0;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero {
    padding-top: 36px;
  }

  .logo-strip-window {
    --visible-logos: 3;
    --logo-item-width: 180px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .showcase-card {
    min-height: 220px;
  }

  .showcase-card-live {
    min-height: 360px;
  }

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

  .about-stage {
    position: relative;
    top: 0;
    min-height: 620px;
  }

  .about-screen {
    margin-top: 84px;
  }

  .status-card {
    margin-top: 72px;
  }

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

  .case-media,
  .case-content {
    min-height: auto;
  }

  .case-media {
    min-height: 320px;
  }

  .case-content {
    padding: 28px 22px;
  }

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

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

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

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

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

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

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

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-form button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 11px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-mark {
    width: 29px;
    height: 17px;
  }

  .header-cta {
    display: none;
  }

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

  .hero {
    min-height: calc(100vh - 68px);
    padding-top: 30px;
    padding-inline: 14px;
  }

  .logo-strip-section {
    padding: 12px 14px 4px;
  }

  .logo-strip-window {
    --visible-logos: 2;
    --logo-gap: 10px;
    --logo-item-width: 150px;
  }

  .logo-strip-item {
    min-height: 68px;
    border-radius: 12px;
    padding: 10px;
  }

  .logo-strip-item img {
    height: 32px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 14vw, 3.5rem);
  }

  .hero-tagline {
    margin-top: 14px;
    font-size: clamp(1.2rem, 7vw, 1.95rem);
    line-height: 1.12;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .showcase-card {
    min-height: 200px;
    padding: 16px;
  }

  .showcase-card-live {
    min-height: 380px;
  }

  .live-demo-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
  }

  .card-content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .card-text {
    font-size: 0.92rem;
  }

  .about-section {
    padding: 68px 14px;
  }

  .about-left h2 {
    font-size: clamp(1.74rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .about-left p {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .about-item {
    gap: 10px;
  }

  .about-icon {
    min-width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.72rem;
  }

  .about-item h3 {
    font-size: 1.04rem;
  }

  .about-item p {
    margin-top: 8px;
    font-size: 0.9rem;
  }

  .about-stage {
    min-height: 560px;
  }

  .about-screen {
    width: calc(100% - 26px);
    margin-top: 64px;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }

  .about-screen h3 {
    font-size: 2.2rem;
  }

  .about-screen p {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .status-card {
    width: calc(100% - 26px);
    margin-top: 54px;
    padding: 14px 12px;
    border-radius: 13px;
  }

  .status-top p {
    font-size: 0.9rem;
  }

  .status-card li span,
  .status-card li strong {
    font-size: 0.78rem;
  }

  .case-studies-section {
    padding: 70px 14px 62px;
  }

  .case-header h2 {
    font-size: clamp(1.66rem, 8vw, 2.4rem);
    line-height: 1.05;
  }

  .case-media {
    min-height: 250px;
  }

  .case-logo-card {
    min-width: calc(100% - 32px);
    min-height: 124px;
    font-size: 1.22rem;
    letter-spacing: 0.12em;
  }

  .case-content h3 {
    font-size: 1.9rem;
  }

  .case-content > p {
    font-size: 1rem;
  }

  .case-outcomes {
    margin-top: 20px;
    padding: 16px 14px;
  }

  .case-outcomes h4 {
    font-size: 0.84rem;
  }

  .case-outcomes li {
    font-size: 0.95rem;
    padding-left: 22px;
  }

  .case-cta {
    margin-top: 20px;
    min-height: 45px;
    font-size: 0.92rem;
  }

  .case-controls {
    gap: 10px;
  }

  .case-arrow {
    width: 43px;
    height: 43px;
    font-size: 1.2rem;
  }

  .case-dots {
    gap: 7px;
  }

  .process-section {
    padding: 70px 14px 64px;
  }

  .process-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .process-header p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .process-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    min-height: auto;
    padding: 20px 14px 16px;
  }

  .process-step {
    top: -14px;
    left: -8px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .process-icon {
    width: 68px;
    height: 68px;
    margin-top: 16px;
    font-size: 1.1rem;
  }

  .process-card h3 {
    margin-top: 16px;
    font-size: 1.2rem;
  }

  .process-card p {
    margin-top: 10px;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .integrations-section {
    padding: 70px 14px 60px;
  }

  .integrations-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .integrations-header p {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .integrations-grid {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .who-section,
  .use-cases-section,
  .faq-section {
    padding: 70px 14px 60px;
  }

  .who-header h2,
  .use-cases-header h2,
  .faq-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .who-header p,
  .use-cases-header p,
  .faq-header p {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .who-grid,
  .use-cases-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-section {
    padding: 70px 14px 60px;
  }

  .pricing-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .pricing-header p {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .pricing-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-card {
    padding: 16px 12px 12px;
  }

  .audit-section {
    padding: 68px 14px 60px;
  }

  .audit-wrap h2 {
    font-size: clamp(1.9rem, 10vw, 2.9rem);
  }

  .integration-card {
    padding: 16px 12px 12px;
  }

  .integration-logo {
    min-width: 116px;
    height: 34px;
    font-size: 0.82rem;
  }

  .integration-card h3 {
    margin-top: 12px;
    font-size: 1.1rem;
  }

  .integration-card p {
    font-size: 0.9rem;
  }

  .integration-card li {
    font-size: 0.88rem;
  }

  .contact-section {
    padding: 68px 14px 60px;
  }

  .subscribe-section {
    padding: 68px 14px 60px;
  }

  .subscribe-wrap h2 {
    font-size: clamp(1.9rem, 10vw, 2.9rem);
  }

  .footer-brand {
    font-size: 1.62rem;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 14px;
  }

  .footer-service-links {
    gap: 8px 10px;
  }

  .contact-form-card {
    padding: 16px 12px 12px;
  }

  .contact-form-card h2,
  .contact-info-card h3,
  .contact-cta-card h3 {
    font-size: 1.24rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form-card label {
    font-size: 0.8rem;
  }

  .contact-form-card input,
  .contact-form-card textarea {
    font-size: 0.9rem;
    padding: 9px 10px;
  }

  .contact-form-card textarea {
    min-height: 112px;
  }

  .contact-info-card,
  .contact-cta-card {
    padding: 14px 12px;
  }

  .contact-info-card strong {
    font-size: 0.88rem;
  }

  .contact-cta-card p {
    font-size: 0.9rem;
  }
}

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