/* ============================= */
/* SECTION */
/* ============================= */
.cta-diagonal {
  background: #000;
  padding: 20px 100px 120px 110px;
  width: 100%;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.cta-container {
  max-width: 1400px;
  margin: auto;
}

/* ============================= */
/* WRAPPER (WHITE CARD) */
/* ============================= */
.cta-wrap {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;

  width: 100%;
  height: 450px; /* 🔥 Section height */
}

/* ============================= */
/* IMAGE SIDE */
/* ============================= */
.cta-visual {
  position: relative;
  overflow: hidden;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1s ease;
}

.cta-wrap:hover .cta-visual img {
  transform: scale(1);
}

/* ============================= */
/* CONTENT SIDE */
/* ============================= */
.cta-info {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  animation: slideIn 1s ease forwards;
}

.cta-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(20px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #111;
}

.cta-text {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.cta-btn {
  align-self: flex-start;
  padding: 14px 32px;
  border: 2px solid #000;
  background: transparent;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: all 0.35s ease;
}

.cta-btn:hover {
  background: #7690C9;
  border-color: #7690C9;
  color: #fff;
}

/* ============================= */
/* ANIMATION */
/* ============================= */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablet */
@media (max-width: 1024px) {
  .cta-info {
    padding: 70px 50px;
  }

  .cta-wrap {
    height: 500px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .cta-wrap {
    grid-template-columns: 1fr;
    height: auto;
  }

  .cta-visual {
    clip-path: none;
    height: 260px;
  }

  .cta-info {
    padding: 56px 28px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cta-diagonal {
    padding: 10px 20px 50px 20px;
  }

  .cta-info {
    padding: 40px 20px;
  }
}