.page-method {
  background: #f3f4f8;
}

.method-main {
  padding-bottom: 40px;
}

.method-badge-ver {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c4dff, #5b21b6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.method-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 32px 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(49, 46, 129, 0.35);
}

.method-hero__glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.45) 0%, transparent 65%);
  pointer-events: none;
}

.method-hero__inner {
  position: relative;
  z-index: 1;
}

.method-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c4b5fd;
}

.method-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.method-hero__lead {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: #e2e8f0;
}

.method-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-hero__tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
}

.method-pricing {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  text-align: center;
}

.method-pricing__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: #c4b5fd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method-pricing__price {
  margin: 0 0 4px;
  font-size: 14px;
  color: #e2e8f0;
}

.method-pricing__price span {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.method-pricing__note {
  margin: 0 0 18px;
  font-size: 12px;
  color: #94a3b8;
}

.method-btn-buy {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #a78bfa, #7c4dff);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 77, 255, 0.45);
}

.method-btn-buy:hover {
  filter: brightness(1.06);
}

.method-btn-ghost {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #c4b5fd;
  text-decoration: none;
}

.method-btn-ghost:hover {
  color: #fff;
  text-decoration: underline;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.method-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.method-card__ico {
  display: block;
  font-size: 28px;
  margin-bottom: 12px;
}

.method-card h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
}

.method-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.method-detail {
  background: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
}

.method-detail h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
}

.method-detail__list {
  margin: 0 0 22px;
  padding-left: 20px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.method-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #eef2ff, #f5f3ff);
  border: 1px solid #c7d2fe;
}

.method-cta-bar p {
  margin: 0;
  font-size: 14px;
  color: #4338ca;
}

@media (max-width: 1024px) {
  .method-hero {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .method-hero {
    padding: 22px 18px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-cta-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .method-cta-bar .btn {
    width: 100%;
  }
}

/* Paketler kartı */
.pkg-card--method {
  border-color: #a78bfa;
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  max-width: 100%;
  flex: 1 1 100%;
}

.pkg-card--method .pkg-card__banner--method {
  background: linear-gradient(90deg, #312e81, #5b21b6);
  color: #e9d5ff;
}

.pkg-card__ribbon--method {
  background: linear-gradient(90deg, #7c4dff, #5b21b6);
  color: #fff;
}

.pkg-card__btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pkg-card__btn--ghost {
  background: #fff;
  border: 1px solid #c7d2fe;
  color: #5b21b6;
}
