/* Pricing Page Specific Styles */

.pricing-main {
  padding-top: 40px;
  /* Space for navbar */
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 64px auto;
  padding-inline: var(--section-margin);
}

/* =========================================
   1. Banner Section
========================================= */
.pricing-banner-section {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(158, 255, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.pricing-banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  background-image: url("../assets/Logo - Favicon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0.1;
  pointer-events: none;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e5ae00;
  color: black;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}



.pricing-banner-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: #e5ae00;
  text-transform: uppercase;
  line-height: 1.2;
}

.pricing-banner-subtitle {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.pricing-banner-text {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 2px;
}

/* =========================================
   2. Pricing Tiers Section
========================================= */
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-title {
  font-family: var(--font-secondary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-subtitle {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 30px;
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-family: var(--font-secondary);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(20px);
}

.discount-badge {
  background-color: #e5ae00;
  color: black;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-tiers-container {
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: rgba(20, 22, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.ultra {
  border-color: #e5ae00;
  background: rgba(229, 174, 0, 0.05);
  padding-top: 40px;
}

.pricing-card.business {
  border-color: #a7ff18;
  background: rgba(167, 255, 24, 0.05);
  padding-top: 40px;
}

.card-top-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.card-top-badge.ultra {
  background-color: #e5ae00;
  color: black;
}

.card-top-badge.business {
  background-color: #a7ff18;
  color: black;
}

.tier-name {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-desc {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 24px;
  min-height: 36px;
}

.credits-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.credits-amount {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.credits-breakdown {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.credits-slider {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  margin-bottom: 8px;
}

.credits-slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: white;
  border-radius: 2px;
  width: 33%;
}

.credits-slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-gray);
}

.tier-price {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.tier-price-old {
  font-size: 20px;
  color: #e5ae00;
  text-decoration: line-through;
  font-weight: 600;
}

.tier-price-period {
  font-size: 10px;
  color: var(--text-gray);
  font-weight: 400;
  margin-bottom: 6px;
}

.btn-plan {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.btn-plan:hover {
  opacity: 0.9;
}

.btn-plan.basic {
  background: white;
  color: black;
}

.btn-plan.plus {
  background: #ffbc00;
  color: black;
}

.btn-plan.ultra {
  background: #e5ae00;
  color: black;
}

.btn-plan.business {
  background: #a7ff18;
  color: black;
}

.savings-text {
  font-size: 10px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 24px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-light-gray);
}

.feature-item.disabled {
  color: #555;
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon.check {
  color: white;
}

.feature-icon.cross {
  color: #555;
}

.seats-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.seat-btn {
  background: transparent;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: background 0.2s;
}

.seat-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.seat-count {
  font-size: 14px;
  font-weight: 600;
}

.section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

/* =========================================
   3. Enterprise Plan Section
========================================= */
.enterprise-plan-section {
  background: #191b17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
}

.enterprise-container {
  display: flex;
  gap: 40px;
}

.enterprise-left {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
}

.enterprise-heading {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.enterprise-subheading {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.enterprise-cards {
  display: flex;
  gap: 20px;
}

.ent-card {
  background: #21261d;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.ent-card-icon {
  margin-bottom: 20px;
  color: white;
  display: flex;
}

.ent-card-title {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.ent-card-desc {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.6;
}

.enterprise-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ent-right-title {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.ent-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.ent-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ent-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.btn-ent-primary {
  display: block;
  text-align: center;
  background: white;
  color: black;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-ent-primary:hover {
  opacity: 0.9;
}

.btn-ent-secondary {
  display: block;
  text-align: center;
  background: #2a2b2f;
  color: white;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-ent-secondary:hover {
  background: #36373d;
}

@media (max-width: 1024px) {
  .enterprise-container {
    flex-direction: column;
  }

  .enterprise-left {
    flex: auto;
  }

  .enterprise-right {
    flex: auto;
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .enterprise-cards {
    flex-direction: column;
  }
}

/* =========================================
   4. Compare Plans Section
========================================= */
.compare-plans-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-heading {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.compare-container {
  background: #191b17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.compare-table th,
.compare-table td {
  padding: 16px 12px;
  text-align: center;
}

.compare-table th {
  border-bottom: 1px solid #222;
  vertical-align: bottom;
  padding-bottom: 24px;
}

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

.compare-table td {
  border-bottom: 1px solid #1a1a1a;
  color: #e0e0e0;
  font-size: 13px;
  font-family: var(--font-secondary);
}

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

.compare-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.th-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  text-align: left;
}

.th-plan-price {
  font-size: 14px;
  color: white;
  text-align: left;
}

.th-plan-period {
  font-size: 11px;
  color: #888;
  margin-bottom: 16px;
  text-align: left;
}

.btn-compare {
  width: 100%;
  padding: 10px 0;
  background: #2a2b2f;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-compare:hover {
  background: #36373d;
}

.td-subtext-right {
  text-align: right !important;
  padding-top: 8px !important;
  padding-bottom: 24px !important;
  border-bottom: none !important;
}

.section-row td {
  font-size: 20px !important;
  font-weight: 700;
  color: white;
  text-align: left !important;
  padding-top: 40px !important;
  padding-bottom: 16px !important;
  border-bottom: none !important;
}

.td-label {
  text-align: left !important;
}

.row-title {
  color: white;
  font-size: 13px;
  margin-bottom: 4px;
}

.row-subtitle {
  color: #888;
  font-size: 11px;
}

.view-more {
  text-align: left !important;
  color: #888 !important;
  font-size: 12px !important;
  padding-top: 16px !important;
  cursor: pointer;
}

.accordion-row td {
  padding-top: 32px !important;
  border-bottom: none !important;
}

.accordion-inner {
  background: #21261d;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   5. FAQs Section
========================================= */
.faqs-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: transparent;
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* =========================================
   6. Unlimited Models List
========================================= */
.unlimited-section {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.unlimited-title {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--text-white);
}

.unlimited-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
}

.unlimited-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light-gray);
}

.unlimited-item.disabled {
  color: #555;
}

.unlimited-item-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.unlimited-badge {
  background: var(--primary);
  color: black;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.unlimited-badge.free {
  background: rgba(255, 255, 255, 0.8);
}