/* Pricing Card High-Fidelity Styles */

.gs-premium-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-top: 30px; 
    padding-bottom: 40px;
    overflow: visible; 
    transition: transform 0.3s ease;
}

.gs-premium-card:hover {
    transform: translateY(-10px);
}

/* Ribbon Header */
.gs-card-header {
    background: var(--gs-hero); 
    padding: 40px 20px 40px;
    border-radius: 24px 24px 0 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    margin-bottom: 30px;
}

.gs-card-header .gs-header-price {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    display: block;
}

.gs-card-header .plan-name {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.5px;
}

.gs-card-header .plan-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-top: 5px;
}

/* Feature List */
.gs-feature-list {
    list-style: none;
    padding: 0 30px;
    margin: 0;
    text-align: left;
}

.gs-feature-list li {
    font-size: 14px;
    color: #475569;
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F1F5F9;
}

.gs-feature-list li:last-child {
    border-bottom: none;
}

.gs-feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #DCFCE7;
    color: #16A34A;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Floating Pill Button */
.gs-card-cta {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

.gs-pricing-footer {
    margin-top: 60px;
    font-size: 13px;
    color: #94A3B8;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .gs-premium-card {
        max-width: 400px;
        margin: 60px auto 100px;
    }
}
