/* === Index page specific styles === */

/* ===== WHY GIRLS SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* Cell — bento card style */
.why-cell {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.why-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Top accent border per cell */
.why-cell:nth-child(1) { border-top: 3px solid var(--color-secondary); }
.why-cell:nth-child(2) { border-top: 3px solid var(--color-lavender); }
.why-cell:nth-child(3) { border-top: 3px solid var(--color-primary); }
.why-cell:nth-child(4) { border-top: 3px solid var(--color-gold); }

/* Tag badge */
.why-cell__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why-cell__tag--secondary {
  background: var(--color-secondary-pale);
  color: var(--color-secondary-dark);
}

.why-cell__tag--primary {
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
}

.why-cell__tag--gold {
  background: var(--color-gold-pale);
  color: var(--color-gold-dark);
}

.why-cell__tag--lavender {
  background: var(--color-lavender-pale);
  color: var(--color-lavender-dark);
}

/* VS row */
.why-cell__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xs) 0;
}

.why-cell__stat {
  text-align: center;
  flex: 1;
}

.why-cell__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-h3);
  line-height: 1;
}

.why-cell__num--secondary { color: var(--color-secondary); }
.why-cell__num--primary { color: var(--color-primary); }

.why-cell__label {
  display: block;
  font-size: var(--fs-caption);
  color: var(--color-text-muted);
  margin-top: var(--space-2xs);
}

.why-cell__vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-caption);
  flex-shrink: 0;
}

/* Text */
.why-cell__text {
  font-size: var(--fs-small);
  color: var(--color-text-sec);
  line-height: 1.6;
  margin: 0;
}

.why-cell__text strong {
  color: var(--color-text);
}

/* Quote */
.why-cell__quote {
  font-size: var(--fs-small);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-lavender);
  font-style: italic;
}

/* Questions list */
.why-cell__questions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.why-cell__questions li {
  font-size: var(--fs-small);
  color: var(--color-text-sec);
  line-height: 1.5;
  padding-left: var(--space-md);
  position: relative;
}

.why-cell__questions li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 600;
}

/* Highlight box */
.why-cell__highlight {
  background: var(--color-primary-pale);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-xs);
  font-size: var(--fs-small);
  color: var(--color-text);
  line-height: 1.6;
}

.why-cell__highlight strong {
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* CTA cell */
.why-cell--cta {
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-cell {
    padding: var(--space-lg);
  }
}