main * {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  padding: 4rem 0rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: #475569;
}

/* Tabs */
.tabs-wrapper {
  padding: 1rem 1rem;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  background: #f8fafc;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  font-size: 1.35rem;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}

.tab-button:hover {
  color: #0f172a;
}

.tab-button.active {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content .container {
  padding: 0;
}

.tab-content.active {
  display: block;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
}

/* Cards Grid */
/* .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
} */

.cards-grid {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.swiper {
  width: 100%;
  padding: 1.7rem 0rem 4rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

/* Card */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 85px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  width: 100%;
  max-width: 363px;
  height: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.marketingSwiper .card {
  min-height: 530px;
}

.bundleSwiper .card {
  min-height: 650px;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #2563eb;
}

.card:hover .btn {
  background: #2563eb;
}

.card.highlighted {
  border: 2px solid #2563eb;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
}

.card.free-plan {
  max-width: 42rem;
  margin: 0 auto 3rem;
  border: 2px solid #bfdbfe;
}

.badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.card-description {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.card-package {
  background: #eff6ff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card-package p {
  font-size: 0.875rem;
  color: #64748b;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.price-period {
  margin-left: 0.5rem;
  color: #64748b;
}

.price-note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

/* .swiper-slide-active .card .btn {
    background: #2563eb;
} */

/* Features List */
.features-list {
  list-style: none;
  margin-bottom: 5.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-icon.check {
  color: #16a34a;
}

.feature-icon.x {
  color: #94a3b8;
}

.feature-text {
  font-size: 0.9rem;
}

.feature-text.disabled {
  color: #94a3b8;
}

/* Button */
.card.highlighted .btn {
  bottom: 2.4rem;
}

.btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  width: 80%;
  left: 2rem;
  bottom: 1.8rem;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #0f172a;
  color: white;
}

.btn-secondary:hover {
  background: #1e293b;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  display: none;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  top: 40%;
}

.swiper .swiper-button-next {
  right: 0;
}

.swiper .swiper-button-prev {
  left: 0;
}

/* Additional Options */
.options-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.container.options-card {
  padding: 1.5rem;
}

.options-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-label {
  color: #334155;
}

.option-price {
  font-weight: 600;
  color: #0f172a;
}

/* Pricing Table */
.pricing-table {
  margin-bottom: 2rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

/* CTA Section */
.cta-section {
  background: #2563eb;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: #eff6ff;
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 0.5rem;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: #1d4ed8;
}

/* Banner Cards */
.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.banner-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.banner-card h4 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

/* SVG Icons */
.icon-check {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 850px) {
  .hero h1 {
    font-size: 5.76rem;
  }

  .hero p {
    font-size: 2.3rem;
  }

  .tabs-wrapper {
    padding: 4.32rem 1.44rem;
    position: relative;
  }

  /* .tabs-list {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 4.32rem;
  } */

  .tabs-list {
    flex-direction: column;
    position: relative;
    display: flex;
    max-width: 100%;
    text-align: center;
    background: #fff;
    border: 0px solid #ddd;
    border-radius: 0.8rem;
    overflow: hidden;
  }

  .tab-button {
    display: none;
    width: 100%;
    padding: 1.2rem 4.8rem 1.2rem 1.6rem;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 2.44rem;
    text-align: center;
  }

  .tab-button:hover {
    background: #f8f9fa;
  }

  .tab-button:last-child {
    border-bottom: none;
  }

  .tab-button.active {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
  }

  .tabs-list::before {
    content: "";
    position: absolute;
    right: 2.6rem;
    top: 3.8rem;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 1.4rem solid transparent;
    border-right: 1.4rem solid transparent;
    border-top: 1.4rem solid #2563eb;
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 10;
  }

  .tabs-list.open::before {
    transform: translateY(-50%) rotate(180deg);
  }

  /* .tab-button.active::after {
      content: "";
      position: absolute;
      right: 1.6rem;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      width: 0;
      height: 0;
      border-left: 1.4rem solid transparent;
      border-right: 1.4rem solid transparent;
      border-top: 1.4rem solid #2563eb;
      transition: transform 0.3s ease;
  }

  .tabs-list.open .tab-button.active::after {
      transform: translateY(-50%) rotate(180deg);
  } */

  .tabs-list.open .tab-button {
    display: block;
  }

  .tabs-list.open .tab-button.active {
    background: #f0f7ff;
  }

  .tab-button {
    font-size: 2.44rem;
    padding: 1.44rem 2.88rem;
  }

  .section-title {
    font-size: 3.6rem !important;
  }

  .section-subtitle {
    font-size: 2.3rem;
    margin-bottom: 3.6rem;
  }

  .swiper {
    padding: 4.88rem 0rem 6.48rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .card {
    padding: 3.6rem;
    max-width: 57.6rem;
    margin: 0 auto;
    padding-bottom: 8.6rem;
  }

  .card.highlighted {
    margin: 3rem auto;
  }

  .card-title {
    font-size: 2.88rem;
  }

  .card-description {
    font-size: 1.8rem;
  }

  .card-package {
    padding: 1.44rem;
  }

  .card-package p {
    font-size: 1.8rem;
  }

  .price {
    font-size: 4.32rem;
  }

  .price-period {
    font-size: 1.8rem;
  }

  .price-note {
    font-size: 1.8rem;
    margin-bottom: 2.88rem;
  }

  .feature-text {
    font-size: 1.94rem;
  }

  .feature-icon {
    width: 2.3rem;
    height: 2.3rem;
  }

  .btn {
    font-size: 1.94rem;
    padding: 1.44rem 2.88rem;
    height: 6rem;
  }

  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    width: 6.08rem;
    height: 6.08rem;
  }

  .swiper .swiper-button-next {
    right: 4rem;
  }

  .swiper .swiper-button-prev {
    left: 4rem;
  }

  .options-card {
    padding: 2.88rem;
  }

  .options-title {
    font-size: 2.3rem;
  }

  .option-label {
    font-size: 1.94rem;
  }

  .option-price {
    font-size: 2.3rem;
  }

  .banner-card {
    padding: 2.88rem;
  }

  .banner-card h4 {
    font-size: 2.3rem;
  }

  .cta-section h2 {
    font-size: 3.6rem;
  }

  .cta-section p {
    font-size: 2.3rem;
    margin-bottom: 3.6rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    font-size: 2.02rem;
    padding: 1.8rem 3.6rem;
  }

  .badge {
    font-size: 1.58rem;
    padding: 0.5rem 1.44rem;
    top: -1.75rem;
  }

  .icon-check {
    width: 36px;
    height: 36px;
  }

  .marketingSwiper .card {
    min-height: 100%;
  }

  .bundleSwiper .card {
    min-height: 100%;
  }

  .btn {
    width: 93%;
  }
}
