:root {
  /* Color Variables - Updated with Burgundy/Wine Theme */
  --primary-color: #770023;
  --primary-hover: #B10034;
  --secondary-color: #faf8f9;
  --accent-color: #d97706;
  --text-dark: #1e1214;
  --text-light: #64525b;
  --text-muted: #94858b;
  --white: #ffffff;
  --black: #000000;
  --gradient-primary: linear-gradient(135deg, #770023 0%, #B10034 100%);
  --gradient-secondary: linear-gradient(135deg, #fde2e7 0%, #f1c2cc 100%);
  --gradient-accent: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  --shadow-light: 0 4px 6px -1px rgba(119, 0, 35, 0.1), 0 2px 4px -1px rgba(119, 0, 35, 0.06);
  --shadow-medium: 0 10px 15px -3px rgba(119, 0, 35, 0.1), 0 4px 6px -2px rgba(119, 0, 35, 0.05);
  --shadow-heavy: 0 25px 50px -12px rgba(119, 0, 35, 0.25);

  /* Additional Burgundy Theme Colors */
  --primary-light: #a8003d;
  --primary-dark: #5c001c;
  --secondary-dark: #531c2d;
  --accent-light: #f59e0b;
  --accent-dark: #b45309;
  --success-color: #059669;
  --warning-color: #d97706;
  --error-color: #dc2626;
  --info-color: #0284c7;

  /* Background Variations */
  --bg-primary: #ffffff;
  --bg-secondary: #faf8f9;
  --bg-tertiary: #f5f1f2;
  --bg-accent: #fef2f2;

  /* Border Colors */
  --border-light: #e7d3d8;
  --border-medium: #d1b3bc;
  --border-dark: #b8949e;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

/* Navigation */
.navbar {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-light);
  background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover::before {
  left: 0;
}

.btn-outline-primary:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg,
      rgba(99, 102, 241, 0.1) 0%,
      rgba(168, 85, 247, 0.1) 50%,
      rgba(236, 72, 153, 0.1) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1633265486064-086b219458ec?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.password-demo {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-heavy);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: all 0.6s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.password-demo:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.password-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.password-item:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: translateX(10px);
}

.password-item:last-child {
  margin-bottom: 0;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Features Section */
.features-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Security Section */
.security-section {
  padding: 8rem 0;
  background: linear-gradient(135deg,
      rgba(99, 102, 241, 0.05) 0%,
      rgba(168, 85, 247, 0.05) 100%);
  position: relative;
}

.security-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.security-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.security-image:hover img {
  transform: scale(1.05);
}

.security-stats {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  margin-top: -100px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
  background-size: cover;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.btn-light-custom {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.btn-light-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  color: var(--primary-hover);
}


/* Fix for Light Custom Button Hover */
.btn-light-custom:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-color) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .password-demo {
    transform: none;
    margin-top: 3rem;
  }

  .hero-section {
    padding: 8rem 0;
  }

  .features-section,
  .security-section,
  .cta-section {
    padding: 4rem 0;
  }
}



/* Pricing Section */
.pricing-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #F7F7F7 30%, #F8F5E9 100%);
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Billing Toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.billing-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.save-badge {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-light);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

input:checked + .toggle-slider {
    background: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* Plan Header */
.plan-header {
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary-color);
    border: 1px solid #bfdbfe;
}

.featured .plan-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-color);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Pricing Details */
.pricing-details {
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0.125rem;
    transition: all 0.3s ease;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.custom-price .custom-text {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Features List */
.features-list {
    text-align: left;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.feature-item i {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Pricing Buttons */
.pricing-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.featured-btn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 0;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .amount {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-name {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}

/* Pricing Page Specific Styles */
.pricing-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(119, 0, 35, 0.05) 0%, rgba(177, 0, 52, 0.05) 100%);
    text-align: center;
    position: relative;
}

.pricing-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("https://images.unsplash.com/photo-1633265486064-086b219458ec?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.pricing-hero-section .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.pricing-hero-section .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.pricing-plans-section {
    padding: 5rem 0;
    background: white;
}

.comparison-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
}

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

.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table td:first-child {
    font-weight: 500;
}

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

.comparison-table td:not(:first-child) {
    text-align: center;
}

.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--border-light);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
}

.rating {
    color: var(--accent-color);
}

.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid var(--border-light) !important;
}

.accordion-button {
    font-weight: 600;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-hero-section {
        padding: 100px 0 60px;
    }
    
    .pricing-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-plans-section,
    .comparison-section,
    .testimonials-section,
    .faq-section {
        padding: 3rem 0;
    }
}


