/* ===========================
   LIGHT CTA SECTION (APPLE STYLE)
   =========================== */

.section-cta {
  background: #f4f5f3;
  padding: 140px 0 160px;
  color: #111;
}

.cta-inner {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 80px;
}

/* Left copy */
.cta-copy h2 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #111;
}

.cta-copy p {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.60);
}

/* Button */
.section-cta .btn-primary--light {
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  background: #111;
  color: #fff;
  border: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.section-cta .btn-primary--light:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

/* ===========================
   RESPONSIVE (APPLE-LIKE)
   =========================== */

@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .section-cta {
    padding: 110px 0 120px;
  }

  .section-cta .btn-primary--light {
    align-self: flex-start;
  }
}

@media (max-width: 560px) {
  .section-cta {
    padding: 90px 0 100px;
  }

  .cta-copy h2 {
    font-size: 32px;
  }

  .cta-copy p {
    font-size: 13px;
  }

  .section-cta .btn-primary--light {
    height: 52px;
    padding: 0 28px;
    font-size: 14px;
  }
}
