.cameo-support-section {
    padding: 100px 20px;
    background: #f7f8f7;
}

.cameo-support-section .container {
    max-width: 1280px;
    margin: auto;
}

.support-heading {
    text-align: center;
    margin-bottom: 70px;
}

.support-heading span {
    display: block;
    color: #287d81;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.support-heading h2 {
    font-size: 52px;
    color: #287d81;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.support-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.support-card {
    background: #fff;
    border: 1px solid #e8eeee;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: .3s;
}

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

.support-card.featured {
    border-color: #287d81;
}

.support-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: #287d81;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: #287d81;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.support-card h3 {
    color: #287d81;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
}

.support-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.support-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.support-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #555;
}

.support-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #287d81;
    font-weight: bold;
}

.support-price {
    background: #f4f7f7;
    border-radius: 12px;
    text-align: center;
    padding: 25px;
    margin-top: auto;
    margin-bottom: 30px;
}

.support-price span {
    display: block;
    color: #287d81;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.support-price strong {
    display: block;
    font-size: 48px;
    color: #287d81;
    line-height: 1;
    margin: 15px 0 5px;
}

.support-price small {
    color: #666;
    font-size: 16px;
}

.support-btn {
    display: block;
    background: #287d81;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s;
}

.support-btn:hover {
    background: #1f6669;
    color: #fff;
}

.support-footer {
    text-align: center;
    margin-top: 50px;
    color: #666;
    font-size: 17px;
}

/* Tablet */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: auto;
    }

    .support-heading h2 {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cameo-support-section {
        padding: 70px 20px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .support-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .support-heading h2 {
        font-size: 34px;
    }

    .support-heading p {
        font-size: 16px;
    }

    .support-card {
        padding: 35px 25px;
    }

    .support-card h3 {
        font-size: 28px;
    }

    .support-price strong {
        font-size: 40px;
    }

    .support-btn {
        font-size: 14px;
        padding: 16px;
    }
}