/* =============================================
   Custom styles from index.php
   ============================================= */

/* Inline styles for mobile reordering with maximum specificity */
@media (max-width: 991px) {
  .hero-section .row {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Form section first */
  .hero-mobile-form {
    order: 1 !important;
    margin-bottom: 2rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  /* Text section second */
  .hero-mobile-text {
    order: 2 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Add padding to hero section on mobile */
  .hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure proper spacing for hero content */
  .hero-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Extra padding for very small screens */
@media (max-width: 576px) {
  .hero-mobile-text {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  /* Add margin to buttons for better spacing */
  .hero-mobile-text .teleg-mob {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  /* Better spacing for list items */
  .hero-features {
    padding-left: 1.2rem !important;
    margin-right: 0.5rem !important;
  }
  
  .hero-features li {
    padding: 0.3rem 0 !important;
    font-size: 0.95rem !important;
  }
}

/* Ensure hero features animations work */
.hero-features {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 2rem !important;
}

.hero-features li {
  padding: 0.5rem 0 !important;
  font-size: 1.05rem !important;
  color: var(--text-primary) !important;
  display: flex !important;
  align-items: center !important;
  opacity: 1 !important;
  animation: fadeInLeft 0.5s ease forwards !important;
}

.hero-features li:nth-child(1) { animation-delay: 0.1s !important; }
.hero-features li:nth-child(2) { animation-delay: 0.2s !important; }
.hero-features li:nth-child(3) { animation-delay: 0.3s !important; }
.hero-features li:nth-child(4) { animation-delay: 0.4s !important; }

@keyframes fadeInLeft {
  from {
    opacity: 1 !important;
    transform: translateX(-20px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

.hero-features i {
  font-size: 1.2rem !important;
  margin-right: 0.75rem !important;
  color: var(--accent-cool) !important;
}

.hero-features strong {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
}

/* Bot Features Section - Team.php inspired design */
.bot-features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background elements like team.php */
.bot-features-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(111, 82, 237, 0.08) 0%, transparent 60%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.bot-features-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(111, 82, 237, 0.05) 0%, transparent 50%);
  animation: float 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section header with badge */
.section-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}

.feature-badge {
  display: inline-block;
  background: rgba(111, 82, 237, 0.1);
  color: var(--accent-cool);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Feature Cards - Team.php style */
.bot-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bot-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cool), var(--accent-mid));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.bot-feature-card:hover::before {
  transform: translateX(0);
}

.bot-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(111, 82, 237, 0.2);
}

/* Feature Icon */
.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  position: relative;
}

.feature-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-icon i {
  position: relative;
  z-index: 1;
}

/* Feature Content */
.feature-content {
  text-align: center;
}

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

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Feature Badge */
.feature-metric {
  display: inline-block;
  background: rgba(111, 82, 237, 0.1);
  color: var(--accent-cool);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Special gradient variations */
.telegram-gradient .feature-icon {
  background: linear-gradient(135deg, #0088cc 0%, #0056b3 100%);
}

.energy-gradient .feature-icon {
  background: linear-gradient(135deg, #ffd93d 0%, #f0b90b 100%);
}

.savings-gradient .feature-icon {
  background: linear-gradient(135deg, #81ecec 0%, #00b894 100%);
}

.deposit-gradient .feature-icon {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.wallets-gradient .feature-icon {
  background: linear-gradient(135deg, #a390e4 0%, #7c5ce6 100%);
}

.auto-gradient .feature-icon {
  background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .bot-features-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bot-feature-card {
    padding: 2rem;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
}

/* Stats Section */
.stats-section {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.05) 0%, rgba(0, 80, 254, 0.1) 100%);
}
.stats-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}
.stats-card:hover {
  transform: translateY(-5px);
}
.stats-card h3 {
  color: #425DCF;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.stats-value {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-top: auto;
}
body.dark-theme .stats-card {
  background-color: #262a33;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
body.dark-theme .stats-value {
  color: #e4e4e4;
}
@media (max-width: 768px) {
  .stats-value {
    font-size: 1.8rem;
  }
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
}

.badge-modern {
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.badge-modern.primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.badge-modern.success { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: white; }
.badge-modern.warning { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white; }
.badge-modern.info { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); color: white; }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Stats Section */
.modern-stats-section {
  padding: 100px 0;
  background: #f7fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.service-card-modern {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Removed for performance - strip animation
.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card-modern:hover::before {
  transform: translateX(0);
}
*/

/* Removed hover effects for better scroll performance
.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}
*/

.service-card-icon {
  margin-bottom: 30px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.gradient-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-green { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.gradient-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-orange { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-red { background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%); }
.gradient-teal { background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%); }
.gradient-indigo { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-pink { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-yellow { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.service-card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.service-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-badge.primary { background: rgba(102, 126, 234, 0.1); color: #667eea; }
.service-badge.success { background: rgba(67, 233, 123, 0.1); color: #43e97b; }
.service-badge.warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.service-badge.info { background: rgba(79, 172, 254, 0.1); color: #4facfe; }

.metric-display {
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 25px;
  text-align: center;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #4a5568;
}

.feature-item i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Benefits Section */
.modern-benefits-section {
  padding: 100px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.service-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefit-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #43e97b;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.875rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reliability-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.metric-label {
  color: #718096;
  font-weight: 500;
}

.metric-value {
  color: #667eea;
  font-weight: 700;
}

/* Features Section */
.modern-features-section {
  padding: 100px 0;
  background: #f7fafc;
}

.features-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 3rem;
}

.feature-card-modern {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.feature-card-modern p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Bot Highlights Section */
.modern-bot-highlights-section {
  padding: 100px 0;
  background: white;
}

.bot-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.bot-highlight-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.bot-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.bot-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
}

.bot-highlight-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
}

.bot-highlight-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.badge-small {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-small.primary { background: rgba(102, 126, 234, 0.1); color: #667eea; }
.badge-small.success { background: rgba(67, 233, 123, 0.1); color: #43e97b; }
.badge-small.warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.badge-small.info { background: rgba(79, 172, 254, 0.1); color: #4facfe; }
.badge-small.danger { background: rgba(252, 70, 107, 0.1); color: #fc466b; }
.badge-small.teal { background: rgba(11, 163, 96, 0.1); color: #0ba360; }

/* Bot Features Section */
.modern-bot-features-section {
  padding: 100px 0;
  background: #f7fafc;
}

.badge-modern.gradient-badge {
  background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
  color: white;
}

.bot-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.feature-card-large {
  padding: 45px;
}

.feature-highlight {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.1) 100%);
  border-left: 4px solid #667eea;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-highlight i {
  color: #667eea;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-highlight p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.feature-stats-row {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 30px;
}

.feature-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #43e97b;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.875rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table {
  background: #f7fafc;
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.comparison-label {
  font-weight: 600;
  color: #2d3748;
}

.comparison-value {
  color: #718096;
  text-align: right;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f7fafc;
  border-radius: 10px;
}

.benefit-item i {
  font-size: 1.25rem;
}

/* FAQ Section */
.modern-faq-section {
  padding: 100px 0;
  background: white;
}

.faq-modern-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card-modern {
  background: white;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card-modern:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

.faq-card-header:hover {
  background: #f7fafc;
}

.faq-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  flex-shrink: 0;
}

.faq-card-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafc;
  border-radius: 50%;
  color: #667eea;
  transition: all 0.3s ease;
}

.faq-card-header[aria-expanded="true"] .faq-toggle {
  background: #667eea;
  color: white;
  transform: rotate(180deg);
}

.faq-card-body {
  padding: 0 30px 30px 110px;
}

.faq-card-body p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-item i {
  font-size: 1rem;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
  padding: 12px 24px;
  border-radius: 30px;
  color: #3b82f6;
  font-weight: 600;
}

.energy-options {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.option-card {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #f7fafc;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
}

.option-number {
  font-size: 2rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 10px;
}

.option-text {
  font-size: 0.875rem;
  color: #718096;
}

.savings-comparison {
  text-align: center;
  margin-top: 20px;
}

.savings-stat {
  margin-bottom: 20px;
}

.savings-percent {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #43e97b;
  margin-bottom: 5px;
}

.savings-label {
  font-size: 1rem;
  color: #4a5568;
}

.savings-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(67, 233, 123, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  color: #2d3748;
  font-weight: 600;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .features-modern-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .bot-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .bot-features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-stats {
    justify-content: space-around;
  }
  
  .faq-card-body {
    padding: 0 20px 20px 20px;
  }
  
  .energy-options {
    flex-direction: column;
  }
  
  .feature-stats-row {
    flex-wrap: wrap;
  }
}