/* File Your Tax — ITR Filing Plans */
.tax-plans-page {
  font-family: "Inter", "Manrope", sans-serif;
  background: #f8fafc;
}

.tax-plans-section {
  padding: 48px 0 80px;
}

.tax-plans-heading {
  margin: 0 0 32px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.tax-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.tax-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 10px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tax-plan-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.tax-plan-card--featured {
  border-color: #93c5fd;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.tax-plan-offer {
  margin-bottom: 12px;
}

.tax-plan-offer__badge {
  display: inline-block;
  padding: 4px 10px;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 6px;
}

.tax-plan-offer__code {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: #64748b;
}

.tax-plan-card__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.tax-plan-card__subtitle {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
}

.tax-plan-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 20px 0 16px;
}

.tax-plan-card__was {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.tax-plan-card__now {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.tax-plan-card__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.tax-plan-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.tax-plan-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}

.tax-plan-features li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.35;
}

.tax-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 0.75rem;
}

.tax-plan-income {
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.tax-plan-income__label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
}

.tax-plan-income__list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.tax-plan-income__list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.75rem;
  line-height: 1.35;
}

.tax-plan-income__list--included li {
  color: #166534;
}

.tax-plan-income__list--included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.tax-plan-income__list--excluded li {
  color: #b91c1c;
}

.tax-plan-income__list--excluded li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.tax-plan-card__actions {
  margin-top: auto;
  text-align: center;
}

.tax-plan-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #2563eb;
  background: #fff;
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.tax-plan-btn:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.tax-plan-btn--primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.tax-plan-btn--primary:hover {
  background: #1d4ed8;
  color: #fff;
}

.tax-plan-btn--dark {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

.tax-plan-btn--dark:hover {
  background: #1e293b;
  color: #fff;
}

.tax-plan-know-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #2563eb;
  text-decoration: none;
}

.tax-plan-know-more:hover {
  text-decoration: underline;
}

/* Banner plans (ITR-U, Expert help) */
.tax-plans-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tax-plan-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.tax-plan-banner__content {
  flex: 1;
  min-width: 0;
}

.tax-plan-banner__title {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.tax-plan-banner__subtitle {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: #64748b;
}

.tax-plan-banner__features {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 24px;
}

.tax-plan-banner__features li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 0.82rem;
  color: #334155;
  break-inside: avoid;
}

.tax-plan-banner__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 0.75rem;
}

.tax-plan-banner__aside {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 160px;
}

.tax-plan-banner__offer {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
}

.tax-plan-banner__was {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.tax-plan-banner__now {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.tax-plan-banner__actions {
  width: 100%;
  max-width: 180px;
}

@media (max-width: 1200px) {
  .tax-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .tax-plans-banners {
    grid-template-columns: 1fr;
  }

  .tax-plan-banner {
    flex-direction: column;
  }

  .tax-plan-banner__aside {
    align-items: flex-start;
    text-align: left;
  }

  .tax-plan-banner__features {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .tax-plans-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page-nav a{
    padding: 6px 8px !important;
    font-size: 0.75rem !important;
  }

  .tax-plans-section {
    padding: 32px 0 56px;
  }
}

.tax-plans-current-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
}

.tax-plans-current-banner__badge {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  background: #2563eb;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tax-plans-current-banner__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.tax-plans-current-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.tax-plans-current-banner__hint {
  font-size: 0.8rem;
  color: #1e40af;
}

.tax-plan-btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.tax-plan-card--current {
  border-color: #93c5fd;
  background: #f8fafc;
}

.tax-plan-card__status {
  position: absolute;
  /* top: 12px; */
  right: 12px;
  padding: 3px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tax-plan-card__status--current {
  background: #dbeafe;
  color: #1d4ed8;
}

.tax-plan-card__status--upgrade {
  background: #fef3c7;
  color: #b45309;
}

.tax-plan-card__upgrade-diff {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b45309;
}

.pricing-page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -12px 0 28px;
}

.pricing-page-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pricing-page-nav a:hover {
  border-color: #2563eb;
  color: #1d4ed8;
  background: #eff6ff;
}

.pricing-section-label {
  margin: 0 0 20px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

/* Category buy-now selector */
.pricing-cat-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: -4px auto 36px;
}

.pricing-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-cat-row:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
}

.pricing-cat-row__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-cat-row__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cat-row__buy:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.34);
}

.pricing-cat-row__buy:active {
  transform: scale(0.98);
}

/* Offset anchored sections below sticky header */
#pricing-itr,
#pricing-trademark,
#pricing-gst,
#pricing-fssai {
  scroll-margin-top: 90px;
}

@media (max-width: 640px) {
  .pricing-cat-row {
    padding: 12px 14px;
  }

  .pricing-cat-row__name {
    font-size: 0.92rem;
  }

  .pricing-cat-row__buy {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.82rem;
  }
}

.pricing-service-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #e2e8f0;
}

.pricing-service-section__head {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-service-section__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
}

.pricing-service-section__sub {
  margin: 0;
  max-width: 42rem;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.pricing-service-section__note {
  margin: 12px auto 0;
  max-width: 46rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a3b8;
}

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

.pricing-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 18px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-service-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.pricing-service-card--popular {
  border-color: #93c5fd;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.pricing-service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-service-card__name {
  margin: 0 0 8px;
  padding-right: 56px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-service-card__summary {
  margin: 0 0 16px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64748b;
}

.pricing-service-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}

.pricing-service-card__currency {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-service-card__amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pricing-service-card__gst {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.pricing-service-card__includes-title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-service-card__includes {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}

.pricing-service-card__includes li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.35;
}

.pricing-service-card__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 0.72rem;
}

.pricing-service-card__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 1200px) {
  .pricing-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .pricing-service-section {
    margin-top: 40px;
    padding-top: 32px;
  }
}
