@import url("/assets/css/colors.css");
@import url("/assets/css/common.css");

.nav-link {
  padding: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi";
  min-height: 100vh;
}

/* Pricing Card */
body {
  min-height: 100vh;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  flex: 1;
  width: 31.33%;
  height: 80%;
  margin: auto;
}

/* .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        } */

.pricing-card.elite {
  background: #265baa;
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing-card.elite::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.features-list {
  padding-left: 0px;
}

.hero-section-pricing {
  position: relative;
  width: calc(100% - 120px);
  height: 54vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;

  /* Shimmer placeholder */
  background-color: #e0e0e0;
  background-image: linear-gradient(
    90deg,
    #e0e0e0 0px,
    #f8f8f8 40px,
    #e0e0e0 80px
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.top-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  /* width: calc(100% - 120px); */
  white-space: nowrap;
  justify-content: center;
  position: relative;
  margin-left: auto;
  padding: 12px 10px;
  border-bottom: 1px solid #bebebe;
}

.top-tools span {
  color: #2f2f2f;
  font-weight: 500;
  font-size: 14px;
  margin-left: 8px;
}

.popular-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #e5ffe3;
  color: #317537;
  padding: 8px 16px;
  border-radius: 0 16px 0 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  border: 1px solid #65c266;
  align-items: center;
  gap: 6px;
}

.popular-badge-pricing {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #499c4d;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 0 16px 0 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  border: 1px solid #317537;
  align-items: center;
  gap: 6px;
}

#monthlyBtn {
  align-items: center;
  display: flex;
  justify-content: center;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2f2f2f;
}

.pricing-card.elite .plan-name {
  color: #b6f5b3;
}

.pricing-tag {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid #b0b0b0;
}

.price-main {
  font-size: 40px;
  font-weight: 700;
  color: #265baa;
  line-height: 1;
}

.pricing-card.elite .price-main {
  color: white;
}

.price-period {
  font-size: 18px;
  color: #265baa;
  margin-left: 4px;
  font-weight: 500;
}

.pricing-card.elite .price-period {
  color: white;
}

.price-monthly {
  color: #485c6e;
  font-size: 20px;
  margin-left: 8px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1px; /* Slightly thicker line */
}

.pricing-card.elite .price-monthly {
  color: #dfe9ed;
}

.plan-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-description {
  margin-top: 16px;
  color: #2c3947;
  margin-bottom: 24px;
  /* width: 80%; */
}

.pricing-description-elite {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  /* width: 80%; */
}

.pricing-description-elite span {
  font-weight: 700;
  color: #e6e6e6;
}

.pricing-description span {
  font-weight: 700;
  color: #141a21;
}

.pricing-card.elite .plan-description {
  color: rgba(255, 255, 255, 0.9);
}

.billing-note {
  font-weight: 600;
}

.choose-btn {
  width: 100%;
  background: #265baa;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.choose-btn:hover {
  background: var(--color-primary-dark);
  /* transform: translateY(-1px); */
}

.pricing-card.elite .choose-btn {
  background: white;
  color: #265baa;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.elite .choose-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.features-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 16px;
}

.pricing-card.elite .features-title {
  color: white;
}

.features-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  /* gap: 12px; */
  margin-bottom: 12px;
  padding-left: 4px;
}

.pricing-card.elite .feature-icon {
  border-color: white;
}

.feature-text {
  color: #4b5563;
  line-height: 1.5;
  flex: 1;
}

.pricing-card.elite .feature-text {
  color: rgba(255, 255, 255, 0.9);
}

.highlight {
  font-weight: 700;
  color: #1a202c;
}

.pricing-card.elite .highlight {
  color: white;
}

.main-heading {
  margin: 30px auto;
}

.main-heading h1 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #2f2f2f;
  margin-bottom: 12px;
}

.main-heading p {
  color: #505050;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 600px) {
  .main-heading h1 {
    font-size: 28px;
    width: 88%;
    margin: auto auto 12px auto;
  }

  .main-heading p {
    font-size: 16px;
    width: 88%;
    margin: auto;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0px 10px;
  }

  .pricing-card {
    width: 100%;
    /* max-width: 400px; */
  }

  .plan-name {
    font-size: 24px;
  }

  .price-main {
    font-size: 40px;
  }

  /* body {
                padding: 16px;
            } */
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 24px 20px;
  }

  .plan-name {
    font-size: 22px;
  }

  .price-main {
    font-size: 36px;
  }
}

/* Pricing Card */

.container {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  width: calc(100% - 120px);
  position: relative;
  margin-left: auto;
}

.header {
  text-align: center;
  margin: 50px 0px;
  color: white;
}

.header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2f2f2f;
  /* text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.header p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.billing-toggle {
  display: inline-flex;
  /* background: rgba(255, 255, 255, 0.15); */
  backdrop-filter: blur(10px);
  border-radius: 8px;
  /* padding: 6px; */
  margin-bottom: 30px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
  border: 1px solid #d3d3d3;
}

.toggle-btn {
  padding: 14px 30px;
  border: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  color: #3e3e3e;
  font-size: 1.1rem;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 250px;
  font-family: "Satoshi";
}

.toggle-btn-mob {
  padding: 8px 8px;
  border: none;
  border-radius: 8px;
  /* border-bottom-left-radius: 8px; */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  color: #3e3e3e;
  font-size: 18px;
  display: flex;
  width: 163px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  /* width: fit-content; */
  font-family: "Satoshi";
  border: 1px solid #d3d3d3;
}

.toggle-btn-mob.active {
  background: #173f85;
  color: #ffffff;
  /* font-size: 18px; */
}

@media (max-width: 600px) {
  .toggle-btn {
    width: 180px;
  }
}

.toggle-btn.active {
  background: #173f85;
  color: #ffffff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  /* box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px); */
}

.toggle-btn.active.monthly-active {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.toggle-btn:hover:not(.active) {
  /* color: white; */
  transform: translateY(-1px);
}

.savings-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 10px;
  display: inline-block;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1300px) {
  .plans-grid {
    gap: 8px;
  }
}

.plan-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 20px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #dde5eb;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
}

/* .plan-card:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    } */

/* .plan-card.popular {
            border: 2px solid #3b82f6;
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
        } */

.plan-card.popular::before {
  /* content: "Most Popular"; */
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.plan-card.features-card {
  /* background: linear-gradient(135deg, #1e293b, #334155); */
  color: white;
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
}

.plan-card.features-card h2 {
  color: #141a21;
}

.plan-header {
  margin-bottom: 30px;
  height: 100px;
}

.plan-header h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 700;
}

.plan-header h3 {
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 600px) {
  .plan-header h2 {
    font-size: 24px;
  }
  .plan-header h3 {
    font-size: 18px;
  }
}

.plan-subtitle {
  color: #64748b;
  font-size: 20px;
  line-height: 1.5;
}

.features-card .plan-subtitle {
  color: #141a21;
}

.price-section {
  text-align: center;
  margin-bottom: 35px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.period {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 10px;
}

.yearly-savings {
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 25px;
  transition: all 0.3s ease;
}

.yearly-savings.hidden {
  opacity: 0;
  transform: translateY(-10px);
}

/* Features Grid Layout */
.features-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-section {
  margin-bottom: 25px;
}

.feature-category {
  font-weight: 700;
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f1f1;
  min-height: 45px;
  display: flex;
  align-items: center;
}

.features-card .feature-category {
  color: #2f2f2f;
  padding-left: 16px;
  /* border-bottom-color: #60a5fa; */
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-list li {
  padding: 8px 0;
  display: flex;
  align-items: baseline;
  font-size: 16px;
  color: #374151;
  min-height: 42.5px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 100%;

  /* horizontal scrolling only */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */

  /* hide scrollbar visually */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

/* WebKit (Chrome, Safari, Edge) — hide horizontal scrollbar */
.features-list li::-webkit-scrollbar {
  height: 0; /* set to 0 so scroll still works */
  background: transparent;
}

.text-overlay {
  font-weight: 700;
  font-size: 40px;
  color: #2f2f2f;
  text-align: center;
}

.text-overlay span {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(360deg, #2463eb 0%, #7c3bed 69%, #21c45d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 600px) {
  .text-overlay {
    font-size: 24px;
    text-align: center;
    width: 80%;
    margin: auto;
  }
  .text-overlay span {
    font-size: 24px;
  }
}

.text-overlay-desc {
  color: #141a21;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 600px) {
  .text-overlay-desc {
    font-size: 16px;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
  }
}

.text-overlay-desc span {
  color: #265baa;
  font-weight: 700;
}

.features-list-pricing li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #374151;
  font-weight: 400;
}

.features-card .features-list li {
  color: black;
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  /* margin-left: 30px; */
  flex-shrink: 0;
}

.feature-icon-2 {
  margin-right: 12px;
  /* margin-left: 30px; */
  flex-shrink: 0;
}

.check-icon {
  color: #10b981;
  font-weight: 900;
  font-size: 1.2rem;
  margin-left: 30px;
}

.cross-icon {
  color: #ef4444;
  font-weight: 900;
  font-size: 1.2rem;
}

.features-card .check-icon {
  color: #34d399;
}

.choose-btn {
  width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  font-family: "Satoshi";
  transition: all 0.3s ease;
  font-size: 14px;
  margin-top: auto;
}

.choose-btn.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.choose-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
}

.choose-btn.secondary {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.choose-btn.secondary:hover {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Ensure equal heights for feature sections */
.core-features {
  min-height: 180px;
}

.advanced-features {
  min-height: 180px;
}

.security-features {
  min-height: 180px;
}

.alternate-clr {
  background-color: #ebf6fa;
  border-radius: 5px;
}

.alternate-clr-prizes {
  background-color: #ebf6fa;
  border-radius: 5px;
  justify-content: center;
}

.clr-prizes {
  justify-content: center;
  background-color: white;
}

.feature-category span {
  margin-left: 10px;
  overflow: auto;
  white-space: nowrap;
  display: inline-flex;
}

.price-wrapper {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}

.prize-text {
  color: #265baa;
  font-weight: 700;
  font-size: 40px;
}

.actual-prize {
  color: #485c6e;
  font-weight: 500;
  font-size: 20px;
  text-decoration: line-through;
}

.month-text {
  font-size: 18px;
  color: #265baa;
  font-weight: 700;
}

.plan-description {
  margin-top: 16px;
  text-align: center;
  color: #141a21;
}

.plan-description span {
  font-weight: 700;
}

.choose-plan {
  background-color: #265baa;
  color: white;
  font-weight: 900;
  font-size: 14px;
  width: 100%;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  margin-top: 50px;
  font-family: "Satoshi";
  z-index: 10;
  position: relative;
}

.choose-plan:hover {
  background: var(--color-primary-dark);
  /* transform: translateY(-1px); */
}

.pricing-banner-img {
  display: flex;
  width: 100%;
  align-items: center;
}

.auto-description {
  color: #505050;
  font-weight: 700;
  font-size: 20px;
  width: 80%;
  margin: auto;
}

.auto-description span {
  color: #136b46;
}

.pricing-banner-img img {
  max-width: 960px;
  margin: auto;
}

.compare-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #265baa;
  color: #265baa;
  font-weight: 900;
  font-size: 14px;
  font-family: "Satoshi";
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  margin: auto;
}

.compare-plans-section {
  margin: 40px auto;
}

.additional-info-wrapper {
  border: 2px solid #d3d3d3;
  border-radius: 16px;
  display: flex;
  width: 86%;
  margin: auto;
  max-width: 1000px;
  margin-bottom: 80px;
}

.additional-info-item-1 {
  padding: 30px;
  width: 50%;
  border-right: 1px solid #d3d3d3;
}

.additional-info-item-2 {
  padding: 30px;
  width: 50%;
}

@media (max-width: 600px) {
  .additional-info-wrapper {
    flex-direction: column;
  }
  .additional-info-item-1 {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d3d3d3;
  }
  .additional-info-item-2 {
    width: 100%;
  }
}

.additional-info-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.additional-info-title h3 {
  font-weight: 700;
  font-size: 20px;
  color: #141a21;
}

.additional-info-desc {
  padding: 10px 0px;
}
.top-tools-title {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  color: #505050;
  margin: 24px 0px;
  padding: 24px 0px 0px 0px;
}

.top-tools-section {
  background-color: #f2f2ff;
}

.green-badge {
  color: #317537;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid #317537;
  border-right: 4px solid #317537;
  border-bottom: 4px solid #317537;
  border-left: 1px solid #317537;
  padding: 6px 12px;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  display: flex;
  background-color: #f3fff0;
}
.blue-badge {
  color: #265baa;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid #265baa;
  border-right: 4px solid #265baa;
  border-bottom: 4px solid #265baa;
  border-left: 1px solid #265baa;
  padding: 6px 12px;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  display: flex;
  background-color: #ebf6fa;
}
.pink-badge {
  color: #9b66cc;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid #9b66cc;
  border-right: 4px solid #9b66cc;
  border-bottom: 4px solid #9b66cc;
  border-left: 1px solid #9b66cc;
  padding: 6px 12px;
  align-items: center;
  gap: 4px;
  display: flex;
  border-radius: 6px;
  background-color: #f7f1fc;
}
.yellow-badge {
  color: #685f15;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid #685f15;
  border-right: 4px solid #685f15;
  border-bottom: 4px solid #685f15;
  border-left: 1px solid #685f15;
  padding: 6px 12px;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  display: flex;
  background-color: #fefceb;
}
.purple-badge {
  color: #5657e4;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid #5657e4;
  border-right: 4px solid #5657e4;
  border-bottom: 4px solid #5657e4;
  border-left: 1px solid #5657e4;
  padding: 6px 12px;
  align-items: center;
  gap: 4px;
  display: flex;
  border-radius: 6px;
  background-color: rgba(239, 239, 255, 1);
}
.dark-green-badge {
  color: rgba(0, 100, 102, 1);
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid rgba(0, 100, 102, 1);
  border-right: 4px solid rgba(0, 100, 102, 1);
  border-bottom: 4px solid rgba(0, 100, 102, 1);
  border-left: 1px solid rgba(0, 100, 102, 1);
  padding: 6px 12px;
  align-items: center;
  gap: 4px;
  display: flex;
  border-radius: 6px;
  background-color: rgba(230, 255, 250, 1);
}

@media (max-width: 600px) {
  .purple-badge,
  .yellow-badge,
  .pink-badge,
  .blue-badge,
  .green-badge {
    font-size: 12px;
    padding: 4px 8px;
    display: inline-block;
    width: fit-content;
    display: flex;
    gap: 4px;
    align-items: center;
  }
}

.alternate-clr-para {
  border-radius: 5px;
  background-color: #e8f5ef;
}

.alternate-clr-prizes-para {
  background-color: #e8f5ef;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-lgt-red {
  border-radius: 5px;
  background-color: #fef4f4;
}

.alternate-clr-prizes-lgt-red {
  background-color: #fef4f4;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-lt {
  border-radius: 5px;
  background-color: #edfffb;
}

.alternate-clr-prizes-lt {
  background-color: #edfffb;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-sum {
  border-radius: 5px;
  background-color: #efefff;
}

.alternate-clr-prizes-sum {
  background-color: #efefff;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-yellow {
  border-radius: 5px;
  background-color: #fffded;
}

.alternate-clr-prizes-yellow {
  background-color: #fffded;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-purple {
  border-radius: 5px;
  background-color: #efefff;
}

.alternate-clr-prizes-purple {
  background-color: #efefff;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-grey {
  border-radius: 5px;
  background-color: #ececf7;
}

.alternate-clr-prizes-grey {
  background-color: #ececf7;
  border-radius: 5px;
  justify-content: center;
}

.alternate-clr-lgt-green {
  border-radius: 5px;
  background-color: #e6fffa;
}

.alternate-clr-prizes-lgt-green {
  background-color: #e6fffa;
  border-radius: 5px;
  justify-content: center;
}

.three-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px;
}

.two-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 600px) {
  .three-badges {
    margin: auto;
  }

  /* .blue-badge .green-badge, .pink-badge, .yellow-badge, .purple-badge {
                display: inline-block;
                width: fit-content;
            } */

  .two-badges {
    margin: auto;
  }
}

.features-list-pricing {
  padding: 0px;
}

@media (max-width: 1024px) {
  .header h1 {
    font-size: 20px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .plan-card {
    padding: 30px 12px;
  }

  .plan-card.popular {
    transform: none;
  }

  .price {
    font-size: 2.8rem;
  }
}

.star-icon {
  position: absolute;
  bottom: 4%;
  left: 30%;
}

.ellipse-icon {
  position: absolute;
  top: 20%;
  right: 30%;
}

.background-blur-1 {
  position: absolute;
  top: 44%;
  left: 15%;
}

.background-blur-2 {
  position: absolute;
  top: 30%;
  left: 20%;
}

@media (max-width: 1400px) {
  .star-icon {
    position: absolute;
    bottom: 4%;
    left: 21%;
  }

  .ellipse-icon {
    position: absolute;
    top: 20%;
    right: 25%;
  }

  .background-blur-1 {
    position: absolute;
    top: 44%;
    left: 8%;
  }

  .background-blur-2 {
    position: absolute;
    top: 30%;
    left: 13%;
  }
}

@media (max-width: 786px) {
  .ellipse-icon img {
    width: 34px;
  }
  .ellipse-icon {
    right: 12%;
    top: 30%;
  }
  .background-blur-1 img {
    height: 31px;
  }
  .background-blur-2 img {
    height: 22px;
    width: 21px;
  }
  .background-blur-1 {
    top: 50%;
  }
  .background-blur-2 {
    top: 43%;
  }
  .star-icon img {
    width: 40px;
  }

  .star-icon {
    left: 14%;
  }
}

@media (max-width: 990px) {
  .top-tools {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    scrollbar-width: none; /* hide scrollbar in Firefox */
    justify-content: start;
  }

  .top-tools::-webkit-scrollbar {
    display: none; /* hide scrollbar in Chrome/Safari */
  }

  .top-tools > div {
    flex: 0 0 auto; /* prevent shrinking, allow horizontal scroll */
    padding: 0 8px; /* spacing so first/last don't get cut off */
  }
}

@media (max-width: 600px) {
  .three-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    margin-left: 4px;
    margin-right: 4px;
  }

  .two-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.offer-1 {
  display: block;
}
.offer-2 {
  display: none;
}

@media (max-width: 600px) {
  .offer-1 {
    display: none;
  }
  .offer-2 {
    display: block;
  }
}

/* Mobile Responsive - Horizontal Scroll for Plans Grid */
@media (max-width: 1024px) {
  .plans-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 20px;
    /* Hide scrollbar but keep functionality */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .plans-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .plan-card {
    /* min-width: 320px;
        max-width: 320px; */
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-bottom: 0;
    width: 100%;
  }

  .plan-card.features-card {
    order: -1;
  }

  /* Add scroll indicators */
  .plans-grid::after {
    content: "";
    width: 20px;
    flex-shrink: 0;
  }
}

.plans-grid-container {
  padding: 0px 10px;
  max-width: 1400px;
  margin: auto;
}

@media (min-width: 1025px) {
  .unlimited-tool-wrapper {
    max-width: 1000px;
    margin: 40px auto;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  .unlimited-tool-wrapper {
    margin-left: auto;
  }
}

.unlimited-tool-wrapper {
  background-color: #fafaff;
  border: 1px solid #f8f0ff;
  border-radius: 10px;
  padding: 40px 10px;
  width: calc(100% - 120px);
}

.unlimited-tool-wrapper h2 {
  color: #141a21;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.unlimited-tool-wrapper p {
  font-size: 18px;
  color: #141a21;
  width: 80%;
  margin: auto;
  text-align: center;
}

@media (max-width: 990px) {
  .unlimited-tool-wrapper {
    width: 100%;
  }
}

.unlimited-tool-btn {
  background-color: #265baa;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  border: none;
  margin: auto;
  font-weight: 900;
  font-family: "Satoshi";
  display: flex;
  align-items: center;
  margin-top: 26px;
  justify-content: center;
}

@media (max-width: 600px) {
  .unlimited-tool-wrapper h2 {
    font-size: 28px;
    width: 90%;
    margin: 16px auto;
  }
  .unlimited-tool-wrapper p {
    font-size: 16px;
  }
}

/* Faq's */

@media (max-width: 1400px) {
  .faq-container {
    max-width: 1200px;
    margin: auto;
  }
}

@media (min-width: 1401px) {
  .faq-container {
    max-width: 1600px;
    margin: auto;
  }
}

.faq-container2 {
  width: calc(100% - 120px);
  max-width: 1030px;
  gap: 1rem;
  padding: 40px 10px;
}

@media (min-width: 1025px) {
  .faq-container2 {
    max-width: 1000px;
    margin: auto;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  .faq-container2 {
    margin-left: auto;
  }
}

@media (max-width: 990px) {
  .faq-container2 {
    width: 100%;
  }
}

h2.title2 {
  text-align: center;
  font-size: 2.25rem; /* ~36px */
  font-weight: 700;
  line-height: 150%;
  color: #141a21;
  /* padding-top: 2rem; */
  margin-bottom: 2rem;
}

.faq-list2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item2 {
  border: none;
  border-radius: 0.75rem; /* ~12px */
  /* margin-bottom: 1rem; */
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease;
}

.faq-item2.active {
  border: 1px solid #265baa;
  background-color: #ececf7;
  height: auto;
}

.faq-question2 {
  width: 100%;
  height: 4rem; /* ~60px */
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1.25rem; /* ~20px */
  font-weight: 500;
  line-height: 150%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #333;
}

.faq-question2 h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
  color: #2f2f2f;
  width: 90%;
}

.faq-item2.active h3 {
  font-weight: 700;
}

.faq-answer2 {
  padding: 0 1.25rem 1rem;
  display: none;
}

.faq-answer2 p {
  font-size: 1rem; /* ~16px */
  color: #555;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}

.faq-item2.active .faq-answer2 {
  display: block;
}

.arrow2 {
  transition: transform 0.3s ease;
  display: inline-block;
  width: 0.625rem; /* ~10px */
  height: 0.625rem;
  border-top: 2px solid #265baa;
  border-right: 2px solid #265baa;
  transform: rotate(45deg);
  margin: 0.3rem;
}

.faq-item2.active .arrow2 {
  transform: rotate(137deg);
}

@media (max-width: 600px) {
  .faq-question2 {
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    height: 7rem;
  }

  .faq-question2 h3 {
    font-size: 18px;
    width: 88%;
  }

  .faq-answer2 p {
    font-size: 0.8125rem;
    padding: 0 1rem 0.875rem;
  }

  .faq-container2 {
    width: 100%;
    padding: 40px 20px;
  }
  h2.title2 {
    text-align: start;
  }
}

.faq-answer2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #3e3e3e;
}
@media (min-width: 993px) {
  .top-tools-section {
    display: block;
    width: calc(100% - 120px);
    margin-left: auto;
  }
}

/* .billing-toggle {
    display: block;
} */

.billing-toggle-mob {
  display: none;
}

@media (max-width: 992px) {
  .top-tools-section {
    display: none;
  }
}

@media (max-width: 600px) {
  .billing-toggle {
    display: none;
  }

  .billing-toggle-mob {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

.info-icon {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

/* .info-icon img {
    display: block;
    margin-top: 7px;
} */

.additional-key-features {
  display: none;
}

@media (max-width: 600px) {
  .info-icon {
    display: none;
  }

  /* .info-icon img {
        display: none;
    } */

  .additional-key-features {
    display: block;
    margin-left: 4px;
  }
}

/* .hero-section-pricing {
        height: 50vh;
    } */

  @media (max-width: 400px) {
    .hero-section-pricing {
      height: 62vh;
    }
  }

/* @media (max-width: 1400px) {
  .hero-section-pricing {
    height: 70vh;
  }
} */

@media (max-width: 992px) {
  .hero-section-pricing {
    width: 100%;
    margin-top: 98px;
  }



  .container {
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .top-tools-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }
}

@media (min-width: 1101px) {
  .feature-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
}
.feature-icon .tooltip {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  max-width: 250px;
  color: #333;
  background-color: #fff;
  text-align: left;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  top: 50%; /* vertically centered */
  right: 120%; /* push tooltip to the left */
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

/* Arrow pointing right (towards the icon) */
.feature-icon .tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%; /* place arrow on right side */
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.feature-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.pricing-icon-alignment {
  padding: 6px;
  align-items: center;
  display: flex;
}