/* ============================================
   SCAM PROTECTION PAGE
   All classes use .sp- prefix
   ============================================ */

/* ---- HERO ---- */
.sp-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f0ff 50%, #ede9fe 100%);
  overflow: hidden;
  position: relative;
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sp-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Trust badge pill */
.sp-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid #22c55e;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  color: #166534;
}

.sp-hero__pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: sp-pulse 2s ease-in-out infinite;
}

.sp-hero__trust-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

/* Title */
.sp-hero__title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sp-gradient-text {
  background: linear-gradient(135deg, #155f85, #aaa0df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-dark-text {
  color: #1f2937;
}

/* Description */
.sp-hero__desc {
  font-size: 22.4px;
  color: #6b7280;
  line-height: 1.6;
}

/* Confidence pill */
.sp-hero__confidence-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid #aaa0df;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  color: #5b21b6;
}

.sp-hero__heart-icon {
  width: 16px;
  height: 16px;
  color: #ef4444;
}

/* Hero image card */
.sp-hero__media {
  position: relative;
}

.sp-hero__image-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

.sp-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 40%,
    rgba(170, 160, 223, 0.2) 100%
  );
  pointer-events: none;
}

/* Floating dots */
.sp-hero__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aaa0df;
  opacity: 0.6;
  animation: sp-float 3s ease-in-out infinite;
}

.sp-hero__dot--1 {
  top: 10%;
  right: -8px;
  animation-delay: 0s;
}

.sp-hero__dot--2 {
  bottom: 15%;
  right: 5%;
  width: 8px;
  height: 8px;
  background: #155f85;
  animation-delay: 1s;
}

.sp-hero__dot--3 {
  top: 40%;
  left: -12px;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
}


/* ---- SECURE TRANSACTIONS ---- */
.sp-secure {
  padding: 96px 0;
  background: #f9fafb;
}

.sp-secure__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.sp-secure__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(21, 95, 133, 0.08);
  color: #155f85;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sp-secure__badge-icon {
  width: 16px;
  height: 16px;
}

.sp-secure__title {
  font-size: 40px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.sp-secure__desc {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.sp-secure__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sp-secure__card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-secure__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sp-secure__icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(170, 160, 223, 0.2), rgba(21, 95, 133, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sp-secure__icon-box i {
  width: 28px;
  height: 28px;
  color: #155f85;
}

.sp-secure__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.sp-secure__card-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
}


/* ---- PROTECTING OUR BREEDERS ---- */
.sp-breeders {
  padding: 96px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f0ff 100%);
}

.sp-breeders__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.sp-breeders__title {
  font-size: 40px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.sp-breeders__desc {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

.sp-breeders__subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #155f85;
}

.sp-breeders__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sp-breeders__card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(170, 160, 223, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-breeders__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sp-breeders__icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(170, 160, 223, 0.2), rgba(21, 95, 133, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sp-breeders__icon-box i {
  width: 28px;
  height: 28px;
  color: #155f85;
}

.sp-breeders__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.sp-breeders__card-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
}

/* Result card */
.sp-breeders__result {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border: 1.5px solid #aaa0df;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.sp-breeders__result-title {
  font-size: 24px;
  font-weight: 700;
  color: #155f85;
  margin-bottom: 12px;
}

.sp-breeders__result-desc {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.6;
}


/* ---- HOW WE STOP SCAMMERS (COMPARISON) ---- */
.sp-compare {
  padding: 96px 0;
  background: #ffffff;
}

.sp-compare__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.sp-compare__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sp-compare__badge-icon {
  width: 16px;
  height: 16px;
}

.sp-compare__title {
  font-size: 40px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.sp-compare__desc {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.sp-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sp-compare__card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

/* Red card */
.sp-compare__card--red {
  border-color: rgba(239, 68, 68, 0.2);
}

/* Green card */
.sp-compare__card--green {
  border-color: rgba(34, 197, 94, 0.2);
}

/* Card headers */
.sp-compare__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.sp-compare__card-header i {
  width: 22px;
  height: 22px;
}

.sp-compare__card-header--red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.sp-compare__card-header--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* List */
.sp-compare__list {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-compare__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
}

.sp-compare__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-compare__item--red .sp-compare__item-icon {
  color: #ef4444;
}

.sp-compare__item--green .sp-compare__item-icon {
  color: #22c55e;
}

/* Result boxes */
.sp-compare__result {
  margin: 0 28px 28px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.sp-compare__result--red {
  background: rgba(239, 68, 68, 0.06);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.sp-compare__result--green {
  background: rgba(34, 197, 94, 0.06);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.15);
}


/* ---- FINAL CTA ---- */
.sp-cta {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #155f85, #aaa0df, #e087a9);
  text-align: center;
  overflow: hidden;
}

/* Decorative circles */
.sp-cta__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sp-cta__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.sp-cta__circle--1 {
  width: 256px;
  height: 256px;
  top: 80px;
  left: 80px;
}

.sp-cta__circle--2 {
  width: 384px;
  height: 384px;
  bottom: 80px;
  right: 80px;
}

.sp-cta__content {
  position: relative;
  z-index: 2;
}

.sp-cta__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sp-cta__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 32px;
}

.sp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-cta__btn:hover {
  transform: translateY(-2px);
}

.sp-cta__btn--primary {
  background: #fff;
  color: #155f85;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.sp-cta__btn--primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.sp-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.sp-cta__btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.sp-cta__btn svg {
  width: 18px;
  height: 18px;
}


/* ---- ANIMATIONS ---- */
@keyframes sp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes sp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* ---- RESPONSIVE ---- */

/* 1024px */
@media (max-width: 1024px) {
  .sp-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sp-hero__title {
    font-size: 56px;
  }

  .sp-breeders__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */
@media (max-width: 768px) {
  .sp-hero {
    padding: 100px 0 60px;
  }

  .sp-secure__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .sp-compare__grid {
    grid-template-columns: 1fr;
  }

  .sp-secure__title,
  .sp-breeders__title,
  .sp-compare__title {
    font-size: 32px;
  }

  .sp-cta__title {
    font-size: 32px;
  }

  .sp-cta__circle--1 {
    width: 160px;
    height: 160px;
    top: 40px;
    left: 20px;
  }

  .sp-cta__circle--2 {
    width: 240px;
    height: 240px;
    bottom: 40px;
    right: 20px;
  }
}

/* 640px */
@media (max-width: 640px) {
  .sp-hero__title {
    font-size: 40px;
  }

  .sp-hero__desc {
    font-size: 18px;
  }

  .sp-breeders__grid {
    grid-template-columns: 1fr;
  }

  .sp-breeders__result {
    padding: 28px 20px;
  }

  .sp-secure,
  .sp-breeders,
  .sp-compare {
    padding: 64px 0;
  }
}
