/* Join Clique Section */
.join-clique-section {
    margin: 60px 0;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 50px 20px;
}

.section-title {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2271b1;
}

.clique-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}

.clique-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 25px 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows card to grow to match tallest card */
}

.clique-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.card-1:before { background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%); }
.card-2:before { background: linear-gradient(90deg, #fff3cd 0%, #ffeeba 100%); }
.card-3:before {
    background: linear-gradient(90deg, #e83e8c 0%, #6f42c1 100%);
    height: 8px;
}

.clique-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.3;
}

.card-price {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 15px;
}

.card-includes {
    color: #666;
    font-size: 0.95em;
    margin: 0 0 15px;
    font-style: italic;
}

.card-subtitle {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1; /* Makes features list grow to fill space */
}

.card-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.card-features li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-button {
    display: inline-block;
    padding: 12px 15px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.65em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto; 
    max-width: 90%; 
    margin-top: auto; /* Pushes button to bottom */
    text-transform: uppercase;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
	display: block;
    margin-left: auto;
    margin-right: auto;
}

.card-button:hover {
    background: #e83e8c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

/* Popular Card Styling */
.popular-card {
    border: 2px solid #e83e8c;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: #e83e8c;
    color: white;
    font-size: 0.7em;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-benefits {
    display: block;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
    margin-top: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 993px) {
    .clique-cards {
        flex-wrap: wrap; /* Allows wrapping for multiple cards */
        justify-content: center;
    }
    .clique-card {
        flex: 0 1 calc(50% - 15px); /* Two cards per row with gap */
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .clique-cards {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    .clique-card {
        margin-bottom: 30px;
        width: 100%;
        max-width: 630px;
        padding: 30px 20px;
    }
    .card-button {
        font-size: 0.6em;
        padding: 10px 15px;
    }
    .card-features li {
        padding: 6px 0 6px 25px;
        font-size: 0.95em;
    }
}

/* Pricing display refinements */
.card-price {
    margin: 0;
}

.price-now {
    font-weight: 700;
    color: #e83e8c;
    margin: 0 !important;
}

.price-then {
    font-size: 0.7em;
    color: #e83e8c;
}
.price-note {
    font-size: 0.8em;
}
.price-separator{
    margin: 5px 0 !important;
    font-size: 0.8em;
}
