/*==========================================================
PAGE HEADER
==========================================================*/

.page-header {
  background: #f1f7ff;

  padding: 70px 0;

  position: relative;

  overflow: hidden;
}

.page-header .section-badge {
  margin-bottom: 15px;
}

.page-header h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);

  font-weight: 800;

  color: var(--secondary);

  line-height: 1.2;

  margin: 18px 0;
}

.page-header h1 span {
  color: var(--primary);
}

.page-header p {
  max-width: 760px;

  margin: 0 auto;

  color: #64748b;

  font-size: 18px;

  line-height: 1.8;
}

.page-header::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(37, 99, 235, 0.08),
      transparent 35%
    );

  pointer-events: none;
}

/*==========================================================
PRICING SECTION
==========================================================*/

.pricing-section {
  padding: 50px 0 100px;
}

.pricing-card,
.roadmap-card {
  background: #ffffff;
  border: 1px solid #e5edf9;
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
}

.pricing-card:hover,
.roadmap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

/*==========================================================
CARD HEADER
==========================================================*/

.card-header {
  border: 0;
  background: transparent;
  padding: 0 0 30px;
}

.card-header h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.card-header p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

/*==========================================================
PRICE
==========================================================*/

.price {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.price-label {
  display: inline-block;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

/*==========================================================
FEATURE BOX
==========================================================*/

.feature-box {
  margin: 30px 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #dfe8fb;
  background: #fafcff;
}

.feature-title {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
}

.feature-box li:last-child {
  margin-bottom: 0;
}

.feature-box li i {
  color: #22c55e;
  margin-top: 3px;
  font-size: 15px;
}

/*==========================================================
BUTTON
==========================================================*/

.pricing-card .btn {
  margin-top: 10px;
  padding: 15px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
}

.secure-text {
  margin-top: 18px;
  text-align: center;
  color: #16a34a;
  font-size: 14px;
  font-weight: 500;
}

.secure-text i {
  margin-right: 6px;
}

/*==========================================================
ROADMAP
==========================================================*/

.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.roadmap-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid #dfe8fb;
  border-radius: 14px;
  background: #fcfdff;
  transition: 0.3s;
}

.roadmap-item:hover {
  border-color: var(--primary);
  background: #f5f9ff;
}

.roadmap-item > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 500;
  font-size: 15px;
}

.roadmap-item i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

.coming-soon {
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width: 1199px) {
  .page-header h1 {
    font-size: 48px;
  }

  .price {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .page-header {
    padding: 130px 0 50px;
  }

  .pricing-section {
    padding-bottom: 80px;
  }

  .pricing-card,
  .roadmap-card {
    padding: 30px;
  }

  .card-header h3 {
    font-size: 26px;
  }

  .price {
    font-size: 52px;
  }

  .feature-box {
    margin: 25px 0;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: 34px;
  }

  .page-header p {
    font-size: 15px;
  }

  .pricing-card,
  .roadmap-card {
    padding: 24px;

    border-radius: 20px;
  }

  .card-header {
    padding-bottom: 22px;
  }

  .card-header h3 {
    font-size: 24px;
  }

  .price {
    font-size: 46px;
  }

  .feature-box {
    padding: 18px;
  }

  .feature-box .col-6 {
    width: 100%;
  }

  .feature-box ul:first-child {
    margin-bottom: 15px;
  }

  .roadmap-item {
    padding: 14px;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

  .coming-soon {
    align-self: flex-start;
  }
}

@media (max-width: 575px) {
  .page-header h1 {
    font-size: 30px;
  }

  .price {
    font-size: 40px;
  }

  .pricing-card .btn {
    padding: 14px;
  }
}

/*==========================================================
SCROLL REVEAL
==========================================================*/

.reveal {
  opacity: 0;

  transform: translateY(40px);

  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

/*==========================================================
CARD ANIMATIONS
==========================================================*/

.pricing-card,
.roadmap-card {
  overflow: hidden;
  position: relative;
}

.pricing-card::before,
.roadmap-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(59, 130, 246, 0.08),
    transparent
  );

  transition: 1s;
}

.pricing-card:hover::before,
.roadmap-card:hover::before {
  left: 100%;
}

/*==========================================================
BUTTON EFFECT
==========================================================*/

.pricing-card .btn {
  transition: 0.35s;
}

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

  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.25);
}

/*==========================================================
ROADMAP ITEM
==========================================================*/

.roadmap-item {
  position: relative;
  overflow: hidden;
}

.roadmap-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: var(--primary);

  transform: scaleY(0);

  transition: 0.35s;
}

.roadmap-item:hover::before {
  transform: scaleY(1);
}

/*==========================================================
COMING SOON BADGE
==========================================================*/

.coming-soon {
  transition: 0.3s;
}

.roadmap-item:hover .coming-soon {
  background: var(--primary);

  color: #fff;

  border-color: var(--primary);
}

/*==========================================================
FEATURE ICON
==========================================================*/

.feature-box li i {
  transition: 0.3s;
}

.feature-box li:hover i {
  transform: scale(1.2);
}

/*==========================================================
SMOOTH TRANSITIONS
==========================================================*/

* {
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
/*==========================================================
WHY CHOOSE
==========================================================*/

.why-section {
  padding: 100px 0;

  background: #f8fbff;
}

.why-card {
  background: #fff;

  border: 1px solid #e5edf9;

  border-radius: 22px;

  padding: 35px 30px;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.1);
}

.why-icon {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(59, 130, 246, 0.08);

  color: var(--primary);

  font-size: 28px;

  margin-bottom: 25px;
}

.why-card h4 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 15px;

  color: var(--secondary);
}

.why-card p {
  color: #64748b;

  line-height: 1.8;

  margin: 0;
}

/*==========================================================
FAQ
==========================================================*/

.faq-section {
  padding: 100px 0;
}

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

  margin: auto;
}

.accordion-item {
  border: none;

  margin-bottom: 20px;

  border-radius: 18px !important;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.accordion-button {
  font-weight: 600;

  font-size: 17px;

  padding: 22px 25px;

  background: #fff;

  color: var(--secondary);
}

.accordion-button:not(.collapsed) {
  background: #eef6ff;

  color: var(--primary);

  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 25px;

  color: #64748b;

  line-height: 1.8;
}

/*==========================================================
CTA
==========================================================*/

.pricing-cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;

  border-radius: 30px;

  padding: 70px;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.cta-box::before {
  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  top: -120px;

  right: -120px;
}

.cta-box h2 {
  font-size: 42px;

  font-weight: 800;

  margin-bottom: 20px;

  position: relative;

  z-index: 2;
}

.cta-box p {
  max-width: 650px;

  margin: 0 auto 35px;

  color: rgba(255, 255, 255, 0.9);

  line-height: 1.8;

  position: relative;

  z-index: 2;
}

.cta-box .btn {
  position: relative;

  z-index: 2;

  padding: 16px 40px;

  font-size: 17px;

  font-weight: 600;

  border-radius: 14px;
}

/*==========================================================
FOOTER
==========================================================*/

.footer {
  background: #0f172a;

  color: #cbd5e1;

  padding: 80px 0 25px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer h5 {
  color: #fff;

  margin-bottom: 20px;

  font-weight: 700;
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: #cbd5e1;

  text-decoration: none;

  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer-social {
  display: flex;

  gap: 15px;

  margin-top: 20px;
}

.footer-social a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-bottom {
  margin-top: 60px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;

  font-size: 14px;
}

/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width: 991px) {
  .cta-box {
    padding: 50px 35px;
  }

  .cta-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .why-section,
  .faq-section,
  .pricing-cta {
    padding: 70px 0;
  }

  .cta-box {
    padding: 40px 25px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
