:root {
  --navy-950: #06111f;
  --navy-900: #08203e;
  --navy-800: #0a2c54;
  --blue-600: #2f6bff;
  --blue-500: #45a3ff;
  --cyan-400: #45d5ff;
  --green-500: #18c77a;
  --green-700: #0d8c57;
  --amber-400: #f5b84b;
  --ink: #0b1324;
  --muted: #607085;
  --line: #d9e3ef;
  --line-soft: #edf2f7;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --radius: 8px;
  --shadow-soft: 0 18px 50px rgba(6, 17, 31, 0.14);
  --shadow-crisp: 0 12px 28px rgba(6, 17, 31, 0.12);
  --container: 1180px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.tour-lock {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

svg {
  display: block;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

::selection {
  background: rgba(27, 209, 223, 0.24);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(27, 209, 223, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow-crisp);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 64px, 1280px);
  min-height: 118px;
  margin: 12px auto 0;
  padding: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #ffffff;
  pointer-events: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-scrolled .brand {
  opacity: 0.94;
  transform: scale(0.94);
  transform-origin: center;
}

.brand img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 30px rgba(69, 213, 255, 0.16));
}

.btn,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  font-weight: 900;
  line-height: 1;
}

.floating-whatsapp:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp-phone {
  transform: translateX(-1px);
  transform-box: fill-box;
  transform-origin: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  min-height: 58px;
  background: linear-gradient(135deg, #2f6bff, #45d5ff);
  color: #ffffff;
  box-shadow: 0 22px 52px rgba(47, 107, 255, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 28px 62px rgba(47, 107, 255, 0.42);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #f7fbff;
  color: var(--ink);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.97) 0%, rgba(247, 251, 255, 0.9) 38%, rgba(247, 251, 255, 0.6) 60%, rgba(247, 251, 255, 0.18) 100%),
    url("./assets/ata-hero-wallpaper-light-v2.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 28% 18%, rgba(47, 107, 255, 0.1), transparent 28%),
    radial-gradient(circle at 70% 55%, rgba(69, 213, 255, 0.12), transparent 38%);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 104px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0), var(--surface-soft));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(650px, 1.28fr);
  align-items: center;
  gap: 42px;
  width: min(100% - 64px, 1320px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 144px 0 78px;
}

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-kicker {
  color: #007dc7;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.ai-section .eyebrow,
.final-cta .eyebrow {
  color: var(--cyan-400);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.45rem, 5vw, 5.35rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--ink);
  background: linear-gradient(100deg, #0b1324 0%, #007dc7 44%, #45a3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #52627a;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero-product {
  position: relative;
  min-height: 620px;
  perspective: 1900px;
  transform: translateX(28px);
}

.product-light {
  position: absolute;
  inset: 10px -22px 18px 42px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 62% 38%, rgba(69, 213, 255, 0.24), transparent 34%),
    radial-gradient(circle at 78% 70%, rgba(47, 107, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(69, 213, 255, 0.08), rgba(255, 255, 255, 0.02));
  filter: blur(15px);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 5%;
  bottom: 20px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  filter: blur(28px);
  transform: rotate(-1deg);
}

.product-device {
  position: absolute;
  margin: 0;
}

.product-device {
  top: 58px;
  right: 4px;
  z-index: 4;
  width: min(760px, 101%);
  transform: rotateY(-9deg) rotateX(4deg) rotateZ(-1.2deg);
  transform-origin: center;
  transform-style: preserve-3d;
  animation: deviceFloat 7.5s ease-in-out infinite;
}

.device-lid {
  --device-sidebar: 21.6%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 11px solid #06111f;
  border-radius: 30px;
  background: #081424;
  box-shadow:
    0 42px 98px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 46px rgba(69, 213, 255, 0.12);
  transform-style: preserve-3d;
}

.device-lid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, transparent 78%, rgba(6, 17, 31, 0.5));
  mix-blend-mode: screen;
  opacity: 0.46;
}

.device-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 48px;
  border-bottom: 1px solid rgba(141, 199, 255, 0.14);
  background: linear-gradient(180deg, #111c2c, #081424);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.topbar-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(69, 213, 255, 0.18));
}

.device-viewport {
  position: relative;
  height: calc(100% - 48px);
  overflow: hidden;
  background: #0a1220;
}

.device-sidebar {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  width: var(--device-sidebar);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #202b38;
  color: #ffffff;
  padding: 10px 8px 9px;
  box-shadow: 18px 0 32px rgba(0, 0, 0, 0.16);
}

.sidebar-profile {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  grid-template-rows: 15px 13px;
  align-items: center;
  gap: 1px 8px;
  min-height: 36px;
  margin-bottom: 12px;
}

.sidebar-profile span {
  display: inline-flex;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, #7866ff, #496dff);
  font-size: 0.72rem;
  font-weight: 950;
}

.sidebar-profile strong,
.sidebar-profile small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-profile strong {
  font-size: 0.62rem;
  font-weight: 950;
}

.sidebar-profile small {
  color: #9fb1c7;
  font-size: 0.5rem;
  font-weight: 800;
}

.sidebar-profile i {
  position: relative;
  grid-column: 3;
  grid-row: 1 / 3;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.sidebar-profile i::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-left: 1.5px solid #aebbc9;
  border-bottom: 1.5px solid #aebbc9;
  transform: rotate(45deg);
}

.sidebar-search {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #2a3542;
  color: #93a1b2;
  padding: 0 9px;
  font-size: 0.55rem;
  font-weight: 750;
}

.sidebar-search::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid #7d8a99;
  border-radius: 50%;
  box-shadow: 5px 5px 0 -4px #7d8a99;
  transform: rotate(-16deg);
}

.sidebar-menu {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.sidebar-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #2a3542;
  color: #ffffff;
  padding: 0 18px 0 34px;
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0;
}

.sidebar-item::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.sidebar-item::after {
  content: ">";
  position: absolute;
  right: 9px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.62rem;
  font-weight: 800;
}

.item-support::before {
  background: #635bff;
}

.item-crm::before {
  background: #10b981;
}

.item-admin::before {
  background: #ef3336;
}

.item-campaign::before {
  background: #854df6;
}

.item-automation::before {
  background: #f59e0b;
}

.item-store::before {
  background: #0fb7c9;
}

.item-store em {
  margin-left: auto;
  border-radius: 999px;
  background: #ff7a1a;
  color: #ffffff;
  padding: 2px 5px;
  font-size: 0.42rem;
  font-style: normal;
  font-weight: 950;
}

.item-exit {
  margin-top: 3px;
  background: #ef3336;
}

.item-exit::before {
  background: rgba(255, 255, 255, 0.18);
}

.item-exit::after {
  display: none;
}

.sidebar-version {
  margin-top: auto;
  border: 1px solid rgba(92, 119, 255, 0.36);
  border-radius: 7px;
  background: #22345d;
  color: #5fd8ff;
  padding: 5px 8px;
  text-align: center;
  font-size: 0.48rem;
  font-weight: 950;
}

.screen-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: screenPass 15s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

.screen-panel {
  flex: 0 0 33.333333%;
  height: 100%;
}

.screen-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-panel-kanban img {
  object-position: 48% 48%;
}

.screen-panel-dashboard img {
  object-position: 50% 48%;
}

.screen-panel-flow img {
  object-position: 56% 50%;
}

.screen-labels {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 8;
  width: 260px;
  height: 40px;
}

.screen-labels span {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 16, 30, 0.78);
  color: rgba(255, 255, 255, 0.9);
  padding: 11px 14px;
  font-size: 0.76rem;
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  backdrop-filter: blur(16px);
  animation: labelPass 15s infinite;
}

.screen-labels span:nth-child(2) {
  animation-delay: 5s;
}

.screen-labels span:nth-child(3) {
  animation-delay: 10s;
}

.device-base {
  position: relative;
  width: 88%;
  height: 62px;
  margin: -2px auto 0;
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(180deg, #dce7f5 0%, #8797aa 46%, #344253 100%);
  box-shadow:
    0 30px 54px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.32) inset;
  transform: perspective(760px) rotateX(67deg);
  transform-origin: top center;
}

.device-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 150px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: rgba(6, 17, 31, 0.18);
  transform: translateX(-50%);
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(-9deg) rotateX(4deg) rotateZ(-1.2deg);
  }

  50% {
    transform: translate3d(0, -13px, 0) rotateY(-7.8deg) rotateX(4deg) rotateZ(-0.6deg);
  }
}

@keyframes screenPass {
  0%,
  24% {
    transform: translateX(0);
  }

  33%,
  57% {
    transform: translateX(-33.333333%);
  }

  66%,
  90% {
    transform: translateX(-66.666666%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes labelPass {
  0%,
  25% {
    opacity: 1;
    transform: translateY(0);
  }

  32%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.client-proof {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(8, 48, 87, 0.08);
  border-bottom: 1px solid rgba(8, 48, 87, 0.1);
  background: #ffffff;
  padding: 54px 0 34px;
}

.client-proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.client-proof-head h2 {
  max-width: 490px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  font-weight: 950;
  line-height: 1.15;
}

.client-proof-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: right;
}

.client-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: clientLogosFlow 38s linear infinite;
  will-change: transform;
}

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

.client-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0 28px 0 0;
  list-style: none;
}

.client-logo-group li {
  display: flex;
  flex: 0 0 170px;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-width: 170px;
  height: 82px;
  padding: 10px 12px;
}

.client-logo-group img {
  width: auto;
  max-width: 146px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1) saturate(0.4);
  opacity: 0.58;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo-group .is-square img {
  max-width: 74px;
  max-height: 58px;
}

.client-logo-group li:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.client-proof-more {
  width: min(100% - 40px, var(--container));
  margin: 20px auto 0;
  color: rgba(8, 48, 87, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

@keyframes clientLogosFlow {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .client-proof {
    padding: 44px 0 28px;
  }

  .client-proof-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    width: calc(100% - 30px);
  }

  .client-proof-head h2 {
    font-size: 1.55rem;
  }

  .client-proof-head p {
    max-width: 560px;
    text-align: left;
  }

  .client-marquee {
    margin-top: 28px;
  }

  .client-logo-track {
    animation-duration: 31s;
  }

  .client-logo-group li {
    flex-basis: 132px;
    width: 132px;
    min-width: 132px;
    height: 72px;
    padding: 9px 10px;
  }

  .client-logo-group img {
    max-width: 112px;
    max-height: 44px;
  }

  .client-logo-group .is-square img {
    max-width: 62px;
    max-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

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

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }
}

/* Mobile polish: preserve the desktop composition without squeezing it into a narrow viewport. */
@media (max-width: 520px) {
  .ai-showcase-section {
    overflow: clip;
  }

  .ai-showcase-inner {
    width: calc(100% - 28px);
  }

  .ai-visual {
    min-height: 480px;
  }

  .ai-visual-grid {
    inset: 12px 0 24px;
    border-radius: 24px;
    mask-image: none;
  }

  .ai-phone-shot {
    left: 10px;
    top: 51%;
    width: min(178px, 53vw);
    translate: 0 0;
  }

  .ai-push-zone {
    top: 82px;
    right: -2px;
    width: min(226px, 68vw);
  }

  .ai-push-notification {
    min-height: 94px;
    padding: 8px 10px 9px;
    border-radius: 20px;
  }

  .ai-push-message {
    padding-left: 34px;
  }

  .ai-push-message strong {
    font-size: 0.7rem;
  }

  .ai-push-message span {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .impact-stats-strip {
    width: calc(100% - 28px);
  }

  .impact-stat,
  .impact-stat:first-child,
  .impact-stat:last-child,
  .impact-stat:nth-child(odd),
  .impact-stat:nth-child(even) {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 4px 16px;
    padding: 22px 0;
  }

  .impact-stat strong,
  .impact-stat:nth-child(n + 3) strong {
    align-self: center;
    width: 100%;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.94;
  }

  .impact-stat:nth-child(n + 3) strong {
    font-size: clamp(2.05rem, 11.5vw, 3rem);
  }

  .impact-stat strong span {
    max-width: 100%;
  }

  .impact-stat sup {
    margin: 2px 0 0 3px;
  }

  .impact-stat p {
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .impact-stat a {
    font-size: 0.6rem;
  }

  .impact-stats-note {
    padding-inline: 0;
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .tour-stage {
    gap: 12px;
  }

  .tour-browser {
    height: clamp(300px, 84vw, 342px);
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-browser {
    height: clamp(320px, 92vw, 370px);
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-dialog {
    margin: 0;
    border-radius: 10px;
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-journey-chip {
    margin-left: 0;
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-stage-cta {
    display: none;
  }

  .tour-stage.is-tour-fullscreen,
  .tour-stage:fullscreen {
    display: grid;
    grid-template-rows: minmax(0, 54dvh) minmax(0, 46dvh);
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .tour-stage.is-tour-fullscreen .tour-browser,
  .tour-stage:fullscreen .tour-browser {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-bottom: 1px solid rgba(7, 55, 95, 0.14);
  }

  .tour-stage.is-tour-fullscreen .tour-screen img,
  .tour-stage:fullscreen .tour-screen img {
    object-fit: cover;
    object-position: 18% top;
  }

  .tour-stage.is-tour-fullscreen .tour-dialog,
  .tour-stage:fullscreen .tour-dialog {
    position: relative;
    inset: auto;
    grid-row: 2;
    align-self: center;
    width: calc(100% - 28px);
    max-height: calc(46dvh - 64px);
    margin: 0 auto;
    overflow: auto;
    transform: none;
  }

  .tour-stage.is-tour-fullscreen.is-route-transition .tour-dialog,
  .tour-stage:fullscreen.is-route-transition .tour-dialog {
    position: relative;
    inset: auto;
    grid-row: 2;
    align-self: center;
    width: calc(100% - 28px);
    margin: 0 auto;
    transform: none;
  }

  .tour-stage.is-tour-fullscreen .tour-journey,
  .tour-stage:fullscreen .tour-journey {
    position: absolute;
    inset: 58px 12px auto;
    width: auto;
    max-height: calc(100dvh - 126px);
    margin: 0;
  }

  .tour-stage.is-tour-fullscreen .tour-route-list,
  .tour-stage:fullscreen .tour-route-list {
    max-height: calc(100dvh - 230px);
  }

  .tour-stage.is-tour-fullscreen .tour-journey-chip,
  .tour-stage:fullscreen .tour-journey-chip {
    left: 14px;
    bottom: 12px;
  }

  .tour-stage.is-tour-fullscreen .tour-progress,
  .tour-stage:fullscreen .tour-progress {
    left: 50%;
    bottom: 10px;
    width: min(52%, 210px);
  }

  .tour-stage.is-tour-fullscreen .tour-exit-button,
  .tour-stage:fullscreen .tour-exit-button {
    right: 12px;
    top: 10px;
  }
}

@media (max-width: 360px) {
  .ai-phone-shot {
    width: 160px;
  }

  .ai-push-zone {
    width: 205px;
  }

  .impact-stat,
  .impact-stat:first-child,
  .impact-stat:last-child,
  .impact-stat:nth-child(odd),
  .impact-stat:nth-child(even) {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 4px 10px;
  }

  .impact-stat strong,
  .impact-stat:nth-child(n + 3) strong {
    font-size: 2.18rem;
  }
}

.ai-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 248, 255, 0.94) 52%, rgba(250, 253, 255, 0.98) 100%),
    linear-gradient(180deg, #f5fbff 0%, #eef8ff 100%);
  color: var(--ink);
  isolation: isolate;
}

.ai-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(130deg, transparent 0 32%, rgba(0, 125, 199, 0.09) 32% 33%, transparent 33% 100%),
    linear-gradient(28deg, transparent 0 59%, rgba(69, 213, 255, 0.16) 59% 60%, transparent 60% 100%),
    repeating-linear-gradient(90deg, rgba(0, 125, 199, 0.05) 0 1px, transparent 1px 118px);
}

.ai-showcase-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 96px;
  background: linear-gradient(180deg, rgba(245, 251, 255, 0), var(--surface-soft));
}

.ai-showcase-inner {
  display: grid;
  grid-template-columns: minmax(430px, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 70px;
  width: min(100% - 64px, 1240px);
  min-height: 760px;
  margin: 0 auto;
  padding: 74px 0 92px;
}

.ai-visual {
  position: relative;
  min-height: 710px;
}

.ai-visual-grid {
  position: absolute;
  inset: 42px 72px 42px 0;
  border: 1px solid rgba(0, 125, 199, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(rgba(0, 125, 199, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 125, 199, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 245, 255, 0.48));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow:
    0 34px 80px rgba(0, 54, 93, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ai-phone-shot {
  position: absolute;
  left: max(8px, 4vw);
  top: 53%;
  z-index: 3;
  width: min(280px, 64%);
  margin: 0;
  transform-origin: 52% 54%;
  transform: translateY(-50%);
  animation: aiPhoneDrift 7s ease-in-out infinite;
}

.ai-phone-shot picture,
.ai-phone-shot img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.ai-phone-shot img {
  filter:
    drop-shadow(0 34px 54px rgba(0, 45, 78, 0.22))
    drop-shadow(0 0 34px rgba(69, 213, 255, 0.15));
}

.ai-phone-halo {
  position: absolute;
  left: 12%;
  top: 18%;
  z-index: 1;
  width: 72%;
  height: 62%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(69, 213, 255, 0.24), rgba(47, 107, 255, 0.08));
  filter: blur(34px);
}

.ai-push-zone {
  position: absolute;
  top: 64px;
  left: clamp(312px, 54%, 332px);
  z-index: 6;
  width: 330px;
  height: 112px;
  pointer-events: none;
}

.ai-push-notification {
  position: absolute;
  inset: 0;
  min-height: 104px;
  padding: 10px 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: rgba(244, 248, 252, 0.92);
  box-shadow:
    0 28px 58px rgba(0, 38, 68, 0.2),
    0 7px 18px rgba(47, 107, 255, 0.12),
    inset 0 1px 0 #ffffff;
  opacity: 0;
  transform: translate3d(-30px, 20px, 0) scale(0.94);
  backdrop-filter: blur(24px) saturate(1.3);
}

.ai-visual.is-visible .ai-push-notification {
  animation: aiPushCycle 12s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: calc(var(--push-index) * 4s);
}

.ai-push-notification::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.52), transparent 42%);
  pointer-events: none;
}

.ai-push-app,
.ai-push-message {
  position: relative;
  z-index: 1;
}

.ai-push-app {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
}

.ai-push-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(145deg, #0e8ed8, #0067ad);
  box-shadow: 0 4px 11px rgba(0, 91, 153, 0.2);
}

.ai-push-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.28);
}

.ai-push-app strong {
  color: #20394f;
  font-size: 0.72rem;
  font-weight: 850;
}

.ai-push-app span {
  color: #72879a;
  font-size: 0.65rem;
}

.ai-push-message {
  display: grid;
  gap: 3px;
  margin-top: 6px;
  padding-left: 41px;
}

.ai-push-message strong {
  color: #102d46;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

.ai-push-message span {
  color: #435d73;
  font-size: 0.71rem;
  line-height: 1.42;
}

.ai-showcase-copy {
  position: relative;
  z-index: 4;
  max-width: 490px;
}

.ai-showcase-copy .eyebrow {
  color: var(--blue-500);
}

.ai-showcase-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.4vw, 3.65rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.ai-showcase-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.ai-showcase-copy .btn {
  min-height: 50px;
  margin-top: 30px;
  border: 1px solid rgba(47, 107, 255, 0.32);
  background: linear-gradient(135deg, #2f6bff, #45d5ff);
  color: #ffffff;
  padding: 0 20px;
  box-shadow: 0 18px 38px rgba(47, 107, 255, 0.22);
  font-size: 0.9rem;
}

.ai-showcase-copy .btn svg {
  stroke: #ffffff;
}

[data-animate] {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-animate="from-left"] {
  transform: translate3d(-48px, 18px, 0) scale(0.985);
}

[data-animate="from-right"] {
  transform: translate3d(46px, 28px, 0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-animate-item] {
  opacity: 0;
  transform: translate3d(0, -18px, 0);
}

.is-visible [data-animate-item] {
  animation: aiTextDrop 0.76s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-visible [data-animate-item]:nth-child(2) {
  animation-delay: 0.08s;
}

.is-visible [data-animate-item]:nth-child(3) {
  animation-delay: 0.16s;
}

.is-visible [data-animate-item]:nth-child(4) {
  animation-delay: 0.24s;
}

.is-visible [data-animate-item]:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes aiPhoneDrift {
  0%,
  100% {
    transform: translate3d(0, -50%, 0) rotate(-0.7deg);
  }

  50% {
    transform: translate3d(0, calc(-50% - 16px), 0) rotate(0.9deg);
  }
}

@keyframes aiPushCycle {
  0%,
  3% {
    opacity: 0;
    transform: translate3d(-30px, 20px, 0) scale(0.94);
  }

  8%,
  27% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  32%,
  100% {
    opacity: 0;
    transform: translate3d(14px, -16px, 0) scale(0.98);
  }
}

@keyframes aiTextDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }

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

.handoff-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 24%, rgba(69, 213, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(24, 199, 122, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 46%, #f4f9fd 100%);
  isolation: isolate;
}

.handoff-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(47, 107, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.055) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.handoff-shell {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 70px;
  width: min(100% - 64px, 1240px);
  min-height: 720px;
  margin: 0 auto;
  padding: 96px 0 104px;
}

.handoff-visual {
  position: relative;
  min-height: 560px;
  perspective: 1100px;
}

.handoff-visual::before {
  content: "";
  position: absolute;
  left: 9%;
  top: 48%;
  width: 78%;
  height: 44%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(69, 213, 255, 0.2), rgba(47, 107, 255, 0.06));
  filter: blur(38px);
}

.handoff-flow {
  position: absolute;
  inset: 16px 0 auto;
  z-index: 4;
}

.handoff-line {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 49px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.18), rgba(69, 213, 255, 0.42), rgba(24, 199, 122, 0.18));
}

.handoff-line span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 120px;
  height: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #45d5ff, #18c77a, transparent);
  box-shadow: 0 0 18px rgba(69, 213, 255, 0.58);
  transform: translate3d(-120px, -50%, 0);
  animation: handoffTrace 4.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.handoff-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.handoff-step {
  position: relative;
  min-height: 120px;
  border: 1px solid rgba(0, 125, 199, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 20px 18px 18px;
  box-shadow: 0 16px 36px rgba(0, 55, 95, 0.08);
  backdrop-filter: blur(14px);
}

.handoff-step i {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #45d5ff;
  box-shadow:
    0 0 0 8px rgba(69, 213, 255, 0.12),
    0 0 24px rgba(69, 213, 255, 0.38);
}

.handoff-step:nth-child(2) i {
  background: var(--blue-600);
  box-shadow:
    0 0 0 8px rgba(47, 107, 255, 0.1),
    0 0 24px rgba(47, 107, 255, 0.32);
}

.handoff-step:nth-child(3) i {
  background: var(--amber-400);
  box-shadow:
    0 0 0 8px rgba(245, 184, 75, 0.13),
    0 0 24px rgba(245, 184, 75, 0.34);
}

.handoff-step:nth-child(4) i {
  background: var(--green-500);
  box-shadow:
    0 0 0 8px rgba(24, 199, 122, 0.12),
    0 0 24px rgba(24, 199, 122, 0.34);
}

.handoff-step strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.22;
}

.handoff-step small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.handoff-preview {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 3;
  width: min(560px, 92%);
  margin: 0;
  overflow: hidden;
  border: 10px solid #07111f;
  border-radius: 18px;
  background: #07111f;
  box-shadow:
    0 36px 80px rgba(7, 17, 31, 0.24),
    0 0 0 1px rgba(69, 213, 255, 0.14);
  transform: rotateY(-9deg) rotateX(4deg) rotateZ(-1deg);
  animation: handoffFloat 7.5s ease-in-out infinite;
}

.handoff-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.handoff-preview-top span {
  color: rgba(255, 255, 255, 0.78);
}

.handoff-preview-top strong {
  color: #45d5ff;
  font-size: 0.66rem;
}

.handoff-preview picture {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
}

.handoff-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 40%;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.02);
}

.handoff-preview::after {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.42), transparent 30%),
    linear-gradient(180deg, transparent 52%, rgba(7, 17, 31, 0.82));
}

.handoff-preview figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: 330px;
  border: 1px solid rgba(69, 213, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.76);
  color: #ffffff;
  padding: 14px 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.handoff-preview figcaption strong {
  font-size: 0.86rem;
  font-weight: 900;
}

.handoff-preview figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  line-height: 1.45;
}

.handoff-copy {
  position: relative;
  z-index: 4;
  max-width: 500px;
}

.handoff-copy .eyebrow {
  color: var(--blue-600);
}

.handoff-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.34rem, 3.2vw, 3.48rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.handoff-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.handoff-outcomes {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 14px 18px;
  margin-top: 28px;
}

.handoff-outcomes span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #24415f;
  padding-left: 18px;
  font-size: 0.8rem;
  font-weight: 900;
}

.handoff-outcomes span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(24, 199, 122, 0.12);
  transform: translateY(-50%);
}

.handoff-copy .btn {
  margin-top: 30px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(47, 107, 255, 0.3);
  background: linear-gradient(135deg, #07111f, #124c8a 48%, #2f6bff);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(47, 107, 255, 0.2);
}

.handoff-copy .btn svg {
  stroke: #ffffff;
}

@keyframes handoffTrace {
  0% {
    transform: translate3d(-120px, -50%, 0);
  }

  68%,
  100% {
    transform: translate3d(calc(100vw - 120px), -50%, 0);
  }
}

@keyframes handoffFloat {
  0%,
  100% {
    transform: rotateY(-9deg) rotateX(4deg) rotateZ(-1deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateY(-7deg) rotateX(5deg) rotateZ(-0.4deg) translate3d(0, -14px, 0);
  }
}

@keyframes handoffFloatCentered {
  0%,
  100% {
    transform: translateX(50%) rotateY(-5deg) rotateX(3deg) rotateZ(-0.6deg) translateY(0);
  }

  50% {
    transform: translateX(50%) rotateY(-4deg) rotateX(4deg) rotateZ(-0.2deg) translateY(-12px);
  }
}

.comparison-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 52%, #ffffff 100%),
    #ffffff;
  isolation: isolate;
}

.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 125, 199, 0.08), transparent 42%),
    radial-gradient(circle at 92% 26%, rgba(69, 213, 255, 0.14), transparent 28%);
  opacity: 0.85;
}

.comparison-shell {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding: 76px 0 86px;
}

.comparison-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.comparison-head .eyebrow,
.comparison-cta strong {
  color: var(--blue-600);
}

.comparison-head h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.45vw, 3.9rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.comparison-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.comparison-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 74px minmax(0, 1.05fr);
  align-items: stretch;
  gap: 0;
}

.comparison-side {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(0, 125, 199, 0.13);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 22px 60px rgba(6, 17, 31, 0.08);
}

.comparison-side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.comparison-side-top span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: var(--radius);
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-side-top strong {
  font-size: 0.86rem;
  font-weight: 900;
}

.comparison-side ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-side li {
  position: relative;
  opacity: 0;
  min-height: 46px;
  padding-left: 30px;
  font-weight: 800;
  line-height: 1.45;
  transform: translate3d(18px, 0, 0);
}

.comparison-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.comparison-generic {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(241, 246, 250, 0.92)),
    repeating-linear-gradient(135deg, rgba(96, 112, 133, 0.05) 0 1px, transparent 1px 18px);
  color: #4d5d70;
}

.comparison-generic .comparison-side-top span {
  background: rgba(96, 112, 133, 0.1);
  color: #556579;
}

.comparison-generic .comparison-side-top strong {
  color: #7a8797;
}

.comparison-generic li {
  color: #647489;
}

.comparison-generic li::before {
  border: 2px solid rgba(96, 112, 133, 0.34);
  background: rgba(255, 255, 255, 0.5);
}

.comparison-divider {
  position: relative;
  display: grid;
  place-items: center;
}

.comparison-divider::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(47, 107, 255, 0.26), transparent);
}

.comparison-divider span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(47, 107, 255, 0.12);
}

.comparison-ata {
  overflow: hidden;
  border-color: rgba(0, 125, 199, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(232, 247, 255, 0.94)),
    #ffffff;
  color: var(--ink);
  box-shadow:
    0 30px 80px rgba(0, 79, 130, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.comparison-ata::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  pointer-events: none;
  background: linear-gradient(180deg, #007dc7, #45d5ff 48%, #18c77a);
}

.comparison-ata .comparison-side-top {
  position: relative;
  z-index: 2;
}

.comparison-ata .comparison-side-top span {
  background: #e9f6ff;
  color: var(--blue-600);
}

.comparison-ata .comparison-side-top strong {
  color: #4f6177;
}

.comparison-ata ul {
  position: relative;
  z-index: 2;
  gap: 15px;
}

.comparison-ata li {
  min-height: 44px;
  color: #173654;
  font-size: 0.96rem;
}

.comparison-ata li::before {
  border: 0;
  background: var(--cyan-400);
  box-shadow: 0 0 0 7px rgba(69, 213, 255, 0.13);
  animation: comparisonDotPulse 2.4s ease-in-out infinite;
}

.comparison-ata li:nth-child(2n)::before {
  background: var(--blue-600);
  box-shadow: 0 0 0 7px rgba(47, 107, 255, 0.12);
  animation-delay: 0.3s;
}

.comparison-ata li:nth-child(3n)::before {
  background: var(--green-500);
  box-shadow: 0 0 0 7px rgba(24, 199, 122, 0.12);
  animation-delay: 0.6s;
}

.comparison-side.is-visible li {
  animation: comparisonItemIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.comparison-side.is-visible li:nth-child(2) {
  animation-delay: 0.05s;
}

.comparison-side.is-visible li:nth-child(3) {
  animation-delay: 0.1s;
}

.comparison-side.is-visible li:nth-child(4) {
  animation-delay: 0.15s;
}

.comparison-side.is-visible li:nth-child(5) {
  animation-delay: 0.2s;
}

.comparison-side.is-visible li:nth-child(6) {
  animation-delay: 0.25s;
}

.comparison-side.is-visible li:nth-child(7) {
  animation-delay: 0.3s;
}

.comparison-side.is-visible li:nth-child(8) {
  animation-delay: 0.35s;
}

@keyframes comparisonItemIn {
  0% {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }

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

@keyframes comparisonDotPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

.comparison-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  border: 1px solid rgba(0, 125, 199, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  padding: 18px 20px;
  box-shadow: 0 18px 44px rgba(6, 17, 31, 0.08);
  backdrop-filter: blur(14px);
}

.comparison-cta strong {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.45;
}

.comparison-cta .btn {
  min-height: 50px;
  padding: 0 24px;
  border-color: transparent;
  background: linear-gradient(135deg, #2f6bff, #45d5ff);
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(47, 107, 255, 0.28);
}

.comparison-cta .btn svg {
  stroke: #ffffff;
}

.platform-tour-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 56%, #ffffff 100%),
    #ffffff;
  isolation: isolate;
}

.platform-tour-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(116deg, transparent 0 22%, rgba(47, 107, 255, 0.06) 22% 22.7%, transparent 22.7% 67%, rgba(69, 213, 255, 0.08) 67% 67.8%, transparent 67.8%),
    radial-gradient(circle at 50% 38%, rgba(69, 213, 255, 0.1), transparent 34%);
}

.platform-tour-shell {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding: 88px 0 112px;
}

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

.tour-heading .eyebrow {
  justify-content: center;
  color: var(--blue-600);
}

.tour-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.35vw, 3.75rem);
  font-weight: 950;
  line-height: 1.04;
}

.tour-heading p:not(.eyebrow) {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.tour-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #49637c;
  font-size: 0.98rem;
  font-weight: 750;
}

.tour-hint svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: tourSpark 2.8s ease-in-out infinite;
}

.tour-stage {
  --hotspot-x: 68%;
  --hotspot-y: 58%;
  position: relative;
  min-height: 650px;
}

.tour-stage.is-tour-started {
  z-index: 140;
}

.tour-stage.is-tour-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  background: #f4f8fc;
}

.tour-stage:fullscreen {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #f4f8fc;
}

.tour-browser {
  position: absolute;
  inset: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0, 125, 199, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow:
    0 32px 84px rgba(6, 17, 31, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.86) inset;
  transition: filter 0.45s ease, transform 0.45s ease, opacity 0.45s ease;
}

.tour-stage.is-tour-fullscreen .tour-browser,
.tour-stage:fullscreen .tour-browser {
  inset: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-stage:not(.is-tour-started) .tour-browser {
  opacity: 0.82;
  filter: blur(5px) saturate(0.78);
  transform: scale(0.992);
}

.tour-start-layer {
  position: absolute;
  inset: 28px 0 0;
  z-index: 10;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 44%, rgba(69, 213, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(6, 17, 31, 0.18));
  padding: 24px;
  transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s ease;
}

.tour-stage.is-tour-started .tour-start-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.985);
}

.tour-stage.is-tour-fullscreen .tour-start-layer,
.tour-stage:fullscreen .tour-start-layer {
  inset: 0;
  border-radius: 0;
}

.tour-start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid rgba(223, 255, 107, 0.46);
  border-radius: 999px;
  background: #062f4c;
  color: #eaff70;
  padding: 0 30px;
  font-size: 0.98rem;
  font-weight: 950;
  box-shadow:
    0 24px 58px rgba(6, 17, 31, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-start-button:hover,
.tour-start-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 30px 66px rgba(6, 17, 31, 0.32),
    0 0 0 12px rgba(69, 213, 255, 0.14);
}

.tour-start-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-journey-chip {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(6, 17, 31, 0.12);
  border-radius: 999px;
  background: #83ddff;
  color: #07111f;
  padding: 0 24px;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 18px 40px rgba(6, 17, 31, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.28s ease;
}

.tour-journey-chip:hover,
.tour-journey-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(6, 17, 31, 0.22);
}

.tour-stage.is-tour-started .tour-journey-chip {
  opacity: 0.92;
  bottom: 18px;
}

.tour-stage.is-journey-open .tour-journey-chip {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.78rem;
  transform: translateY(1px);
}

.tour-stage.is-tour-fullscreen .tour-journey-chip,
.tour-stage:fullscreen .tour-journey-chip {
  left: 28px;
  bottom: 28px;
  z-index: 18;
}

.tour-fullscreen-button {
  position: absolute;
  right: 24px;
  top: 86px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b2f4d;
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(6, 17, 31, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.28s ease;
}

.tour-fullscreen-button:hover,
.tour-fullscreen-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(6, 17, 31, 0.2);
}

.tour-stage.is-tour-fullscreen .tour-fullscreen-button,
.tour-stage:fullscreen .tour-fullscreen-button {
  display: none;
}

.tour-browser-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  border-bottom: 1px solid rgba(0, 125, 199, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 18px;
}

.tour-stage.is-tour-fullscreen .tour-browser-bar,
.tour-stage:fullscreen .tour-browser-bar {
  display: none;
}

.tour-brand-mini,
.tour-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.tour-brand-mini img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.tour-search {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 125, 199, 0.12);
  border-radius: 6px;
  background: #f7fbff;
  color: #8a9aaa;
  padding: 8px 12px;
  font-size: 0.76rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tour-user {
  justify-content: flex-end;
}

.tour-screen-wrap {
  position: absolute;
  inset: 48px 0 0;
  overflow: hidden;
  background: #eef4fa;
}

.tour-stage.is-tour-fullscreen .tour-screen-wrap,
.tour-stage:fullscreen .tour-screen-wrap {
  inset: 0;
}

.tour-screen-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(6, 17, 31, 0.26);
}

.tour-stage.is-tour-started .tour-screen-wrap::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 38%);
}

.tour-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.tour-screen.is-active {
  opacity: 1;
  transform: scale(1);
}

.tour-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(0.98);
}

.tour-stage.is-tour-started .tour-screen img {
  object-fit: cover;
  object-position: center top;
  background: #eef4fa;
}

.tour-stage.is-tour-fullscreen .tour-screen img,
.tour-stage:fullscreen .tour-screen img {
  object-fit: contain;
  object-position: center top;
  filter: saturate(1) contrast(1);
}

.tour-screen[data-tour-panel="atendimento"] img {
  object-position: center top;
}

.tour-journey {
  position: absolute;
  left: 34px;
  top: 150px;
  z-index: 5;
  width: 318px;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(6, 17, 31, 0.22);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.tour-stage:not(.is-tour-started) .tour-journey {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-22px, 14px, 0);
}

.tour-stage.is-tour-started:not(.is-journey-open) .tour-journey {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-22px, 14px, 0);
}

.tour-stage.is-tour-fullscreen .tour-journey,
.tour-stage:fullscreen .tour-journey {
  left: 28px;
  top: 92px;
  z-index: 16;
  background: #ffffff;
}

.tour-journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: start;
  gap: 14px;
  padding: 22px 22px 18px;
}

.tour-journey h3 {
  margin: 0;
  color: #1c2a3a;
  font-size: 1.06rem;
  font-weight: 950;
}

.tour-journey p {
  margin: 8px 0 0;
  color: #52677e;
  font-size: 0.8rem;
  line-height: 1.52;
}

.tour-journey-close {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #42566d;
  transition: background 0.2s ease, color 0.2s ease;
}

.tour-journey-close:hover,
.tour-journey-close:focus-visible {
  background: #edf5fb;
  color: var(--blue-600);
}

.tour-journey-close span {
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.tour-route-list {
  display: grid;
  max-height: 310px;
  overflow: auto;
  padding: 0 22px 22px;
  scrollbar-color: rgba(47, 107, 255, 0.28) transparent;
  scrollbar-width: thin;
}

.tour-route {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  width: 100%;
  border-top: 1px solid rgba(96, 112, 133, 0.24);
  color: #24364a;
  padding: 17px 0;
  text-align: left;
}

.tour-route-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9f1f8;
  color: #516176;
  font-size: 0.82rem;
  font-weight: 950;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tour-route-copy {
  display: grid;
  min-width: 0;
}

.tour-route-copy strong {
  color: #26394e;
  font-size: 0.86rem;
  font-weight: 950;
}

.tour-route-copy small {
  margin-top: 5px;
  color: #66788e;
  font-size: 0.73rem;
  line-height: 1.35;
}

.tour-route em {
  align-self: center;
  color: #63758a;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
}

.tour-route.is-active .tour-route-number {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 0 0 7px rgba(47, 107, 255, 0.12);
}

.tour-route.is-active .tour-route-copy strong {
  color: var(--blue-600);
}

.tour-route.is-active em {
  color: var(--blue-600);
}

.tour-route.is-completed .tour-route-number {
  position: relative;
  background: #a9dc73;
  color: transparent;
  box-shadow: 0 0 0 6px rgba(169, 220, 115, 0.14);
}

.tour-route.is-completed .tour-route-number::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -62%) rotate(-45deg);
}

.tour-route.is-completed .tour-route-copy strong,
.tour-route.is-completed em {
  color: #72a841;
}

.tour-step-data[hidden] {
  display: none;
}

.tour-dialog {
  position: absolute;
  left: 52%;
  top: 52%;
  z-index: 6;
  width: min(390px, calc(100% - 420px));
  min-height: 286px;
  border: 1px solid rgba(69, 213, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(69, 213, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #0a5a92, #07375f);
  color: #ffffff;
  padding: 30px;
  text-align: center;
  box-shadow: 0 28px 70px rgba(6, 17, 31, 0.28);
  transform: translate(-50%, -50%);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.tour-stage.is-tour-started .tour-dialog {
  left: auto;
  right: 34px;
  top: auto;
  bottom: 90px;
  z-index: 130;
  width: min(330px, calc(100% - 68px));
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 8%, rgba(131, 221, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #075a92, #053b68);
  padding: 18px 18px 16px;
  text-align: left;
  box-shadow: 0 18px 46px rgba(6, 17, 31, 0.28);
  transform: none;
}

.tour-stage.is-tour-fullscreen .tour-dialog,
.tour-stage:fullscreen .tour-dialog {
  left: auto;
  right: 34px;
  top: auto;
  bottom: 34px;
  z-index: 17;
}

.tour-stage.is-journey-open .tour-dialog {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.tour-stage:not(.is-tour-started) .tour-dialog {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 22px)) scale(0.96);
}

.tour-dialog img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.tour-stage.is-tour-started .tour-dialog img {
  display: none;
}

.tour-dialog h3 {
  margin: 0 auto;
  max-width: 330px;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1.22;
}

.tour-stage.is-tour-started .tour-dialog h3 {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.25;
}

.tour-dialog p {
  margin: 14px auto 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tour-stage.is-tour-started .tour-dialog p {
  max-width: none;
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.46;
}

.tour-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.tour-stage.is-tour-started .tour-dialog-actions {
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.tour-dialog-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 950;
}

.tour-dialog-actions button:last-child {
  background: #dfff6b;
  color: #07111f;
  border-color: transparent;
}

.tour-dialog-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-dialog-actions span {
  color: #c7f8ff;
  font-size: 0.8rem;
  font-weight: 950;
}

.tour-progress {
  position: absolute;
  left: 50%;
  bottom: 7px;
  z-index: 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(70%, 850px);
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.tour-stage:not(.is-tour-started) .tour-progress,
.tour-stage.is-journey-open .tour-progress {
  opacity: 0;
  visibility: hidden;
}

.tour-progress-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(7, 17, 31, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0a3556;
  box-shadow: 0 10px 28px rgba(6, 17, 31, 0.18);
  pointer-events: auto;
  transition: color 0.24s ease, background 0.24s ease, transform 0.32s ease;
}

.tour-progress-toggle:hover,
.tour-progress-toggle:focus-visible {
  background: #0a3556;
  color: #ffffff;
  transform: translateY(-2px);
}

.tour-progress-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.32s ease;
}

.tour-progress.is-open .tour-progress-toggle svg {
  transform: rotate(180deg);
}

.tour-progress-track {
  display: grid;
  grid-template-columns: repeat(var(--tour-progress-count, 1), minmax(18px, 1fr));
  gap: 7px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0);
  padding: 0 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scaleX(0.96);
  transition:
    max-height 0.36s ease,
    padding 0.36s ease,
    opacity 0.26s ease,
    transform 0.36s ease,
    background 0.36s ease,
    border-color 0.36s ease;
}

.tour-progress.is-open .tour-progress-track {
  max-height: 42px;
  border-color: rgba(7, 17, 31, 0.1);
  background: rgba(248, 252, 255, 0.9);
  padding: 9px 10px 10px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-2px) scaleX(1);
  box-shadow: 0 14px 32px rgba(6, 17, 31, 0.14);
  backdrop-filter: blur(10px);
}

.tour-progress-step {
  height: 7px;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 0 0 1px rgba(7, 17, 31, 0.12) inset;
  transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.2s ease;
}

.tour-progress-step:hover,
.tour-progress-step:focus-visible {
  transform: scaleY(1.45);
}

.tour-progress-step.is-completed {
  background: #83ddff;
  box-shadow: none;
}

.tour-progress-step.is-active {
  background: #092f50;
  box-shadow: 0 3px 10px rgba(9, 47, 80, 0.26);
}

.tour-stage.is-progress-open .tour-dialog {
  bottom: 104px;
}

.tour-stage.is-tour-fullscreen.is-progress-open .tour-dialog,
.tour-stage:fullscreen.is-progress-open .tour-dialog {
  bottom: 82px;
}

.tour-hotspot {
  position: absolute;
  display: none;
  left: var(--hotspot-x);
  top: var(--hotspot-y);
  z-index: 4;
  min-height: 44px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 999px;
  background: #83ddff;
  color: #07111f;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(6, 17, 31, 0.18);
  transform: translate(-50%, -50%);
  transition: left 0.36s ease, top 0.36s ease, transform 0.2s ease;
  animation: tourHotspot 2.8s ease-in-out infinite;
}

.tour-stage.is-tour-fullscreen .tour-hotspot,
.tour-stage:fullscreen .tour-hotspot {
  z-index: 14;
}

.tour-stage:not(.is-tour-started) .tour-hotspot,
.tour-stage:not(.is-tour-started) .tour-stage-cta,
.tour-stage:not(.is-tour-started) .tour-fullscreen-button,
.tour-stage:not(.is-tour-started) .tour-exit-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tour-hotspot:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.tour-stage-cta {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  aspect-ratio: 1;
  min-height: 52px;
  border: 1px solid rgba(223, 255, 107, 0.44);
  border-radius: 50%;
  background: #062f4c;
  color: #eaff70;
  padding: 0;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(6, 17, 31, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-stage.is-tour-fullscreen .tour-stage-cta,
.tour-stage:fullscreen .tour-stage-cta {
  display: none;
}

.tour-stage-cta:hover,
.tour-stage-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(6, 17, 31, 0.28);
}

.tour-stage-cta svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-exit-button {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #203246;
  padding: 0 16px;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(6, 17, 31, 0.16);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.tour-stage:not(.is-tour-fullscreen) .tour-exit-button {
  display: none;
}

@keyframes tourSpark {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(16deg) scale(1.08);
  }
}

@keyframes tourHotspot {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(6, 17, 31, 0.18);
  }

  50% {
    box-shadow:
      0 18px 38px rgba(6, 17, 31, 0.18),
      0 0 0 10px rgba(131, 221, 255, 0.2);
  }
}

@media (max-width: 1180px) {
  .platform-tour-shell {
    width: min(100% - 40px, 980px);
  }

  .tour-stage {
    min-height: 740px;
  }

  .tour-browser {
    top: 30px;
  }

  .tour-journey {
    left: 26px;
    width: 300px;
  }

  .tour-dialog {
    left: 60%;
    width: min(360px, calc(100% - 380px));
  }
}

@media (max-width: 900px) {
  .platform-tour-shell {
    width: min(100% - 30px, var(--container));
    padding: 68px 0 82px;
  }

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

  .tour-heading .eyebrow {
    justify-content: flex-start;
  }

  .tour-heading h2 {
    font-size: 2.46rem;
  }

  .tour-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .tour-hint {
    justify-content: flex-start;
  }

  .tour-stage {
    display: grid;
    gap: 16px;
    min-height: auto;
  }

  .tour-browser {
    position: relative;
    inset: auto;
    order: 1;
    height: 470px;
  }

  .tour-progress {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    width: calc(100% - 124px);
    margin: -34px auto 0;
    transform: none;
  }

  .tour-journey,
  .tour-dialog {
    order: 3;
  }

  .tour-start-layer {
    inset: 0;
  }

  .tour-browser-bar {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .tour-user {
    display: none;
  }

  .tour-screen-wrap::after {
    background: rgba(6, 17, 31, 0.18);
  }

  .tour-journey,
  .tour-dialog {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .tour-stage:not(.is-tour-started) .tour-journey,
  .tour-stage:not(.is-tour-started) .tour-dialog,
  .tour-stage:not(.is-tour-started) .tour-stage-cta {
    display: none;
  }

  .tour-journey {
    margin: -84px 18px 0;
  }

  .tour-route-list {
    max-height: 310px;
  }

  .tour-dialog {
    min-height: auto;
    margin: 0 18px;
  }

  .tour-stage.is-tour-started .tour-dialog {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 18px;
  }

  .tour-hotspot {
    display: none;
  }

  .tour-stage-cta {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 54px;
    margin: 0;
  }

  .tour-stage.is-tour-fullscreen {
    display: block;
    gap: 0;
    min-height: 100dvh;
  }

  .tour-stage.is-tour-fullscreen .tour-browser {
    position: absolute;
    inset: 0;
    height: auto;
  }

  .tour-stage.is-tour-fullscreen .tour-progress {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: min(68%, 720px);
    margin: 0;
    transform: translateX(-50%);
  }

  .tour-stage.is-tour-fullscreen .tour-start-layer {
    inset: 0;
  }

  .tour-stage.is-tour-fullscreen .tour-screen-wrap {
    inset: 0;
  }

  .tour-stage.is-tour-fullscreen .tour-screen img {
    object-fit: contain;
    object-position: center top;
  }

  .tour-stage.is-tour-fullscreen .tour-dialog {
    position: absolute;
    left: 18px;
    top: 70px;
    width: min(320px, calc(100% - 36px));
    margin: 0;
  }

  .tour-stage.is-tour-fullscreen.is-progress-open .tour-dialog {
    bottom: 78px;
  }

  .tour-stage.is-tour-fullscreen .tour-journey {
    position: absolute;
    left: 18px;
    top: 126px;
    width: min(320px, calc(100% - 36px));
    margin: 0;
  }

  .tour-stage.is-tour-fullscreen .tour-journey-chip {
    left: 18px;
    bottom: 18px;
  }

  .tour-stage.is-tour-fullscreen .tour-stage-cta {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: auto;
    margin: 0;
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-journey-chip {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 14;
    width: max-content;
    margin: -2px 18px 0;
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-stage-cta {
    top: 486px;
    right: 18px;
    bottom: auto;
    z-index: 14;
  }

  .tour-stage.is-tour-started:not(.is-journey-open):not(.is-tour-fullscreen) .tour-journey,
  .tour-stage.is-journey-open:not(.is-tour-fullscreen) .tour-dialog {
    display: none;
  }
}

@media (max-width: 480px) {
  .platform-tour-shell {
    padding: 54px 0 70px;
  }

  .tour-heading h2 {
    font-size: 2.02rem;
  }

  .tour-heading p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .tour-hint {
    font-size: 0.9rem;
  }

  .tour-browser {
    height: 330px;
  }

  .tour-progress {
    width: calc(100% - 86px);
    margin-top: -32px;
  }

  .tour-progress-track {
    gap: 4px;
    padding-inline: 7px;
  }

  .tour-progress.is-open .tour-progress-track {
    padding-inline: 7px;
  }

  .tour-progress-toggle {
    width: 34px;
    height: 34px;
  }

  .tour-start-button {
    width: min(100%, 250px);
    min-height: 52px;
    padding: 0 20px;
  }

  .tour-journey-chip {
    left: 28px;
    bottom: 18px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .tour-browser-bar {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 8px;
    min-height: 42px;
    padding: 0 10px;
  }

  .tour-brand-mini {
    font-size: 0.62rem;
  }

  .tour-brand-mini img {
    width: 22px;
    height: 22px;
  }

  .tour-search {
    padding: 7px 8px;
    font-size: 0.64rem;
  }

  .tour-screen-wrap {
    top: 42px;
  }

  .tour-screen img {
    object-position: 22% top;
  }

  .tour-journey {
    margin: -56px 10px 0;
  }

  .tour-journey-head {
    padding: 18px 18px 14px;
  }

  .tour-route-list {
    max-height: 286px;
    padding: 0 18px 18px;
  }

  .tour-route {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    column-gap: 10px;
    padding: 14px 0;
  }

  .tour-route-number {
    width: 26px;
    height: 26px;
  }

  .tour-dialog {
    margin: 0 10px;
    padding: 24px 20px;
  }

  .tour-dialog img {
    width: 66px;
    height: 66px;
  }

  .tour-dialog h3 {
    font-size: 1.22rem;
  }

  .tour-dialog-actions {
    gap: 10px;
  }

  .tour-dialog-actions button {
    min-height: 38px;
    padding: 0 12px;
  }

  .tour-stage-cta {
    width: 54px;
    min-height: 50px;
    padding: 0;
  }

  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-stage-cta {
    top: 346px;
  }
}

.operations-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 125, 199, 0.1);
  border-bottom: 1px solid rgba(0, 125, 199, 0.1);
  background:
    linear-gradient(135deg, rgba(232, 247, 255, 0.92), rgba(255, 255, 255, 0.98) 42%, rgba(244, 250, 255, 0.96)),
    #ffffff;
  isolation: isolate;
}

.operations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 0 22%, rgba(47, 107, 255, 0.06) 22% 22.8%, transparent 22.8% 56%, rgba(69, 213, 255, 0.09) 56% 57%, transparent 57%),
    linear-gradient(90deg, rgba(0, 125, 199, 0.06), transparent 38%, rgba(69, 213, 255, 0.08));
}

.operations-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(47, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0.56;
}

.operations-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 64px;
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding: 94px 0 104px;
}

.operations-copy {
  max-width: 540px;
}

.operations-copy .eyebrow {
  color: var(--blue-600);
}

.operations-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.35vw, 3.8rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
}

.operations-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.operations-proof {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.operations-proof span {
  position: relative;
  display: block;
  color: #173654;
  padding-left: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.operations-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 7px rgba(69, 213, 255, 0.14);
}

.operations-proof span:nth-child(2)::before {
  background: var(--blue-600);
  box-shadow: 0 0 0 7px rgba(47, 107, 255, 0.12);
}

.operations-proof span:nth-child(3)::before {
  background: var(--green-500);
  box-shadow: 0 0 0 7px rgba(24, 199, 122, 0.12);
}

.operations-copy .btn {
  margin-top: 30px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(47, 107, 255, 0.28);
  background: linear-gradient(135deg, #07111f, #124c8a 48%, #2f6bff);
  color: #ffffff;
  box-shadow: 0 20px 46px rgba(47, 107, 255, 0.22);
}

.operations-copy .btn svg {
  stroke: #ffffff;
}

.operations-visual {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(0, 125, 199, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(235, 248, 255, 0.72)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 28px 70px rgba(6, 17, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.operations-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(0, 125, 199, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.ops-core {
  position: absolute;
  left: 34px;
  top: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: 178px;
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #eff8ff);
  padding: 24px 18px 22px;
  box-shadow: 0 24px 54px rgba(6, 17, 31, 0.12);
  transform: translateY(-50%);
}

.ops-core img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(6, 17, 31, 0.2));
}

.ops-core strong {
  margin-top: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.ops-core span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-flow {
  position: absolute;
  left: 246px;
  right: 34px;
  top: 50%;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
}

.ops-flow::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(69, 213, 255, 0.24), rgba(47, 107, 255, 0.28), rgba(24, 199, 122, 0.24));
}

.ops-flow::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 4px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #45d5ff, #2f6bff, transparent);
  box-shadow: 0 0 18px rgba(69, 213, 255, 0.6);
  animation: opsTrace 5s ease-in-out infinite;
}

.ops-flow li {
  position: relative;
  display: grid;
  min-height: 92px;
  border: 1px solid rgba(0, 125, 199, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px 20px 17px 58px;
  box-shadow: 0 16px 34px rgba(6, 17, 31, 0.07);
  transform: translate3d(22px, 0, 0);
  opacity: 0;
}

.ops-flow li i {
  position: absolute;
  left: 9px;
  top: 22px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 7px rgba(69, 213, 255, 0.13);
}

.ops-flow li:nth-child(2) i {
  background: var(--blue-600);
  box-shadow: 0 0 0 7px rgba(47, 107, 255, 0.12);
}

.ops-flow li:nth-child(3) i {
  background: var(--amber-400);
  box-shadow: 0 0 0 7px rgba(245, 184, 75, 0.15);
}

.ops-flow li:nth-child(4) i {
  background: var(--green-500);
  box-shadow: 0 0 0 7px rgba(24, 199, 122, 0.12);
}

.ops-flow strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.ops-flow span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.operations-visual.is-visible .ops-flow li {
  animation: opsItemIn 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.operations-visual.is-visible .ops-flow li:nth-child(2) {
  animation-delay: 0.08s;
}

.operations-visual.is-visible .ops-flow li:nth-child(3) {
  animation-delay: 0.16s;
}

.operations-visual.is-visible .ops-flow li:nth-child(4) {
  animation-delay: 0.24s;
}

.ops-signal {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 148px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 16px;
  box-shadow: 0 18px 42px rgba(6, 17, 31, 0.1);
  backdrop-filter: blur(16px);
}

.ops-signal span {
  color: var(--blue-600);
  font-size: 1.44rem;
  font-weight: 950;
  line-height: 1;
}

.ops-signal strong {
  margin-top: 5px;
  color: #24415f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ops-signal-one {
  left: 58px;
  top: 34px;
}

.ops-signal-two {
  left: 70px;
  bottom: 42px;
}

@keyframes opsTrace {
  0%,
  12% {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    transform: translateY(282px);
    opacity: 0;
  }
}

@keyframes opsItemIn {
  0% {
    opacity: 0;
    transform: translate3d(22px, 0, 0);
  }

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

.section {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.white-label-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.white-label-copy p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.problem-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-grid article,
.feature-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(6, 17, 31, 0.05);
}

.problem-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: var(--radius);
  background: #edf7ff;
  color: var(--blue-600);
  font-weight: 900;
}

.problem-grid h3,
.feature-grid h3,
.ai-flow h3,
.brand-stack strong {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.problem-grid p,
.feature-grid p,
.ai-flow p,
.brand-stack span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ai-section {
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(8, 32, 62, 0.96), rgba(10, 44, 84, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 108px);
  color: #ffffff;
  padding: 86px max(20px, calc((100% - var(--container)) / 2));
}

.section-head-light h2,
.section-head-light p:not(.eyebrow) {
  color: #ffffff;
}

.section-head-light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.ai-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ai-flow article {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.ai-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan-400);
  color: var(--navy-950);
  font-weight: 900;
}

.ai-flow h3 {
  color: #ffffff;
}

.ai-flow p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid article {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-grid article:hover {
  border-color: rgba(0, 125, 199, 0.36);
  box-shadow: var(--shadow-crisp);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-blue {
  background: #e9f6ff;
  color: var(--blue-600);
}

.feature-green {
  background: #e8fbf0;
  color: var(--green-700);
}

.feature-amber {
  background: #fff6de;
  color: #9b6200;
}

.white-label-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 86px max(20px, calc((100% - var(--container)) / 2));
}

.white-label-copy {
  max-width: 610px;
}

.white-label-copy .btn {
  margin-top: 28px;
}

.brand-stack {
  display: grid;
  gap: 14px;
}

.brand-stack article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #ffffff, #f8fbff);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(6, 17, 31, 0.05);
}

.brand-stack strong {
  display: block;
  margin: 0 0 8px;
}

.brand-stack span {
  display: block;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segments span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 14px 16px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(6, 17, 31, 0.04);
}

.impact-stats-strip {
  position: relative;
  width: min(100% - 32px, 1180px);
  margin: 76px auto 0;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 55, 95, 0.18);
  border-bottom: 1px solid rgba(7, 55, 95, 0.18);
}

.impact-stat {
  position: relative;
  min-width: 0;
  padding: 38px 30px 34px;
}

.impact-stat:first-child {
  padding-left: 0;
}

.impact-stat:last-child {
  padding-right: 0;
}

.impact-stat + .impact-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: rgba(7, 55, 95, 0.17);
}

.impact-stat strong {
  display: flex;
  align-items: flex-start;
  color: #0a4f86;
  font-size: clamp(3.25rem, 5.2vw, 5.5rem);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}

.impact-stat strong span {
  white-space: nowrap;
}

.impact-stat:nth-child(n + 3) strong {
  font-size: clamp(3rem, 4.45vw, 4.8rem);
}

.impact-stat sup {
  margin: 5px 0 0 7px;
  color: var(--blue-600);
  font-size: 0.34em;
  font-weight: 850;
  line-height: 1;
}

.impact-stat p {
  min-height: 66px;
  margin-top: 22px;
  color: #3e5268;
  font-size: 0.91rem;
  line-height: 1.55;
}

.impact-stat a {
  display: inline-flex;
  margin-top: 12px;
  color: #62788d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.impact-stat a:hover,
.impact-stat a:focus-visible {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.impact-stats-note {
  max-width: 980px;
  margin: 22px auto 0;
  color: #8292a3;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

.impact-stats-grid .impact-stat {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.impact-stats-grid.is-visible .impact-stat {
  opacity: 1;
  transform: translateY(0);
}

.impact-stats-grid.is-visible .impact-stat:nth-child(2) {
  transition-delay: 0.08s;
}

.impact-stats-grid.is-visible .impact-stat:nth-child(3) {
  transition-delay: 0.16s;
}

.impact-stats-grid.is-visible .impact-stat:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 900px) {
  .impact-stats-strip {
    width: min(100% - 16px, 720px);
    margin-top: 64px;
  }

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

  .impact-stat,
  .impact-stat:first-child,
  .impact-stat:last-child {
    padding: 30px 24px;
  }

  .impact-stat:nth-child(odd) {
    padding-left: 0;
  }

  .impact-stat:nth-child(even) {
    padding-right: 0;
  }

  .impact-stat:nth-child(3),
  .impact-stat:nth-child(4) {
    border-top: 1px solid rgba(7, 55, 95, 0.14);
  }

  .impact-stat:nth-child(3)::before {
    display: none;
  }

  .impact-stat p {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .impact-stats-strip {
    width: 100%;
    margin-top: 50px;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-stat,
  .impact-stat:first-child,
  .impact-stat:last-child,
  .impact-stat:nth-child(odd),
  .impact-stat:nth-child(even) {
    display: grid;
    grid-template-columns: minmax(116px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 6px 20px;
    border-top: 1px solid rgba(7, 55, 95, 0.14);
    padding: 24px 0;
  }

  .impact-stat:first-child {
    border-top: 0;
  }

  .impact-stat + .impact-stat::before {
    display: none;
  }

  .impact-stat strong {
    grid-row: 1 / 3;
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .impact-stat:nth-child(n + 3) strong {
    font-size: clamp(2.65rem, 13.8vw, 4rem);
  }

  .impact-stat p {
    margin-top: 0;
    font-size: 0.84rem;
  }

  .impact-stat a {
    margin-top: 0;
  }

  .impact-stats-note {
    text-align: left;
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 125, 199, 0.1);
  background:
    linear-gradient(128deg, transparent 0 66%, rgba(69, 213, 255, 0.07) 66% 66.18%, transparent 66.18% 100%),
    linear-gradient(180deg, #fbfdff, #f0f7fc);
  padding: 112px 0 116px;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(47, 107, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000 88%, transparent);
}

.faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.55fr);
  column-gap: clamp(56px, 7vw, 112px);
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.faq-head {
  position: sticky;
  top: 54px;
  align-self: start;
  padding-top: 12px;
}

.faq-head h2 {
  max-width: 330px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(3rem, 4.3vw, 4.7rem);
  font-weight: 950;
  line-height: 0.94;
}

.faq-head-line {
  display: block;
  width: 84px;
  height: 1px;
  margin: 30px 0 24px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600));
}

.faq-head > p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  align-self: start;
  counter-reset: faq-counter;
  border-top: 1px solid rgba(8, 48, 87, 0.16);
}

.faq-item {
  position: relative;
  overflow: hidden;
  counter-increment: faq-counter;
  border-bottom: 1px solid rgba(8, 48, 87, 0.16);
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-600));
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(8, 48, 87, 0.09);
}

.faq-item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq-item h3 {
  position: relative;
  margin: 0;
}

.faq-item h3::before {
  content: counter(faq-counter, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 50%;
  color: rgba(8, 48, 87, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}

.faq-item.is-open h3::before {
  color: var(--blue-600);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 88px;
  padding: 26px 26px 26px 76px;
  color: var(--navy-900);
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-item button:hover,
.faq-item button:focus-visible,
.faq-item.is-open button {
  background: transparent;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--blue-600);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: #526a83;
  font-size: 0.95rem;
  line-height: 1.78;
}

.faq-item.is-open .faq-answer p {
  border-top: 1px solid rgba(8, 48, 87, 0.08);
  padding: 22px 64px 30px 76px;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 78px 0 84px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
  }

  .faq-head {
    position: static;
    margin-bottom: 42px;
    padding-top: 0;
  }

  .faq-head h2 {
    max-width: none;
    font-size: 3.5rem;
  }

  .faq-head > p {
    max-width: 600px;
  }

}

@media (max-width: 480px) {
  .faq-section {
    padding: 64px 0 70px;
  }

  .faq-shell {
    width: calc(100% - 28px);
  }

  .faq-head {
    margin-bottom: 30px;
  }

  .faq-head h2 {
    font-size: 2.75rem;
    line-height: 0.98;
  }

  .faq-head-line {
    width: 64px;
    margin: 22px 0 18px;
  }

  .faq-item button {
    min-height: 82px;
    padding: 20px 18px 20px 54px;
    font-size: 0.9rem;
  }

  .faq-item h3::before {
    left: 17px;
    font-size: 0.66rem;
  }

  .faq-item.is-open .faq-answer p {
    padding: 18px 34px 26px 54px;
  }

}

.contact-section {
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--blue-600), var(--cyan-400), var(--green-500)) 1;
  background:
    linear-gradient(118deg, transparent 0 72%, rgba(69, 213, 255, 0.08) 72% 72.15%, transparent 72.15% 100%),
    linear-gradient(145deg, #06111f, #082744 70%, #073554);
  color: #ffffff;
  padding: 110px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(64px, 8vw, 124px);
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.contact-copy {
  max-width: 460px;
}

.contact-copy > img {
  width: 76px;
  height: 76px;
  margin-bottom: 34px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.28));
}

.contact-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
  font-weight: 950;
  line-height: 0.98;
}

.contact-copy > p {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-form {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(69, 213, 255, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy-900);
  padding: 42px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.contact-form-head {
  margin-bottom: 30px;
}

.contact-form-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form-head h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.65rem;
  line-height: 1.2;
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field > span {
  color: #2f465e;
  font-size: 0.75rem;
  font-weight: 850;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cbd8e6;
  border-radius: 6px;
  outline: 0;
  background: #f9fbfd;
  color: var(--ink);
  padding: 0 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field select {
  cursor: pointer;
}

.form-field select:invalid,
.form-field input::placeholder {
  color: #8a9aae;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--blue-600);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.1);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 24px 0;
  color: #607085;
  font-size: 0.74rem;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue-600);
}

.contact-submit {
  width: 100%;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 -8px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 52px;
    width: min(100% - 40px, 760px);
  }

  .contact-copy {
    max-width: 650px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 76px 0;
  }

  .contact-shell {
    width: calc(100% - 28px);
    gap: 42px;
  }

  .contact-copy > img {
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
  }

  .contact-copy h2 {
    font-size: 2.7rem;
  }

  .contact-copy > p {
    margin-top: 22px;
  }

  .contact-form {
    padding: 32px 20px 26px;
  }

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

  .contact-submit {
    padding: 0 16px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: min(100% - 40px, var(--container));
  margin: 0 auto 70px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(69, 213, 255, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(6, 17, 31, 0.98), rgba(8, 32, 62, 0.94));
  color: #ffffff;
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.final-cta div {
  max-width: 720px;
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .btn {
  flex: 0 0 auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.66);
  padding: 28px max(20px, calc((100% - var(--container)) / 2));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand span {
  display: grid;
  gap: 2px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 1rem;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-500);
  color: #062215;
  padding: 0;
  box-shadow: 0 18px 44px rgba(24, 199, 122, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.floating-whatsapp span {
  position: absolute;
  right: 68px;
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.9);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.floating-whatsapp:hover span,
.floating-whatsapp:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1181px) and (max-height: 820px) {
  .site-header {
    min-height: 118px;
    margin-top: 6px;
  }

  .brand img {
    width: 112px;
    height: 112px;
  }

  .hero-grid {
    gap: 28px;
    padding: 112px 0 44px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 4.7vw, 4.42rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 530px;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-product {
    min-height: 500px;
    transform: translateX(12px);
  }

  .product-device {
    top: 34px;
    right: 10px;
    width: min(700px, 98%);
  }

  .device-base {
    height: 52px;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 150px;
  }

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

  .hero h1 {
    max-width: 800px;
    font-size: clamp(3.4rem, 8vw, 4.8rem);
  }

  .hero-product {
    min-height: 620px;
    width: min(100%, 880px);
    margin: 0 auto;
    transform: none;
  }

  .product-device {
    left: 50%;
    right: auto;
    width: min(850px, 96%);
    animation: none;
    transform: translateX(-50%) rotateY(-5deg) rotateX(3deg) rotateZ(-0.8deg);
  }

  .problem-grid,
  .feature-grid,
  .ai-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-showcase-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 40px, 920px);
    padding: 72px 0 82px;
  }

  .ai-visual {
    order: 1;
    min-height: 680px;
  }

  .ai-visual-grid {
    inset: 34px 84px 42px;
  }

  .ai-phone-shot {
    left: 50%;
    width: min(270px, 46vw);
    translate: -50% 0;
  }

  .ai-push-zone {
    top: 126px;
    left: calc(50% + 108px);
    width: 310px;
    height: 110px;
  }

  .ai-showcase-copy {
    order: 2;
    max-width: 650px;
  }

  .handoff-shell {
    grid-template-columns: 1fr;
    gap: 44px;
    width: min(100% - 40px, 920px);
    min-height: auto;
    padding: 86px 0 94px;
  }

  .handoff-visual {
    min-height: 560px;
  }

  .handoff-copy {
    max-width: 680px;
  }

  .comparison-shell {
    width: min(100% - 40px, 920px);
    padding: 86px 0 94px;
  }

  .comparison-board {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-side {
    min-height: auto;
  }

  .comparison-divider {
    height: 68px;
  }

  .comparison-divider::before {
    top: 50%;
    bottom: auto;
    left: 8%;
    right: 8%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 107, 255, 0.26), transparent);
  }

  .operations-shell {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 40px, 920px);
    padding: 86px 0 94px;
  }

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

  .operations-visual {
    min-height: 560px;
  }

  .white-label-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 30px, var(--container));
    min-height: 92px;
    margin-top: 12px;
  }

  .brand {
    gap: 0;
  }

  .brand img {
    width: 92px;
    height: 92px;
  }

  .hero::before {
    opacity: 0.7;
  }

  .hero-grid {
    width: min(100% - 30px, var(--container));
    padding: 122px 0 62px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.03;
  }

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

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

  .hero-product {
    min-height: 520px;
    perspective: none;
  }

  .product-light {
    inset: 20px -20px 0;
  }

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

  .product-device {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
    animation: none;
  }

  .device-lid {
    border-width: 8px;
    border-radius: 18px;
  }

  .device-topbar {
    height: 42px;
    padding: 0 12px;
  }

  .device-viewport {
    height: calc(100% - 42px);
  }

  .screen-labels {
    left: calc(var(--device-sidebar) + 12px);
    bottom: 12px;
  }

  .screen-labels span {
    font-size: 0.66rem;
    padding: 8px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .final-cta {
    width: min(100% - 30px, var(--container));
  }

  .ai-showcase-inner {
    width: min(100% - 30px, var(--container));
    gap: 28px;
    padding: 64px 0 74px;
  }

  .ai-visual {
    min-height: 650px;
  }

  .ai-visual-grid {
    inset: 22px 0 42px;
  }

  .ai-phone-shot {
    width: min(250px, 62vw);
  }

  .ai-push-zone {
    top: 120px;
    left: calc(50% + 92px);
    width: 292px;
    height: 110px;
  }

  .ai-showcase-copy h2 {
    font-size: 2.42rem;
  }

  .handoff-shell {
    width: min(100% - 30px, var(--container));
    padding: 68px 0 76px;
  }

  .handoff-visual {
    min-height: 590px;
  }

  .handoff-flow {
    inset: 0 0 auto;
  }

  .handoff-line {
    display: none;
  }

  .handoff-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .handoff-step {
    min-height: 108px;
    padding: 18px 16px 16px;
  }

  .handoff-preview {
    right: 50%;
    bottom: 0;
    width: min(560px, 100%);
    transform: translateX(50%) rotateY(-5deg) rotateX(3deg) rotateZ(-0.6deg);
    animation-name: handoffFloatCentered;
  }

  .handoff-preview picture {
    height: 260px;
  }

  .handoff-copy h2 {
    font-size: 2.42rem;
  }

  .comparison-shell {
    width: min(100% - 30px, var(--container));
    padding: 68px 0 76px;
  }

  .comparison-head h2 {
    font-size: 2.78rem;
    line-height: 1.02;
  }

  .comparison-head p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.68;
  }

  .comparison-side {
    padding: 24px;
  }

  .comparison-ata ul {
    grid-template-columns: 1fr;
  }

  .comparison-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .operations-shell {
    width: min(100% - 30px, var(--container));
    padding: 68px 0 76px;
  }

  .operations-copy h2 {
    font-size: 2.72rem;
  }

  .operations-visual {
    min-height: 700px;
  }

  .ops-core {
    left: 50%;
    top: 34px;
    width: 168px;
    transform: translateX(-50%);
  }

  .ops-flow {
    left: 24px;
    right: 24px;
    top: 218px;
    transform: none;
  }

  .ops-signal-one {
    left: auto;
    right: 24px;
    top: auto;
    bottom: 28px;
  }

  .ops-signal-two {
    left: 24px;
    right: auto;
    bottom: 28px;
  }

  .section {
    padding: 62px 0;
  }

  .ai-section,
  .white-label-section {
    padding: 62px 15px;
  }

  .section-head h2,
  .white-label-copy h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .problem-grid,
  .feature-grid,
  .ai-flow {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .feature-grid article,
  .ai-flow article {
    min-height: auto;
  }

  .white-label-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-cta {
    padding: 30px;
  }

  .final-cta .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: 82px;
    height: 82px;
  }

  .hero-grid {
    width: min(100% - 24px, var(--container));
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 2.38rem;
  }

  .hero-product {
    min-height: 330px;
  }

  .device-lid {
    border-width: 6px;
    border-radius: 15px;
  }

  .device-topbar {
    height: 36px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .device-topbar > span:last-child {
    display: none;
  }

  .device-viewport {
    height: calc(100% - 36px);
  }

  .topbar-brand img {
    width: 22px;
    height: 22px;
  }

  .device-base {
    height: 42px;
  }

  .screen-labels {
    display: none;
  }

  .ai-showcase-inner {
    padding: 46px 0 64px;
  }

  .ai-visual {
    min-height: 530px;
  }

  .ai-visual-grid {
    inset: 18px 0 34px;
  }

  .ai-phone-shot {
    left: 28%;
    width: min(190px, 64vw);
  }

  .ai-push-zone {
    top: 104px;
    right: 0;
    left: auto;
    width: min(248px, 69vw);
    height: 108px;
  }

  .ai-push-notification {
    min-height: 102px;
    padding: 9px 11px 10px;
    border-radius: 22px;
  }

  .ai-push-notification::after {
    border-radius: 20px;
  }

  .ai-push-app {
    grid-template-columns: 29px 1fr auto;
    gap: 7px;
  }

  .ai-push-icon {
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }

  .ai-push-app strong {
    font-size: 0.65rem;
  }

  .ai-push-app span {
    font-size: 0.58rem;
  }

  .ai-push-message {
    margin-top: 5px;
    padding-left: 36px;
  }

  .ai-push-message strong {
    font-size: 0.74rem;
  }

  .ai-push-message span {
    font-size: 0.64rem;
  }

  .ai-showcase-copy h2 {
    font-size: 2.2rem;
  }

  .handoff-shell {
    padding: 54px 0 66px;
  }

  .handoff-visual {
    min-height: 600px;
  }

  .handoff-steps {
    gap: 10px;
  }

  .handoff-step {
    min-height: 116px;
    padding: 16px 14px 15px;
  }

  .handoff-step i {
    margin-bottom: 14px;
  }

  .handoff-step strong {
    font-size: 0.82rem;
  }

  .handoff-step small {
    font-size: 0.66rem;
  }

  .handoff-preview {
    border-width: 7px;
    border-radius: 14px;
  }

  .handoff-preview picture {
    height: 238px;
  }

  .handoff-preview-top {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .handoff-preview-top strong {
    font-size: 0.56rem;
  }

  .handoff-preview figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .handoff-preview figcaption span {
    font-size: 0.68rem;
  }

  .handoff-copy h2 {
    font-size: 2.08rem;
  }

  .handoff-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .handoff-outcomes span {
    min-height: 22px;
    font-size: 0.72rem;
  }

  .handoff-copy .btn {
    width: 100%;
  }

  .comparison-shell {
    padding: 54px 0 66px;
  }

  .comparison-head {
    margin-bottom: 28px;
  }

  .comparison-head h2 {
    font-size: 2.18rem;
  }

  .comparison-side {
    padding: 20px;
  }

  .comparison-side-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }

  .comparison-side li {
    min-height: auto;
    font-size: 0.9rem;
  }

  .comparison-cta {
    padding: 18px;
  }

  .comparison-cta .btn {
    width: 100%;
    white-space: normal;
  }

  .operations-shell {
    padding: 54px 0 66px;
  }

  .operations-copy h2 {
    font-size: 2.08rem;
  }

  .operations-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .operations-proof span {
    font-size: 0.9rem;
  }

  .operations-copy .btn {
    width: 100%;
    white-space: normal;
  }

  .operations-visual {
    min-height: 730px;
  }

  .operations-visual::before {
    inset: 14px;
  }

  .ops-core {
    top: 24px;
    width: 146px;
    padding: 18px 14px 16px;
  }

  .ops-core img {
    width: 58px;
    height: 58px;
  }

  .ops-core strong {
    font-size: 0.92rem;
  }

  .ops-core span {
    font-size: 0.62rem;
  }

  .ops-flow {
    left: 14px;
    right: 14px;
    top: 178px;
    gap: 12px;
  }

  .ops-flow li {
    min-height: 104px;
    padding: 16px 14px 15px 48px;
  }

  .ops-flow li i {
    left: 7px;
  }

  .ops-flow::before {
    left: 15px;
  }

  .ops-flow::after {
    left: 14px;
  }

  .ops-flow strong {
    font-size: 0.92rem;
  }

  .ops-flow span {
    font-size: 0.8rem;
  }

  .ops-signal {
    min-width: 0;
    width: calc(50% - 20px);
    padding: 12px 13px;
  }

  .ops-signal-one {
    left: auto;
    right: 14px;
    bottom: 18px;
  }

  .ops-signal-two {
    left: 14px;
    right: auto;
    bottom: 18px;
  }

  .ops-signal span {
    font-size: 1.16rem;
  }

  .ops-signal strong {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .ai-showcase-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .ai-showcase-copy .btn {
    width: auto;
    max-width: 100%;
  }

  .section-head h2,
  .white-label-copy h2,
  .final-cta h2 {
    font-size: 1.74rem;
  }

  .segments span {
    width: 100%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  body.tour-demo-active .floating-whatsapp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
  }
}

.tour-stage.is-tour-started.is-route-transition .tour-dialog {
  position: absolute;
  display: block;
  left: 57%;
  right: auto;
  top: 52%;
  bottom: auto;
  z-index: 17;
  width: min(390px, calc(100% - 420px));
  min-height: 286px;
  margin: 0;
  padding: 30px;
  text-align: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.tour-stage.is-tour-started.is-route-transition .tour-dialog img {
  display: block;
}

.tour-stage.is-tour-started.is-route-transition .tour-dialog h3 {
  max-width: 330px;
  font-size: 1.42rem;
  line-height: 1.22;
}

.tour-stage.is-tour-started.is-route-transition .tour-dialog p {
  max-width: 320px;
  margin-top: 13px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.tour-stage.is-tour-started.is-route-transition .tour-dialog-actions {
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.tour-stage.is-route-transition [data-tour-prev] {
  display: none;
}

.tour-stage.is-route-transition [data-tour-next] {
  min-width: 112px;
  background: #dfff6b;
  color: #072f4d;
}

@media (max-width: 900px) {
  .tour-stage.is-tour-started.is-route-transition .tour-dialog {
    position: relative;
    inset: auto;
    width: auto;
    min-height: auto;
    margin: 0 18px;
    padding: 26px 22px;
    transform: none;
  }

  .tour-stage.is-tour-fullscreen.is-route-transition .tour-dialog {
    position: absolute;
    left: 50%;
    right: auto;
    top: 54%;
    bottom: auto;
    width: min(360px, calc(100% - 36px));
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .tour-stage.is-tour-started.is-route-transition .tour-dialog {
    margin: 0 10px;
    padding: 24px 18px;
  }

  .tour-stage.is-tour-fullscreen.is-route-transition .tour-dialog {
    width: calc(100% - 20px);
    margin: 0;
  }
}

@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;
  }

  .product-device,
  .screen-track,
  .screen-labels span,
  .ai-push-notification,
  .handoff-line span,
  .handoff-preview,
  .ops-flow::after,
  .ops-flow li,
  .tour-hint svg,
  .tour-hotspot {
    animation: none !important;
  }

  .ai-push-notification:first-child {
    opacity: 1;
    transform: none;
  }

  .ops-flow li {
    opacity: 1;
    transform: none;
  }

  .tour-screen {
    transition: none !important;
  }
}

/* Final narrow-screen overrides. Keep these after the legacy responsive rules. */
@media (max-width: 760px) {
  .tour-stage-cta[data-tour-fullscreen] {
    display: none;
  }

  .tour-screen-wrap {
    display: grid;
    place-items: center;
    background: #eaf2f8;
  }

  .tour-screen img,
  .tour-stage.is-tour-started .tour-screen img {
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 520px) {
  .ai-showcase-section { overflow: clip; }
  .ai-showcase-inner { width: calc(100% - 28px); }
  .ai-visual { min-height: 480px; }
  .ai-visual-grid { inset: 12px 0 24px; border-radius: 24px; mask-image: none; }
  .ai-phone-shot { left: 10px; top: 51%; width: min(178px, 53vw); translate: 0 0; }
  .ai-push-zone { top: 82px; right: -2px; left: auto; width: min(226px, 68vw); }
  .ai-push-notification { min-height: 94px; padding: 8px 10px 9px; border-radius: 20px; }
  .ai-push-message { padding-left: 34px; }
  .ai-push-message strong { font-size: 0.7rem; }
  .ai-push-message span { font-size: 0.6rem; line-height: 1.35; }

  .impact-stats-strip { width: calc(100% - 28px); }
  .impact-stat,
  .impact-stat:first-child,
  .impact-stat:last-child,
  .impact-stat:nth-child(odd),
  .impact-stat:nth-child(even) {
    grid-template-columns: minmax(82px, 0.38fr) minmax(0, 0.62fr);
    gap: 4px 14px;
    padding: 22px 0;
  }
  .impact-stat strong,
  .impact-stat:nth-child(n + 3) strong {
    align-self: center;
    width: 100%;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.94;
  }
  .impact-stat:nth-child(n + 3) strong { font-size: clamp(2.05rem, 9.2vw, 2.35rem); }
  .impact-stat strong span { max-width: 100%; }
  .impact-stat sup { margin: 2px 0 0 3px; }
  .impact-stat p { min-width: 0; font-size: 0.78rem; line-height: 1.45; }
  .impact-stat a { font-size: 0.6rem; }
  .impact-stats-note { font-size: 0.66rem; line-height: 1.5; }

  .tour-stage { gap: 12px; }
  .tour-browser { height: clamp(300px, 84vw, 342px); }
  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-browser {
    height: clamp(220px, 62vw, 285px);
  }
  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-dialog {
    margin: 0;
    border-radius: 10px;
  }
  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-journey-chip { margin-left: 0; }
  .tour-stage.is-tour-started:not(.is-tour-fullscreen) .tour-stage-cta {
    top: calc(clamp(320px, 92vw, 370px) + 16px);
    right: 0;
  }

  .tour-stage.is-tour-fullscreen,
  .tour-stage:fullscreen {
    display: grid;
    grid-template-rows: minmax(0, 54dvh) minmax(0, 46dvh);
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }
  .tour-stage.is-tour-fullscreen .tour-browser,
  .tour-stage:fullscreen .tour-browser {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-bottom: 1px solid rgba(7, 55, 95, 0.14);
  }
  .tour-stage.is-tour-fullscreen .tour-screen img,
  .tour-stage:fullscreen .tour-screen img {
    object-fit: cover;
    object-position: 18% top;
  }
  .tour-stage.is-tour-fullscreen .tour-dialog,
  .tour-stage:fullscreen .tour-dialog,
  .tour-stage.is-tour-fullscreen.is-route-transition .tour-dialog,
  .tour-stage:fullscreen.is-route-transition .tour-dialog {
    position: relative;
    inset: auto;
    grid-row: 2;
    align-self: center;
    width: calc(100% - 28px);
    max-height: calc(46dvh - 64px);
    margin: 0 auto;
    overflow: auto;
    transform: none;
  }
  .tour-stage.is-tour-fullscreen .tour-journey,
  .tour-stage:fullscreen .tour-journey {
    position: absolute;
    inset: 58px 12px auto;
    width: auto;
    max-height: calc(100dvh - 126px);
    margin: 0;
  }
  .tour-stage.is-tour-fullscreen .tour-route-list,
  .tour-stage:fullscreen .tour-route-list { max-height: calc(100dvh - 230px); }
  .tour-stage.is-tour-fullscreen .tour-journey-chip,
  .tour-stage:fullscreen .tour-journey-chip { left: 14px; bottom: 12px; }
  .tour-stage.is-tour-fullscreen .tour-progress,
  .tour-stage:fullscreen .tour-progress { left: 50%; bottom: 10px; width: min(52%, 210px); }
  .tour-stage.is-tour-fullscreen .tour-exit-button,
  .tour-stage:fullscreen .tour-exit-button { right: 12px; top: 10px; }
}

@media (max-width: 360px) {
  .ai-phone-shot { width: 160px; }
  .ai-push-zone { width: 205px; }
  .impact-stat,
  .impact-stat:first-child,
  .impact-stat:last-child,
  .impact-stat:nth-child(odd),
  .impact-stat:nth-child(even) {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 4px 10px;
  }
  .impact-stat strong,
  .impact-stat:nth-child(n + 3) strong { font-size: 2rem; }
}

/* CRM refinement: SEO hero and e-commerce integration */
.hero h1.hero-title-seo {
  max-width: 780px;
  font-size: clamp(2.8rem, 4vw, 4.55rem);
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.hero h1.hero-title-seo span {
  margin-top: 0.08em;
}

.commerce-integration-strip {
  display: grid;
  grid-template-areas:
    "copy preview"
    "action preview";
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: stretch;
  gap: 18px 28px;
  margin-top: 22px;
  border: 1px solid rgba(0, 125, 199, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(112deg, rgba(235, 248, 255, 0.94), rgba(255, 255, 255, 0.82)),
    #ffffff;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(6, 54, 95, 0.06);
}

.commerce-integration-copy {
  grid-area: copy;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.commerce-integration-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f6bff, #45d5ff);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(47, 107, 255, 0.22);
}

.commerce-integration-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.commerce-integration-strip strong {
  display: block;
  color: #133d66;
  font-size: 0.92rem;
  font-weight: 900;
}

.commerce-integration-strip p {
  margin: 4px 0 0;
  color: #61778e;
  font-size: 0.82rem;
  line-height: 1.45;
}

.commerce-integration-preview {
  position: relative;
  grid-area: preview;
  min-height: 188px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 154, 0.18);
  border-radius: 10px;
  background: #085b91;
  box-shadow: 0 16px 30px rgba(4, 62, 104, 0.16);
}

.commerce-integration-preview picture,
.commerce-integration-preview img {
  display: block;
  width: 100%;
  height: 100%;
}

.commerce-integration-preview img {
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.commerce-integration-strip:hover .commerce-integration-preview img {
  transform: scale(1.025);
}

.commerce-integration-strip a {
  grid-area: action;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.commerce-integration-strip a span {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.commerce-integration-strip a:hover span,
.commerce-integration-strip a:focus-visible span {
  transform: translateX(3px);
}

.impact-stat .impact-stat-context {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 25px;
  margin-top: 13px;
  border: 1px solid rgba(10, 79, 134, 0.12);
  border-radius: 999px;
  background: linear-gradient(115deg, #0c528a, #1686c1);
  box-shadow: 0 9px 18px rgba(7, 79, 134, 0.14);
  color: #ffffff;
  padding: 0 10px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.impact-stat .impact-stat-context:hover,
.impact-stat .impact-stat-context:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.impact-stats-note a {
  color: #426f94;
  font-weight: 850;
  text-decoration: none;
}

.impact-stats-note a:hover,
.impact-stats-note a:focus-visible {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .hero h1.hero-title-seo {
    max-width: 720px;
    font-size: clamp(2.75rem, 6.3vw, 4rem);
  }

  .commerce-integration-strip {
    grid-template-areas:
      "copy"
      "preview"
      "action";
    grid-template-columns: minmax(0, 1fr);
  }

  .commerce-integration-strip a {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .hero h1.hero-title-seo {
    font-size: clamp(2.12rem, 9.2vw, 2.72rem);
    line-height: 1.03;
  }

  .commerce-integration-strip {
    gap: 12px;
    border-radius: 12px;
    padding: 15px;
  }

  .commerce-integration-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .commerce-integration-preview {
    min-height: 146px;
  }

  .commerce-integration-strip strong {
    font-size: 0.83rem;
  }

  .commerce-integration-strip p {
    font-size: 0.75rem;
  }

  .impact-stat .impact-stat-context {
    margin-top: 2px;
    font-size: 0.54rem;
  }
}
