/* ====================================================
   steps.css — TikTok Reklam Vermek Sadece Bir Kaç Dakika
   ==================================================== */

.steps-section {
  padding: 90px 0 100px;
  background-color: #FFFFFF !important;
  color: #0F172A;
  position: relative;
}

.steps-header {
  text-align: center;
  margin-bottom: 50px;
}

.steps-header .badge-pill {
  color: #FF2056;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.steps-title {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -1px;
  margin-top: 8px;
}

.steps-subtitle-text {
  text-align: center;
  color: #64748B;
  font-size: 16px;
  margin-top: 12px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Step Card Base - Pure White Card Box */
.step-card {
  flex: 1;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(255, 32, 86, 0.3);
}

.step-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Step Number Circle Badge */
.step-number-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0B0E14;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Arrow Between Steps */
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF2056;
}

/* Floating Form Mockup for Step 2 */
.ui-form-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mini-input-field {
  background: #F1F5F9;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 10px;
  color: #64748B;
  text-align: left;
}

.mini-submit-btn {
  background: linear-gradient(135deg, #FF2056 0%, #E6003A 100%);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 7px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

/* Floating Tags Mockup for Step 3 */
.ui-target-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.mini-tag {
  background: #E2E8F0;
  color: #334155;
  font-size: 9.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.active-tag {
  background: #FF2056;
  color: #FFFFFF;
  font-weight: 700;
}

/* Card Content Typography */
.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.step-card-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 280px;
}

.btn-step-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #FF2056;
  background: rgba(255, 32, 86, 0.04);
  border: 1px solid rgba(255, 32, 86, 0.35);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-step-action:hover {
  background: #FF2056;
  color: #FFFFFF;
  border-color: #FF2056;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 15px rgba(255, 32, 86, 0.35);
}

@media (max-width: 900px) {
  .steps-grid {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}

