/* ============================================
   VISUAL ENHANCEMENTS - NO BACKGROUND IMAGE
   Just animations, shadows, and hover effects
   ============================================ */

/* ============================================
   TEXT ENHANCEMENT - SUBTLE SHADOWS
   ============================================ */

.hero-line {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* ============================================
   GREEN BUTTON - ENHANCED EFFECTS
   ============================================ */

.hero-cta {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5) !important;
}

.hero-cta:active {
    transform: translateY(-1px) scale(0.98) !important;
}

/* ============================================
   HERO IMAGE - ENHANCED SHADOW & HOVER
   ============================================ */

.hero-image img {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s ease !important;
}

.hero-image img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25) !important;
}

/* ============================================
   HOW IT WORKS - ENHANCE STEP CARDS
   ============================================ */

.step-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="dark"] .step-card {
    background: rgba(45, 45, 45, 0.9) !important;
    backdrop-filter: blur(10px);
}

/* ============================================
   STEP NUMBERS - ENHANCED WITH PULSE EFFECT
   ============================================ */

.step-number {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6) !important;
}

/* Pulse animation on load */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.step-number {
    animation: pulse 2s ease-in-out infinite;
}

.step-card:hover .step-number {
    animation: none; /* Stop pulse on hover */
}

/* ============================================
   SUBTLE SECTION BACKGROUND PATTERN
   ============================================ */

.how-it-works {
    position: relative;
}

/* Add subtle dot pattern */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.5;
}

[data-theme="dark"] .how-it-works::before {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* ============================================
   SMOOTH PAGE-WIDE TRANSITIONS
   ============================================ */

* {
    scroll-behavior: smooth;
}

/* ============================================
   ENHANCED FADE-IN ANIMATIONS
   ============================================ */

.hero-content {
    animation: fadeInUp 0.8s ease-out !important;
}

.hero-image {
    animation: fadeIn 1s ease-out 0.3s both !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   STEP TITLES - SMOOTH COLOR TRANSITION
   ============================================ */

.step-title {
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #25D366;
}
