/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF9 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(211, 97, 53, 0.08), transparent 70%);
  pointer-events: none;
}

/* Pricing Hero */
.pricing-hero {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

/* ========================================
   BILLING TOGGLE
   ======================================== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: var(--space-8) auto var(--space-12);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  width: fit-content;
  position: relative;
}

.billing-toggle .toggle-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: #78716C;
  padding: var(--space-6) var(--space-6);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  user-select: none;
  min-width: 150px;
  text-align: center;
}

.billing-toggle .toggle-label:first-of-type {
  border-radius: var(--radius-full) 0 0 var(--radius-full);
}

.billing-toggle .toggle-label:last-of-type {
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

.toggle-switch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.toggle-switch input {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* Glass Background Container */
.toggle-switch::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(231, 229, 228, 0.3);
  border-radius: var(--radius-full);
  border: 2px solid rgba(211, 97, 53, 0.1);
  z-index: 0;
}

/* Sliding Indicator */
.toggle-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: linear-gradient(135deg,
      rgba(211, 97, 53, 0.95) 0%,
      rgba(224, 117, 81, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow:
    0 8px 32px rgba(211, 97, 53, 0.4),
    inset 0 2px 8px rgba(255, 255, 255, 0.3),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 50%,
      rgba(211, 97, 53, 0.4) 100%);
  border-radius: var(--radius-full);
  opacity: 0.6;
  animation: liquidFlow 3s ease-in-out infinite;
  pointer-events: none;
}

.toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 10%;
  right: 10%;
  height: 40%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%);
  border-radius: var(--radius-full) var(--radius-full) 50% 50%;
  filter: blur(4px);
}

@keyframes liquidFlow {

  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(2px) scale(1.02);
  }
}

/* When checked, slide to the right */
input:checked+.toggle-slider {
  left: 50%;
}

/* Active state labels */
.billing-toggle .toggle-label {
  color: #78716C;
  text-shadow: none;
}

input:not(:checked)~.toggle-label:first-of-type,
input:checked~.toggle-label:last-of-type {
  color: #1C1917;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-extrabold);
}

.toggle-discount {
  position: absolute;
  bottom: 0;
  left: 75%;
  transform: translateX(-50%) translateY(50%);
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #065F46;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(6, 95, 70, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
  white-space: nowrap;
  z-index: 10;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: translateX(-50%) translateY(50%) scale(1);
    box-shadow: 0 2px 8px rgba(6, 95, 70, 0.2);
  }

  50% {
    transform: translateX(-50%) translateY(50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.4);
  }
}

/* ========================================
   PRICING CARDS - SHARED STYLES
   ======================================== */

/* Mobile Card Components */
.mobile-card-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.mobile-card-header h4 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: #1C1917 !important;
  margin-bottom: var(--space-2);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.mobile-card-subtitle {
  font-size: var(--font-size-base);
  color: #44403C !important;
  font-weight: var(--font-weight-semibold);
}

.mobile-card-price {
  text-align: center;
  margin-bottom: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 2px solid rgba(211, 97, 53, 0.2);
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-2);
}

.price-display.monthly-price {
  display: none;
}

.price-display.yearly-price {
  display: flex;
}

.price-main-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  line-height: 1;
  width: 100%;
  margin-bottom: 4px;
}

.price-amount {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary) !important;
  text-shadow: 0 2px 4px rgba(211, 97, 53, 0.2);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 2px;
}

.price-currency-period {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
  white-space: nowrap;
  line-height: 1.2;
}

.price-currency {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #1C1917 !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-period {
  font-size: var(--font-size-base);
  color: #57534E !important;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-annual-total {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.65rem, 0.85vw, 0.75rem);
  color: #78716C;
  margin-top: 3px;
  font-weight: var(--font-weight-medium);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.mobile-card-features {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(211, 97, 53, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  color: #292524 !important;
  font-size: var(--font-size-base);
  line-height: 1.6;
  font-weight: var(--font-weight-medium);
  border: 1px solid rgba(211, 97, 53, 0.1);
}

.feature-item i {
  color: var(--color-primary) !important;
  font-size: var(--font-size-lg);
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(211, 97, 53, 0.3));
}

.feature-item:hover {
  background: rgba(211, 97, 53, 0.08);
  transform: translateX(4px);
  border-color: rgba(211, 97, 53, 0.15);
}

/* Feature Category Labels */
.feature-category-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  padding: var(--space-3) 0 var(--space-1);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(211, 97, 53, 0.15);
}

.feature-category-label:first-child {
  margin-top: 0;
  padding-top: 0;
}

/* Highlight Feature Items */
.feature-item.highlight {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  font-weight: var(--font-weight-semibold);
}

.feature-item.highlight i {
  color: #10B981 !important;
}

/* Infinity Icon Styling */
.feature-item i.fa-infinity {
  color: #7C3AED !important;
}

/* ========================================
   CTA BUTTON
   ======================================== */
.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, #D36135 0%, #E07551 100%);
  color: #FFFFFF !important;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-extrabold);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.3),
    0 8px 24px rgba(211, 97, 53, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  margin-top: auto;
}

.pricing-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.pricing-cta-btn:hover {
  background: linear-gradient(135deg, #E07551 0%, #D36135 100%);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.4),
    0 12px 32px rgba(211, 97, 53, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  color: #FFFFFF !important;
}

.pricing-cta-btn:hover::before {
  transform: translateX(100%);
}

.pricing-cta-btn:active {
  transform: translateY(-1px);
}

.pricing-cta-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.pricing-cta-btn:hover svg {
  transform: translateX(6px);
}

/* Only CTA buttons and badges can be white */
.pricing-cta-btn,
.pricing-cta-btn *,
.popular-badge,
.popular-badge *,
.enterprise-badge,
.enterprise-badge * {
  color: #FFFFFF !important;
}

/* ========================================
   BADGES
   ======================================== */
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #FFFFFF;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-extrabold);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
}

.enterprise-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: #FFFFFF;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-extrabold);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
}

/* ========================================
   CARD BASE STYLES (shared mobile + desktop)
   ======================================== */
.pricing-mobile-card,
.pricing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 245, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: var(--space-8);
  box-shadow:
    0 8px 32px rgba(211, 97, 53, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(211, 97, 53, 0.15);
  position: relative;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Remove hover pseudo-elements on cards */
.pricing-mobile-card::before,
.pricing-mobile-card::after,
.pricing-card::before,
.pricing-card::after {
  display: none;
}

/* Featured card styling */
.pricing-mobile-card.featured,
.pricing-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow:
    0 12px 40px rgba(211, 97, 53, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-mobile-card.featured .pricing-cta-btn,
.pricing-card.featured .pricing-cta-btn {
  background: linear-gradient(135deg, #B8431C 0%, #D36135 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.4),
    0 10px 28px rgba(211, 97, 53, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.pricing-mobile-card.featured .pricing-cta-btn:hover,
.pricing-card.featured .pricing-cta-btn:hover {
  background: linear-gradient(135deg, #D36135 0%, #B8431C 100%);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.5),
    0 14px 36px rgba(211, 97, 53, 0.7),
    0 6px 16px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Enterprise card styling */
.pricing-mobile-card.enterprise,
.pricing-card.enterprise {
  background: linear-gradient(145deg, #FAF5FF, #EDE9FE);
  border-color: #8B5CF6;
}

/* ========================================
   FORCE DARK TEXT ON CARDS
   ======================================== */
.pricing-mobile-card,
.pricing-mobile-card *:not(.pricing-cta-btn):not(.pricing-cta-btn *):not(.popular-badge):not(.popular-badge *):not(.enterprise-badge):not(.enterprise-badge *),
.pricing-card,
.pricing-card *:not(.pricing-cta-btn):not(.pricing-cta-btn *):not(.popular-badge):not(.popular-badge *):not(.enterprise-badge):not(.enterprise-badge *) {
  color: #1C1917 !important;
}

.pricing-mobile-card .mobile-card-subtitle,
.pricing-card .mobile-card-subtitle {
  color: #44403C !important;
}

.pricing-mobile-card .feature-item,
.pricing-card .feature-item {
  color: #292524 !important;
}

.pricing-mobile-card .feature-item i,
.pricing-card .feature-item i {
  color: var(--color-primary) !important;
}

.pricing-mobile-card .price-amount,
.pricing-card .price-amount {
  color: var(--color-primary) !important;
}

.pricing-mobile-card .price-currency,
.pricing-card .price-currency {
  color: #1C1917 !important;
}

.pricing-mobile-card .price-period,
.pricing-card .price-period {
  color: #57534E !important;
}

/* ========================================
   MOBILE PRICE DISPLAY FIXES
   ======================================== */
.mobile-card-price .price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.mobile-card-price .price-display.monthly-price {
  display: none;
}

.mobile-card-price .price-display.yearly-price {
  display: flex;
}

.mobile-card-price .price-annual-total {
  display: block;
  width: 100%;
  font-size: var(--font-size-sm);
  color: #78716C !important;
  margin-top: var(--space-2);
  font-weight: var(--font-weight-medium);
}

/* ========================================
   MOBILE LAYOUT (Swiper cards)
   ======================================== */
.pricing-cards-wrapper {
  position: relative;
}

.pricing-mobile-cards {
  display: block;
  position: relative;
  margin-top: var(--space-8);
  padding: var(--space-4) 0;
  overflow: visible;
}

.pricing-desktop-grid {
  display: none;
}

/* Swiper Container for Mobile */
.pricing-swiper {
  width: 100%;
  padding: 40px 20px 60px;
  overflow: visible;
}

.pricing-swiper .swiper-wrapper {
  align-items: flex-start;
}

.pricing-swiper .swiper-slide {
  height: auto;
}

/* Swiper Pagination */
.pricing-swiper .swiper-pagination {
  bottom: 20px !important;
}

.pricing-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D6D3D1;
  opacity: 1;
  transition: all 0.3s ease;
}

.pricing-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
}

/* Swiper Navigation */
.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-swiper .swiper-button-next:after,
.pricing-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}

.pricing-swiper .swiper-button-next:hover,
.pricing-swiper .swiper-button-prev:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

@media (max-width: 640px) {

  .pricing-swiper .swiper-button-next,
  .pricing-swiper .swiper-button-prev {
    display: none;
  }

  .billing-toggle {
    flex-wrap: wrap;
    padding: var(--space-4);
  }

}

/* ========================================
   DESKTOP LAYOUT (Card Grid)
   ======================================== */
@media (min-width: 1024px) {
  .pricing-mobile-cards {
    display: none;
  }

  .pricing-desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    padding: var(--space-8) 0;
  }

  .pricing-card {
    padding: var(--space-8) var(--space-6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:
      0 16px 48px rgba(211, 97, 53, 0.18),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

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

  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow:
      0 20px 56px rgba(211, 97, 53, 0.25),
      0 6px 20px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .pricing-card .price-amount {
    font-size: clamp(2.75rem, 4vw, 3.5rem);
  }
}

/* ========================================
   PRICE TRANSPARENCY NOTICE
   ======================================== */
.price-transparency-notice {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 700px;
  margin: 0 auto var(--space-6);
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 2px solid #F59E0B;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.transparency-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: var(--font-size-xl);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.transparency-content h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: #92400E;
  margin-bottom: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.transparency-content h4 i {
  color: #D97706;
}

.transparency-content p {
  font-size: var(--font-size-sm);
  color: #78350F;
  line-height: 1.5;
  margin: 0;
}

.transparency-content strong {
  color: #92400E;
  font-weight: var(--font-weight-bold);
}

/* ========================================
   PURCHASE FUNNEL STEPS
   ======================================== */
.purchase-funnel {
  max-width: 900px;
  margin: 0 auto var(--space-10);
  padding: var(--space-6);
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 2px solid #22C55E;
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.funnel-title {
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #166534;
  margin-bottom: var(--space-6);
}

.funnel-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.funnel-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: var(--space-4);
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.funnel-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #FFFFFF;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: var(--space-2) auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
  border-radius: 50%;
  color: #16A34A;
  font-size: var(--font-size-2xl);
}

.step-content h5 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: #166534;
  margin-bottom: var(--space-1);
}

.step-content p {
  font-size: var(--font-size-xs);
  color: #4B5563;
  line-height: 1.4;
  margin: 0;
}

.funnel-arrow {
  color: #22C55E;
  font-size: var(--font-size-xl);
  flex-shrink: 0;
}

/* Mobile Responsive for Transparency & Funnel */
@media (max-width: 768px) {
  .price-transparency-notice {
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
  }

  .transparency-content h4 {
    justify-content: center;
  }

  .funnel-steps {
    flex-direction: column;
    gap: var(--space-3);
  }

  .funnel-step {
    max-width: 100%;
    width: 100%;
  }

  .funnel-arrow {
    transform: rotate(90deg);
  }
}
