:root {
  --primary: #2AAB84;
  --dot-inactive: rgba(42, 171, 132, 0.22);
  --transition: 900ms;
}

/* Force consistent viewport height */
.hero-slider {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #f5f5f5;
}

/* light bg while images load */
.hero-viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* FIXED HEIGHTS: desktop 600px, mobile 450px */
@media (min-width: 992px) {
  .hero-slide,
  .hero-viewport {
    height: 560px !important;
  }
  .navbar-brand {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .hero-slide,
  .hero-viewport {
    height: 200px;
  }
}

/* Slides fill the viewport exactly */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  transition: opacity var(--transition) ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

/* Make IMG cover the entire slide box (absolute to avoid layout influence) */
.hero-slide img {
  position: absolute;
  inset: 0;
  /* top:0;left:0;right:0;bottom:0; */
  width: 100%;
  height: 100% !important;
  display: block;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Dots styling using your primary color */
.hs-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: .5rem;
  z-index: 40;
}

.hs-dot {
  width: 12px;
  height: 4px;
  background: var(--dot-inactive);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform .18s, background .18s, box-shadow .18s;
  cursor: pointer;
}

.hs-dot.active {
  background: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(42, 171, 132, 0.14);
}

/* Grab cursor on desktop */
.hero-viewport {
  cursor: grab;
}

.hero-viewport.dragging {
  cursor: grabbing;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.accordion-grid {
  max-width: 1100px;
  margin: 28px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px;
}

@media (max-width: 900px) {
  .accordion-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }
}

.card-wrap {
  background: #fff;
  border: 1px solid rgba(15, 23, 36, 0.06);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(20, 36, 56, 0.04);
}

/* Simple, standard header */
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: transparent;
  text-align: left;
}

.acc-title {
  font-weight: 600;
  color: #0f1724;
}

.acc-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 4px;
}

.acc-button {
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
}

/* body wrapper initially collapsed */
.acc-body-wrap {
  display: none;
  overflow: hidden;
  transition: height 260ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

.acc-body {
  padding: 12px 14px 18px 14px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid rgba(15, 23, 36, 0.04);
}

.icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chev {
  transition: transform .22s ease;
  color: var(--accent);
}

.chev.open {
  transform: rotate(180deg);
}

/* hover focus states */
.acc-header:hover,
.acc-header:focus {
  background: rgba(43, 109, 246, 0.03);
}

:root {
  --primary: #2e3192;
  --primary-2: #92278f;
}

.pricing-card {
  border-radius: .9rem;
  overflow: hidden;
}

.pricing-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
}

.speed-circle {
  background-color: #ffdafe;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.speed-circle .speed {
  font-weight: 700;
  font-size: 1.25rem;
}

.speed-circle .unit {
  font-size: .75rem;
  color: #6c757d;
  margin-top: -12px;
}

.features li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #495057;
}

.feature-check {
  color: var(--primary);
  font-size: 1.05rem;
}

.btn-gradient.primary-gradient {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
  border: none;
}

.btn-gradient.primary-gradient:hover {
  filter: brightness(0.96);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 20, 31, 0.1);
  transition: all .22s ease;
}

.price {
  color: #323192;
}

/* dark price */
.pricing-card .h6 {
  margin-bottom: 0;
}

.btn-sm.btn-gradient.primary-gradient {
  padding: .35rem .6rem;
  font-size: .85rem;
}

@media (max-width: 767.98px) {
  .speed-circle {
    width: 60px;
    height: 60px;
  }
  .pricing-card {
    border-radius: .6rem;
  }
}

/* accessible focus */
.btn:focus,
.btn:focus-visible {
  outline: 3px solid rgba(42, 171, 132, 0.18);
  outline-offset: 3px;
}

/* table */
.table thead th {
  white-space: nowrap;
}

.table td,
.table th {
  vertical-align: middle;
}

.nav-logo {
  height: 70px;
}

@media (max-width: 992px) {
  .nav-logo {
    height: 60px;
  }
}

.nav-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

@media (min-width: 768px) {
  .nav-scroll {
    justify-content: center;
  }
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-link-custom {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.concern-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.concern-card img {
  max-height: 80px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.concern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.concern-card:hover img {
  filter: grayscale(0%);
}

@media (max-width: 575px) {
  .concern-card {
    height: 120px;
    padding: 20px;
  }
  .concern-card img {
    max-height: 65px;
  }
}

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.wa-float:active {
  transform: scale(0.95);
}
/*# sourceMappingURL=style.css.map */