:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-surface: #f6f7f9;
  --color-panel: #ffffff;
  --color-text: #1f2933;
  --color-heading: #111827;
  --color-muted: #667085;
  --color-border: #d9dee7;
  --color-border-soft: #edf0f4;
  --color-primary: #1f6feb;
  --color-primary-dark: #1759c4;
  --color-success: #18794e;
  --shadow-subtle: 0 1px 2px rgba(16, 24, 40, .05);
  --radius: 6px;
  --header-height: 72px;
}

[data-bs-theme="dark"] {
  color-scheme: dark;
  --color-bg: #0f141b;
  --color-surface: #151b24;
  --color-panel: #111821;
  --color-text: #d7dde6;
  --color-heading: #f3f5f8;
  --color-muted: #9aa4b2;
  --color-border: #2a3442;
  --color-border-soft: #202a36;
  --color-primary: #6aa1ff;
  --color-primary-dark: #8db7ff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--color-border-soft);
  box-shadow: var(--shadow-subtle);
}

.navbar {
  min-height: var(--header-height);
}

.brand-mark {
  align-items: center;
  color: var(--color-heading);
  display: inline-flex;
  font-weight: 700;
  min-height: 34px;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
}

.brand-logo {
  display: block;
  height: 34px;
  max-width: min(250px, 58vw);
  object-fit: contain;
  width: auto;
}

.brand-logo-scroll {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.site-header.is-scrolled .brand-logo-default {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-scroll {
  opacity: 1;
}

.nav-link {
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  font-weight: 600;
  padding-left: .9rem !important;
  padding-right: .9rem !important;
}

.site-header.is-scrolled .nav-link {
  color: #4b5563;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus {
  color: var(--color-primary);
}

.btn {
  border-radius: 6px;
  font-weight: 700;
  min-height: 42px;
  padding: .66rem 1rem;
}

.btn-lg {
  min-height: 48px;
  padding: .8rem 1.2rem;
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-outline-secondary {
  border-color: #cfd6e1;
  color: #344054;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: #f3f4f6;
  border-color: #b8c0cc;
  color: #111827;
}

.hero-section {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: var(--header-height) 0 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  background: rgba(0, 0, 0, .28);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .72) 58%, #fff 100%);
  bottom: 0;
  content: "";
  height: 250px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-background-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-section > .container {
  align-items: center;
  display: grid;
  flex: 1;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  justify-items: start;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  text-align: left;
}

.reviews-section {
  background: #fff;
  padding: 40px 0 16px;
}

.reviews-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: calc(var(--bs-gutter-x) * -.5);
  margin-right: calc(var(--bs-gutter-x) * -.5);
}

.review-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  color: var(--color-heading);
  padding: 28px;
}

.review-stars {
  color: var(--color-primary);
  font-size: .9rem;
  letter-spacing: .14em;
  line-height: 1;
  margin-bottom: 14px;
}

.review-card p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-card strong {
  color: var(--color-heading);
  display: block;
  font-size: .92rem;
  font-weight: 800;
}

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

.section-muted {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-soft);
  border-top: 1px solid var(--color-border-soft);
}

.section-label {
  color: var(--color-primary);
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-heading);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 3.35vw, 3.65rem);
  font-weight: 720;
  line-height: .96;
  margin: 0;
  max-width: 760px;
}

.hero-section h1 {
  color: #fff;
}

.hero-title-line {
  display: block;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 740;
  line-height: 1.12;
  margin-top: .35rem;
}

h3 {
  font-size: 1.08rem;
  font-weight: 720;
}

.hero-copy,
.section-copy {
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-copy {
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 30px;
}

.hero-actions .btn {
  background: transparent;
  border-color: rgba(255, 255, 255, .9);
  border-radius: 999px;
  color: #fff;
  font-size: .95rem;
  min-width: 140px;
}

.hero-actions .btn:hover,
.hero-actions .btn:focus {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
}

.logo-marquee-section {
  background: transparent;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  display: none;
}

.logo-marquee-track {
  animation: logoMarquee 34s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

.logo-marquee-item {
  align-items: center;
  background: transparent;
  display: flex;
  flex: 0 0 150px;
  height: 72px;
  justify-content: center;
  padding: 14px 18px;
}

.logo-marquee-item img {
  display: block;
  filter: saturate(.9);
  max-height: 38px;
  max-width: 112px;
  object-fit: contain;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

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

.features-section {
  background: url("../img/background.gif") center center / cover no-repeat;
  position: relative;
}

.features-section::before {
  background: rgba(255, 255, 255, .82);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

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

.features-title {
  margin-bottom: 48px;
  max-width: 920px;
}

.features-title h2 {
  max-width: 820px;
}

.features-title .section-copy {
  margin-top: 16px;
  max-width: 780px;
}

.module-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plain-panel,
.pricing-card,
.process-list article {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.module-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid #eef2f7;
  border-radius: 0;
  box-shadow: none;
  min-height: 352px;
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.module-card:hover {
  border-color: rgba(31, 111, 235, .45);
  box-shadow: none;
  transform: translateY(-6px);
}

.module-icon-wrap {
  align-items: center;
  background: linear-gradient(135deg, rgba(31, 111, 235, .1), rgba(35, 194, 255, .16));
  border: 1px solid rgba(31, 111, 235, .08);
  border-radius: 50%;
  color: var(--color-primary);
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 24px;
  width: 64px;
}

.module-icon {
  color: var(--color-primary);
  height: 32px;
  width: 32px;
}

.module-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.module-card p,
.plain-panel p,
.pricing-card li,
.accordion-body,
.site-footer p,
.footer-links a {
  color: var(--color-muted);
}

.module-card p {
  font-size: .96rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

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

.module-card li {
  color: #465466;
  display: grid;
  font-size: .92rem;
  gap: 10px;
  grid-template-columns: 8px 1fr;
  line-height: 1.45;
}

.module-card li::before {
  background: linear-gradient(135deg, var(--color-primary), #23c2ff);
  border-radius: 50%;
  content: "";
  height: 6px;
  margin-top: 8px;
  width: 6px;
}

.plain-panel {
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  justify-content: space-between;
  min-height: 238px;
  padding: 28px;
}

.panel-kicker {
  color: var(--color-primary) !important;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: .55rem;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-list article {
  border-radius: 0;
  min-height: 138px;
  padding: 24px;
}

.process-list article:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-list article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-list span {
  align-items: center;
  background: #eef4ff;
  border: 1px solid #c9ddff;
  border-radius: 999px;
  color: var(--color-primary);
  display: inline-flex;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  margin-bottom: 22px;
  width: 30px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: #344054;
  font-weight: 650;
  padding: .58rem .9rem;
}

.pricing-card {
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 30px;
  position: relative;
  transition: border-color .16s ease, transform .16s ease;
  width: 100%;
}

.pricing-card:hover,
.pricing-card:focus-visible,
.pricing-card.is-chosen {
  border-color: #19743b;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card:focus-visible {
  outline: 3px solid rgba(25, 116, 59, .22);
  outline-offset: 3px;
}

#preturi .row > [class*="col-"] {
  display: flex;
}

.pricing-card-selected {
  border: 2px solid #19743b;
  box-shadow: none;
}

.popular-badge {
  align-self: flex-start;
  background: transparent;
  border: 0;
  border-left: 3px solid #19743b;
  border-radius: 0;
  color: #19743b;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 20px;
  padding: .08rem 0 .08rem .65rem;
  text-transform: uppercase;
}

.price-block {
  border-bottom: 1px solid var(--color-border-soft);
  margin: 18px 0 24px;
  padding-bottom: 22px;
}

.price {
  color: var(--color-heading);
  font-size: 2.35rem;
  font-weight: 780;
  line-height: 1;
  margin: 0;
}

.price-note {
  color: var(--color-muted);
  font-size: .88rem;
  font-weight: 650;
  margin-top: 8px;
}

.monthly-price {
  color: var(--color-heading);
  font-size: 1.05rem;
  font-weight: 760;
  margin-top: 14px;
}

.pricing-card ul {
  display: grid;
  flex: 1 1 auto;
  gap: .75rem;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.pricing-card > form {
  display: flex;
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
}

.pricing-card > form .btn {
  width: 100%;
}

.pricing-card-selected > form .btn {
  background: #19743b;
  border-color: #19743b;
  box-shadow: none;
}

.pricing-card-selected > form .btn:hover,
.pricing-card-selected > form .btn:focus {
  background: #125c2e;
  border-color: #125c2e;
}

.pricing-card li {
  align-items: flex-start;
  display: flex;
  gap: .55rem;
}

.pricing-card li::before {
  color: #19743b;
  content: "✓";
  font-weight: 900;
}

.pricing-note {
  color: var(--color-muted);
  font-size: .98rem;
  line-height: 1.6;
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
}

.comparison-section {
  border-top: 0;
}

.comparison-table-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  overflow-x: auto;
}

.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  min-width: 760px;
  width: 100%;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--color-text);
  font-size: .94rem;
  padding: 15px 18px;
  vertical-align: middle;
}

.comparison-table th {
  background: #f8fafc;
  color: var(--color-heading);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  color: var(--color-heading);
  font-weight: 720;
  left: 0;
  position: sticky;
  z-index: 1;
}

.comparison-table td:first-child {
  background: #fff;
}

.comparison-table th:first-child {
  background: #f8fafc;
  z-index: 2;
}

.comparison-table .is-highlighted {
  background: #f4f8ff;
  border-left: 1px solid #d6e6ff;
  border-right: 1px solid #d6e6ff;
  color: var(--color-heading);
  font-weight: 760;
}

.comparison-table th.is-highlighted {
  background: #eaf3ff;
  color: #174ea6;
}

.check {
  color: var(--color-success);
  font-weight: 900;
}

.xmark {
  color: #9aa4b2;
  font-weight: 900;
}

.warning {
  color: #b7791f;
  font-weight: 900;
}

.comparison-note,
.comparison-info-card p {
  color: var(--color-muted);
  line-height: 1.65;
}

.comparison-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  margin: 24px 0 0;
  max-width: 880px;
  padding: 24px;
}

.comparison-info-card h3 {
  margin-bottom: 10px;
}

.comparison-info-card p {
  margin: 0;
}

.faq-accordion {
  max-width: 900px;
}

.accordion-item {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  color: var(--color-heading);
  font-weight: 700;
  padding: 1.1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: var(--color-heading);
}

.accordion-button:focus {
  border-color: #9fc2ff;
  box-shadow: 0 0 0 .2rem rgba(31, 111, 235, .14);
}

.final-cta {
  padding: 72px 0;
}

.final-cta-inner {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  margin: 0 auto;
  max-width: 980px;
  padding: 48px 32px;
  text-align: center;
}

.final-cta-inner p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 14px auto 26px;
  max-width: 620px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border-soft);
  padding: 34px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 620px;
    padding: var(--header-height) 0 0;
  }

  .hero-layout {
    gap: 32px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-content {
    max-width: 720px;
  }

  .section-block {
    padding: 64px 0;
  }

  .module-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list article,
  .process-list article:first-child,
  .process-list article:last-child {
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-height: 68px;
  }

  .brand-mark {
    font-size: .96rem;
  }

  .brand-logo {
    height: 30px;
    max-width: 205px;
  }

  .hero-section {
    min-height: 600px;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .hero-layout {
    justify-items: start;
    padding: 0;
  }

  .hero-copy {
    font-size: .9rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .review-card {
    padding: 24px;
  }

  .logo-marquee-section {
    padding: 16px 0;
  }

  .logo-marquee-track {
    animation-duration: 26s;
    gap: 12px;
  }

  .logo-marquee-item {
    flex-basis: 128px;
    height: 62px;
    padding: 12px 14px;
  }

  .logo-marquee-item img {
    max-height: 32px;
    max-width: 96px;
  }

  .module-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .plain-panel,
  .pricing-card,
  .final-cta-inner {
    padding: 22px;
  }

  .module-card {
    border-radius: 0;
    min-height: auto;
    padding: 28px;
  }
}

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