/* ==========================================
   WHY ZELZONI CUSTOM STYLES
========================================== */

/* Custom Hero Layout */
.hero-arcade {
  min-height: auto;
  padding-top: 170px;
  padding-bottom: 90px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Feature Grid */
.features-detailed-section {
  padding: 60px 0 50px;
  background: #ffffff;
}

.feature-detail-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.feature-detail-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-detail-content {
  flex: 1;
}

.feature-detail-visual {
  flex: 1.1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(23, 21, 58, 0.04);
  border: 1px solid rgba(23, 21, 58, 0.05);
  background: #faf9fc;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual-placeholder {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(23, 21, 58, 0.03);
}

.feature-detail-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.feature-detail-content p {
  font-size: 1.05rem;
  color: #555273;
  line-height: 1.6;
  margin-bottom: 30px;
}

.feature-detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-detail-list li {
  font-size: 0.95rem;
  color: #17153a;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-detail-list li i {
  color: #d12984;
  font-size: 1rem;
}

/* Three Columns Core Strengths */
.strengths-section {
  padding: 60px 0;
  background: #faf9fc;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.strength-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(23, 21, 58, 0.02);
  border: 1px solid rgba(23, 21, 58, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(23, 21, 58, 0.06);
}

.strength-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(111, 92, 255, 0.08);
  color: #6f5cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.strength-card.pink-accent .strength-icon {
  background: rgba(209, 41, 132, 0.08);
  color: #d12984;
}

.strength-card.peach-accent .strength-icon {
  background: rgba(255, 126, 182, 0.08);
  color: #ff7eb6;
}

.strength-card h3 {
  font-size: 1.25rem;
  font-weight: 750;
  color: #17153a;
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 0.95rem;
  color: #555273;
  line-height: 1.5;
}

/* Adjustments for Background Blobs */
.blob-why-1 {
  top: 900px;
  background: #ffd2e8;
  opacity: 0.45;
}

.blob-why-2 {
  bottom: 10%;
  background: #ffd8b7;
  opacity: 0.45;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-detail-row,
  .feature-detail-row:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Blend overlay override to fade to strengths section background color */
.hero-arcade::after {
  background: linear-gradient(to top, #faf9fc 0%, transparent 100%);
}

@media (max-width: 768px) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

