/* Remixicon fallback */
:where([class^="ri-"])::before { content: "\f3c2"; }

/* Brand backgrounds */
.gradient-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Subtle pearlescent light */
.pearl-gradient {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255, 217, 0, 0.523), transparent 60%),
              radial-gradient(1000px 500px at 80% 20%, rgba(255, 217, 1, 0.434), transparent 60%),
              linear-gradient(135deg, #ffffff 0%, #f5f7fb 50%, #eef2f8 100%);
}

.gold-gradient { /* renamed usage kept for CTA background */
  background: linear-gradient(135deg, #ffee00 0%, #f8e803 100%);
}

/* Scroll reveal */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Floating dots */
.floating-animation { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Cards */
.testimonial-card, .benefit-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover, .benefit-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }

/* Partner logos */
.partner-logo { filter: grayscale(100%); transition: filter 0.3s ease; }
.partner-logo:hover { filter: grayscale(0%); }

/* Checkbox */
.custom-checkbox {
  appearance: none; width: 1.25rem; height: 1.25rem; border: 2px solid #d1d5db; border-radius: 4px;
  position: relative; cursor: pointer; transition: all 0.2s ease;
}
.custom-checkbox:checked { background-color: #ffe100fd; border-color: #f9ed09; }
.custom-checkbox:checked::after {
  content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: white; font-size: 0.75rem; font-weight: bold;
}

/* Urgency banner + pulse */
.urgency-banner {
  background: linear-gradient(90deg, #ffea04 0%, #ffe600 100%);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.9; } }

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 0; height: 0; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background-color: rgba(0,0,0,0.7); }
