@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue-deep: #0f2d4a;
  --blue-mid: #1e5fa8;
  --blue-light: #1e5fa8;
  --primary: #1e5fa8;
  --surface-dark: #0f2d4a;
  --surface-dark-alt: #123454;
  --surface-dark-tone: #1a456c;
  --blue-pale: #eaf2fc;
  --blue-fog: #f3f8fd;
  --mint-soft: #dff8f3;
  --white: #ffffff;
  --off-white: #f7fafc;
  --gray-light: #e2eaf4;
  --gray-mid: #8fa3bb;
  --gray-dark: #3a4e63;
  --text-main: #102235;
  --text-sub: #586f83;
  --shadow-soft: 0 2px 16px rgba(15, 45, 74, 0.07);
  --shadow-card: 0 16px 42px rgba(15, 45, 74, 0.1);
  --shadow-hero: 0 28px 64px rgba(15, 45, 74, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--blue-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

svg {
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--off-white);
}

.advantages-section,
.pricing-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.advantages-section::before,
.pricing-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.advantages-section::before {
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 45, 74, 0.12) 0%, rgba(15, 45, 74, 0.05) 38%, transparent 72%);
  filter: blur(8px);
}

.advantages-section::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 196, 176, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.advantages-section > .container,
.pricing-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

.pricing-section::before {
  top: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 45, 74, 0.12) 0%, rgba(15, 45, 74, 0.06) 42%, transparent 74%);
}

.pricing-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 18%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 95, 168, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.contact-section::before {
  top: -120px;
  right: -90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 45, 74, 0.14) 0%, rgba(15, 45, 74, 0.06) 38%, transparent 72%);
}

.contact-section::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 196, 176, 0.07) 0%, transparent 72%);
  pointer-events: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title,
.hero-title,
.contact-cta-box h3,
.price-card h3,
.setup-banner h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-title {
  margin: 16px 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--blue-deep);
}

.section-sub {
  max-width: 560px;
  color: var(--text-sub);
  font-size: 1.03rem;
  line-height: 1.78;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.24s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(15, 45, 74, 0.09);
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 700;
}

.nav-logo:hover {
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--blue-mid), #37b9bf);
  box-shadow: 0 10px 24px rgba(30, 95, 168, 0.26);
}

.nav-logo-mark svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color 0.24s ease, background-color 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-mid);
  text-decoration: none;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--surface-dark-tone);
  color: #ffffff !important;
  font-weight: 600 !important;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--surface-dark);
  color: #ffffff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-deep);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 95;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 8px 24px rgba(15, 45, 74, 0.1);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mobile-menu a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.3rem 0;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 600;
}

.mobile-menu a:not(.button):hover {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button-primary {
  background: var(--surface-dark-tone);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 45, 74, 0.24);
}

.button-primary:hover {
  background: var(--surface-dark);
  color: #ffffff;
}

.button-secondary {
  border: 1.5px solid rgba(30, 95, 168, 0.28);
  background: transparent;
  color: var(--blue-mid);
}

.button-secondary:hover {
  background: var(--blue-pale);
  color: var(--blue-deep);
}

.hero-section {
  position: relative;
  padding: 152px 0 100px;
  overflow: hidden;
}

.page-main {
  padding-top: 68px;
}

.hero-tech-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  pointer-events: auto;
}

.tech-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 95, 168, 0.09);
  pointer-events: none;
}

.orbit-one {
  width: 560px;
  height: 560px;
  right: -90px;
  top: -40px;
}

.orbit-two {
  width: 340px;
  height: 340px;
  right: 120px;
  top: 80px;
  border-color: rgba(69, 196, 176, 0.12);
}

.hero-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
}

.hero-bg-one {
  top: -180px;
  right: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(30, 95, 168, 0.11) 0%, transparent 68%);
}

.hero-bg-two {
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 95, 168, 0.08) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(18, 52, 84, 0.1);
  border: 1px solid rgba(18, 52, 84, 0.12);
  color: var(--surface-dark-tone);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 45, 74, 0.08);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-dark-tone);
  animation: pulse 2.2s infinite;
}

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  color: var(--blue-deep);
  line-height: 1.12;
}

.hero-title em {
  color: var(--surface-dark-tone);
  font-style: italic;
}

.hero-sub {
  margin: 0 0 10px;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--surface-dark-tone);
}

.hero-desc {
  max-width: 470px;
  margin: 0 0 38px;
  font-size: 1rem;
  color: rgba(15, 45, 74, 0.76);
  line-height: 1.82;
}

.hero-audio-block {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 0 26px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(30, 95, 168, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 44px rgba(15, 45, 74, 0.06);
  backdrop-filter: blur(10px);
}

.hero-audio-label {
  margin: 0;
  color: var(--surface-dark-tone);
  font-size: 0.94rem;
  font-weight: 700;
}

.button-audio {
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding-inline: 20px;
  border-color: rgba(30, 95, 168, 0.16);
  font-weight: 700;
  color: var(--surface-dark-tone);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 30px rgba(15, 45, 74, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.button-audio:hover,
.button-audio:focus-visible,
.button-audio.is-playing {
  color: #ffffff;
  background: linear-gradient(180deg, var(--surface-dark-tone) 0%, var(--surface-dark) 100%);
  border-color: transparent;
  box-shadow:
    0 18px 34px rgba(15, 45, 74, 0.16),
    0 0 0 4px rgba(30, 95, 168, 0.08);
}

.button-audio-icon {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.86rem;
}

.hero-buttons,
.hero-mini-proof,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(23, 59, 102, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}

.hero-pricing-link::after {
  content: "\203A";
  font-size: 1rem;
  line-height: 1;
}

.hero-pricing-link:hover,
.hero-pricing-link:focus-visible {
  color: var(--surface-dark-tone);
  transform: translateX(2px);
  text-decoration: none;
}

.hero-mini-proof {
  margin-top: 22px;
  gap: 10px;
}

.hero-mini-proof span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--gray-light);
  background: rgba(255, 255, 255, 0.84);
  color: var(--gray-dark);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-preview {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
}

.hero-float {
  position: absolute;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(30, 95, 168, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  z-index: 2;
  isolation: isolate;
}

.hero-float::before,
.hero-float::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero-float::before {
  z-index: -2;
  opacity: 0.9;
}

.hero-float::after {
  z-index: -1;
}

.hero-float strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 0.9rem;
}

.hero-float span {
  color: var(--text-sub);
  font-size: 0.8rem;
}

.hero-float-one {
  top: 12%;
  right: 2%;
}

.hero-float-one::before,
.hero-float-one::after {
  left: -22px;
  bottom: -2px;
  width: 50px;
  height: 44px;
  clip-path: polygon(100% 10%, 100% 30%, 26% 100%, 58% 28%);
}

.hero-float-one::before {
  background: rgba(30, 95, 168, 0.12);
  transform: translate(-2px, 2px);
}

.hero-float-one::after {
  background: rgba(255, 255, 255, 0.88);
}

.hero-float-two {
  right: -4%;
  bottom: 18%;
}

.hero-float-two::before,
.hero-float-two::after {
  left: -22px;
  top: -2px;
  width: 50px;
  height: 44px;
  clip-path: polygon(100% 90%, 100% 70%, 26% 0, 58% 72%);
}

.hero-float-two::before {
  background: rgba(30, 95, 168, 0.12);
  transform: translate(-2px, -2px);
}

.hero-float-two::after {
  background: rgba(255, 255, 255, 0.88);
}

.hero-float-three {
  left: -4%;
  bottom: 15%;
}

.hero-float-three::before,
.hero-float-three::after {
  right: -22px;
  top: -2px;
  width: 50px;
  height: 44px;
  clip-path: polygon(0 90%, 0 70%, 74% 0, 42% 72%);
}

.hero-float-three::before {
  background: rgba(30, 95, 168, 0.12);
  transform: translate(2px, -2px);
}

.hero-float-three::after {
  background: rgba(255, 255, 255, 0.88);
}

.bot-preview {
  position: absolute;
  inset: 8% 10%;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.bot-preview-glow {
  position: absolute;
  z-index: 0;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 196, 176, 0.18) 0%, rgba(18, 105, 165, 0.12) 42%, transparent 72%);
  filter: blur(14px);
}

.bot-preview-ring {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(18, 105, 165, 0.14);
}

.ring-one {
  width: 64%;
  aspect-ratio: 1;
}

.ring-two {
  width: 80%;
  aspect-ratio: 1;
  border-color: rgba(69, 196, 176, 0.16);
}

.ring-three {
  width: 94%;
  aspect-ratio: 1;
  border-color: rgba(18, 105, 165, 0.08);
}

.bot-audio-rail {
  position: absolute;
  top: 50%;
  left: 64%;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 36%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  transform-origin: left center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.bot-audio-line {
  display: none;
}

.bot-equalizer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 88px;
}

.bot-eq-bar {
  --level: 0.16;
  --start: 0%;
  width: calc(100% - var(--start));
  margin-left: var(--start);
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(74, 207, 193, 0.92) 24%, rgba(30, 95, 168, 0.9) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(18, 105, 165, 0.16),
    0 0 20px rgba(74, 207, 193, 0.18);
  transform-origin: left center;
  transform: scaleX(var(--level));
  transition: transform 0.14s ease-out;
}

.bot-eq-bar:nth-child(1) {
  --start: 0%;
}

.bot-eq-bar:nth-child(2) {
  --start: 6%;
}

.bot-eq-bar:nth-child(3) {
  --start: 14%;
}

.bot-eq-bar:nth-child(4) {
  --start: 18%;
}

.bot-eq-bar:nth-child(5) {
  --start: 10%;
}

.bot-eq-bar:nth-child(6) {
  --start: 2%;
}

.bot-audio-pulse {
  display: none;
}

.bot-audio-pulse-alt {
  display: none;
}

.bot-core {
  position: relative;
  z-index: 4;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: botCoreFloat 6.8s ease-in-out infinite;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.98), rgba(233, 243, 251, 0.96) 46%, rgba(205, 229, 247, 0.84) 76%, rgba(167, 210, 239, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 60px rgba(18, 105, 165, 0.18),
    inset 0 -10px 24px rgba(18, 105, 165, 0.08),
    inset 0 10px 26px rgba(255, 255, 255, 0.78);
}

.bot-core::before {
  content: "";
  position: absolute;
  inset: 5.2%;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 69, 108, 0.22);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.2),
    0 0 18px rgba(30, 95, 168, 0.12);
}

.bot-face {
  position: relative;
  width: 58%;
  height: 42%;
  animation: botFaceLook 9.6s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.bot-cheek {
  position: absolute;
  bottom: 22%;
  width: 16%;
  height: 16%;
  border-radius: 50%;
  background: rgba(255, 181, 192, 0.4);
  filter: blur(2px);
  z-index: 0;
}

.bot-cheek.left {
  left: 10%;
}

.bot-cheek.right {
  right: 10%;
}

.bot-brow {
  position: absolute;
  top: 2%;
  width: 18%;
  height: 4%;
  border-radius: 999px;
  background: rgba(26, 69, 108, 0.62);
  transform-origin: center;
}

.bot-brow.left {
  left: 19%;
  transform: rotate(-12deg);
  animation: botBrowMoveLeft 4.8s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.bot-brow.right {
  right: 19%;
  transform: rotate(12deg);
  animation: botBrowMoveRight 4.8s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.bot-eye {
  position: absolute;
  top: 12%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 8px 14px rgba(18, 105, 165, 0.08),
    inset 0 -3px 7px rgba(15, 45, 74, 0.08);
  transform-origin: center 60%;
  animation: botBlink 8.6s ease-in-out infinite;
}

.bot-eye::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 22%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.bot-eye::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 18%;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.45) 0 10%, transparent 11%),
    radial-gradient(circle at 55% 60%, #234f79 0 38%, #16344f 39% 100%);
  animation: botPupilLook 9.6s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.bot-eye.left {
  left: 20%;
  animation-delay: 0.08s;
}

.bot-eye.right {
  right: 20%;
  animation-delay: 0.12s;
}

.bot-mouth {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 36%;
  height: 14%;
  transform: translateX(-50%);
  animation: botMouthMove 4.6s ease-in-out infinite;
}

.bot-mouth::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 3px solid rgba(26, 69, 108, 0.8);
  border-radius: 0 0 999px 999px;
}

.bot-preview-hint {
  display: none;
}

.bot-preview.is-playing .bot-preview-ring {
  border-color: rgba(18, 105, 165, 0.14);
}

.bot-preview:hover .bot-core,
.bot-preview:focus-visible .bot-core {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 28px 70px rgba(18, 105, 165, 0.24),
    inset 0 -10px 24px rgba(18, 105, 165, 0.08),
    inset 0 10px 26px rgba(255, 255, 255, 0.78),
    0 0 0 10px rgba(30, 95, 168, 0.08);
}

.bot-preview:hover .bot-audio-rail,
.bot-preview:focus-visible .bot-audio-rail,
.bot-preview.is-playing .bot-audio-rail {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.bot-preview:focus-visible {
  outline: none;
}

@keyframes botCoreFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes botFaceLook {
  0%,
  18%,
  100% {
    transform: translate(0, 0);
  }

  24%,
  38% {
    transform: translate(1%, -0.3%);
  }

  46%,
  60% {
    transform: translate(-1%, 0.6%);
  }

  72%,
  84% {
    transform: translate(0.8%, 0.5%);
  }
}

@keyframes botPupilLook {
  0%,
  18%,
  100% {
    transform: translate(0, 0);
  }

  24%,
  38% {
    transform: translate(8%, -3%);
  }

  46%,
  60% {
    transform: translate(-8%, 4%);
  }

  72%,
  84% {
    transform: translate(5%, 3%);
  }
}

@keyframes botBrowMoveLeft {
  0%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }

  16% {
    transform: rotate(-15deg) translateY(-2px);
  }

  34% {
    transform: rotate(-8deg) translateY(1px);
  }

  52% {
    transform: rotate(-14deg) translateY(-1px);
  }

  72% {
    transform: rotate(-10deg) translateY(1px);
  }
}

@keyframes botBrowMoveRight {
  0%,
  100% {
    transform: rotate(12deg) translateY(0);
  }

  16% {
    transform: rotate(15deg) translateY(-2px);
  }

  34% {
    transform: rotate(8deg) translateY(1px);
  }

  52% {
    transform: rotate(14deg) translateY(-1px);
  }

  72% {
    transform: rotate(10deg) translateY(1px);
  }
}

@keyframes botBlink {
  0%,
  3%,
  48%,
  51%,
  82%,
  85%,
  100% {
    transform: scaleY(1);
  }

  1.5%,
  49.5%,
  83.5% {
    transform: scaleY(0.12);
  }
}

@keyframes botMouthMove {
  0%,
  100% {
    width: 36%;
    height: 16%;
    border-bottom-width: 3px;
  }

  22% {
    width: 32%;
    height: 12%;
  }

  46% {
    width: 40%;
    height: 18%;
  }

  68% {
    width: 30%;
    height: 11%;
  }

  86% {
    width: 38%;
    height: 17%;
  }
}


.advantages-section {
  background:
    linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-dark-alt) 100%);
  padding-top: 100px;
}

.advantages-section .container > * {
  position: relative;
  z-index: 1;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon svg,
.service-icon svg,
.advantage-icon svg,
.contact-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-icon svg {
  stroke: rgba(255, 255, 255, 0.96);
}

.trust-icon svg {
  stroke: rgba(255, 255, 255, 0.92);
}

.trust-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
}

.trust-text span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.services-inner,
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
}

.feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  isolation: isolate;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-icon,
.advantage-icon,
.contact-icon-wrap {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--blue-pale);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.service-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.service-text span {
  color: var(--text-sub);
  font-size: 0.88rem;
}

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

.ui-mockup {
  width: 100%;
  max-width: 360px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-card);
}

.ui-mockup-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}

.ui-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ui-dot-r {
  background: #f87171;
}

.ui-dot-y {
  background: #facc15;
}

.ui-dot-g {
  background: #4ade80;
}

.ui-mockup-label {
  margin-left: 6px;
  color: var(--text-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ui-call-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 11px 13px;
  border-radius: var(--radius-md);
}

.ui-call-item.active {
  border: 1px solid rgba(30, 95, 168, 0.15);
  background: var(--blue-pale);
}

.ui-call-item.muted {
  background: var(--off-white);
}

.ui-call-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.ui-call-avatar.blue {
  background: var(--blue-pale);
  color: var(--blue-mid);
}

.ui-call-avatar.gray {
  background: var(--gray-light);
  color: var(--gray-mid);
}

.ui-call-info {
  flex: 1;
}

.ui-call-name {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.ui-call-sub {
  color: var(--text-sub);
  font-size: 0.74rem;
}

.ui-call-badge {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.ui-call-badge.live {
  background: #dcfce7;
  color: #16a34a;
}

.ui-call-badge.done {
  background: var(--gray-light);
  color: var(--gray-mid);
}

.ui-email-preview {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  background: var(--off-white);
}

.ui-email-label {
  margin-bottom: 8px;
  color: var(--surface-dark-tone);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ui-email-line {
  height: 8px;
  margin-bottom: 6px;
  border-radius: 4px;
  background: var(--gray-light);
}

.w80 {
  width: 80%;
}

.w60 {
  width: 60%;
}

.w90 {
  width: 90%;
}

.advantages-header,
.pricing-header,
.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages-header .section-label {
  background: rgba(30, 95, 168, 0.18);
  color: var(--blue-mid);
  border: 1px solid rgba(30, 95, 168, 0.16);
}

.advantages-header .section-title {
  color: #ffffff;
}

.advantages-header .section-sub {
  color: rgba(255, 255, 255, 0.62);
}

.advantages-header .section-sub,
.pricing-header .section-sub,
.process-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
  isolation: isolate;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, var(--blue-mid), #2bc3bc);
  transition: opacity 0.24s ease;
}

.benefit-card::before {
  display: none;
}

.benefit-card {
  overflow: visible;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(72, 128, 196, 0.6), rgba(25, 70, 120, 0.92));
  border: 1px solid rgba(132, 174, 224, 0.28);
  box-shadow:
    0 12px 24px rgba(14, 46, 81, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.advantage-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

.advantage-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.68;
}

.faq-section {
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(255, 255, 255, 1));
}

.faq-header {
  text-align: center;
  margin-bottom: 42px;
}

.faq-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

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

.faq-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(212, 223, 235, 0.86);
  box-shadow: 0 16px 32px rgba(15, 45, 74, 0.06);
}

.faq-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--blue-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

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

.faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(30, 95, 168, 0.08);
  border: 1px solid rgba(30, 95, 168, 0.12);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-mid);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease;
}

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

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

.faq-card p {
  margin: 14px 0 0;
  color: var(--text-sub);
  font-size: 0.92rem;
  line-height: 1.72;
}

.pricing-section {
  border-top: 1px solid rgba(226, 234, 244, 0.7);
  background:
    linear-gradient(180deg, #f4f8fc 0%, #edf4fb 100%);
}

.pricing-intro {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  margin-top: 1rem;
  text-align: center;
}

.pricing-intro-label {
  margin: 0;
  color: var(--surface-dark-tone);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-intro-copy {
  max-width: 42rem;
  margin: 0;
  color: var(--text-sub);
}

.pricing-note-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 1.4rem;
}

.pricing-note {
  display: grid;
  gap: 0.28rem;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(30, 95, 168, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(15, 45, 74, 0.04);
}

.pricing-note strong {
  color: var(--text-main);
  font-size: 0.9rem;
}

.pricing-note span {
  color: var(--text-sub);
  font-size: 0.9rem;
}

.setup-banner,
.price-card,
.trial-box,
.legal-card,
.contact-cta-box {
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.setup-banner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
}

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

.setup-banner-dual ul {
  grid-column: 1 / -1;
}

.setup-tier {
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 251, 0.92));
  border: 1px solid rgba(30, 95, 168, 0.12);
}

.setup-tier .setup-subline {
  max-width: 18rem;
}

.setup-copy {
  display: grid;
  gap: 0.55rem;
}

.setup-label {
  margin: 0 0 8px;
  color: var(--surface-dark-tone);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-banner h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.setup-subline {
  margin: 0;
  color: var(--text-sub);
}

.setup-banner ul,
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.setup-banner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.pricing-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2rem 0 0.5rem;
}

.pricing-divider::before,
.pricing-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 45, 74, 0.12);
}

.pricing-divider span {
  color: var(--surface-dark-tone);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.setup-banner li,
.price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-sub);
}

.setup-banner li::before,
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #38c6ba, var(--blue-mid));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease;
  isolation: isolate;
}

.price-card:hover,
.price-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(30, 95, 168, 0.18);
}

.price-card:focus-visible {
  outline: none;
}

.price-card-featured {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 252, 0.94));
  border-color: rgba(30, 95, 168, 0.18);
}

.price-badge {
  position: absolute;
  top: -18px;
  right: 18px;
  z-index: 6;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-mid), #2bc3bc);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-tier {
  margin: 0;
  color: var(--surface-dark-tone);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1;
}

.price-card h3 span {
  margin-left: 6px;
  color: var(--text-sub);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.price-summary {
  margin: 0;
  color: var(--text-sub);
}

.price-audience {
  margin: -0.25rem 0 0;
  color: var(--text-main);
  font-size: 0.96rem;
  font-weight: 600;
}

.price-highlight {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(30, 95, 168, 0.12);
  background: linear-gradient(135deg, rgba(30, 95, 168, 0.08), rgba(67, 208, 192, 0.08));
}

.price-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-main);
}

.price-highlight span {
  color: var(--text-sub);
  font-size: 0.9rem;
}

.price-fit {
  margin: 0;
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.65;
}

.setup-inline {
  display: grid;
  gap: 0.45rem;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 45, 74, 0.08);
  background: rgba(244, 248, 252, 0.72);
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.setup-inline-label {
  margin: 0;
  color: var(--surface-dark-tone);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-inline-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.setup-price-default,
.setup-price-annual {
  font-weight: 700;
  transition:
    color 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s ease,
    text-decoration-color 0.24s ease;
}

.setup-price-default {
  color: var(--text-main);
}

.setup-price-annual {
  color: var(--blue-mid);
  opacity: 0.64;
}

.price-card.is-annual-preview .setup-inline {
  border-color: rgba(30, 95, 168, 0.14);
  background: linear-gradient(135deg, rgba(30, 95, 168, 0.08), rgba(67, 208, 192, 0.08));
  transform: translateY(-1px);
}

.price-card.is-annual-preview .setup-price-default {
  color: var(--text-sub);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-card.is-annual-preview .setup-price-annual {
  opacity: 1;
  transform: translateY(-1px);
}

.button-annual {
  justify-content: center;
  color: var(--surface-dark-tone);
  background: rgba(244, 248, 252, 0.9);
  border: 1px solid rgba(30, 95, 168, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.button-annual:hover,
.button-annual:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, var(--surface-dark-tone) 0%, var(--surface-dark) 100%);
  border-color: transparent;
}

.trial-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 242, 252, 0.9));
}

.trial-copy {
  display: grid;
  gap: 0.35rem;
}

.trial-box strong {
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.trial-box p {
  margin: 0;
  color: var(--text-sub);
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
}

.process-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.process-bg-one {
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 95, 168, 0.15) 0%, transparent 70%);
}

.process-bg-two {
  bottom: -100px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(30, 95, 168, 0.22) 0%, transparent 70%);
}

.process-header {
  position: relative;
  z-index: 1;
}

.process-header .section-label {
  background: rgba(30, 95, 168, 0.18);
  color: var(--blue-mid);
  border: 1px solid rgba(30, 95, 168, 0.16);
}

.process-header .section-title {
  color: #ffffff;
}

.process-header .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

.steps-wrapper {
  position: relative;
  z-index: 1;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.steps-flow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.steps-flow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.steps-flow path {
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps-wrapper.is-flowing .steps-flow {
  opacity: 1;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.step-bubble {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 95, 168, 0.38);
  background: rgba(30, 95, 168, 0.22);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(77, 191, 234, 0);
}

.step-bubble svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255, 255, 255, 0.92);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-mid);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
}

.step-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

.step-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(30, 95, 168, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 86% 82%, rgba(69, 196, 176, 0.1) 0%, transparent 24%),
    linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-dark-alt) 100%);
}

.contact-section .section-label {
  background: rgba(30, 95, 168, 0.18);
  border: 1px solid rgba(30, 95, 168, 0.16);
  color: var(--blue-mid);
}

.contact-section .section-title {
  color: #ffffff;
}

.contact-section .section-sub {
  color: rgba(255, 255, 255, 0.64);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon-wrap svg {
  stroke: rgba(255, 255, 255, 0.92);
}

.contact-row-text strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-row-text span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-row-text span a {
  color: #ffffff;
}

.contact-note {
  margin-top: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-cta-box {
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(232, 241, 251, 0.92));
}

.contact-cta-box h3 {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 1.55rem;
}

.contact-cta-box p {
  margin: 0 0 28px;
  color: var(--text-sub);
  font-size: 0.96rem;
}

.contact-cta-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
}

.contact-cta-meta span {
  color: rgba(15, 45, 74, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-cta-box .button {
  width: 100%;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}

.contact-divider span {
  color: var(--gray-mid);
  font-size: 0.78rem;
}

.contact-email-link {
  display: block;
  text-align: center;
  color: var(--surface-dark-tone);
  font-size: 0.92rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.legal-section {
  background: var(--off-white);
}

.legal-section-alt {
  background: var(--white);
}

.legal-stack {
  max-width: 860px;
}

.legal-card {
  padding: 26px 28px;
  border-radius: var(--radius-xl);
}

.legal-accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.legal-accordion summary::-webkit-details-marker {
  display: none;
}

.legal-summary-copy .section-title {
  margin-bottom: 0;
}

.legal-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 1px solid rgba(30, 95, 168, 0.12);
}

.legal-toggle::before,
.legal-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-mid);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease;
}

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

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

.legal-copy {
  display: grid;
  gap: 14px;
  padding-top: 24px;
}

.legal-copy h3 {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 1rem;
}

.legal-copy p {
  margin: 0;
  color: var(--text-sub);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.legal-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-sub);
}

.legal-copy li {
  margin: 0 0 6px;
  line-height: 1.8;
}

.site-footer {
  padding: 36px 0;
  background: var(--surface-dark);
}

.mobile-sticky-cta {
  display: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.82rem;
}

.trace-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

.trace-frame svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.trace-frame rect {
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(69, 196, 176, 0.18));
}

.is-tracing .trace-frame {
  opacity: 1;
}

@media (max-width: 1100px) {
  .services-inner,
  .contact-inner,
  .hero-inner,
  .steps-track {
    grid-template-columns: 1fr;
  }

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

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

  .setup-banner {
    grid-template-columns: 1fr;
  }

  .setup-banner-dual {
    grid-template-columns: 1fr;
  }

  .setup-banner ul {
    grid-template-columns: 1fr;
  }

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

  .pricing-note-bar {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

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

  .hero-inner {
    gap: 52px;
  }

  .services-inner,
  .contact-inner {
    gap: 48px;
  }

  .trust-inner {
    gap: 26px 34px;
  }

  .step {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding-top: 76px;
  }

  body.has-mobile-sticky {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding: 76px 0;
  }

  .container {
    padding: 0 22px;
  }

  .nav-inner {
    min-height: 64px;
    gap: 14px;
  }

  .nav-logo {
    gap: 9px;
    font-size: 0.92rem;
  }

  .nav-logo-mark {
    width: 32px;
    height: 32px;
  }

  .mobile-menu {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(226, 234, 244, 0.9);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky-cta .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-sticky-action {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(30, 95, 168, 0.14);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 45, 74, 0.08);
  }

  .mobile-sticky-action:hover {
    text-decoration: none;
  }

  .mobile-sticky-audio {
    background: rgba(255, 255, 255, 0.96);
    color: var(--surface-dark-tone);
  }

  .mobile-sticky-audio.is-playing,
  .mobile-sticky-audio:focus-visible {
    background: linear-gradient(180deg, var(--surface-dark-tone) 0%, var(--surface-dark) 100%);
    color: #ffffff;
    border-color: transparent;
  }

  .mobile-sticky-contact {
    background: var(--surface-dark-tone);
    color: #ffffff;
  }

  .mobile-sticky-contact:focus-visible {
    background: var(--surface-dark);
    color: #ffffff;
  }

  .hero-section {
    padding: 118px 0 72px;
  }

  .page-main {
    padding-top: 64px;
  }

  .hero-inner {
    gap: 40px;
  }

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

  .hero-preview {
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  .hero-float {
    min-width: 142px;
    padding: 11px 13px;
    width: 100%;
  }

  .hero-float::before,
  .hero-float::after {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero-desc,
  .section-sub {
    max-width: 100%;
  }

  .hero-desc {
    margin-bottom: 28px;
  }

  .hero-badge,
  .hero-buttons,
  .hero-mini-proof,
  .hero-audio-block {
    justify-content: center;
  }

  .hero-audio-block {
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .hero-pricing-link {
    justify-content: center;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .button {
    flex: 1 1 240px;
  }

  .button-audio {
    width: 100%;
    max-width: 320px;
  }

  .hero-mini-proof span {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .hero-float-one {
    position: static;
  }

  .hero-float-two {
    position: static;
  }

  .hero-float-three {
    position: static;
    grid-column: 1 / -1;
  }

  .bot-preview {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .bot-audio-rail {
    left: 63%;
    width: 38%;
  }

  .bot-equalizer {
    height: 72px;
    gap: 6px;
  }

  .bot-eq-bar {
    height: 6px;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
  }

  .trust-item {
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services-inner,
  .contact-inner {
    gap: 38px;
  }

  .services-list {
    gap: 12px;
    margin-top: 24px;
  }

  .feature-card,
  .advantage-card,
  .price-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ui-mockup {
    max-width: 420px;
    padding: 24px;
  }

  .advantages-header,
  .pricing-header,
  .process-header {
    margin-bottom: 42px;
  }

  .steps-track {
    gap: 28px;
  }

  .step {
    padding: 0;
  }

  .step-bubble {
    margin-bottom: 18px;
  }

  .setup-banner {
    padding: 24px;
  }

  .setup-tier {
    padding: 20px 18px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .price-card {
    gap: 14px;
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .faq-card {
    padding: 20px 18px;
  }

  .price-card h3 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .price-audience,
  .price-fit {
    font-size: 0.92rem;
  }

  .trial-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .trial-box {
    padding: 20px;
  }

  .trial-box .button {
    width: 100%;
  }

  .setup-inline-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pricing-divider {
    margin-top: 1.6rem;
  }

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

  .contact-info {
    gap: 18px;
    margin-top: 26px;
  }

  .contact-row {
    align-items: flex-start;
  }

  .contact-row-text {
    min-width: 0;
  }

  .contact-row-text span,
  .contact-row-text span a {
    overflow-wrap: anywhere;
  }

  .contact-cta-box {
    padding: 28px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-accordion summary {
    align-items: flex-start;
    min-height: 54px;
  }
}

@media (max-width: 520px) {
  .advantages-section {
    padding-top: 64px;
  }

  .container {
    padding: 0 18px;
  }

  .hero-buttons,
  .footer-links {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  body.has-mobile-sticky {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-menu .container {
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .mobile-sticky-cta {
    padding-top: 8px;
  }

  .mobile-sticky-cta .container {
    gap: 8px;
  }

  .mobile-sticky-action {
    min-height: 50px;
    padding: 0.82rem 0.8rem;
    font-size: 0.86rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero-section {
    padding-top: 108px;
    padding-bottom: 64px;
  }

  .hero-title {
    margin-bottom: 16px;
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

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

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .hero-audio-block {
    width: 100%;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 18px;
  }

  .hero-audio-label {
    font-size: 0.9rem;
  }

  .hero-mini-proof {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-mini-proof span {
    width: 100%;
    min-height: 42px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 9px 10px;
    line-height: 1.25;
  }

  .hero-float {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0;
  }

  .hero-float::before,
  .hero-float::after {
    display: none;
  }

  .hero-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    aspect-ratio: auto;
  }

  .bot-preview {
    min-height: 252px;
    grid-column: 1 / -1;
  }

  .hero-float-three {
    grid-column: 1 / -1;
  }

  .bot-audio-rail {
    left: 62%;
    width: 36%;
  }

  .bot-equalizer {
    height: 58px;
    gap: 4px;
  }

  .bot-eq-bar {
    height: 5px;
  }

  .hero-float strong {
    font-size: 0.86rem;
  }

  .hero-float span {
    font-size: 0.76rem;
  }

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

  .trust-item {
    padding: 13px 14px;
  }

  .section-title {
    margin-top: 14px;
  }

  .feature-card,
  .advantage-card {
    gap: 14px;
    padding: 18px;
  }

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

  .advantage-card {
    padding: 16px 14px;
  }

  .advantage-title {
    font-size: 0.95rem;
  }

  .advantage-desc {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .service-icon,
  .advantage-icon,
  .contact-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .ui-mockup {
    padding: 18px;
    border-radius: 20px;
  }

  .ui-call-item {
    padding: 10px 11px;
  }

  .process-header {
    margin-bottom: 34px;
  }

  .steps-track {
    gap: 24px;
  }

  .step-bubble {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .step-bubble svg {
    width: 23px;
    height: 23px;
  }

  .step-num {
    width: 20px;
    height: 20px;
    font-size: 0.62rem;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .step-desc {
    font-size: 0.84rem;
  }

  .faq-card summary {
    font-size: 0.92rem;
  }

  .faq-card p {
    font-size: 0.88rem;
  }

  .setup-banner {
    padding: 20px 18px;
    gap: 18px;
  }

  .setup-tier {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .setup-banner h3 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .pricing-divider {
    gap: 10px;
  }

  .pricing-divider span,
  .pricing-intro-label,
  .setup-label,
  .price-tier {
    font-size: 0.74rem;
  }

  .pricing-note-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pricing-note {
    padding: 13px 12px;
  }

  .pricing-note strong,
  .pricing-note span {
    font-size: 0.82rem;
  }

  .price-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .price-card-featured {
    transform: none;
  }

  .price-badge {
    top: -14px;
    right: 14px;
    padding: 0.38rem 0.72rem;
    font-size: 0.68rem;
  }

  .price-highlight {
    padding: 14px;
  }

  .trial-box {
    padding: 18px;
  }

  .trial-box strong {
    font-size: 0.98rem;
  }

  .contact-row {
    gap: 12px;
  }

  .contact-row-text strong {
    font-size: 0.74rem;
  }

  .contact-row-text span {
    font-size: 0.9rem;
  }

  .contact-note {
    margin-top: 22px;
    padding: 14px 16px;
    font-size: 0.84rem;
  }

  .contact-cta-box {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contact-cta-box h3 {
    font-size: 1.34rem;
  }

  .legal-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .legal-accordion summary {
    gap: 14px;
  }

  .legal-copy {
    gap: 12px;
    padding-top: 18px;
  }

  .legal-copy p,
  .legal-copy li {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .legal-toggle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .footer-links a {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}
