/* Why Choose Us Section Styles */
.why-choose-section {
  padding: 8rem 0;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-choose-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.brand-logos-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.brand-logos-badge .brand-name {
  color: #4f46e5;
  font-weight: 900;
  letter-spacing: -0.025em;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.brand-logos-badge .brand-amp {
  color: #4f46e5;
  font-weight: 900;
  letter-spacing: -0.025em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.why-choose-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 1.5rem;
  height: auto;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    height: 600px;
  }
}

.main-feature-card {
  background: #4f46e5;
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .main-feature-card {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.main-feature-card:hover {
  transform: translateY(-0.25rem);
}

.card-content {
  position: relative;
  z-index: 10;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 2.5rem;
  }
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 28rem;
  line-height: 1.7;
}

.background-blur {
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.social-proof {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.user-avatars {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #4f46e5;
  background: #e2e8f0;
  overflow: hidden;
  margin-left: -0.5rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-text {
  font-size: 0.875rem;
  font-weight: 700;
}

.feature-card {
  background: rgba(248, 250, 252, 1);
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.25rem);
}

.speed-card {
  background: white;
}

.support-card {
  background: white;
}

.results-card {
  background: #0f172a;
  color: white;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-icon-small {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speed-card .feature-icon-small {
  background: rgba(99, 102, 241, 0.1);
}

.support-card .feature-icon-small {
  background: rgba(139, 92, 246, 0.1);
}

.results-card .feature-icon-small {
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon-small svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #4f46e5;
}

.support-card .feature-icon-small svg {
  color: #7c3aed;
}

.results-card .feature-icon-small svg {
  color: rgba(79, 70, 229, 0.8);
}

.feature-label {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(248, 250, 252, 1);
  transition: color 0.3s ease;
}

.speed-card:hover .feature-label {
  color: #4f46e5;
}

.feature-title-small {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.results-card .feature-title-small {
  color: white;
}

.feature-description-small {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.5;
}

.results-card .feature-description-small {
  color: rgba(255, 255, 255, 0.8);
}

.result-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.result-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Dark Mode Overrides */
body.dark-mode .why-choose-section .section-title {
  color: var(--dark-heading);
}
body.dark-mode .feature-card {
  background: var(--dark-bg-secondary);
  border-color: var(--dark-border);
}
body.dark-mode .speed-card,
body.dark-mode .support-card {
  background: var(--dark-bg-secondary);
}
body.dark-mode .feature-title-small {
  color: var(--dark-heading);
}
body.dark-mode .feature-description-small {
  color: var(--dark-desc);
}
body.dark-mode .feature-label {
  color: rgba(255, 255, 255, 0.05); /* very faint number */
}

