/* Why Choose Us Page Styles */
.why-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.why-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.why-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 90, 160, 0.9) 0%,
    rgba(74, 144, 226, 0.8) 50%,
    rgba(230, 126, 34, 0.7) 100%
  );
}

.why-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-badge svg {
  color: var(--warning-orange);
}

.why-badge span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-sm);
}

.why-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: var(--space-md);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.why-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.why-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.why-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
}

.why-stat .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warning-orange);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.why-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Advantages Section */
.why-advantages {
  background: #fdf2f8;
}

/* Why Story Section */
.why-story {
  background: #fdf2f8;
}

/* Why Community Section */
.why-community {
  background: #fdf2f8;
}

/* Why Comparison Section */
.why-comparison {
  background: #fdf2f8;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.advantage-item {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-blue);
}

.advantage-item:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-orange);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
}

.advantage-item h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-md);
}

.advantage-item p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.advantage-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: left;
}

.advantage-details span {
  font-size: 0.9rem;
  color: var(--success-green);
  font-weight: 500;
}

/* Why Story Section */
.why-story {
  background: white;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

.story-text h2 {
  color: var(--primary-blue);
  margin-bottom: var(--space-lg);
}

.story-text p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.story-milestones {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.milestone {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--warm-beige);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-orange);
}

.milestone-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  min-width: 60px;
}

.milestone-event {
  color: var(--medium-gray);
  font-weight: 500;
}

.story-stats {
  background: var(--light-gray);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.story-stats h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

.stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: var(--space-xs);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why Community Section */
.why-community {
  background: var(--warm-beige);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.community-item {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease;
}

.community-item:hover {
  transform: translateY(-4px);
}

.community-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: white;
}

.community-item h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.community-item p {
  color: var(--medium-gray);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Why Comparison Section */
.why-comparison {
  background: white;
}

.comparison-table {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xxl);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--primary-blue);
  color: white;
}

.comparison-header > div {
  padding: var(--space-lg);
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.comparison-row > div {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.feature-cell {
  background: white;
  font-weight: 600;
  color: var(--primary-blue);
  justify-content: center;
}

.us-cell {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success-green);
  font-weight: 500;
}

.us-cell svg {
  color: var(--success-green);
  flex-shrink: 0;
}

.them-cell {
  background: rgba(231, 76, 60, 0.1);
  color: var(--error-red);
  font-weight: 500;
}

.them-cell svg {
  color: var(--error-red);
  flex-shrink: 0;
}

.comparison-cta {
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.comparison-cta h3 {
  color: white;
  margin-bottom: var(--space-md);
}

.comparison-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.comparison-cta .btn {
  background: white;
  color: var(--primary-blue);
  font-weight: 700;
}

.comparison-cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .why-stat {
    width: 100%;
    max-width: 200px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-row > div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .feature-cell {
    background: var(--primary-blue);
    color: white;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .why-buttons {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}