/* #region Pricing Page Styles - Mobile First Design */

/* FontAwesome Icons as Pseudo-elements */
.pricing-card__icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.pricing-card:nth-child(1) .pricing-card__icon::before {
  content: "\f44b"; /* fa-dumbbell */
}

.pricing-card:nth-child(2) .pricing-card__icon::before {
  content: "\f12e"; /* fa-puzzle-piece */
}

.pricing-card:nth-child(3) .pricing-card__icon::before {
  content: "\f086"; /* fa-comments */
}

.pricing-card__feature::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058"; /* fa-check-circle */
  color: var(--secondary-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.monthly-package-card__hours::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f017"; /* fa-clock */
  color: var(--primary-color);
  font-size: 18px;
}

.monthly-package-card__highlight-text::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f005"; /* fa-star */
  color: var(--primary-color);
  margin-right: 8px;
}

.monthly-package-card__feature::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058"; /* fa-check-circle */
  color: var(--secondary-color);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-faq__question::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078"; /* fa-chevron-down */
  color: var(--primary-color);
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Promotion Section Icons */
.promotion-card__badge::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 4px;
}

.promotion-card--special .promotion-card__badge::before {
  content: "\f005"; /* fa-star */
}

.promotion-card:not(.promotion-card--special) .promotion-card__badge::before {
  content: "\f02b"; /* fa-tag */
}

.promotion-card__icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 1.5rem;
}

.promotion-card--special .promotion-card__icon::before {
  content: "\f5dc"; /* fa-brain */
}

.promotion-card:not(.promotion-card--special) .promotion-card__icon::before {
  content: "\f0f0"; /* fa-user-md */
}

.promotion-card__feature::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058"; /* fa-check-circle */
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.promotion-card__note::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #3b82f6;
  margin-right: 0.5rem;
}

.promotion-card--special .promotion-card__note::before {
  content: "\f05a"; /* fa-info-circle */
}

.promotion-card:not(.promotion-card--special) .promotion-card__note::before {
  content: "\f017"; /* fa-clock */
}

.promotion__terms-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f15c"; /* fa-file-alt */
  margin-right: 0.5rem;
}

/* Detailed Pricing Section Icons */
.detailed-pricing-card__icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 1.25rem;
}

.detailed-pricing-card:nth-child(1) .detailed-pricing-card__icon::before {
  content: "\f82f"; /* fa-user-nurse */
}

.detailed-pricing-card:nth-child(2) .detailed-pricing-card__icon::before {
  content: "\f4c4"; /* fa-hands-helping */
}

.detailed-pricing-card:nth-child(3) .detailed-pricing-card__icon::before {
  content: "\f0f9"; /* fa-ambulance */
}

.detailed-pricing__note-content::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f05a"; /* fa-info-circle */
  color: #d97706;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #26d0ce 0%, #1a2980 60%, #0b90da 100%);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  animation: floatBubbles 20s ease-in-out infinite;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out;
  line-height: 1.2;
  color: var(--white);
}

.page-hero__subtitle {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out 0.2s both;
  color: var(--white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBubbles {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-20px, -30px) scale(0.95);
  }
}

/* Pricing Cards Grid */
.pricing {
  padding: 40px 0;
  background: #f8f9fa;
}

.pricing__intro {
  text-align: center;
  margin-bottom: 32px;
}

.pricing__intro-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.pricing__intro-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .pricing {
    padding: 60px 0;
  }

  .pricing__intro-title {
    font-size: 32px;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* Monthly Package Section */
.monthly-package {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
}

.monthly-package__header {
  text-align: center;
  margin-bottom: 32px;
}

.monthly-package__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.monthly-package__subtitle {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.monthly-package__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .monthly-package {
    padding: 60px 0;
  }

  .monthly-package__title {
    font-size: 32px;
  }

  .monthly-package__subtitle {
    font-size: 17px;
  }

  .monthly-package__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Monthly Package Card */
.monthly-package-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0, 95, 115, 0.12);
  border: 3px solid var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
}

.monthly-package-card:first-child {
  border-color: transparent;
}

.monthly-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 95, 115, 0.2);
}

.monthly-package-card:nth-child(2)::before {
  content: "熱門套餐";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, #007a8f 100%);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.3);
}

.monthly-package-card__badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.monthly-package-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.4;
}

.monthly-package-card__price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.monthly-package-card__price {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.monthly-package-card__price-detail {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

.monthly-package-card__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.monthly-package-card__hours i {
  color: var(--primary-color);
  font-size: 18px;
}

.monthly-package-card__hours-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
}

.monthly-package-card__features {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

.monthly-package-card__feature {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.monthly-package-card__feature i {
  color: var(--secondary-color);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.monthly-package-card__highlight {
  background: linear-gradient(
    135deg,
    rgba(0, 95, 115, 0.08) 0%,
    rgba(0, 95, 115, 0.04) 100%
  );
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 24px;
}

.monthly-package-card__highlight-text {
  font-size: 14px;
  color: var(--text-heading);
  font-weight: 600;
  margin: 0;
}

.monthly-package-card__btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #007a8f 100%);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.2);
}

.monthly-package-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 95, 115, 0.3);
}

@media (min-width: 768px) {
  .monthly-package-card {
    padding: 36px 28px;
  }

  .monthly-package-card__title {
    font-size: 22px;
  }

  .monthly-package-card__price {
    font-size: 46px;
  }

  .monthly-package-card__feature {
    font-size: 15px;
  }
}

/* Pricing Card */
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 95, 115, 0.15);
  border-color: var(--primary-color);
}

.pricing-card--featured {
  border-color: var(--primary-color);
  position: relative;
}

.pricing-card--featured::before {
  content: "熱門選擇";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.pricing-card__icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.pricing-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.pricing-card__price-unit {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 400;
}

.pricing-card__duration {
  font-size: 14px;
  color: #6c757d;
  margin-top: 4px;
}

.pricing-card__body {
  flex: 1;
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-card__feature {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pricing-card__feature i {
  color: var(--secondary-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.pricing-card__btn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.pricing-card__btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card__title {
    font-size: 22px;
  }

  .pricing-card__feature {
    font-size: 15px;
  }
}

/* FAQ Section for Pricing */
.pricing-faq {
  background: #f8f9fa;
  padding: 40px 0;
}

.pricing-faq__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 32px;
  text-align: center;
}

.pricing-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-faq__item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-faq__question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease;
}

.pricing-faq__question:hover {
  background: #f8f9fa;
}

.pricing-faq__question i {
  color: var(--primary-color);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.pricing-faq__item.active .pricing-faq__question i {
  transform: rotate(180deg);
}

.pricing-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.pricing-faq__item.active .pricing-faq__answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.pricing-faq__answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .pricing-faq {
    padding: 60px 0;
  }

  .pricing-faq__title {
    font-size: 32px;
  }

  .pricing-faq__question {
    padding: 20px 24px;
    font-size: 17px;
  }
}

/* CTA Section */
.pricing-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #007a8f 100%);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.pricing-cta__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pricing-cta__text {
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-cta__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-cta__btn--primary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.pricing-cta__btn--primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.pricing-cta__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.pricing-cta__btn--secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .pricing-cta {
    padding: 64px 0;
  }

  .pricing-cta__title {
    font-size: 32px;
  }

  .pricing-cta__text {
    font-size: 18px;
  }

  .pricing-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    max-width: none;
  }
}

/* #endregion */

.detailed-pricing {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.detailed-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.detailed-pricing__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.detailed-pricing__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detailed-pricing__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.detailed-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.detailed-pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.detailed-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
}

.detailed-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.detailed-pricing-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.detailed-pricing-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.detailed-pricing-card__icon i {
  color: white;
  font-size: 1.25rem;
}

.detailed-pricing-card:nth-child(2) .detailed-pricing-card__icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.detailed-pricing-card:nth-child(3) .detailed-pricing-card__icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.detailed-pricing-card__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.pricing-table {
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row--header {
  background: linear-gradient(135deg, #1e293b, #374151);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-row--highlighted {
  background: #f0f9ff;
  border-left: 3px solid #3b82f6;
}

.pricing-row--best {
  background: #ecfdf5;
  border-left: 3px solid #10b981;
}

.pricing-cell--price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.detailed-pricing__note {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #f59e0b;
  position: relative;
  z-index: 1;
}

.detailed-pricing__note-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detailed-pricing__note-content i {
  color: #d97706;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.detailed-pricing__note-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #92400e;
  line-height: 1.6;
}

/* Promotion Section Styles */
.promotion {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.promotion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 15% 85%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.promotion__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.promotion__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.promotion__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.promotion-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 8px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
}

.promotion-card--special {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #f59e0b;
}

.promotion-card--special::before {
  background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
}

.promotion-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px -3px rgba(0, 0, 0, 0.15),
    0 8px 15px -2px rgba(0, 0, 0, 0.08);
}

.promotion-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.promotion-card--special .promotion-card__badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.promotion-card__header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.promotion-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.promotion-card__icon i {
  color: white;
  font-size: 1.5rem;
}

.promotion-card--special .promotion-card__icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.promotion-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.promotion-card__price {
  margin-bottom: 0.5rem;
}

.promotion-card__price-original {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.25rem;
}

.promotion-card__price-new {
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  display: block;
}

.promotion-card--special .promotion-card__price-new {
  color: #f59e0b;
}

.promotion-card__service {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.promotion-card__body {
  margin-bottom: 2rem;
}

.promotion-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.promotion-card__feature {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.4;
}

.promotion-card__feature i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.promotion-card__note {
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #1e40af;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.promotion-card--special .promotion-card__note {
  background: rgba(245, 158, 11, 0.15);
  border-left-color: #f59e0b;
  color: #92400e;
}

.promotion-card__note i {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.promotion-card__footer {
  text-align: center;
}

.promotion-card__btn {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.promotion-card__btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  color: white;
  text-decoration: none;
}

.promotion-card__btn--special {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.promotion-card__btn--special:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.promotion__terms {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 1;
}

.promotion__terms-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promotion__terms-title i {
  color: #64748b;
}

.promotion__terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promotion__terms-list li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 1.5rem;
}

.promotion__terms-list li:last-child {
  border-bottom: none;
}

.promotion__terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .promotion {
    padding: 2rem 0;
  }

  .promotion__title {
    font-size: 2rem;
  }

  .promotion__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .promotion-card {
    padding: 1.5rem;
  }

  .promotion__terms {
    padding: 1.5rem;
  }

  .detailed-pricing {
    padding: 2rem 0;
  }

  .detailed-pricing__title {
    font-size: 2rem;
  }

  .detailed-pricing__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detailed-pricing-card {
    padding: 1.5rem;
  }

  .pricing-row {
    padding: 0.75rem 1rem;
  }

  .pricing-row--best::after {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-left: 0.5rem;
    margin-top: 0.25rem;
  }
}
