/* ========== PRICING TOGGLE ========== */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3rem;
}

.pricing-toggle {
  display: inline-flex;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 0.5rem;
  gap: 0.5rem;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a0f1e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #ffffff;
  color: #0a0f1e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-btn:hover {
  color: #B5CA01;
}

/* ========== PRICING CARDS GRID ========== */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #B5CA01;
  box-shadow: 0 8px 24px rgba(0, 194, 255, 0.15);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: #B5CA01;
  box-shadow: 0 8px 32px rgba(0, 194, 255, 0.2);
  transform: scale(1.02);
}

.pricing-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #B5CA01, #00FF00);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0 0 0.5rem;
  text-align: center;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  text-align: center;
}

/* ========== PRICING AMOUNT ========== */
.pricing-amount {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.savings-badge {
  color: #B5CA01;
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 500;
  text-align: center;
  display: block;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0f1e;
  vertical-align: super;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B5CA01;
  margin: 0 0.25rem;
}

.period {
  font-size: 0.95rem;
  color: #666;
  margin-left: 0.5rem;
}

/* ========== PLAN FEATURES ========== */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.75rem 0;
  color: #0a0f1e;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #B5CA01, #00FF00);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* ========== PLAN BUTTONS ========== */
.plan-btn {
  margin: 1.5rem 0 1rem;
}

.plan-note {
  font-size: 0.85rem;
  color: #999;
  text-align: center;
  margin: 0;
}

/* ========== COMPARISON NOTE ========== */
.pricing-comparison-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #B5CA01;
}

.pricing-comparison-note p {
  margin: 0;
  color: #0a0f1e;
  font-size: 0.95rem;
}

.pricing-comparison-note a {
  color: #B5CA01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-comparison-note a:hover {
  color: #00FF00;
}

/* ========== OPTIONS GRID ========== */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.option-card {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  background: #ffffff;
  border-color: #B5CA01;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 194, 255, 0.15);
}

.option-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #B5CA01, #00FF00);
  border-radius: 12px;
  color: #ffffff;
}

.option-icon svg {
  width: 32px;
  height: 32px;
}

.option-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0f1e;
  margin: 0 0 0.75rem;
}

.option-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ========== FAQ SECTION ========== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #B5CA01;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a0f1e;
  margin: 0 0 0.75rem;
}

.faq-answer {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.faq-answer a {
  color: #B5CA01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: #00FF00;
}

/* ========== CTA SECTION ========== */
#cta {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), rgba(0, 255, 0, 0.05));
  border-top: 2px solid #B5CA01;
  border-bottom: 2px solid #B5CA01;
}

.cta-content {
  text-align: center;
  padding: 3rem 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0 0 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .pricing-toggle {
    flex-direction: column;
  }

  .toggle-btn {
    width: 100%;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== ADDITIONAL OPTIONS SECTION ========== */
#additional-options {
  background: #ffffff;
}

#additional-options .section-header {
  margin-bottom: 3rem;
}

#additional-options .section-tag {
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: #B5CA01;
}

#additional-options .section-title {
  color: #0a0f1e;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#additional-options .section-desc {
  color: #666;
  font-size: 1.05rem;
}


/* ========== PAGE HERO WITHOUT BACKGROUND ========== */
.page-hero-no-bg {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.05), rgba(0, 255, 0, 0.02));
  padding: 6rem 0 5rem 0;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 71px;
}

.page-hero-no-bg .page-hero-content {
  text-align: center;
}

.page-hero-no-bg .section-tag {
  display: inline-block;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: #B5CA01;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.page-hero-no-bg .page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.page-hero-no-bg .page-hero-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero-no-bg {
    padding: 2.5rem 0;
  }

  .page-hero-no-bg .page-hero-title {
    font-size: 1.8rem;
  }

  .page-hero-no-bg .page-hero-desc {
    font-size: 1rem;
  }
}


/* ========== COMPARISON TABLE ========== */
#comparison-table {
  background: #ffffff;
  padding: 4rem 0;
}

#comparison-table .section-header {
  margin-bottom: 3rem;
  color: #0a0f1e;
}

#comparison-table .section-tag {
  background: #f0f0f0;
  border: 1px solid #e5e5e5;
  color: #B5CA01;
}

#comparison-table .section-title {
  color: #0a0f1e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#comparison-table .section-desc {
  color: #666666;
  font-size: 1.05rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  max-width: 1200px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.comparison-table thead {
  background: #ffffff;
  border-bottom: 3px solid #B5CA01;
}

.comparison-table th {
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-weight: 700;
  color: #0a0f1e;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid #e5e5e5;
  background: #f9f9f9;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td {
  padding: 0.65rem 1.25rem;
  border-bottom: 1px solid #e5e5e5;
  color: #0a0f1e;
  font-size: 0.95rem;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table tbody tr:hover {
  background: #f0f4f8;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #0a0f1e;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  border-left: 1px solid #e5e5e5;
}

.feature-yes {
  color: #B5CA01 !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
}

.feature-no {
  color: #E51050 !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
}

@media (max-width: 768px) {
  #comparison-table {
    padding: 2rem 0;
  }

  #comparison-table .section-title {
    font-size: 1.8rem;
  }

  .table-wrapper {
    border-radius: 12px;
    margin: 0 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .comparison-table th {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .feature-yes,
  .feature-no {
    font-size: 1.2rem;
  }
}
