/* Brandaft Neden Biz / Premium Bölüm Stilleri */
.br-why-premium {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.br-premium-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Sol İçerik */
.br-premium-content {
    flex: 1.2;
}

.br-badge-alt {
    color: #F43D05;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.br-premium-title {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.br-premium-title span {
    color: #3878C3;
}

.br-premium-lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 45px;
    border-left: 4px solid #F43D05;
    padding-left: 20px;
}

.br-p-feat {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.br-p-icon { font-size: 2rem; }
.br-p-text h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.br-p-text p { color: #555; line-height: 1.5; }

/* Sağ Video Alanı (Modern Mockup) */
.br-premium-video-area {
    flex: 0.8;
    position: relative;
}

.br-video-mockup {
    position: relative;
    z-index: 2;
}

.br-video-frame {
    position: relative;
    padding-top: 56.25%; /* 16:9 Oran */
    background: #000;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(56, 120, 195, 0.15);
    overflow: hidden;
    border: 8px solid #f8f9fa;
}

.br-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Dekoratif Uçan Kart Animasyonu */
.br-floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

.card-text { font-weight: 900; color: #1a1a1a; font-size: 1rem; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .br-premium-wrapper { flex-direction: column; gap: 60px; }
    .br-premium-content { text-align: center; }
    .br-premium-lead { border-left: none; padding-left: 0; }
    .br-p-feat { justify-content: center; text-align: left; }
    .br-premium-video-area { width: 100%; max-width: 600px; margin: 0 auto; }
}