.egitim-fiyat-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 32px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0c2542, #1e4f86);
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    margin: 45px 0;
    overflow: hidden;
}
.egitim-fiyat-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fiyat-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    color: #a8c4d8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.fiyat-sol h3 {
    color: white;
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.3;
}
.fiyat-sol p {
    margin: 0 0 16px;
    opacity: 0.85;
    font-size: 14px;
    max-width: 440px;
    line-height: 1.6;
}
.fiyat-bilgi {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fiyat-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8aadc4;
}
.fiyat-check.warn { color: #fca5a5; }
.fiyat-sag {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}
.fiyat-rakam { text-align: right; }
.fiyat-baslik {
    font-size: 11px;
    opacity: 0.8;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.fiyat {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .5px;
}
.fiyat-kdv {
    font-size: 11px;
    opacity: 0.75;
    margin-top: 3px;
}
.fiyat-taksit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(74,222,128,0.15);
    border: 1px solid rgba(74,222,128,0.3);
    color: #4ade80;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 8px;
}
.fiyat-butonlar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fiyat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.fiyat-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}
.fiyat-btn-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.2s;
    white-space: nowrap;
}
.fiyat-btn-alt:hover {
    background: rgba(255,255,255,0.18);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .egitim-fiyat-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 20px;
    }
    .fiyat-sol p { max-width: 100%; }
    .fiyat-sag {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .fiyat-rakam { text-align: left; }
    .fiyat { font-size: 26px; }
    .fiyat-butonlar { width: 100%; }
    .fiyat-btn, .fiyat-btn-alt {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 10px;
    }
}