/*--------------------------------------------------------------
# Pricing Page Specific Styles
--------------------------------------------------------------*/
.pricing-page {
  background-color: var(--background-color);
}

/* /////////////////////////////////////////////////////////// */
/* Page Header */
/* /////////////////////////////////////////////////////////// */
.pricing-header {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 60px 0;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%) !important;
  
}

.pricing-header .page-badge {
    display: inline-block;
    padding: 8px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.pricing-header h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.pricing-header .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 500px;
}

.pricing-header .header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-header .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.pricing-header .btn-primary:hover {
  background: #169665;
  transform: translateY(-2px);
  box-shadow: 0 18px 205px color-mix(in srgb, white, transparent 5%);
  color: var(--contrast-color);
}

.pricing-header .btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--contrast-color);
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  padding: 12px 24px;
  border-radius: 8px;
}

.pricing-header .btn-secondary:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 5%);
  box-shadow: 0 18px 205px color-mix(in srgb, white, transparent 5%);
  transform: translateX(5px);
  color: #065f46;
}
.header-visual {
    position: relative;
    text-align: center;
}

.header-visual img {
    border-radius: 17px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Pricing Header Mobile Optimization - VERTICAL STACK */
@media (max-width: 768px) {
  .pricing-header {
    min-height: auto;
    padding: 100px 0 40px 0;
    display: block;
    overflow: visible;
  }
  
  /* Stack content vertically */
  .pricing-header .row.align-items-center {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Make both columns full width */
  .pricing-header .col-lg-6 {
    width: 100%;
  }
  
  /* Center content on mobile */
  .pricing-header .page-header-content {
    text-align: center;
    padding: 0 15px;
  }
  
  /* Adjust badge size */
  .pricing-header .page-badge {
    padding: 6px 16px;
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: 50px;
  }
  
  /* Adjust heading size */
  .pricing-header h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  /* Adjust lead text */
  .pricing-header .lead {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 100%;
  }
  
  /* Adjust button styling */
  .pricing-header .header-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
  }
  
  .pricing-header .btn-primary,
  .pricing-header .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
  
  /* Adjust header visual */
  .header-visual {
    padding: 0 15px;
    order: 2; /* Makes image appear after content */
  }
  
  .header-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }
}

/* For very small screens (phones) */
@media (max-width: 576px) {
  .pricing-header {
    padding: 80px 0 30px 0;
  }
  
  .pricing-header h1 {
    font-size: 1.5rem;
  }
  
  .pricing-header .page-badge {
    padding: 5px 14px;
    font-size: 11px;
  }
  
  .pricing-header .lead {
    font-size: 0.95rem;
  }
  
  .pricing-header .btn-primary,
  .pricing-header .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
    max-width: 280px;
  }
  
  .header-visual img {
    max-height: 200px;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .pricing-header {
    padding: 70px 0 25px 0;
  }
  
  .pricing-header h1 {
    font-size: 1.3rem;
  }
  
  .pricing-header .page-badge {
    padding: 4px 12px;
    font-size: 10px;
  }
  
  .pricing-header .lead {
    font-size: 0.9rem;
  }
  
  .pricing-header .btn-primary,
  .pricing-header .btn-secondary {
    max-width: 260px;
  }
  
  .header-visual img {
    max-height: 180px;
  }
}

/* Tablet-specific adjustments */
@media (min-width: 577px) and (max-width: 768px) {
  .pricing-header h1 {
    font-size: 2rem;
  }
  
  .pricing-header .lead {
    font-size: 1.1rem;
  }
  
  .header-visual img {
    max-height: 300px;
  }
}

/* Landscape mode adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .pricing-header .row.align-items-center {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .pricing-header .col-lg-6 {
    width: 50%;
  }
  
  .pricing-header .page-header-content {
    text-align: left;
    padding: 0;
  }
  
  .header-visual img {
    max-height: 200px;
  }
  
  .pricing-header .header-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .pricing-header .btn-primary,
  .pricing-header .btn-secondary {
    width: auto;
    flex: 1;
    min-width: 150px;
    max-width: none;
  }
}

/* Ensure content comes first, image second */
@media (max-width: 768px) {
  .pricing-header .col-lg-6:first-child {
    order: 1;
  }
  
  .pricing-header .col-lg-6:last-child {
    order: 2;
  }
}

/* Improve touch targets */
@media (max-width: 768px) {
  .pricing-header .btn-primary,
  .pricing-header .btn-secondary {
    min-height: 44px;
  }
}

/* Remove any leftover hover effects for better mobile performance */
@media (max-width: 768px) {
  .pricing-header .btn-primary:hover,
  .pricing-header .btn-secondary:hover {
    transform: none;
  }
}


/* /////////////////////////////////////////////////////////// */
/* Pricing Toggle */
/* /////////////////////////////////////////////////////////// */
.pricing-toggle {
  padding: 40px 0;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.toggle-label {
  font-size: 18px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.toggle-label.active {
  color: var(--accent-color);
  font-weight: 600;
}

.discount-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--contrast-color);
  transition: .4s;
  border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
  background-color: var(--accent-color);
}

.toggle-input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.toggle-description {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  margin: 0;
}

/* Pricing Plans */
.pricing-plans {
  padding: 80px 0;
  margin-top: -55px;
}

.pricing-plans .section-title .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-plans .pricing-item {
  padding: 40px 30px;
  background-color: var(--surface-color);
  border-radius: 20px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-plans .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.pricing-plans .pricing-item.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 98%));
  transform: scale(1.05);
}

.pricing-plans .pricing-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-plans .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.pricing-plans .pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.pricing-plans .pricing-item:hover .pricing-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.pricing-plans .pricing-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.pricing-plans .pricing-item:hover .pricing-icon i {
  transform: scale(1.2);
}

.pricing-plans .pricing-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

.pricing-plans .price {
  font-size: 56px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1;
}

.pricing-plans .price .currency {
  font-size: 32px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-plans .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-plans .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-plans .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-plans .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.pricing-plans .features-list li:last-child {
  border-bottom: none;
}

.pricing-plans .features-list li:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.pricing-plans .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-plans .btn-pricing {
  display: inline-block;
  padding: 14px 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  width: 100%;
  max-width: 200px;
}

.pricing-plans .btn-pricing:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing-plans .pricing-item.featured .btn-pricing {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
}

.pricing-plans .pricing-item.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.pricing-plans .pricing-item.enterprise-plan .price {
  font-size: 42px;
  line-height: 1.2;
}

.pricing-plans .pricing-item.enterprise-plan .price span:not(.currency):not(.period) {
  font-size: 32px;
  display: block;
  margin-top: 8px;
}
/* /////////////////////////////////////////////////////////// */
/* Mobile Optimization - 2 Plans in One Row */
/* /////////////////////////////////////////////////////////// */

@media (max-width: 768px) {
  /* Pricing Toggle Mobile */
  .pricing-toggle {
    padding: 30px 0 25px;
  }
  
  .toggle-container {
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  
  .toggle-label {
    font-size: 16px;
  }
  
  .discount-badge {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
  }
  
  .toggle-switch {
    width: 52px;
    height: 26px;
  }
  
  .toggle-slider:before {
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
  }
  
  .toggle-input:checked + .toggle-slider:before {
    transform: translateX(26px);
  }
  
  .toggle-description {
    font-size: 13px;
    padding: 0 20px;
    text-align: center;
  }
  
  /* Pricing Plans Mobile */
  .pricing-plans {
    padding: 40px 0;
    margin-top: -40px;
  }
  
  .pricing-plans .section-title {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .pricing-plans .section-title .subtitle {
    font-size: 14px;
    padding: 6px 14px;
    margin-bottom: 15px;
  }
  
  /* Override Bootstrap grid for 2 cards per row on mobile */
  .pricing-plans .row.gy-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 -7.5px;
  }
  
  .pricing-plans .row.gy-4 > [class*="col-"] {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    padding: 0 7.5px;
    margin-bottom: 15px;
  }
  
  /* Remove last row margin */
  .pricing-plans .row.gy-4 > [class*="col-"]:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  
  /* Mobile-optimized pricing card */
  .pricing-plans .pricing-item {
    padding: 25px 15px;
    border-radius: 16px;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }
  
  /* Remove hover effects on mobile */
  .pricing-plans .pricing-item:hover,
  .pricing-plans .pricing-item.featured:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  
  .pricing-plans .pricing-item.featured {
    transform: none;
  }
  
  /* Compact mobile sizes */
  .pricing-plans .pricing-badge {
    top: -10px;
    padding: 5px 12px;
    font-size: 10px;
  }
  
  .pricing-plans .pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  
  .pricing-plans .pricing-icon i {
    font-size: 24px;
  }
  
  /* Remove hover effects on icons */
  .pricing-plans .pricing-item:hover .pricing-icon,
  .pricing-plans .pricing-item:hover .pricing-icon i {
    transform: none;
  }
  
  .pricing-plans .pricing-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .pricing-plans .price {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .pricing-plans .price .currency {
    font-size: 24px;
  }
  
  .pricing-plans .price .period {
    font-size: 13px;
  }
  
  .pricing-plans .description {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .pricing-plans .features-list {
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .pricing-plans .features-list li {
    padding: 8px 0;
    font-size: 12px;
    gap: 8px;
  }
  
  .pricing-plans .features-list li i {
    font-size: 14px;
  }
  
  /* Remove hover effects on features */
  .pricing-plans .features-list li:hover {
    transform: none;
    color: inherit;
  }
  
  .pricing-plans .btn-pricing {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 160px;
    margin: auto auto 0;
  }
  
  /* Remove hover effects on buttons */
  .pricing-plans .btn-pricing:hover,
  .pricing-plans .pricing-item.featured .btn-pricing:hover {
    transform: none;
    box-shadow: none;
  }
  
  .pricing-plans .pricing-item.enterprise-plan .price {
    font-size: 32px;
  }
  
  .pricing-plans .pricing-item.enterprise-plan .price span:not(.currency):not(.period) {
    font-size: 26px;
    margin-top: 6px;
  }
}

/* Small mobile adjustments */
@media (max-width: 576px) {
  .pricing-plans {
    padding: 35px 0;
  }
  
  .pricing-plans .pricing-item {
    padding: 20px 12px;
    min-height: 480px;
  }
  
  .pricing-plans .pricing-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  
  .pricing-plans .pricing-icon i {
    font-size: 22px;
  }
  
  .pricing-plans .pricing-item h3 {
    font-size: 17px;
  }
  
  .pricing-plans .price {
    font-size: 32px;
  }
  
  .pricing-plans .price .currency {
    font-size: 22px;
  }
  
  .pricing-plans .description {
    font-size: 12.5px;
  }
  
  .pricing-plans .features-list li {
    font-size: 11.5px;
    padding: 7px 0;
  }
  
  .pricing-plans .btn-pricing {
    padding: 9px 18px;
    font-size: 13px;
    max-width: 150px;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .pricing-plans .row.gy-4 {
    gap: 12px;
  }
  
  .pricing-plans .row.gy-4 > [class*="col-"] {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  
  .pricing-plans .pricing-item {
    padding: 18px 10px;
    min-height: 460px;
  }
  
  .pricing-plans .pricing-badge {
    padding: 4px 10px;
    font-size: 9px;
  }
  
  .pricing-plans .btn-pricing {
    padding: 8px 16px;
    font-size: 12px;
    max-width: 140px;
  }
}

/* Landscape mode optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .pricing-plans .pricing-item {
    min-height: 520px;
  }
  
  .pricing-plans .features-list li {
    font-size: 11px;
  }
}



/* /////////////////////////////////////////////////////////// */

/* Feature Comparison */
/* /////////////////////////////////////////////////////////// */
.feature-comparison {
  padding: 80px 0;
  margin-top: -80px;
}

.comparison-table {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table .table {
  margin-bottom: 0;
}

.comparison-table .table th {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: none;
  padding: 20px;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
}

.comparison-table .table th:first-child {
  text-align: left;
  background: transparent;
}

.comparison-table .table td {
  padding: 15px 20px;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  vertical-align: middle;
}

.comparison-table .table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--heading-color);
}

.comparison-table .table tr:hover td {
  background: color-mix(in srgb, var(--accent-color), transparent 98%);
}

/* /////////////////////////////////////////////?? */
/* Value Proposition */
/* /////////////////////////////////////////////////////////// */
.value-proposition {
  padding: 80px 0;
  margin-top: -50px;
}

.value-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: -25px;
}

.value-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.value-content > p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 24px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.value-item p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.value-visual {
  position: relative;
}

.value-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-stats {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  gap: 15px;
}

.stat-card {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.stat-card .stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card .stat-label {
  font-size: 12px;
  opacity: 0.9;
}

/* /////////////////////////////////////////////////////////// */
/* Value Proposition - Mobile Optimized */
/* /////////////////////////////////////////////////////////// */
.value-proposition {
  padding: 80px 0;
  margin-top: -50px;
}

.value-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: -25px;
}

.value-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.value-content > p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 24px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.value-item p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.value-visual {
  position: relative;
}

.value-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-stats {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  gap: 15px;
}

.stat-card {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.stat-card .stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card .stat-label {
  font-size: 12px;
  opacity: 0.9;
}

/* /////////////////////////////////////////////////////////// */
/* Mobile Optimizations (≤ 768px) - HIDE IMAGE & STATS */
/* /////////////////////////////////////////////////////////// */
@media (max-width: 768px) {
  .value-proposition {
    padding: 40px 0;
    margin-top: -30px;
  }
  
  .value-content .subtitle {
    padding: 6px 14px;
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: -20px;
  }
  
  .value-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .value-content > p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .value-features {
    gap: 15px;
  }
  
  .value-item {
    flex-direction: column;
    gap: 15px;
    padding: 18px;
    border-radius: 10px;
  }
  
  .value-item:hover {
    transform: none; /* Remove hover transform on mobile */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  
  .value-item i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 10px;
  }
  
  .value-item h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .value-item p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* HIDE IMAGE AND STATS ON MOBILE */
  .value-visual {
    display: none;
  }
  
  /* Also hide just the image if needed for other cases */
  .value-visual img {
    display: none;
  }
  
  /* Hide floating stats */
  .floating-stats {
    display: none;
  }
  
  /* Stack columns vertically on mobile */
  .value-proposition .row {
    flex-direction: column;
  }
  
  .value-proposition .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }
  
  /* Remove margin from image column since it's hidden */
  .value-proposition .col-lg-6:last-child {
    display: none;
  }
  
  /* Center text on mobile */
  .value-content {
    text-align: center;
  }
  
  /* Adjust icon alignment for centered text */
  .value-item {
    text-align: left;
  }
  
  .value-item i {
    margin: 0 auto;
  }
  
  /* Touch-friendly improvements */
  .value-item {
    cursor: default;
  }
}

/* For very small screens (≤ 576px) */
@media (max-width: 576px) {
  .value-proposition {
    padding: 35px 0;
  }
  
  .value-content h2 {
    font-size: 24px;
  }
  
  .value-content > p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .value-item {
    padding: 16px;
  }
  
  .value-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .value-item h5 {
    font-size: 15px;
  }
  
  .value-item p {
    font-size: 13px;
  }
}

/* Tablet adjustments (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .value-proposition {
    padding: 50px 0;
  }
  
  .value-content h2 {
    font-size: 32px;
  }
  
  .value-features {
    gap: 20px;
  }
  
  .value-item {
    padding: 20px;
  }
}

/* For larger mobile devices in landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .value-proposition {
    padding: 30px 0;
  }
  
  .value-content h2 {
    font-size: 26px;
  }
  
  .value-item {
    flex-direction: row;
    align-items: center;
  }
  
  .value-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Ensure proper spacing on all mobile devices */
@media (max-width: 768px) {
  .value-proposition .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .value-proposition .row.gy-3 {
    --bs-gutter-y: 1.5rem;
  }
}

/* /////////////////////////////////////////////////////////// */
/* FAQ Section */
/* /////////////////////////////////////////////////////////// */
.pricing-faq {
  padding: 80px 0;
  margin-top: -80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 98%);
}

.faq-question h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.pricing-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%) !important;
}

.pricing-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.pricing-cta p {
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
  color: var(--contrast-color);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.pricing-cta .btn-primary {
  background: var(--contrast-color);
  color: #065f46;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-cta .btn-primary:hover {
   background: color-mix(in srgb, var(--contrast-color), transparent 5%);
  box-shadow: 0 18px 205px color-mix(in srgb, white, transparent 5%);
  transform: translateX(5px);
  color: #065f46;
}

.pricing-cta .btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--contrast-color);
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  padding: 12px 24px;
  border-radius: 8px;
}

.pricing-cta .btn-secondary:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 5%);
  box-shadow: 0 18px 205px color-mix(in srgb, white, transparent 5%);
  transform: translateX(5px);
  color: #065f46;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-plans .pricing-item.featured {
    transform: none;
  }
  
  .pricing-plans .pricing-item.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 36px;
  }
  
  .pricing-header .lead {
    font-size: 16px;
  }
  
  .pricing-plans {
    padding: 60px 0;
  }
  
  .pricing-plans .pricing-item {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .price {
    font-size: 48px;
  }
  
  .value-content h2 {
    font-size: 28px;
  }
  
  .comparison-table {
    padding: 20px;
  }
  
  .comparison-table .table {
    font-size: 14px;
  }
  
  .floating-stats {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  
  .pricing-cta .row {
    text-align: center;
  }
  
  .pricing-cta .text-lg-end {
    text-align: center !important;
  }
  
  .cta-buttons {
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .pricing-header {
    text-align: center;
  }
  
  .pricing-header .header-actions {
    justify-content: center;
  }
  
  .toggle-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h5 {
    font-size: 16px;
  }
}
