/* --- Subscription Section (Version 2) --- */
.pccs-subscription-section-v2 {
    /* Removed padding to make the section slightly more compact */
    text-align: center;
    background-color: var(--primary-colors);
    color: var(--light-text);
    padding: 40px 0px;
}

.pccs-section-title-v2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
}

.pccs-subscription-grid-v2 {
    display: grid;
    /* Reduced minmax value for a smaller card size */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    /* Reduced gap between cards */
    margin-top: 3rem;
    justify-content: center;
}

/* --- Subscription Card (Version 2) - New Design --- */
.pccs-subscription-card-v2 {
    background-color: var(--card-bg);
    /* Use light background for better contrast */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Lighter shadow for a cleaner look */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    /* Reduced padding for a smaller card */
}

.pccs-subscription-card-v2:hover {
    transform: translateY(-5px);
    /* Reduced hover lift */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Slightly more prominent shadow on hover */
    background: var(--light-text);
    border-color: var(--secondary-colors);
}

/* --- Card Image and Icon --- */
.pccs-card-icon-v2 {
    width: auto;
    /* Reduced image container size */
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Lighter shadow on image */
}

.pccs-card-icon-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Use cover to ensure images fill the space */
    border-radius: 0;
    transition: transform 0.3s ease;
}

.pccs-subscription-card-v2:hover .pccs-card-icon-v2 img {
    transform: scale(1.05);
    /* Subtler zoom effect on hover */
}

/* --- Card Title and Type --- */
.pccs-subscription-title-v2 {
    font-size: 1rem;
    /* Smaller font size for the title */
    font-weight: 700;
    color: var(--primary-colors);
    /* Dark text on light card background */
    padding: 0;
    margin: 0.5rem 0 0.25rem;
    /* Tighter spacing below title */
    transition: color 0.3s ease;
}

.pccs-subscription-type-v2 {
    color: var(--dark-text);
    /* Use a darker text for legibility */
    font-weight: 500;
    font-size: 0.8rem;
    /* Smaller font size for the type */
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* --- Hover Effect for Text --- */
.pccs-subscription-card-v2:hover .pccs-subscription-title-v2,
.pccs-subscription-card-v2:hover .pccs-subscription-type-v2 {
    color: var(--secondary-colors);
    /* White text on hover */
}

/* --- Subscription Button (Version 2) --- */
.pccs-subscription-btn-v2 {
    background-color: var(--primary-colors);
    color: var(--border-color);
    padding: 0.6rem 1.2rem;
    /* Reduced padding for a smaller button */
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    /* Smaller font for the button */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.pccs-subscription-btn-v2:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}