/* Most popular tag */
.tag-most-popular {
  background: linear-gradient(90deg, #5B75EE 0%, #9C1DE2 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
  margin-left: 25px;
}

/* Pricing table components */
.pricing-table {
  background: white;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.pricing-table-header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
  padding: 0;
}

.pricing-table-header-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  width: 100%;
}

.comparison-table__header-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  width: 100%;
}

/* Make header look clickable */
.comparison-table__header-content { cursor: pointer; }

/* Collapsible behavior: hide rows when collapsed */
.comparison-table[data-collapsed="true"] .comparison-table__row { display: none !important; }
.comparison-table[data-collapsed="true"] .comparison-table__section .comparison-table__row { display: none !important; }

/* Rotate arrow icon when collapsed (assumes the arrow img is within header-content) */
.comparison-table__header-content img { transition: transform 200ms ease; }
.comparison-table[data-collapsed="true"] .comparison-table__header-content img { transform: rotate(180deg); }

.pricing-table-title {
  font-size: 17.5px;
  color: #212123;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  line-height: 24px;
}

.pricing-table-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
}

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

.pricing-table-cell {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #E5E5E5;
}

.pricing-table-cell:first-child {
  border-left: none;
  justify-content: flex-start;
  text-align: left;
}

.pricing-table-cell--label {
  width: 100%;
  font-size: 16px;
  color: #212123;
  font-weight: 400;
  font-family: 'Geist', sans-serif;
}

.pricing-table-cell--value {
  font-size: 16px;
  color: #212123;
  font-weight: 400;
  font-family: 'Geist', sans-serif;
}

.pricing-table-cell--value.font-bold {
  font-weight: 700;
}

.pricing-table-cell--highlighted {
  background-color: rgba(91, 117, 238, 0.05);
}

/* AI feature sections container */
.ai-features-container {
  width: 107%;
  height: 100%;
  padding: 20px;
  background: #EEF4FF;
  margin-right: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  align-self: center;
  border-radius: 6px;
  /* Use border-image for gradient border, but also add a transparent border for border-radius to apply */
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #5B75EE 0%, #9C1DE2 90%) 1;
  /* Ensure border-radius clips the border-image */
  -webkit-mask-image: 
    linear-gradient(#fff 0 0), 
    linear-gradient(#fff 0 0);
  -webkit-mask-origin: border-box;
  -webkit-mask-clip: content-box, border-box;
  mask-image: 
    linear-gradient(#fff 0 0), 
    linear-gradient(#fff 0 0);
  mask-origin: border-box;
  mask-clip: content-box, border-box;
  overflow: hidden;
}


.ai-features-container .ai-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.ai-features-container .ai-header p {
  color: #171717;
  font-size: 14px;
  font-weight: 700;
}

.ai-features-container .feature-item {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 0;
}

.ai-features-container .feature-item p {
  color: #171717;
  font-size: 14px;
  font-weight: 500;
}

/* ==============================================
   UTILITY CLASSES - Reusable Utilities
   ============================================== */

/* Icon utilities */
.check-icon {
  width: 20px;
  height: 20px;
}

.check-icon--small {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.check-icon--large {
  width: 24px;
  height: 24px;
}

/* Text utilities */
.text-gradient {
  background: linear-gradient(90deg, #5B75EE 0%, #9C1DE2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.text-brand-blue {
  color: #5B75EE;
}

.text-neutral {
  color: #212123;
}

.text-muted {
  color: #6B7280;
}

/* Layout utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Spacing utilities */
.gap-xs { gap: 0.25rem; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 0.75rem; }
.gap-lg { gap: 1rem; }
.gap-xl { gap: 1.5rem; }

/* Background utilities */
.bg-blue-light {
  background-color: #F1F8FF;
}

.bg-blue-lighter {
  background-color: #EEF4FF;
}

.bg-highlight {
  background-color: rgba(91, 117, 238, 0.05);
}

/* Border utilities */
.border-blue {
  border: 1px solid #D1E5FF;
}

.border-blue-top {
  border-top: 6px solid #5B75EE;
}

.border-neutral {
  border: 1px solid #E5E5E5;
}

/* AI feature section for individual items */
.ai-feature-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background-color: #F1F8FF;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #D1E5FF;
}

/* Advanced AI features text style */
.advanced-ai-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #5B75EE;
  font-size: 14px;
  font-family: Geist;
  font-weight: 500;
  word-wrap: break-word;
}

/* Enterprise AI features */
.enterprise-ai-feature {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.enterprise-ai-feature p {
  background: linear-gradient(90deg, #5B75EE 0%, #9C1DE2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ==============================================
   STATE CLASSES - Interactive States
   ============================================== */

/* Active/Selected states */
.plan-active {
  border: 2px solid #5B75EE !important;
  box-shadow: 0 4px 12px rgba(91, 117, 238, 0.15) !important;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* Black active state for Free and Enterprise card highlighting */
.active-plan--black {
  border: 2px solid #171717 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.cell-highlighted {
  background-color: rgba(91, 117, 238, 0.05);
  font-weight: 700;
}

/* ==============================================
   PRICING CARD VARIANTS - Specific Pricing Components
   ============================================== */

.pricing-card.pricing-card--neutral {
  padding: 24px;
}
.pricing-card.pricing-card--pro {
  padding: 24px;
}
.pricing-card.pricing-card--team {
  padding: 24px;
}


/* Pricing card border variants */
.pricing-card--neutral {
  border: 1px solid #E2E4E9;
}

.pricing-card--pro {
  border-right: 1px solid #E2E4E9;
  border-bottom: 1px solid #E2E4E9;
  border-left: 1px solid #E2E4E9;
}

.pricing-card--team {
  border-right: 1px solid #E2E4E9;
  border-bottom: 1px solid #E2E4E9;
  border-left: 1px solid #E2E4E9;
}

/* Pricing card layout utilities */
.pricing-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.pricing-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  font-family: 'Geist', sans-serif;
}

.pricing-card-subtitle {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

.pricing-card-price {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-card-price-text {
  font-size: 1.875rem;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
}

/* Ensure Free and Custom texts get the same styling */
.pricing-card .pricing-card-price-text,
.pricing-card--neutral .pricing-card-price-text,
.pricing-card--pro .pricing-card-price-text,
.pricing-card--team .pricing-card-price-text {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  font-family: 'Geist', sans-serif !important;
  color: #171717 !important;
}

/* Additional specificity for the text content */
.pricing-card .pricing-card-price .pricing-card-price-text,
.pricing-card--neutral .pricing-card-price .pricing-card-price-text,
.pricing-card--pro .pricing-card-price .pricing-card-price-text,
.pricing-card--team .pricing-card-price .pricing-card-price-text {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  font-family: 'Geist', sans-serif !important;
  color: #171717 !important;
}

/* Comparison table pricing typography */
.comparison-price {
  font-family: 'Geist', sans-serif !important;
  font-weight: 600 !important;
  font-size: 34px !important;
  line-height: 40px !important;
  color: #171717 !important;
}

.comparison-price-unit {
  font-family: 'Geist', sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #525252 !important;
}

.pricing-card-price-unit {
  font-family: 'Geist', sans-serif !important;
  color: #6B7280 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
}

.pricing-card-button {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #000000;
  color: white;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.pricing-card-button:hover {
  background-color: #333333;
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

/* Pricing section layout */
.pricing-section {
  padding: 1rem 1rem 6.25rem;
  background-color: #FAFAFA;
}

@media (min-width: 768px) {
  .pricing-section {
    padding-bottom: 100px;
  }
}

.pricing-container {
  margin: 0 auto;
  max-width: 1200px;
}

.pricing-calculator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pricing-calculator {
    flex-direction: row;
  }
}

.pricing-calculator-card {
  flex: 1;
  height: 120px;
  background: white;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E4E9;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==============================================
   COMPONENT VARIANTS - Specific Components
   ============================================== */

/* Plan cards */
.plan-card {
  min-height: 650px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plan-card-gradient {
  border-top: 4px solid transparent;
  border-image-source: linear-gradient(90deg, #5B75EE 0%, #9C1DE2 100%);
  border-image-slice: 1;
}

/* Feature items */
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 13px;
  border-bottom: 1px solid #F5F5F5;
}

.feature-item--table {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
}

.feature-item__icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.feature-item__text {
  font-size: 16px;
  color: #212123;
  font-weight: 400;
  font-family: 'Geist', sans-serif;
}

/* Buttons */
.btn-arrow {
  width: 12px;
  height: 12px;
  margin-left: 8px;
}

/* Table specific components */
.comparison-table {
  background: white;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto;
}

.comparison-table__section {
  border-bottom: 1px solid #E5E5E5;
}

.comparison-table__header {
  display: flex;
  flex-direction: column;
}

.comparison-table__header--desktop {
  display: none;
}

.comparison-table__row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
}

.comparison-table__row:last-child {
  border-bottom: none;
}

.comparison-table__cell {
  padding: 1rem;
  border-left: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-table__cell:first-child {
  border-left: none;
  justify-content: flex-start;
  text-align: left;
}

.comparison-table__cell--label {
  width: 100%;
  font-size: 16px;
  color: #212123;
  font-weight: 400;
  font-family: 'Geist', sans-serif;
}

.comparison-table__cell--value {
  font-size: 16px;
  color: #212123;
  font-weight: 400;
  font-family: 'Geist', sans-serif;
}

.comparison-table__cell--highlighted {
  background-color: rgba(91, 117, 238, 0.05);
  font-weight: 700;
}

/* ==============================================
   RESPONSIVE DESIGN - Breakpoint Styles
   ============================================== */

/* Responsive pricing cards */
@media (max-width: 1340px) {
  /* Custom breakpoint for two columns at 1340px */
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1023px) {
  .tag-most-popular {
    display: inline-block;
    margin-top: 4px;
    margin-left: 0;
  }
  
  #pricing-section .flex-col.md\:flex-row {
    flex-direction: column !important;
  }
}

@media (max-width: 767px) {
  .ai-features-container {
    width: 100%;
    /* margin-left: -12px;
    padding: 12px; */
  }
  
  .pricing-card {
    padding: 16px;
    min-height: 600px;
  }
  
  #pricing-section .flex-1 {
    margin-bottom: 16px;
  }
  
  #pricing-cards {
    gap: 24px !important; /* Medium gap on tablet */
    padding: 0 8px; /* Add padding to container */
  }
}

@media (max-width: 639px) {
  .pricing-card {
    width: 100%;
    min-height: 550px; /* Mobile height */
    max-width: 100%; /* Full width on mobile */
  }
  
  .ai-features-container .feature-item {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .ai-features-container {
    width: 100%;
    margin-left: 0;
  }
  
  /* Adjust icon sizes for mobile */
  .feature-item img {
    width: 14px;
    height: 14px;
  }
  
  /* Adjust text sizes for mobile */
  .pricing-card h3 {
    font-size: 16px; /* 1rem */
  }
  
  .pricing-card p.text-sm {
    font-size: 14px; /* 0.75rem */
  }
  
  /* Container adjustments */
  #pricing-cards {
    padding: 0 8px;
    gap: 20px !important;
  }
}

/* Single column layout for very small screens */
@media (max-width: 600px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  
  .pricing-card {
    min-height: 500px; /* Small mobile height */
    max-width: 100%; /* Full width on small screens */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 12px; /* Smaller padding on small screens */
  }
  
  /* Adjust spacing for better mobile experience */
  .pricing-card p.text-3xl {
    font-size: 1.5rem; /* 24px */
  }
  
  .feature-item {
    margin-bottom: 0.25rem;
    gap: 0.5rem;
  }
  
  /* Grid gap adjustment */
  #pricing-cards {
    gap: 16px !important;
    padding: 0 12px; /* Add padding to container */
    margin: 0 auto;
    max-width: 450px; /* Limit container width on small screens */
  }
}

/* ==============================================
   FORM COMPONENTS - Custom Form Elements
   ============================================== */

/* Custom slider styles */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
  width: 100%;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #171717;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.range-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #171717;
  cursor: pointer;
}

/* Legacy support for input[type="range"] */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #171717;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #171717;
  cursor: pointer;
}

/* ==============================================
   LEGACY CLASSES - Backwards Compatibility
   ============================================== */

/* Legacy active plan class */
.active-plan {
  border: 2px solid #5B75EE !important;
  box-shadow: 0 4px 12px rgba(91, 117, 238, 0.15) !important;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* Gradient border classes for pro and team plans */
.active-plan--gradient-pro {
  border: 2px solid transparent !important;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #5B75EE, #9C1DE2) border-box !important;
  box-shadow: 0 4px 12px rgba(156, 29, 226, 0.15) !important;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.active-plan--gradient-team {
  border: 2px solid transparent !important;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #5B75EE, #9C1DE2) border-box !important;
  box-shadow: 0 4px 12px rgba(156, 29, 226, 0.15) !important;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* Legacy usage limits classes */
.usage-limits-table {
  background: white;
  overflow: hidden;
}

.usage-limits-header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
  padding: 0;
}

.usage-limits-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
}

.usage-limits-highlighted {
  background-color: rgba(91, 117, 238, 0.05);
}

/* Legacy pricing card class */
.pricing-card {
  min-height: 650px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ==============================================
   RESPONSIVE UTILITY CLASSES
   ============================================== */

/* Desktop responsive utilities */
@media (min-width: 768px) {
  .comparison-table__header--desktop {
    display: flex !important;
  }
  
  .comparison-table__row {
    flex-direction: row !important;
  }
  
  /* Desktop widths and alignment: wider label, narrower value cells */
  .comparison-table__cell {
    width: 225px;
    justify-content: center; /* push content cells to the end */
    text-align: center;
  }
  
  .comparison-table__cell:first-child {
    width: 40%; /* increase label cell width */
    justify-content: flex-start;
    text-align: left;
  }
}

/* Tablet responsive utilities */
@media (max-width: 1023px) and (min-width: 768px) {
  .pricing-table-cell {
    padding: 0.75rem;
  }
  
  .check-icon {
    width: 18px;
    height: 18px;
  }
}

/* Mobile responsive utilities */
@media (max-width: 767px) {
  .comparison-table__cell {
    padding: 0.75rem;
    width: 100% !important;
  }
  
  .check-icon {
    width: 16px;
    height: 16px;
  }
  
  .pricing-table-title {
    font-size: 16px;
  }
  
  .pricing-table-cell--value {
    font-size: 14px;
  }
  /* Why teams choose - mobile cards full width and stacked */
  .why-choose .why-cards {
    gap: 16px;
  }
  .why-choose .why-card {
    min-width: 95% !important;
    max-width: 95% !important;
    width: 95% !important;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Why teams choose - stack cards up to 1100px */
@media (max-width: 1300px) {
  .why-choose .why-cards {
    flex-direction: column !important;
    gap: 16px;
    margin-left: 12px;
    margin-right: 12px;
  }
  .why-choose .why-card {
    min-width: 95% !important;
    max-width: 95% !important;
    width: 95% !important;
    height: auto;
    margin-left: 12px;
    margin-right: 12px;
  }
}

/* Match tier header widths with table cells on desktop */
@media (min-width: 768px) {
  .comparison-table__tiers {
    gap: 0 !important; /* remove gaps so widths align exactly */
  }
  .comparison-table__tiers > div:first-child {
    width: 40% !important; /* features/label column */
  }
  .comparison-table__tiers > div {
    width: 225px !important; /* each plan column */
  }
}

/* ==============================================
   MOBILE TABS STYLES
   ============================================== */

/* Mobile tab navigation styles */
.mobile-tabs-nav {
  position: sticky;
  top: 66px;
  z-index: 5;
  background: white;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mobile-tab-btn {
  background: transparent;
  color: #6B7280;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-tab-btn.active {
  font-weight: 800;
  font-size: 16px;
  border-bottom: 2px solid #171717;
  color: #171717;
}

/* Mobile tabs container styling */
.mobile-tabs-nav .flex {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-tabs-nav .flex::-webkit-scrollbar {
  display: none;
}

/* Mobile column visibility controls */
@media (max-width: 767px) {
  /* Hide all columns by default on mobile */
  .comparison-table__cell[data-tier] {
    display: none;
  }
  
  /* Always show the label column - 234px fixed width as per Figma */
  .comparison-table__cell[data-tier="label"] {
    display: flex !important;
    width: 234px !important;
    min-width: 234px !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 16px 20px !important;
    border-right: 1px solid #E5E5E5 !important;
    align-items: center !important;
  }
  
  /* Show selected tier column - flexible width */
  .comparison-table__cell[data-tier].mobile-active {
    display: flex !important;
    flex: 1 !important;
    justify-content: center;
    text-align: center;
    padding: 16px !important;
    align-items: center;
  }
  
  /* Ensure proper row layout on mobile */
  .comparison-table__row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    min-height: 60px !important;
    height: 60px !important;
    border-bottom: 1px solid #E5E5E5;
    background: white;
  }
  
  /* Hide the desktop tier headers on mobile */
  .comparison-table__tiers {
    display: none !important;
  }
  
  /* Mobile table container improvements */
  .comparison-table {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    background: white;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #E5E5E5 !important;
  }
  
  /* Mobile table header styling - matches Figma exactly */
  .comparison-table__header {
    background: white;
    border-bottom: 1px solid #E5E5E5;
  }
  
  .comparison-table__header-content {
    padding: 24px 20px 16px 20px !important;
    background: white !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
  }
  
  /* Mobile table cell text sizing - matches Figma */
  .comparison-table__cell--value {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    color: #212123 !important;
    font-family: 'Geist', sans-serif !important;
  }
  
  /* Mobile pricing table title - matches Figma */
  .pricing-table-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #212123 !important;
    font-family: 'Geist', sans-serif !important;
    line-height: 24px !important;
  }
  
  /* Mobile table section styling */
  .comparison-table__section {
    background: white;
    border: none;
  }
  
  /* Remove any extra borders/spacing on mobile */
  .comparison-table__cell {
    border-left: none !important;
  }
  
  .comparison-table__cell:first-child {
    border-left: none !important;
  }
  
  /* Mobile dropdown arrow styling */
  .comparison-table__header-content img {
    width: 24px !important;
    height: 24px !important;
    transition: transform 200ms ease;
  }
  
  /* Ensure dropdown functionality works on mobile */
  .comparison-table__header-content {
    cursor: pointer !important;
  }
}
