﻿.fresh-recharge-section {
/*    padding: 4rem 1rem 0rem;
*/    max-width: 1200px;
/*    margin: 0 auto;
*/}

.fresh-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.recharge-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recharge-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem 0rem 0;
/*    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
*/    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

    .recharge-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
    }

.web-card::before {
    background: #15803d;
}
/* Forest Green */
.app-v32-card::before {
    background: #facc15;
}
/* Blonde/Gold */
.app-v28-card::before {
    background: #facc15;
}
/* Blonde/Gold */
.app-v12-card::before {
    background: #facc15;
}
/* Blonde/Gold */

.recharge-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 4rem;
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-content p {
    color: #6b7280;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-btn {
    display: block;
    width: 90%;
    margin:auto;
    padding: 1.2rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .demo-btn.forest {
        background: linear-gradient(135deg, #15803d, #166534);
        color: white;
    }

    .demo-btn.blonde {
        background: linear-gradient(135deg, #facc15, #eab308);
        color: #1f2937;
        font-weight: 800;
    }

    .demo-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

@media (max-width: 768px) {
    .fresh-recharge-section {
        padding: 2rem 1rem;
    }

    .fresh-title {
        font-size: 2.2rem;
    }

    .recharge-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .recharge-container {
        grid-template-columns: 1fr;
    }

    .card-icon {
        font-size: 3.5rem;
    }
}
