.ak-pro-pricing {
  font-family: 'Poppins', sans-serif;
  padding: 80px 0;
  text-align: center;
}

.ak-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9aa3ad;
}

.ak-title {
  margin-bottom: 45px;
}

.ak-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ak-pricing-card {
  background: linear-gradient(180deg, #eef8ff 0%, #ffffff 55%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all .35s ease;
}

.ak-pricing-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(180deg, #dff1ff 0%, #ffffff 60%);
  box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}

.ak-price {
  font-size: 32px;
  font-weight: 700;
}

.ak-price small {
  font-size: 13px;
  font-weight: 500;
  color: #777;
}

.ak-feature-list {
  list-style: none;
  padding: 0;

  text-align:left;
  width: 65%;
  margin: 20px auto;
}

.ak-feature-list li {
  padding: 7px 0;
  font-size: 14px;
  display: block;
  justify-content: center;
  gap: 8px;
}

.ak-tooltip-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eef3f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  position: relative;
}

.ak-tooltip-box {
  display: none;
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18,18,18,0.95);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  width: 250px;
  font-size: 12px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.ak-tooltip-icon:hover .ak-tooltip-box {
  display: block;
}

.ak-addons {
  margin-top: 22px;
  font-size: 14px;
  color: #6f7b86;
}

.ak-addon-title {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.ak-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.ak-btn:hover {
  background: #111;
  color: #fff;
}

.ak-notes {
  margin-top: 45px;
  font-size: 14px;
  color: #6f7b86;
  max-width: 900px;
  margin-inline: auto;
}

.ak-notes-title {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}


@media(max-width:800px){


.ak-pricing-grid {
    width: 100% !important;
    display: block;
    padding: 20px;
}

.ak-pricing-card {
  
    margin-bottom: 20px;
}

.ak-feature-list {

  width: 100%;

}



}




/*********************************
 MOBILE CAROUSEL FOR PRICING
**********************************/

@media (max-width: 768px) {

  .ak-pricing-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .ak-pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .ak-pricing-card {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}



/* ===============================
   MOBILE ONLY PRICING CAROUSEL
   =============================== */
@media (max-width: 768px) {

  .ak-pricing-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding-bottom: 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ak-pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .ak-pricing-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* DOTS */
.ak-carousel-dot {
  width: 12px;              /* visible dot size */
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;

  /* 👇 IMPORTANT FOR MOBILE TOUCH */
  padding: 12px;            /* tap area big */
  box-sizing: content-box;
}

.ak-carousel-dot.active {
  background: #111;
  transform: scale(1.4);
}

}




@media (max-width: 768px) {

  .ak-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 6px;
    margin-bottom: 4px;
  }

  .ak-carousel-dot {
    width: 8px;            /* 👁️ smaller visible dot */
    height: 8px;
    border-radius: 50%;
    background: #d1dae4;

    padding: 8px;         /* 👆 still easy to touch */
    box-sizing: content-box;

    cursor: pointer;
    transition: 
      transform 0.25s ease,
      background 0.25s ease;
  }

  .ak-carousel-dot.active {
    background: #111;
    transform: scale(1.15); /* slightly less than before */
  }
}