.container {
  max-width: 860px;
  color: #333;
}

.hero-image {
  max-width: 320px;
  width: 100%;
}


.hero {
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.50),
      rgba(255, 255, 255, 0.50)
    ),
    url("/images/hero-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-text {
  max-width: 220px;
  font-size: 0.8rem;
  margin: 0 auto;
}

.small {
  font-size: 0.8rem;
  margin: 0 auto;
}

.card {
  border-radius: 18px;
  border: 1px solid #c8ebd6;
}

.card-primary {
  border-radius: 18px;
  border: 1px solid #B6D4FE;
}

.btn {

  border-radius: 12px;

}

.h1 {
  letter-spacing: 0.05em;
}

.hero-text {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.small-text {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.btn {
  font-size: 1rem;
}

.use-case-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e7f5eb;
}

.use-case-icon i {
  font-size: 1.5rem;
  color: #2f7d4f;
}


.warning-box {
  border: 1px solid #f0c85a;
  border-radius: 12px;
  background: #fffdf5;

  padding: 20px 28px;

  font-size: 0.8rem;
  color: #7b4b21;
}

.warning-box p {
  margin-bottom: 12px;
}

.warning-box i {
  margin-right: 8px;
}

.use-case-item {
  border-right: 1px solid #e9ecef;
}

.use-case-steps {
  position: relative;
}

.use-case-steps:not(:last-child)::after {
  content: "›";

  position: absolute;
  right: -18px;
  top: 50%;

  transform: translateY(-50%);

  color: #198754;
  font-size: 2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

h5 {
  font-size: 0.875rrem;
  font-weight: 600;
}

h6 {
  font-size: 0.75rem;
}

.feature-list {
  min-height: 140px;
}

.pricing-note {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;

  border: 1px solid #f0c85a;
  border-radius: 12px;
  background: #fffdf5;

  padding: 16px 24px;

  font-size: 0.8rem;
  color: #7b4b21;
}

p {
  font-size: 0.9rem;
  line-height: 1.7;
}


.nav-tabs .nav-link {
  border: 2px solid transparent;
  border-bottom: 0;
  color: #6c757d;
}

.nav-tabs .tab-pdf {
  color: #198754;
}

.nav-tabs .tab-pdf.active {
  color: #198754 !important;
  background: #f7fcf9;
  border-color: #198754;
}

.nav-tabs .tab-move {
  color: #0d6efd;
}

.nav-tabs .tab-move.active {
  color: #0d6efd !important;
  background: #f5f9ff;
  border-color: #0d6efd;
}

.pro {
  background: #f5f9ff;
  border-color: #0d6efd;
  color: #0d6efd;
  padding-top: 0.45rem; 
  padding-bottom: 0.45rem;
}

.nav-tabs .nav-link {
  min-width: 180px;
  text-align: center;
}


.form-check-success .form-check-input:checked {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

.form-check-success .form-check-input:focus {
  border-color: var(--bs-success);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.legal-article {
  max-width: 42rem;
}

.legal-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
}

.legal-body h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.legal-body ul {
  padding-left: 1.25rem;
}

.legal-body li + li {
  margin-top: 0.35rem;
}

.legal-body a {
  color: var(--bs-success);
  text-decoration: underline;
  text-underline-offset: 2px;
}




@media (max-width: 767px) {
  .hero {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .hero-text {
    font-size: 0.95rem;
  }

  .hero .badge {
    white-space: normal;
  }

  .hero-image {
    max-width: 220px;
    margin-top: 1rem;
  }

  .use-case-item {
    border-right: 0;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.15rem;
  }

  .pricing .card.h-100 {
    height: auto !important;

  }

  .pricing .feature-list {
    min-height: 0;

  }
}


