/* ================= GLOBAL ================= */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ================= HERO ================= */
.content-hero {
  padding: 120px 0;
  background: #fff;
}

.content-hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */

.content-hero-text h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3;
  color: #0f9d8a;
  margin-bottom: 30px;
}

.content-hero-text p {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.content-hero-text small {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}

/* BUTTON */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  font-size: 16px;
  padding: 16px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #18b7a0;
  color: #fff;
}

.btn.outline {
  border: 2px solid #18b7a0;
  color: #18b7a0;
}

/* IMAGE */
.content-hero-image {
  display: flex;
  justify-content: center;
}

.content-hero-image img {
  width: 100%;
  max-width: 520px;
}


/* ================= CTA ================= */
.cta-banner {
  padding: 100px 0;
  background: #fff;
}

.cta-wrapper {
  background: #20b2a6;
  border-radius: 30px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;

  padding: 40px 60px;
  gap: 30px;
  overflow: visible;
}

.cta-text p {
  color: white;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
}

.cta-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-image img {
  width: 100%;
  max-width: 380px;
  display: block;
}


/* ================= RESPONSIVE ================= */

/* ≤1440px */
@media (max-width: 1440px) {
  .container {
    padding: 0 50px;
  }

  .content-hero-text h1 {
    font-size: 54px;
  }
}

/* ≤1280px */
@media (max-width: 1280px) {
  .container {
    padding: 0 45px;
  }

  .content-hero-wrapper {
    gap: 40px;
  }

  .content-hero-text h1 {
    font-size: 46px;
  }

  .content-hero-text p {
    font-size: 18px;
  }

  .cta-wrapper {
    padding: 30px 40px;
  }

  .cta-text p {
    font-size: 20px;
  }
}

/* ≤1024px (MASIH 2 KOLOM TAPI LEBIH NYATU) */
@media (max-width: 1024px) {
  .container {
    padding: 0 35px;
  }

  .content-hero-wrapper {
    grid-template-columns: 1fr 0.8fr;
    gap: 20px;
  }

  .content-hero-text h1 {
    font-size: 36px;
  }

  .content-hero-image img {
    max-width: 380px;
  }

  /* CTA FIX */
  .cta-wrapper {
    grid-template-columns: 1.3fr 0.7fr; /* kiri lebih dominan */
    align-items: center;
    gap: 20px;
  }

  .cta-text {
    display: flex;
    align-items: center; /* biar text sejajar tengah */
  }

  .cta-text p {
    font-size: 18px;
    line-height: 1.6;
  }

  .cta-image {
    display: flex;
    justify-content: center; /* jangan terlalu ke kanan */
  }

  .cta-image img {
    max-width: 260px;
  }
}

/* ≤768px (STACK) */
@media (max-width: 768px) {
  .content-hero {
    padding: 80px 0px;
  }

  .content-hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-hero-text {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .content-hero-text h1 {
    font-size: 36px;
  }

  .content-hero-text p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 22px;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }

  .cta-image {
    justify-content: center;
  }

  .cta-text p {
    font-size: 18px;
  }
}

/* ≤480px */
@media (max-width: 480px) {
  .container {
    padding: 0 25px;
  }

  .content-hero-text h1 {
    font-size: 26px;
  }

  .content-hero-text p {
    font-size: 14px;
  }

  .content-hero-image img {
    max-width: 300px;
  }

  .cta-text p {
    font-size: 16px;
  }
}


/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 100px 0;
  background: #fff;
}

/* TITLE */
.problem-title {
  font-size: 48px;
  font-weight: 800;
  color: #18b7a0;
  margin-bottom: 1rem;
}

/* SUBTITLE */
.problem-subtitle {
  font-size: 20px;
  color: #6b7280;
  max-width: 750px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* GRID */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* ITEM */
.problem-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* NUMBER */
.problem-item .number {
  width: 55px;
  height: 55px;
  background: #14b8a6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* TITLE ITEM */
.problem-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

/* TEXT */
.problem-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* TEXT BAWAH */
.problem-text {
  font-size: 20px;
  margin-top: 40px;
  color: #374151;
  line-height: 1.7;
  max-width: 700px;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .problem-grid {
    gap: 50px;
  }

  .problem-title {
    font-size: 42px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .problem-grid {
    gap: 40px;
  }

  .problem-title {
    font-size: 38px;
  }

  .problem-subtitle {
    font-size: 18px;
  }
}

/* ≤1024 (TABLET) */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .problem-title {
    font-size: 34px;
  }

  .problem-text {
    font-size: 18px;
  }
}

/* ≤768 (HP BESAR) */
@media (max-width: 768px) {
  .problem {
    padding: 80px 20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .problem-title {
    font-size: 28px;
  }

  .problem-subtitle {
    font-size: 16px;
  }
}

/* ≤480 (HP KECIL) */
@media (max-width: 480px) {
  .problem {
    padding: 80px 10px;
  }
  .problem-title {
    font-size: 24px;
  }

  .problem-subtitle {
    font-size: 14px;
  }

  .problem-text {
    font-size: 16px;
  }
}


/* ===== CTA FINAL ===== */
.cta-banner {
  padding: 100px 0;
  background: #fff;
}

/* WRAPPER */
.cta-wrapper {
  background: #20b2a6;
  border-radius: 30px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;

  padding: 40px 80px;
  gap: 30px;
  overflow: visible;
}

/* TEXT */
.cta-text p {
  color: white;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.8;
  max-width: 750px;
}

/* IMAGE */
.cta-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-image img {
  width: 100%;
  max-width: 400px;
  display: block;

  transform: translateY(40px); /* 🔥 ganti margin negatif (lebih aman) */
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .cta-wrapper {
    padding: 35px 60px;
  }

  .cta-text p {
    font-size: 24px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .cta-wrapper {
    padding: 30px 50px;
  }

  .cta-text p {
    font-size: 22px;
  }

  .cta-image img {
    max-width: 340px;
     transform: translateY(30px); 
  }
}

/* ≤1024 (MASIH 2 KOLOM, LEBIH NYATU) */
@media (max-width: 1024px) {
  .cta-wrapper {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 30px 40px;
  }

  .cta-text p {
    font-size: 18px;
  }

  .cta-image {
    justify-content: center;
  }

  .cta-image img {
    max-width: 280px;
    transform: translateY(31px);
  }
}

/* ≤768 (STACK) */
@media (max-width: 768px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }

  .cta-text p {
    font-size: 16px;
  }

  .cta-image {
    justify-content: center;
    margin-top: 20px;
  }

  .cta-image img {
    max-width: 260px;
    transform: translateY(31px);
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .cta-banner {
    padding: 80px 0;
  }
  .cta-text p {
    font-size: 16px;
  }

  .cta-image img {
    max-width: 220px;
    transform: translateY(30px);
  }
}

/* ===== BENEFIT SECTION ===== */
.benefit {
  padding: 100px 0;
  background: #fff;
}

/* TITLE */
.benefit-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #555;
  margin-bottom: 60px;
}

/* GRID */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* CARD */
.benefit-item {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
  transition: 0.3s;
  background: #fff;
}

/* HOVER */
.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* ICON */
.icon {
  margin-bottom: 20px;
}

.icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* TEXT */
.benefit-item p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .benefit-grid {
    gap: 50px;
  }

  .benefit-title {
    font-size: 38px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .benefit-grid {
    gap: 40px;
  }

  .benefit-title {
    font-size: 34px;
  }
}

/* ≤1024 (TABLET → 2 KOLOM) */
@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .benefit-title {
    font-size: 30px;
  }

  .benefit-item {
    padding: 30px;
  }

  .benefit-item p {
    font-size: 16px;
  }
}

/* ≤768 (HP BESAR → STACK) */
@media (max-width: 768px) {
  .benefit {
    padding: 80px 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefit-title {
    font-size: 26px;
  }
}

/* ≤480 (HP KECIL) */
@media (max-width: 480px) {
  .benefit-title {
    font-size: 22px;
  }

  .benefit-item {
    padding: 25px;
  }

  .benefit-item p {
    font-size: 14px;
  }

  .icon img {
    width: 55px;
    height: 55px;
  }
}