.commission-tiers-section {
    background: #FFFFFF;
    padding: 50px 24px 50px;
}

.commission-tiers-container {
    max-width: 1040px;
    margin: 0 auto;
}

.commission-tiers-header {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.commission-tiers-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #41cb8c;
}

.commission-tiers-header h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #000;
}

.commission-tiers-header p {
    margin: 18px auto 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.6;
    color: #6f7890;
}

.commission-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-bottom: 42px;
}

.tier-card {
    position: relative;
    border: 1.5px solid #4cd392;
    border-radius: 26px;
    background: #f7f7f7;
    min-height: 385px;
    overflow: visible;
}

.tier-card-inner {
    padding: 48px 30px 28px;
    text-align: center;
}

.tier-card--featured {
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.78) 0, rgba(255,255,255,0) 30%),
        radial-gradient(circle at 82% 16%, rgba(185, 248, 224, 0.55) 0, rgba(185, 248, 224, 0) 32%),
        radial-gradient(circle at 40% 100%, rgba(185, 248, 224, 0.45) 0, rgba(185, 248, 224, 0) 40%),
        linear-gradient(180deg, #f7f7f7 0%, #eefcf5 100%);
}

.tier-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 32px;
    padding: 0 18px;
    border-radius: 999px;
    background: #4acb84;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tier-badge--right {
    min-width: 92px;
}

.tier-name {
    display: block;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #9aa7bf;
}

.tier-price {
    margin-bottom: 8px;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111111;
}

.tier-subtext {
    font-size: 15px;
    line-height: 1.45;
    color: #73809a;
}

.tier-divider {
    width: 100%;
    height: 1.5px;
    margin: 22px 0 14px;
    background: #61d99d;
}

.tier-range {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #252c43;
}

.tier-support-box {
    margin-top: 36px;
    padding: 18px 16px;
    border-radius: 16px;
    background: #b8e6cf;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.tier-support-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #44cb85;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-support-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.tier-support-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #1e2840;
}

.money-guarantee {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.money-guarantee-icon {
    width: 128px;
    height: 128px;
    margin: 0 auto 16px;
}

.money-guarantee-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.money-guarantee h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.money-guarantee p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #2d2d2d;
}

.money-guarantee a {
    color: #111111;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 1150px) {
    .commission-tiers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .commission-tiers-section {
        padding: 50px 16px 88px;
    }

    .commission-tiers-header {
        margin-bottom: 42px;
    }

    .commission-tiers-header h2 {
        font-size: 34px;
    }

    .commission-tiers-header p {
        font-size: 15px;
    }

    .commission-tiers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 34px;
    }

    .tier-card {
        min-height: 0;
    }

    .tier-card-inner {
        padding: 42px 22px 24px;
    }

    .tier-price {
        font-size: 54px;
    }

    .tier-support-box {
        margin-top: 28px;
    }

    .money-guarantee-icon {
        width: 110px;
        height: 110px;
    }

    .money-guarantee h3 {
        font-size: 24px;
    }

    .money-guarantee p {
        font-size: 15px;
    }
}
