.plans {
    width: 100%;
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
}

.plans-title {
    text-align: center;
    margin-bottom: 50px;
}

.plans-title h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 12px;
}

.plans-title p {
    color: #a8a8a8;
    font-size: 17px;
}

.plans-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.plan-card {
    width: 320px;
    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 30px;
    transition: .35s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: #e50914;
    box-shadow: 0 10px 35px rgba(229, 9, 20, .18);
}

.plan-name {
    color: #9b9b9b;
    font-size: 18px;
}

.plan-card h2 {
    color: #fff;
    font-size: 40px;
    margin: 25px 0 8px;
}

.plan-card h2 small {
    color: #8b8b8b;
    font-size: 18px;
}

.plan-card ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.plan-card ul li {
    color: #d8d8d8;
    margin-bottom: 16px;
    padding-right: 25px;
    position: relative;
}

.plan-card ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #1ecf77;
    font-weight: bold;
}

.plan-card a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #e50914;
    padding: 14px;
    border-radius: 10px;
    transition: .3s;
}

.plan-card a:hover {
    background: #c40812;
}

.popular {
    border: 2px solid #e50914;
}

.popular::before {
    content: "محبوب ترین";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #e50914;
    color: #fff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
}
