.plans-section {
    width: 100%;
    padding: 52px 0 40px 0;
    font-family: 'AvantGardeTR', Arial, Helvetica, sans-serif;
    background: #fff;
}
.plans-head {
    text-align: center;
    margin-bottom: 36px;
}
.plans-head h2 {
    font-family: 'AvantGardeTRDemiBold', 'AvantGardeTR', Arial, sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 7px;
    letter-spacing: -1.2px;
}
.plans-head .plans-bold {
    font-weight: 900;
}
.plans-head p {
    font-size: 22px;
    font-weight: 400;
    color: #191919;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.35;
}

.plans-cards {
    display: flex;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 70px;
}

.plan-card {
    background: linear-gradient(135deg, #fff 85%, #faf7f3 100%);
    border-radius: 18px;
    box-shadow: 0 4px 28px 0 rgba(50,50,50,.08);
    width: 370px;
    padding: 36px 28px 38px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .22s cubic-bezier(.22,1.6,.46,1), box-shadow .22s;
    will-change: transform, box-shadow;
}
.plan-card:hover {
    transform: scale(1.045) translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(80,60,30,.18);
    z-index: 2;
}
.plan-badge {
    position: absolute;
    top: -32px;
    right: 30px;
    background: #e27924;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px 0 rgba(80,60,30,.12);
    border: 6px solid #fff;
    z-index: 4;
    font-family: 'AvantGardeTRDemiBold', 'AvantGardeTR', Arial, sans-serif;
}
.plan-title {
    font-family: 'AvantGardeTRDemiBold', 'AvantGardeTR', Arial, sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #191919;
    margin-top: 20px;
    margin-bottom: 6px;
    text-align: center;
    letter-spacing: -2px;
}
.plan-subtitle {
    font-size: 19px;
    font-weight: 400;
    color: #191919;
    margin-bottom: 22px;
    text-align: center;
}
.plan-price {
    font-size: 54px;
    color: #191919;
    font-family: 'AvantGardeTRDemiBold', 'AvantGardeTR', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 2px;
    text-align: center;
    letter-spacing: -2px;
}
.plan-price span {
    font-size: 58px;
    font-family: 'AvantGardeTRDemiBold', 'AvantGardeTR', Arial, sans-serif;
    font-weight: 900;
}
.plan-desc {
    font-size: 19px;
    color: #191919;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 400;
    line-height: 1.26;
    min-height: 48px;
}

.plan-btn {
    width: 100%;
    background: #e27924;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 24px;
    font-family: 'AvantGardeTRDemiBold', 'AvantGardeTR', Arial, sans-serif;
    font-weight: 700;
    padding: 12px 0 10px 0;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 2px 16px 0 rgba(80,60,30,.11);
    margin-top: 14px;
    transition: background .18s, box-shadow .2s;
}
.plan-btn:hover {
    background: #bb671a;
    box-shadow: 0 6px 30px 0 rgba(226,121,36,.16);
    letter-spacing: 2.2px;
}

@media (max-width: 1200px) {
    .plans-cards { gap: 18px; }
    .plan-card { width: 330px; padding: 30px 15px 32px 15px; }
}
@media (max-width: 1000px) {
    .plans-cards { flex-wrap: wrap; }
    .plan-card { width: 98vw; max-width: 400px; margin: 0 auto;}
    .plan-badge { right: 24px; width: 54px; height: 54px; font-size: 25px;}
}
@media (max-width: 650px) {
    .plans-head h2 { font-size: 8vw; }
    .plans-head p { font-size: 15px; }
    .plan-card { width: 98vw; padding: 20px 6vw 26px 6vw; }
    .plan-title { font-size: 27px; }
    .plan-price { font-size: 28px; }
    .plan-btn { font-size: 16px; }
    .plan-desc { font-size: 14px; }
    .plan-badge { right: 9vw; top: -25px; width: 38px; height: 38px; font-size: 18px;}
}
