/* ===== PILLARS ===== */

.pillar {
    padding: 60px 0;
}

.container-pillar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* card style */
.pillar-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(2,6,23,0.08);
    display: flex;
    flex-direction: column;

    transition: transform 0.2s linear;
    will-change: transform;
}

.pillar-card img {
    width: 100%;
    height: 233px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card:hover {
    transform: scale(1.05);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 20px;
}

.quote-wrapper {
  max-width: 720px;
  text-align: center;
}

/* Quote */
.quote {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Arial, sans-serif;
}

/* Author */
.author {
  margin-top: 24px;
  font-size: 16px;
  color: #86868b;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Subtle divider */
.quote-section::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #d2d2d7;
  margin: 40px auto 0;
}

/* Smooth fade-in (optional but very Apple-like) */
.quote-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}