/*
Theme Name: Cortics Child
Author: kwst
Author URI: https://themeforest.net/user/kwst
Theme URI: https://themeforest.net/user/kwst
Description:  Child theme for Cortics
Template:     cortics
Version:      1.0.0
Text Domain:  cortics
*/

.digigenius-plans {
    padding: 80px 0;
    background: #F8FAFC;
}

.dg-plans-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.dg-plans-header h2 {
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 12px;
}

.dg-plans-header p {
    color: #64748B;
    font-size: 16px;
}

.dg-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .dg-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dg-plans-grid {
        grid-template-columns: 1fr;
    }
}

.dg-plan-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dg-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
}

.dg-plan-card.dg-popular {
    border-color: #3B82F6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.dg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.dg-badge-alt {
    background: #6366F1;
}

.dg-plan-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
}

.dg-plan-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dg-plan-card h3 {
    font-size: 20px;
    color: #0F172A;
    margin-bottom: 8px;
}

.dg-plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.dg-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.dg-plan-features li {
    padding: 6px 0;
    color: #475569;
    font-size: 14px;
}

.dg-plan-features li::before {
    content: "✔";
    color: #3B82F6;
    margin-right: 8px;
}

.dg-plan-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: #3B82F6;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dg-plan-btn:hover {
    background: #6366F1;
    color: #fff;
}