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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
body.has-floating-call {
  padding-bottom: 0;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  padding: 12px 24px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}
.btn--primary:hover {
  background: #0069d9;
  border-color: #0069d9;
}
.btn--ghost {
  background: transparent;
  color: #0a192f;
  border: 2px solid #e2e8f0;
}
.btn--ghost:hover {
  border-color: #0a192f;
}
.btn--white-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn--white-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.btn--lg {
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 12px;
}
.btn--sm {
  font-size: 14px;
  padding: 10px 18px;
}
.btn--full {
  width: 100%;
  padding: 16px 24px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-heading__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.16);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.section-heading__title {
  font-size: 36px;
  font-weight: 700;
  color: #0a192f;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-heading__subtitle {
  font-size: 17px;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: #64748b;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #e8f2ff;
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #007bff;
  border-bottom: 2px solid #007bff;
  transform: rotate(-45deg);
}
.check-list--light li {
  color: rgba(255, 255, 255, 0.88);
}
.check-list--center {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay {
  transition-delay: 0.15s;
}
.reveal--delay-1 {
  transition-delay: 0.08s;
}
.reveal--delay-2 {
  transition-delay: 0.16s;
}
.reveal--delay-3 {
  transition-delay: 0.24s;
}
.reveal--delay-4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__orb,
  .hero__screenshot-wrap,
  .floating-call__ring,
  .trusted__logos--track {
    animation: none !important;
  }
}
.topbar {
  position: relative;
  z-index: 1001;
  background: #0a192f;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.4;
}
.topbar__link {
  color: #ffffff;
  font-weight: 700;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.topbar__link:hover {
  color: #7fb0ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #edf2f7;
  box-shadow: 0 4px 24px rgba(10, 25, 47, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .site-header__phone {
    display: none;
  }
}
.site-header__login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: #0a192f;
  transition: color 0.2s;
}
.site-header__login svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.site-header__login:hover {
  color: #007bff;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s;
}
.site-logo:hover {
  transform: scale(1.02);
  opacity: 0.92;
}
.site-logo__img {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
}
.site-nav__link:hover, .site-nav__link--active {
  color: #0a192f;
}
.site-nav__item--mobile {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #0a192f;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #edf4fc 0%, #f8fafc 55%, #ffffff 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 25, 47, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 70%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.hero__orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 123, 255, 0.18);
  top: -120px;
  right: -80px;
  animation: heroOrbFloat 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 320px;
  height: 320px;
  background: rgba(10, 25, 47, 0.08);
  bottom: -60px;
  left: -60px;
  animation: heroOrbFloat 18s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 123, 255, 0.12);
  top: 40%;
  left: 35%;
  animation: heroOrbFloat 11s ease-in-out infinite 2s;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #007bff;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(0, 123, 255, 0.15);
}
.hero__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  color: #0a192f;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero__title-accent {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.hero__trust li {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  padding-left: 14px;
  position: relative;
}
.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007bff;
}
.hero__screenshot-wrap {
  position: relative;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero__screenshot {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(10, 25, 47, 0.16), 0 4px 16px rgba(10, 25, 47, 0.08);
  border: 1px solid #e2e8f0;
}
.hero__float-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(10, 25, 47, 0.12);
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  max-width: 230px;
}
.hero__float-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0a192f;
}
.hero__float-card--1 {
  top: 26px;
  left: -34px;
  animation: heroFloat 7s ease-in-out infinite 0.8s;
}
.hero__float-card--2 {
  bottom: 34px;
  right: -26px;
  animation: heroFloat 8s ease-in-out infinite 1.6s;
}
.hero__float-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-top: 2px;
}
.hero__float-icon--green {
  background: #e7f6ec;
  color: #1e9e4f;
}
.hero__float-icon--blue {
  background: #e8f2ff;
  color: #007bff;
}

@keyframes heroOrbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -15px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 10px) scale(0.95);
  }
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.strengths {
  padding: 56px 0;
  border-bottom: 1px solid #edf2f7;
}
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strength-card {
  padding: 24px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.strength-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(0, 123, 255, 0.25);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
}
.strength-card:hover .strength-card__icon {
  background: #007bff;
}
.strength-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #0a192f;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}
.strength-card__icon svg {
  width: 20px;
  height: 20px;
}
.strength-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 8px;
}
.strength-card__text {
  font-size: 14px;
  line-height: 1.6;
}

.trusted {
  padding: 32px 0;
  background: #ffffff;
}
.trusted__inner {
  text-align: center;
}
.trusted__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 16px;
}
.trusted__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trusted__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.trusted__logos--track {
  flex-wrap: nowrap;
  width: max-content;
  animation: trustedMarquee 28s linear infinite;
}
.trusted__logos li {
  font-size: 16px;
  font-weight: 600;
  color: #0a192f;
  opacity: 0.75;
  white-space: nowrap;
  padding: 8px 20px;
  border: 1px solid #edf2f7;
  border-radius: 999px;
  background: #f8fafc;
}

@keyframes trustedMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.feature-tabs {
  padding: 96px 0;
}
.feature-tabs--page {
  padding: 48px 0 96px;
}
.feature-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.feature-tabs__btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: all 0.25s ease;
}
.feature-tabs__btn:hover:not(.is-active) {
  border-color: #007bff;
  color: #007bff;
  transform: translateY(-1px);
}
.feature-tabs__btn.is-active {
  background: #0a192f;
  color: #ffffff;
  border-color: #0a192f;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.2);
}
.feature-tabs__panel {
  display: none;
}
.feature-tabs__panel.is-active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}
.feature-tabs__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.feature-tabs__title {
  font-size: 28px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 16px;
  line-height: 1.25;
}
.feature-tabs__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-tabs__copy .btn {
  margin-top: 28px;
}
.feature-tabs__media img {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-preview {
  padding: 96px 0;
  background: #f8fafc;
}
.features-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.features-preview__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.features-preview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
  border-color: rgba(0, 123, 255, 0.25);
}
.features-preview__card:hover .features-preview__link {
  color: #0069d9;
}
.features-preview__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.features-preview__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #007bff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.25);
}
.features-preview__icon svg {
  width: 18px;
  height: 18px;
}
.features-preview__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #007bff;
}
.features-preview__title {
  font-size: 18px;
  font-weight: 700;
  color: #0a192f;
  line-height: 1.35;
  margin-bottom: 10px;
}
.features-preview__text {
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.features-preview__link {
  font-size: 14px;
  font-weight: 600;
  color: #007bff;
  transition: color 0.2s;
}
.features-preview__cta {
  text-align: center;
}

.differentiators {
  padding: 80px 0;
  background: #eef2f6;
}
.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.differentiators__compare {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
}
.differentiators__compare a {
  color: #007bff;
  font-weight: 600;
}
.differentiators__compare a:hover {
  text-decoration: underline;
}

.diff-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 28px 32px;
  box-shadow: 0 1px 3px rgba(10, 25, 47, 0.06);
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.diff-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #007bff, rgba(0, 123, 255, 0.35));
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
  border-color: rgba(0, 123, 255, 0.2);
}
.diff-card:hover::before {
  opacity: 1;
}
.diff-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(10, 25, 47, 0.06);
  pointer-events: none;
}
.diff-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 10px;
}
.diff-card__text {
  font-size: 15px;
  line-height: 1.65;
}

.testimonials {
  padding: 96px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 44px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
  border-color: rgba(0, 123, 255, 0.25);
}
.testimonial-card__mark {
  position: absolute;
  top: 8px;
  left: 22px;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: rgba(0, 123, 255, 0.18);
  pointer-events: none;
  font-family: Georgia, serif;
}
.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: #0a192f;
  margin-bottom: 24px;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f2ff;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: #0a192f;
  font-size: 14px;
}
.testimonial-card__role {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}

.demo-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0a192f 0%, #10233f 60%, #12294a 100%);
  color: #ffffff;
}
.demo-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.22), transparent 70%);
  top: -220px;
  right: -140px;
  pointer-events: none;
}
.demo-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.demo-section__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.demo-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}
.demo-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.demo-section__thumb {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}
.demo-section__thumb:hover {
  transform: scale(1.015);
}
.demo-section__thumb:hover .demo-section__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #0069d9;
}
.demo-section__thumb img {
  width: 100%;
}
.demo-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #007bff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}
.demo-section__play svg {
  margin-left: 3px;
}

.cta-banner {
  padding: 0 0 96px;
}
.cta-banner__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(120deg, #0a192f 0%, #0f2a52 70%, #0d3266 100%);
  border-radius: 16px;
  padding: 48px;
}
.cta-banner__inner::before, .cta-banner__inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta-banner__inner::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -130px;
}
.cta-banner__inner::after {
  width: 220px;
  height: 220px;
  right: -50px;
  top: -70px;
  border-color: rgba(0, 123, 255, 0.28);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.cta-banner__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 560px;
}
.cta-banner__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.how-it-works {
  padding: 0 0 96px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.steps__connector {
  flex: 0 0 40px;
  height: 2px;
  background: #e2e8f0;
  margin-top: 28px;
}

.step-card {
  flex: 1;
  text-align: center;
  max-width: 240px;
}
.step-card__icon {
  position: relative;
  width: 56px;
  height: 56px;
  background: #007bff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.28);
}
.step-card__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0a192f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}
.step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 10px;
}
.step-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.faq {
  padding: 0 0 96px;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0a192f;
}
.faq-item__chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: #94a3b8;
}
.faq-item__answer {
  padding: 0 0 20px;
}
.faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

.contact {
  padding: 0 0 96px;
}
.contact--page {
  padding: 0 0 64px;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
}
.contact-form-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 8px;
}
.contact-form-card__lead {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0a192f;
}
.form-group input, .form-group textarea {
  font-family: inherit;
  font-size: 15px;
  color: #0a192f;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}
.form-group input.is-invalid, .form-group textarea.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-info {
  padding-top: 8px;
}
.contact-info__title {
  font-size: 32px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 16px;
}
.contact-info__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info__list a {
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-info__list a:hover {
  color: #007bff;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f2ff;
  border-radius: 8px;
  color: #007bff;
}
.contact-info__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 56px;
  background: linear-gradient(180deg, #edf4fc 0%, #ffffff 100%);
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(10, 25, 47, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero--compact {
  padding-bottom: 44px;
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.16);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #0a192f;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero__subtitle {
  font-size: 18px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.pricing {
  padding: 24px 0 96px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.pricing__note {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.pricing__note h2 {
  font-size: 24px;
  color: #0a192f;
  margin-bottom: 20px;
}
.pricing__note-text {
  margin-top: 24px;
  font-size: 15px;
}
.pricing__note-text a {
  color: #007bff;
  font-weight: 600;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
  border-color: rgba(0, 123, 255, 0.35);
}
.pricing-card--highlight {
  border-color: #007bff;
  border-width: 2px;
  box-shadow: 0 16px 48px rgba(0, 123, 255, 0.16);
  transform: translateY(-6px);
}
.pricing-card--highlight:hover {
  transform: translateY(-8px);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.35);
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 12px;
}
.pricing-card__desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.pricing-card__price {
  font-size: 34px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 2px;
  line-height: 1.15;
}
.pricing-card__period {
  font-size: 16px;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 2px;
}
.pricing-card__per-user {
  font-size: 14px;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 4px;
}
.pricing-card__price-note {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 24px;
}
.pricing-card__features {
  margin-bottom: 28px;
}
.pricing-card__features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #007bff;
  border-bottom: 2px solid #007bff;
  transform: rotate(-45deg);
}

.compare-intro {
  padding: 0 0 48px;
}
.compare-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-intro__card {
  border-radius: 16px;
  padding: 28px;
}
.compare-intro__card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.compare-intro__card p {
  font-size: 15px;
  line-height: 1.65;
}
.compare-intro__card--us {
  background: #e8f2ff;
  color: #0a192f;
}
.compare-intro__card--us h2 {
  color: #0a192f;
}
.compare-intro__card--them {
  background: #eef2f6;
  color: #64748b;
}
.compare-intro__card--them h2 {
  color: #0a192f;
}

.compare-table-section {
  padding: 0 0 64px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(10, 25, 47, 0.06);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid #edf2f7;
  vertical-align: top;
}
.compare-table thead th {
  background: #0a192f;
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table thead th:nth-child(2) {
  color: #7cc0ff;
}
.compare-table tbody th {
  width: 22%;
  font-weight: 600;
  color: #0a192f;
  background: #f8fafc;
}
.compare-table tbody td:first-of-type {
  background: rgba(232, 242, 255, 0.45);
  font-weight: 500;
  color: #0a192f;
}
.compare-table tr:last-child th, .compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table__note {
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

.compare-strengths {
  padding: 64px 0;
  background: #eef2f6;
}
.compare-strengths__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-strengths__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 500;
  color: #0a192f;
}
.compare-strengths__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #007bff;
  border-radius: 50%;
  opacity: 0.15;
}
.compare-strengths__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #007bff;
  border-bottom: 2px solid #007bff;
  transform: rotate(-45deg);
}

.compare-audience {
  padding: 64px 0 96px;
}
.compare-audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.compare-audience__grid h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 16px;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal[hidden] {
  display: none;
}
.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.65);
}
.demo-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(10, 25, 47, 0.12);
}
.demo-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  line-height: 1;
  color: #94a3b8;
}
.demo-modal__close:hover {
  color: #0a192f;
}
.demo-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 8px;
  padding-right: 32px;
}
.demo-modal__text {
  font-size: 14px;
  margin-bottom: 16px;
}
.demo-modal__media {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #0a192f;
}
.demo-modal__media video {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  background: #0a192f;
  padding: 64px 0 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.site-footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 340px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
}
.site-footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.site-footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__col a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.site-footer__col a:hover {
  color: #ffffff;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 24px;
}
.site-footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom-note {
  color: rgba(255, 255, 255, 0.35) !important;
}

.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #007bff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 123, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.floating-call:hover {
  transform: scale(1.08);
  background: #0069d9;
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.55);
}
.floating-call:hover .floating-call__tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.floating-call__icon {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 2;
}
.floating-call__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 123, 255, 0.5);
  animation: callPulse 2.5s ease-out infinite;
}
.floating-call__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateX(8px) translateY(-50%);
  white-space: nowrap;
  background: #0a192f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
}
.floating-call__tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0a192f;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
    max-width: 640px;
    margin: 0 auto;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__float-card--1 {
    left: -8px;
  }
  .hero__float-card--2 {
    right: -8px;
  }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .strengths__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-tabs__panel-grid {
    grid-template-columns: 1fr;
  }
  .feature-tabs__media {
    order: -1;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .demo-section__grid {
    grid-template-columns: 1fr;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--highlight {
    transform: none;
  }
  .steps {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .steps__connector {
    display: none;
  }
  .step-card {
    flex: 0 0 calc(50% - 16px);
    max-width: none;
  }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .compare-intro__grid, .compare-audience__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav.is-open {
    max-height: 460px;
    padding: 16px 0;
  }
  .site-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }
  .site-nav__link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
  }
  .site-nav__item--mobile {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header__actions .btn--primary,
  .site-header__actions .site-header__login {
    display: none;
  }
  .section-heading__title {
    font-size: 28px;
  }
  .page-hero__title {
    font-size: 30px;
  }
  .hero {
    padding-top: 32px;
  }
  .hero__title {
    font-size: 32px;
  }
  .differentiators__grid {
    grid-template-columns: 1fr;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .hero__float-card {
    display: none;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__bottom {
    justify-content: center;
    text-align: center;
  }
  .step-card {
    flex: 0 0 100%;
  }
  .strengths__grid {
    grid-template-columns: 1fr;
  }
  .features-preview__grid {
    grid-template-columns: 1fr;
  }
  .feature-tabs__nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .floating-call {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .floating-call__tooltip {
    display: none;
  }
  .site-logo__img {
    height: 30px;
  }
}
