/* ============================================================
   REGISTER NOW – Full-width CTA styles
   Namespace: tp-regnow-*
   ============================================================ */

.tp-regnow-wrap {
  --grad: linear-gradient(180deg, #292929 0%, #434343 100%);
  --text: #fff;
  --text-dim: rgba(255, 255, 255, 0.85);
  --chip: rgba(0, 0, 0, 0.18);
  --chip-br: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  background: var(--grad);
  color: var(--text);
  position: relative;
  margin-top: 56px;
}

.tp-regnow-inner {
  padding: 48px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
              inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.tp-regnow-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 32px;
}

/* ---------- Text content ---------- */
.tp-regnow-kicker {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid var(--chip-br);
  margin-bottom: 12px;
}

.tp-regnow-title {
  margin: 0 0 8px 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.tp-regnow-sub {
  margin: 0 0 18px 0;
  color: var(--text-dim);
  font-size: clamp(14px, 1.3vw, 16px);
}

.tp-regnow-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  gap: 8px;
}

.tp-regnow-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  opacity: 0.95;
}

.tp-regnow-points i {
  font-size: 1.05rem;
  color: #fff;
}

/* ---------- Buttons ---------- */
.tp-regnow-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tp-regnow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.tp-regnow-btn:hover {
  transform: translateY(-1px);
  background: #171717;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

/* ---------- Right visuals ---------- */
.tp-regnow-illu {
  display: grid;
  justify-items: end;
}

/* Dark gradient badge */
.tp-regnow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  white-space: nowrap;
  color: #fff;
}

.tp-regnow-badge i {
  font-size: 1.1rem;
  color: #D90404;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .tp-regnow-grid {
    grid-template-columns: 1fr;
  }

  .tp-regnow-illu {
    justify-items: start;
  }
}

@media (max-width: 576px) {
  .tp-regnow-inner {
    padding: 36px 0;
  }

  .tp-regnow-actions {
    gap: 10px;
  }

  .tp-regnow-btn {
    width: 100%;
    justify-content: center;
  }

  /* ✅ Badge ortalama (mobilde) */
  .tp-regnow-illu {
    justify-items: center;
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
}
