/* =====================
   METODE OPTIMASI SEO
===================== */
.method-section {
  background: radial-gradient(circle at left, rgba(212, 175, 55, .12), transparent 35%), #050505;
  padding: 110px 25px;
}

.method-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.method-heading {
  max-width: 820px;
  margin-bottom: 70px;
}

.method-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 25px;
}

.method-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}

.method-heading strong {
  color: #ffffff;
}

/* WRAPPER */
.method-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* CARD */
.method-card {
  display: flex;
  gap: 25px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
  transition: .35s;
}

.method-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, .6);
}

/* NUMBER */
.method-number {
  width: 62px;
  height: 62px;
  min-width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4af37, #fff1a8);
  color: #050505;
  font-size: 20px;
  font-weight: 900;
}

.method-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
}

.method-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 20px;
}

.method-card span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(212, 175, 55, .10);
  border: 1px solid rgba(212, 175, 55, .25);
  font-size: 13px;
  font-weight: 800;
  color: #d4af37;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .method-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .method-section {
    padding: 80px 20px;
  }
  
  .method-card {
    padding: 28px;
    flex-direction: column;
  }
  
  .method-number {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
}