/* ==========================================================================
   Section 00-C: Free CIBIL Check Strip Stylesheet
   ========================================================================== */

.cibil-strip-section {
  position: relative;
  padding: 110px 0 50px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F1F5F9 100%);
  border-top: 1px solid #00000045;
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
}

.cibil-ambient-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* Eyebrow Badge */
.cibil-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(14, 165, 233, 0.08);
  border: 1.5px solid rgba(14, 165, 233, 0.25);
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.cibil-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #0EA5E9;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  animation: cibilPulse 2s infinite;
}

@keyframes cibilPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

.eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0369A1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Headlines */
.cibil-main-headline {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.highlight-gradient {
  background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.cibil-sub-headline {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 660px;
}

/* Feature Pills Grid */
.cibil-feature-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cibil-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
  max-width: 100%;
}

.cibil-pill-item:hover {
  transform: translateX(6px);
  border-color: #93C5FD;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.pill-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pill-text {
  font-size: 0.92rem;
  color: #334155;
}

.pill-text strong {
  color: #0F172A;
}

/* CTA Action Button */
.cibil-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-cibil-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-cibil-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #0284C7 0%, #1D4ED8 100%);
}

.btn-cibil-action .btn-arrow {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.btn-cibil-action:hover .btn-arrow {
  transform: translateX(5px);
}

.cibil-trust-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
}

.trust-badge-mini {
  display: inline-flex;
  align-items: center;
}

.bullet-dot {
  color: #CBD5E1;
}

/* Visual Mockup Right Column */
.cibil-visual-stage {
  position: relative;
  display: inline-block;
  padding: 20px;
  max-width: 100%;
}

.cibil-card-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
  border-radius: 40px;
  filter: blur(35px);
  z-index: 0;
}

.cibil-phone-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.cibil-phone-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cibil-phone-wrapper:hover .cibil-phone-img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 65px rgba(14, 165, 233, 0.25);
}

/* Floating Badges on Phone Mockup */
.cibil-floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  animation: floatBadge 4s ease-in-out infinite;
  text-align: left;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.badge-cibil {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.badge-experian {
  bottom: 25%;
  right: -5%;
  animation-delay: 1.8s;
}

.badge-pdf-download {
  bottom: 5%;
  left: 2%;
  animation-delay: 0.9s;
}

.badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-teal {
  background-color: #0EA5E9;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.6);
}

.dot-blue {
  background-color: #2563EB;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.badge-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.badge-score {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #10B981;
  line-height: 1.2;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .cibil-strip-section {
    padding: 60px 0;
  }

  .cibil-main-headline {
    font-size: 1.85rem;
  }

  .cibil-floating-badge {
    display: none;
    /* Hide floating badges on smaller mobile screens for clean UI */
  }

  .cibil-phone-img {
    max-height: 380px;
  }

  .cibil-pill-item {
    width: 100%;
  }

  .btn-cibil-action {
    width: 100%;
    justify-content: center;
  }
}
