﻿
:root {
    --primary-color: #4154f1;
    --dark-neutral: #1f2937;
    --light-neutral: #f1f5f9;
    --white: #ffffff;
    --success-green: #10b981;
    --error-red: #ef4444;
}


.section {
    padding: 30px 0;
}

.card-custom {
    border: none;
    border-radius: 12px;
    transition: 0.3s;
}

    .card-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.icon-box {
    font-size: 30px;
    color: var(--primary-color);
}

.bg-light-custom {
/*    background: var(--light-neutral);*/
}


/* INDUSTRY CARD */
.industry-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

    .industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    /* ICON */
    .industry-card .icon {
        font-size: 30px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    /* LIST */
    .industry-card ul {
        padding-left: 0;
        list-style: none;
        margin-top: 15px;
    }

        .industry-card ul li {
            font-size: 14px;
            margin-bottom: 8px;
        }

    /* FEATURED (CASTING INDUSTRY) */
    .industry-card.featured {
        border: 2px solid var(--primary-color);
        box-shadow: 0 15px 40px rgba(65,84,241,0.15);
        transform: scale(1.03);
    }

        .industry-card.featured:hover {
            transform: scale(1.05);
        }

/* SECTION BACKGROUND */
/*.pricing-section, .used-in-section {
    background: linear-gradient(180deg, #f8faff, #eef2ff) !important;
}
*/
/* CARD BASE */
.pricing-card-pro {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    max-width: 400px;
}

    /* HOVER EFFECT */
    .pricing-card-pro:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }

    /* FEATURED CARD */
    .pricing-card-pro.featured {
        background: linear-gradient(135deg, #4154f1, #6577ff);
        transform: scale(1.08);
        color: white;
        box-shadow: 0 25px 70px rgba(65,84,241,0.4);
    }

        /* FEATURED HOVER */
        .pricing-card-pro.featured:hover {
            transform: scale(1.1) translateY(-5px);
        }

/* BADGE */
.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* TEXT */
.plan-name {
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

    .price span {
        font-size: 14px;
        color: #aaa;
    }

/* LIST */
.pricing-card-pro ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .pricing-card-pro ul li {
        margin-bottom: 12px;
        font-size: 14px;
    }

/* FEATURED TEXT FIX */
.pricing-card-pro.featured .price span {
    color: #e0e7ff;
}
