.tariff-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tariff-price::before {
    content: '₴';
    font-size: 42px;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255,215,0,0.5);
}

.tariff-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255,255,255,0.05) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.course-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, 
        #0057b7 0%, 
        #1abc9c 33%, 
        #ffd700 66%, 
        #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding: 25px 40px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 87, 183, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

.course-hero h1::before,
.course-hero h1::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 28px;
    animation: spin 4s linear infinite;
}

.course-hero h1::before {
    left: 15px;
}

.course-hero h1::after {
    right: 15px;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}
.course-hero h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 20px 50px 20px 70px;

    border-radius: 15px;
    border: 3px solid #1abc9c;
    box-shadow: 
        0 10px 25px rgba(0, 87, 183, 0.15),
        0 4px 0 #16a085;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.course-hero h2::before {
    content: '🎓';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
}

.course-hero h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-color), 
        transparent);
    border-radius: 2px;
}
.course-hero h2::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    content: none !important;
}


/* Легкий узор для текстуры */
.tariff-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* 2. Скрываем бейдж "Найпопулярніший" */
.highlight-badge {
    display: none !important;
}

/* 3. Убираем выделение у премиум тарифа */
.tariff-card.highlight {
    border: 1px solid var(--glass-border) !important;
    transform: scale(1) !important;
}

.tariff-card.highlight:hover {
    transform: translateY(-10px) scale(1.02) !important;
}



