/* BroCombo — Professional Theme v2 | Poppins */

:root {
    --bc-bg: #050810;
    --bc-bg-2: #0a0f1c;
    --bc-bg-3: #111827;
    --bc-surface: rgba(17, 24, 39, 0.72);
    --bc-surface-hover: rgba(24, 33, 55, 0.9);
    --bc-border: rgba(255, 255, 255, 0.07);
    --bc-border-light: rgba(255, 255, 255, 0.12);
    --bc-text: #f1f5f9;
    --bc-text-secondary: #cbd5e1;
    --bc-muted: #94a3b8;
    --bc-accent: #f97316;
    --bc-accent-light: #fb923c;
    --bc-accent-glow: rgba(249, 115, 22, 0.35);
    --bc-success: #10b981;
    --bc-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 45%, #fbbf24 100%);
    --bc-gradient-subtle: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, transparent 100%);
    --bc-radius: 20px;
    --bc-radius-md: 14px;
    --bc-radius-sm: 10px;
    --bc-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    --bc-shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.35);
    --bc-nav-h: 76px;
    --bc-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bc-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.bc-body {
    font-family: var(--bc-font);
    background: var(--bc-bg);
    color: var(--bc-text);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
}

/* Ambient background */
body.bc-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% -15%, rgba(249, 115, 22, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(59, 130, 246, 0.06), transparent),
        radial-gradient(ellipse 40% 35% at 10% 80%, rgba(249, 115, 22, 0.05), transparent);
    pointer-events: none;
    z-index: 0;
}

body.bc-body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.bc-wrap { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; transition: color var(--bc-transition); }

.bc-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* ─── NAVIGATION ─── */
.bc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--bc-nav-h);
    background: rgba(5, 8, 16, 0.75);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--bc-border);
    z-index: 1000;
    transition: background var(--bc-transition), box-shadow var(--bc-transition);
}

.bc-nav.scrolled {
    background: rgba(5, 8, 16, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.bc-nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.bc-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.bc-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    background: var(--bc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.bc-nav-links a {
    color: var(--bc-muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 4px 0;
}

.bc-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bc-gradient);
    border-radius: 2px;
    transition: width var(--bc-transition);
}

.bc-nav-links a:hover {
    color: var(--bc-text);
}

.bc-nav-links a:hover::after { width: 100%; }

.bc-nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.bc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    font-family: var(--bc-font);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), background var(--bc-transition), border-color var(--bc-transition);
    white-space: nowrap;
}

.bc-btn:hover { transform: translateY(-2px); }
.bc-btn:active { transform: translateY(0); }

.bc-btn-primary {
    background: var(--bc-gradient);
    color: #fff;
    box-shadow: 0 4px 20px var(--bc-accent-glow);
}

.bc-btn-primary:hover {
    box-shadow: 0 8px 32px var(--bc-accent-glow);
}

.bc-btn-outline {
    background: transparent;
    color: var(--bc-text);
    border: 1px solid var(--bc-border-light);
}

.bc-btn-outline:hover {
    border-color: var(--bc-accent);
    color: var(--bc-accent-light);
    background: rgba(249, 115, 22, 0.06);
}

.bc-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--bc-text-secondary);
    border: 1px solid transparent;
}

.bc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--bc-text);
}

.bc-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--bc-border);
    border-radius: 10px;
    color: var(--bc-text);
    font-size: 1.25rem;
    width: 42px;
    height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ─── HERO ─── */
.bc-hero {
    padding: calc(var(--bc-nav-h) + 72px) 0 96px;
    text-align: center;
    position: relative;
}

.bc-hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.bc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--bc-accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

/* Rozet + ana başlık tek blok; slider’da üstte boşlukta kalmasın */
.bc-hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.bc-hero-headline .bc-badge {
    margin-bottom: 0;
}

.bc-hero-headline .bc-hero-title {
    margin: 0;
}

.bc-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bc-accent);
    animation: bc-pulse 2s ease-in-out infinite;
}

@keyframes bc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.bc-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--bc-text);
}

.bc-hero h1 .highlight {
    display: block;
    background: var(--bc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.bc-hero-subtitle {
    display: block;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--bc-text-secondary);
    letter-spacing: -0.02em;
}

.bc-hero-desc {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--bc-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.bc-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.bc-hero-actions .bc-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 14px;
}

/* Trust cards */
.bc-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 820px;
    margin: 0 auto 40px;
}

.bc-trust-item {
    padding: 20px 16px;
    border-radius: var(--bc-radius-md);
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    backdrop-filter: blur(12px);
    transition: border-color var(--bc-transition), transform var(--bc-transition);
}

.bc-trust-item:hover {
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.bc-trust-icon {
    font-size: 1.25rem;
    margin-bottom: 8px;
    display: block;
}

.bc-trust-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bc-text);
    margin-bottom: 2px;
}

.bc-trust-item span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--bc-muted);
}

/* Job chips */
.bc-jobs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.bc-job-chip {
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bc-border);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--bc-muted);
    transition: all var(--bc-transition);
}

.bc-job-chip:hover {
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--bc-accent-light);
    background: rgba(249, 115, 22, 0.06);
}

.bc-job-chip.accent {
    border-color: rgba(249, 115, 22, 0.35);
    color: var(--bc-accent-light);
    background: rgba(249, 115, 22, 0.08);
    font-weight: 600;
}

/* ─── SECTIONS ─── */
.bc-section {
    padding: 96px 0;
    position: relative;
}

.bc-section.alt {
    background: var(--bc-bg-2);
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
}

.bc-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.bc-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bc-accent);
    margin-bottom: 12px;
}

.bc-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    color: var(--bc-text);
}

.bc-section-header p {
    color: var(--bc-muted);
    font-size: 0.95rem;
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── FEATURE CARDS ─── */
.bc-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

.bc-feature-card {
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 28px;
    backdrop-filter: blur(12px);
    transition: border-color var(--bc-transition), transform var(--bc-transition), box-shadow var(--bc-transition);
    position: relative;
    overflow: hidden;
}

.bc-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.3), transparent);
    opacity: 0;
    transition: opacity var(--bc-transition);
}

.bc-feature-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-sm);
}

.bc-feature-card:hover::before { opacity: 1; }

.bc-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
    border: 1px solid rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.bc-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bc-text);
    letter-spacing: -0.01em;
}

.bc-feature-card p {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--bc-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.bc-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.bc-tag {
    font-size: 0.68rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bc-border);
    color: var(--bc-muted);
    letter-spacing: 0.02em;
}

/* Why us cards */
.bc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bc-why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--bc-radius);
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    transition: transform var(--bc-transition);
}

.bc-why-card:hover { transform: translateY(-3px); }

.bc-why-card .bc-feature-icon { margin: 0 auto 14px; }

.bc-why-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.bc-why-card p {
    font-size: 0.8rem;
    color: var(--bc-muted);
    line-height: 1.6;
}

/* ─── PRICING ─── */
.bc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.bc-price-card {
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--bc-transition);
    position: relative;
    overflow: hidden;
}

.bc-price-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    display: block;
}

.bc-price-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-sm);
}

.bc-price-card.featured {
    border-color: var(--bc-accent);
    background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, var(--bc-surface) 40%);
    box-shadow: 0 0 40px var(--bc-accent-glow);
}

.bc-price-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 10px; /* overflow:hidden kart içinde kalması için (kesilme fix) */
    left: 50%;
    transform: translateX(-50%);
    background: var(--bc-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}

.bc-price-desc {
    font-size: 0.78rem;
    color: var(--bc-muted);
    line-height: 1.55;
    margin: 0 0 14px;
}

.bc-price-card .days {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--bc-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bc-price-card .amount {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bc-text);
    margin-bottom: 4px;
}

.bc-price-card .amount small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bc-muted);
}

.bc-price-card .name {
    font-size: 0.85rem;
    color: var(--bc-muted);
    margin-bottom: 24px;
    font-weight: 400;
}

.bc-pricing-note {
    text-align: center;
    color: var(--bc-muted);
    font-size: 0.875rem;
    margin-top: 28px;
    line-height: 1.7;
}

.bc-pricing-note a {
    color: var(--bc-accent-light);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bc-section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.bc-section-cta .bc-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 14px;
}

.bc-pricing-horizontal {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bc-price-card-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 190px;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    overflow: hidden;
    position: relative;
    transition: all var(--bc-transition);
}

.bc-price-card-horizontal:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--bc-shadow-sm);
}

.bc-price-card-horizontal.featured {
    border-color: var(--bc-accent);
    box-shadow: 0 0 40px var(--bc-accent-glow);
}

.bc-price-card-horizontal.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--bc-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 3;
}

.bc-price-h-media {
    position: relative;
    min-height: 190px;
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid var(--bc-border);
    overflow: hidden;
}

.bc-price-h-media img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    display: block;
}

.bc-price-h-media-fallback {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bc-accent);
    opacity: 0.5;
}

.bc-price-h-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(90deg, rgba(249,115,22,0.04) 0%, var(--bc-surface) 30%);
}

.bc-price-card-horizontal.featured .bc-price-h-content {
    background: linear-gradient(90deg, rgba(249,115,22,0.1) 0%, var(--bc-surface) 40%);
}

.bc-price-h-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.bc-price-h-info .days {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--bc-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bc-price-h-info .name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bc-text);
    margin-bottom: 8px;
}

.bc-price-h-info .bc-price-desc {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.55;
}

.bc-price-h-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
}

.bc-price-h-end .amount {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bc-text);
    margin-bottom: 0;
    white-space: nowrap;
}

.bc-price-h-end .amount small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bc-muted);
}

.bc-price-h-end .bc-btn {
    min-width: 140px;
    padding: 12px 24px;
}

.bc-price-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bc-price-card .bc-price-card-actions .bc-btn {
    width: 100%;
}

.bc-price-h-actions {
    align-items: flex-end;
    width: auto;
}

.bc-price-h-actions .bc-btn {
    min-width: 130px;
}

.bc-vpn-page {
    max-width: 920px;
}

.bc-vpn-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--bc-text-secondary);
    margin-bottom: 28px;
}

.bc-vpn-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.bc-vpn-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 20px;
}

.bc-vpn-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.12);
    color: var(--bc-accent-light);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.bc-vpn-feature h3 {
    font-size: 1rem;
    margin: 0 0 6px;
}

.bc-vpn-feature p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--bc-muted);
    line-height: 1.6;
}

.bc-vpn-note {
    background: rgba(249, 115, 22, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: var(--bc-radius);
    padding: 20px 22px;
    margin-bottom: 28px;
}

.bc-vpn-note h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.bc-vpn-note p {
    margin: 0;
    color: var(--bc-text-secondary);
    line-height: 1.65;
}

.bc-vpn-buy-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 22px;
}

.bc-vpn-buy-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.bc-vpn-buy-body h3 {
    margin: 6px 0 10px;
    font-size: 1.35rem;
}

.bc-vpn-buy-body p {
    color: var(--bc-muted);
    margin: 0 0 14px;
}

.bc-vpn-buy-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.bc-vpn-buy-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bc-muted);
}

.bc-vpn-buy-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bc-muted);
}

.bc-vpn-buy-actions {
    max-width: 280px;
}

/* ─── TESTIMONIALS ─── */
.bc-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bc-testimonial {
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 28px;
    transition: transform var(--bc-transition);
}

.bc-testimonial:hover { transform: translateY(-3px); }

.bc-testimonial .stars {
    color: var(--bc-accent-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.bc-testimonial p {
    font-size: 0.875rem;
    color: var(--bc-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.bc-testimonial .author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bc-text);
}

.bc-testimonial .server {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bc-accent);
    margin-top: 2px;
}

/* ─── FAQ ─── */
.bc-faq-list { max-width: 720px; margin: 0 auto; }

.bc-faq-item {
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--bc-surface);
    transition: border-color var(--bc-transition);
}

.bc-faq-item.open { border-color: rgba(249, 115, 22, 0.25); }

.bc-faq-q {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--bc-text);
    font-family: var(--bc-font);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--bc-transition);
}

.bc-faq-q span.icon {
    font-size: 1.2rem;
    color: var(--bc-muted);
    transition: transform var(--bc-transition), color var(--bc-transition);
    flex-shrink: 0;
}

.bc-faq-item.open .bc-faq-q { color: var(--bc-accent-light); }
.bc-faq-item.open .bc-faq-q span.icon {
    transform: rotate(45deg);
    color: var(--bc-accent);
}

.bc-faq-a {
    padding: 0 24px 20px;
    color: var(--bc-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    display: none;
}

.bc-faq-item.open .bc-faq-a { display: block; }

/* ─── CTA ─── */
.bc-cta {
    text-align: center;
    padding: 80px 0;
}

.bc-cta-box {
    max-width: 640px;
    margin: 0 auto;
    padding: 56px 40px;
    border-radius: var(--bc-radius);
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    position: relative;
    overflow: hidden;
}

.bc-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bc-gradient-subtle);
    pointer-events: none;
}

.bc-cta-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    position: relative;
}

.bc-cta-box p {
    color: var(--bc-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    position: relative;
}

.bc-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ─── FOOTER ─── */
.bc-footer {
    border-top: 1px solid var(--bc-border);
    padding: 64px 0 32px;
    background: var(--bc-bg-2);
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.bc-footer-brand p {
    color: var(--bc-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    margin-top: 4px;
}

.bc-footer h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    color: var(--bc-text-secondary);
}

.bc-footer ul { list-style: none; }

.bc-footer ul li { margin-bottom: 10px; }

.bc-footer ul a {
    color: var(--bc-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.bc-footer ul a:hover { color: var(--bc-accent-light); }

.bc-footer-blog-col { min-width: 0; max-width: 240px; }
.bc-footer-blog-list li { min-width: 0; }
.bc-footer-blog-link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bc-footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--bc-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--bc-muted);
    font-weight: 400;
}

/* ─── AUTH / INNER PAGES ─── */
.bc-page-hero {
    padding: calc(var(--bc-nav-h) + 48px) 0 40px;
    text-align: center;
}

.bc-page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.bc-page-hero p {
    color: var(--bc-muted);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}

.bc-auth-card {
    max-width: 440px;
    margin: 0 auto 80px;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 36px;
    box-shadow: var(--bc-shadow);
    backdrop-filter: blur(16px);
}

.bc-form-group { margin-bottom: 20px; }

.bc-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--bc-text-secondary);
}

.bc-form-group input {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--bc-radius-sm);
    border: 1px solid var(--bc-border);
    background: rgba(0, 0, 0, 0.25);
    color: var(--bc-text);
    font-family: var(--bc-font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--bc-transition), box-shadow var(--bc-transition);
}

.bc-form-group input:focus {
    border-color: var(--bc-accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.bc-form-group input::placeholder { color: var(--bc-muted); opacity: 0.6; }

.bc-alert {
    padding: 12px 16px;
    border-radius: var(--bc-radius-sm);
    font-size: 0.85rem;
    margin-bottom: 18px;
    display: none;
    font-weight: 500;
}

.bc-alert.error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.bc-alert.success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.bc-alert.show { display: block; }

.bc-content-page {
    max-width: 800px;
    margin: 0 auto 80px;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 44px;
}

.bc-content-page h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--bc-text);
}

.bc-content-page p, .bc-content-page li {
    color: var(--bc-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.bc-account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.bc-stat-card {
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 28px;
    text-align: center;
}

.bc-stat-card .value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--bc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-stat-card .label {
    color: var(--bc-muted);
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 6px;
}

.bc-stat-card.active { border-color: rgba(16, 185, 129, 0.4); }
.bc-stat-card.expired { border-color: rgba(239, 68, 68, 0.35); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .bc-why-grid { grid-template-columns: repeat(2, 1fr); }
    .bc-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .bc-nav-links { display: none; }
    .bc-nav-actions .bc-btn-ghost { display: none; }
    .bc-menu-toggle { display: flex; }

    .bc-nav.mobile-open .bc-nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--bc-nav-h);
        left: 0; right: 0;
        background: rgba(5, 8, 16, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--bc-border);
    }

    .bc-nav.mobile-open .bc-nav-actions {
        display: flex;
        position: absolute;
        top: calc(var(--bc-nav-h) + 200px);
        left: 24px; right: 24px;
        flex-direction: column;
    }

    .bc-nav.mobile-open .bc-nav-actions .bc-btn { width: 100%; }

    .bc-trust-row { grid-template-columns: repeat(2, 1fr); }
    .bc-footer-grid { grid-template-columns: 1fr 1fr; }
    .bc-account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .bc-trust-row { grid-template-columns: 1fr; }
    .bc-footer-grid { grid-template-columns: 1fr; }
    .bc-pricing-grid { grid-template-columns: 1fr; }
    .bc-vpn-features { grid-template-columns: 1fr; }
    .bc-vpn-buy-card { grid-template-columns: 1fr; }
    .bc-vpn-buy-actions { max-width: none; }
    .bc-vpn-buy-actions .bc-btn { width: 100%; }
    .bc-price-card-horizontal {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .bc-price-h-media {
        min-height: 160px;
        border-right: none;
        border-bottom: 1px solid var(--bc-border);
    }
    .bc-price-h-media img,
    .bc-price-h-media-fallback {
        min-height: 160px;
    }
    .bc-price-h-content {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    .bc-price-h-end {
        align-items: stretch;
    }
    .bc-price-h-end .bc-btn { width: 100%; }
    .bc-why-grid { grid-template-columns: 1fr; }
    .bc-features { grid-template-columns: 1fr; }
    .bc-hero { padding-top: calc(var(--bc-nav-h) + 48px); }
    .bc-section { padding: 64px 0; }
    .bc-cta-box { padding: 40px 24px; }
}

/* ─── OWEB-STYLE FEATURE ROWS ─── */
.bc-hero-title { font-size: clamp(2.6rem, 5.5vw, 4rem); }
.bc-hero-compact { padding-top: 48px; }

.bc-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bc-feature-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-md);
    transition: all var(--bc-transition);
    cursor: default;
}

.bc-feature-clickable {
    cursor: pointer;
}

.bc-feature-row:hover,
.bc-feature-clickable:focus {
    border-color: var(--bc-accent);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12);
    transform: translateY(-2px);
    outline: none;
}

.bc-feature-row-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bc-accent-light);
    transition: all var(--bc-transition);
}

.bc-feature-row:hover .bc-feature-row-icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--bc-accent);
}

.bc-feature-row-body { flex: 1; min-width: 0; }

.bc-feature-row-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--bc-text);
}

.bc-feature-row-body p {
    font-size: 0.85rem;
    color: var(--bc-muted);
    line-height: 1.6;
    margin: 0 0 8px;
}

.bc-feature-row-arrow {
    color: var(--bc-muted);
    font-size: 0.85rem;
    transition: color var(--bc-transition), transform var(--bc-transition);
}

.bc-feature-row:hover .bc-feature-row-arrow {
    color: var(--bc-accent);
    transform: translateX(4px);
}

.bc-play-hint {
    color: var(--bc-accent);
    font-size: 0.9rem;
    margin-left: 6px;
}

/* ─── HERO + SLIDER (overlay) ─── */
.bc-hero-slider {
    position: relative;
    margin-top: var(--bc-nav-h);
    width: 100%;
    min-height: clamp(520px, 92vh, 920px);
    max-height: 100vh;
    overflow: hidden;
    background: var(--bc-bg);
}

.bc-hero-slider .bc-slider-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bc-hero-slider .bc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.bc-hero-slider .bc-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.bc-slide-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.bc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    /* Slider zaten nav altında (margin-top); üstte ekstra nav boşluğu yok */
    padding: 12px 0 72px;
    background: linear-gradient(180deg,
        rgba(5, 8, 16, 0.82) 0%,
        rgba(5, 8, 16, 0.55) 35%,
        rgba(5, 8, 16, 0.45) 55%,
        rgba(5, 8, 16, 0.75) 100%);
}

.bc-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.bc-hero-slider .bc-slider-dots {
    z-index: 3;
    bottom: 24px;
}

/* ─── SLIDER (legacy / fallback) ─── */
.bc-slider {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    background: var(--bc-bg);
}

.bc-slider-below {
    margin-top: 0;
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
}

.bc-slide {
    min-height: 420px;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--bc-bg-2);
}

.bc-slide.active { display: flex; }

.bc-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 0;
}

.bc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.25) 100%);
    z-index: 1;
}

.bc-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
}

.bc-slide-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.bc-slide-desc {
    color: var(--bc-muted);
    max-width: 560px;
    margin: 0 auto 24px;
    font-size: 1rem;
}

.bc-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.bc-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--bc-transition);
}

.bc-slider-dot.active { background: var(--bc-accent); }

/* ─── MODAL ─── */
.bc-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bc-modal.open { display: flex; }

.bc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.bc-modal-dialog {
    position: relative;
    width: min(900px, 100%);
    background: var(--bc-bg-2);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 28px;
    box-shadow: var(--bc-shadow);
    z-index: 1;
}

.bc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--bc-border);
    background: rgba(255,255,255,0.05);
    color: var(--bc-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-right: 40px;
}

.bc-modal-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--bc-radius-md);
    overflow: hidden;
    background: #000;
}

.bc-modal-video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.bc-modal-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--bc-muted);
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    transition: background var(--bc-transition);
}

.bc-modal-video-placeholder:hover { background: rgba(0,0,0,0.4); }
.bc-modal-video-placeholder i { font-size: 3rem; color: var(--bc-accent); }

/* ─── GOOGLE AUTH ─── */
.bc-btn-google {
    background: linear-gradient(135deg, var(--bc-accent), #fbbf24);
    color: #fff;
    border: none;
    font-weight: 600;
    gap: 12px;
}

.bc-btn-google:hover {
    filter: brightness(1.05);
    box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.bc-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--bc-muted);
    font-size: 0.8rem;
}

.bc-auth-divider::before,
.bc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bc-border);
}

.bc-auth-footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--bc-muted);
    line-height: 1.8;
}

.bc-auth-footer-links a { color: var(--bc-accent-light); font-weight: 500; }

.bc-section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

.bc-muted-text {
    color: var(--bc-muted);
    text-align: center;
    padding: 24px 0;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .bc-feature-list { grid-template-columns: 1fr; }
    .bc-hero-slider { min-height: clamp(420px, 85vh, 780px); }
    .bc-slide-bg { object-fit: contain; }
}

/* ─── PAYMENT / BANK / PANEL ─── */
.bc-payment-wrap { padding: 40px 0 80px; }
.bc-payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bc-payment-card { background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-md); padding: 28px; }
.bc-payment-card.active { border-color: var(--bc-accent); }
.bc-payment-card.disabled { opacity: 0.85; }
.bc-payment-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bc-payment-card-head i { font-size: 1.5rem; color: var(--bc-accent); }

.bc-bank-list { display: grid; gap: 16px; margin-top: 24px; }
.bc-bank-card { display: flex; gap: 20px; align-items: center; padding: 24px; background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-md); }
.bc-bank-logo img { max-height: 48px; max-width: 120px; }
.bc-bank-hero-img img { width: 100%; max-height: 280px; object-fit: cover; border-radius: var(--bc-radius-md); margin-bottom: 24px; }
.bc-iban { font-family: monospace; word-break: break-all; }
.bc-copy-btn { margin-left: 8px; font-size: 0.75rem; padding: 4px 10px; border-radius: 6px; border: 1px solid var(--bc-border); background: transparent; color: var(--bc-accent); cursor: pointer; }

.bc-panel-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding-bottom: 80px; align-items: start; }
.bc-panel-content { align-self: start; }
.bc-panel-sidebar { background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-md); padding: 24px; height: fit-content; }
.bc-panel-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bc-border); }
.bc-panel-avatar-initial {
    width: 96px; height: 96px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff; font-size: 36px; font-weight: 700;
    border: 2px solid rgba(249, 115, 22, 0.35);
    margin: 0 auto;
}
.bc-panel-avatar-wrap { text-align: center; margin-bottom: 20px; }
.bc-avatar-upload { display: inline-block; margin-top: 10px; font-size: 0.8rem; color: var(--bc-accent); cursor: pointer; }
.bc-panel-nav { display: flex; flex-direction: column; gap: 6px; }
.bc-panel-nav button { text-align: left; padding: 10px 14px; border: none; background: transparent; color: var(--bc-muted); border-radius: 8px; cursor: pointer; }
.bc-panel-nav button.active { background: rgba(249,115,22,0.12); color: var(--bc-accent); font-weight: 600; }
.bc-panel-nav .bc-verify-nav { background: rgba(249,115,22,0.18); color: var(--bc-accent); font-weight: 600; border: 1px solid rgba(249,115,22,0.35); }
.bc-btn-sm { padding: 8px 14px; font-size: .8rem; }
.bc-tab-panel { display: none; }
.bc-tab-panel.active { display: block; }
.bc-tab-panel > .bc-panel-box:first-child { margin-top: 0; }
.bc-panel-box { background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-md); padding: 24px; margin-top: 16px; }
.bc-input { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--bc-border); background: var(--bc-bg); color: var(--bc-text); }
.bc-file-input-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bc-file-name { color: var(--bc-muted); font-size: 0.85rem; }

.bc-escrow-wrap { padding-bottom: 80px; max-width: 900px; }
.bc-escrow-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.bc-escrow-msgs { height: 420px; overflow-y: auto; border: 1px solid var(--bc-border); border-radius: 12px; padding: 12px; background: rgba(0,0,0,.15); margin-bottom: 12px; }
.bc-escrow-msg { margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 0.9rem; }
.bc-escrow-msg.admin strong { color: var(--bc-accent); }
.bc-escrow-form { display: flex; gap: 10px; }
.bc-escrow-form .bc-input { flex: 1; }

.bc-link-btn { background: none; border: none; color: var(--bc-accent); cursor: pointer; font-weight: 500; padding: 0; }
.bc-countdown { color: var(--bc-muted); font-size: 0.85rem; }
.bc-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid var(--bc-border); border-top-color: var(--bc-accent); border-radius: 50%; animation: bc-spin 0.8s linear infinite; vertical-align: middle; margin-left: 8px; }
@keyframes bc-spin { to { transform: rotate(360deg); } }

.bc-page-content { padding: 48px 0 80px; min-height: 50vh; }
.bc-cms-content { color: var(--bc-text); line-height: 1.75; }
.bc-cms-content h1, .bc-cms-content h2, .bc-cms-content h3 { color: var(--bc-text); margin: 1.2em 0 0.6em; }
.bc-cms-content p { margin-bottom: 1em; }
.bc-cms-content img { max-width: 100%; height: auto; border-radius: 8px; }
.bc-cms-content a { color: var(--bc-accent); }

.bc-popup-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.bc-popup-modal {
    position: relative; max-width: min(92vw, 560px); width: 100%;
    background: var(--bc-surface); border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bc-popup-modal img { display: block; width: 100%; height: auto; max-height: 80vh; object-fit: contain; }
.bc-popup-close {
    position: absolute; top: 8px; right: 12px; z-index: 2;
    background: rgba(0,0,0,0.55); color: #fff; border: none;
    width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem;
    cursor: pointer; line-height: 1;
}
.bc-popup-modal.bc-popup-animate { transform: scale(0.85); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.bc-popup-overlay.bc-popup-visible .bc-popup-modal { transform: scale(1); opacity: 1; }

.bc-hero-animated .bc-hero-title .highlight {
    background: linear-gradient(90deg, #f97316, #fb923c, #ea580c, #f97316);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: bc-gradient-move 6s ease infinite;
}
.bc-hero-animated .bc-hero-glow { animation: bc-glow-pulse 4s ease-in-out infinite; }
@keyframes bc-gradient-move { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes bc-glow-pulse { 0%,100%{opacity:.35} 50%{opacity:.65} }

.bc-trust-glass {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    transition: background .25s, border-color .25s, transform .25s;
}
.bc-trust-glass:hover {
    background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(255,255,255,0.02));
    border-color: rgba(249,115,22,0.25);
    transform: translateY(-2px);
}

.bc-top-banner { width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #0f0f1a; }
.bc-top-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bc-top-banner-link { display: block; width: 100%; height: 100%; }
.bc-has-top-banner .bc-top-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }
.bc-has-top-banner .bc-nav { top: var(--bc-banner-h, 48px); }
.bc-has-top-banner .bc-wrap { padding-top: calc(var(--bc-banner-h, 48px) + var(--bc-nav-h)); }
.bc-has-top-banner .bc-page-hero { padding-top: calc(var(--bc-nav-h) + 48px); }
.bc-purchase-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--bc-border); align-items: flex-start; }
.bc-purchase-row code { font-size: .8rem; background: rgba(255,255,255,.06); padding: 4px 8px; border-radius: 6px; word-break: break-all; }
.bc-purchase-actions { text-align: right; min-width: 180px; }
.bc-activate-info { margin-top: 16px; padding: 12px; border: 1px solid var(--bc-border); border-radius: 10px; background: rgba(255,255,255,.02); }
.bc-btn-sm { padding: 6px 14px; font-size: .82rem; }

.bc-cookie-bar {
    position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 32px); max-width: 720px;
    z-index: 9998; background: rgba(15, 18, 28, 0.96); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 20px 22px; box-shadow: 0 16px 48px rgba(0,0,0,.55);
}
.bc-cookie-close { position: absolute; top: 12px; right: 14px; border: none; background: none; color: #94a3b8; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.bc-cookie-bar-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bc-cookie-bar-head strong { font-size: 1.05rem; color: #f8fafc; }
.bc-cookie-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; object-fit: cover; }
.bc-cookie-icon-fallback { display: flex; align-items: center; justify-content: center; background: rgba(249,115,22,.15); color: var(--bc-accent); font-size: 1.1rem; }
.bc-cookie-bar-text { margin: 0 0 16px; font-size: .88rem; line-height: 1.55; color: #94a3b8; }
.bc-cookie-bar-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.bc-cookie-bar-actions .bc-btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.bc-cookie-prefs-modal { position: fixed; inset: 0; z-index: 10020; display: flex; align-items: center; justify-content: center; padding: 16px; }
.bc-cookie-prefs-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.bc-cookie-prefs-dialog { position: relative; width: 100%; max-width: 520px; background: #111827; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.6); }
.bc-cookie-prefs-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.08); color: #f8fafc; font-weight: 600; }
.bc-cookie-prefs-header button { border: none; background: none; color: #94a3b8; font-size: 1.4rem; cursor: pointer; }
.bc-cookie-prefs-body { padding: 14px 18px; display: flex; flex-direction: column; gap: 12px; max-height: 50vh; overflow-y: auto; }
.bc-cookie-pref-item { border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px; background: rgba(255,255,255,.02); }
.bc-cookie-pref-item.bc-cookie-pref-locked { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.bc-cookie-pref-head { display: flex; gap: 12px; align-items: flex-start; }
.bc-cookie-pref-head strong { display: block; color: #f1f5f9; font-size: .92rem; margin-bottom: 4px; }
.bc-cookie-pref-head p { margin: 0; font-size: .8rem; line-height: 1.45; color: #94a3b8; }
.bc-cookie-pref-badge { font-size: .72rem; color: #94a3b8; background: rgba(255,255,255,.06); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.bc-cookie-pref-check { width: 22px; height: 22px; border-radius: 50%; background: #22c55e; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; }
.bc-cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.bc-cookie-toggle input { opacity: 0; width: 0; height: 0; }
.bc-cookie-toggle-ui { position: absolute; inset: 0; background: #374151; border-radius: 999px; transition: .2s; cursor: pointer; }
.bc-cookie-toggle-ui:before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.bc-cookie-toggle input:checked + .bc-cookie-toggle-ui { background: var(--bc-accent); }
.bc-cookie-toggle input:checked + .bc-cookie-toggle-ui:before { transform: translateX(20px); }
.bc-cookie-prefs-footer { display: flex; gap: 10px; padding: 14px 18px 18px; border-top: 1px solid rgba(255,255,255,.08); }
.bc-cookie-prefs-footer .bc-btn { flex: 1; }
.bc-chat-date-sep { display: flex; justify-content: center; margin: 10px 0 6px; }
.bc-chat-date-sep span { font-size: .72rem; color: #94a3b8; background: rgba(255,255,255,.06); padding: 4px 12px; border-radius: 999px; }
.bc-whatsapp-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 9989; transition: bottom .2s ease; }
.bc-whatsapp-panel { position: absolute; bottom: 64px; right: 0; width: 340px; max-height: 480px; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.45); display: flex; flex-direction: column; }
.bc-wa-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: linear-gradient(135deg, #c2410c, #f97316); color: #fff; }
.bc-wa-header-info { display: flex; align-items: center; gap: 12px; }
.bc-wa-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.bc-wa-header strong { display: block; font-size: .95rem; }
.bc-wa-online { display: flex; align-items: center; gap: 6px; font-size: .75rem; opacity: .9; }
.bc-wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.bc-wa-header button { border: none; background: none; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.bc-wa-messages { flex: 1; min-height: 0; overflow-y: auto; padding: 16px; background: #ece5dd url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="2" cy="2" r="1" fill="%23d4ccc4"/></svg>') repeat; display: flex; flex-direction: column; gap: 8px; }
.bc-wa-bubble { max-width: 85%; padding: 8px 12px; border-radius: 10px; font-size: .85rem; line-height: 1.45; position: relative; }
.bc-wa-bubble small { display: block; text-align: right; font-size: .68rem; opacity: .65; margin-top: 4px; }
.bc-wa-bubble-in { align-self: flex-start; background: #fff; color: #111; border-top-left-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.bc-wa-footer { padding: 14px 16px; background: #f8fafc; text-align: center; border-top: 1px solid #e2e8f0; }
.bc-wa-cta { width: 100%; border: none; border-radius: 999px; padding: 12px 16px; background: linear-gradient(135deg, #c2410c, #f97316); color: #fff; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.bc-wa-cta:hover { filter: brightness(1.05); }
.bc-wa-footer small { color: #64748b; font-size: .75rem; }
.bc-whatsapp-fab {
    position: relative; right: auto; bottom: auto;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25d366; color: #fff; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4); border: none; cursor: pointer;
}
.bc-whatsapp-fab:hover { filter: brightness(1.08); color: #fff; }

.bc-chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 9990; transition: bottom .2s ease; }
.bc-chat-fab { width: 52px; height: 52px; border-radius: 50%; border: none; background: var(--bc-accent); color: #fff; font-size: 1.2rem; cursor: pointer; box-shadow: 0 8px 24px rgba(249,115,22,.35); }
.bc-chat-panel { position: absolute; bottom: 64px; right: 0; width: 320px; max-height: 420px; background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: 14px; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.bc-chat-header { padding: 10px 12px; background: rgba(0,0,0,.2); display: flex; justify-content: space-between; align-items: center; cursor: move; font-weight: 600; position: relative; }
.bc-chat-header-actions { display: flex; align-items: center; gap: 4px; }
.bc-chat-header button { background: none; border: none; color: var(--bc-text); font-size: 1.2rem; cursor: pointer; }
.bc-chat-filter-btn { font-size: .95rem !important; width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.bc-chat-filter-btn:hover { background: rgba(249,115,22,.15); color: var(--bc-accent); }
.bc-chat-filter-panel { position: absolute; top: 44px; left: 10px; z-index: 5; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--bc-border); background: var(--bc-surface); box-shadow: 0 12px 32px rgba(0,0,0,.45); }
.bc-chat-filter-body { display: flex; align-items: center; gap: 14px; }
.bc-chat-filter-options { display: flex; flex-direction: column; gap: 6px; }
.bc-chat-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .82rem; color: var(--bc-text); margin: 0; }
.bc-chat-radio input { appearance: none; -webkit-appearance: none; width: 16px; height: 16px; margin: 0; border: 2px solid rgba(249,115,22,.35); border-radius: 50%; background: transparent; cursor: pointer; transition: border-color .2s, box-shadow .2s; flex-shrink: 0; }
.bc-chat-radio input:checked { border-color: var(--bc-accent); box-shadow: inset 0 0 0 3px var(--bc-surface), inset 0 0 0 5px var(--bc-accent); }
.bc-chat-radio span { line-height: 1; }
.bc-chat-filter-apply { border: none; border-radius: 10px; padding: 10px 14px; font-size: .78rem; font-weight: 700; color: #fff; cursor: pointer; background: var(--bc-gradient); box-shadow: 0 4px 14px rgba(249,115,22,.3); white-space: nowrap; align-self: stretch; }
.bc-chat-filter-apply:hover { filter: brightness(1.05); }
.bc-chat-input button:disabled { opacity: .45; cursor: not-allowed; }
.bc-chat-messages { flex: 1; min-height: 0; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; gap: 8px; max-height: 280px; scrollbar-width: thin; scrollbar-color: rgba(249,115,22,.45) transparent; }
.bc-chat-messages::-webkit-scrollbar { width: 6px; }
.bc-chat-messages::-webkit-scrollbar-thumb { background: rgba(249,115,22,.45); border-radius: 6px; }
.bc-chat-msg { font-size: .82rem; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.04); border-left: 3px solid var(--bc-accent); }
.bc-chat-msg-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.bc-chat-msg-head strong { font-size: .75rem; color: var(--bc-accent); }
.bc-chat-msg-head small { font-size: .7rem; color: var(--bc-muted); }
.bc-chat-msg span { display: block; line-height: 1.45; }
.bc-chat-input { display: flex; gap: 6px; padding: 8px; border-top: 1px solid var(--bc-border); }
.bc-chat-input input { flex: 1; border: 1px solid var(--bc-border); border-radius: 8px; padding: 8px; background: var(--bc-bg); color: var(--bc-text); }
.bc-chat-input button { border: none; background: var(--bc-accent); color: #fff; border-radius: 8px; width: 36px; cursor: pointer; }

.bc-blog-hero { padding-top: 40px; padding-bottom: 8px; }
.bc-blog-hero-desc { max-width: 640px; margin: 0 auto; color: var(--bc-muted); }
.bc-blog-list-section { padding-top: 0; }
.bc-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; padding: 24px 0 64px; }
.bc-blog-card { background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: 14px; overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; }
.bc-blog-card:hover { transform: translateY(-4px); border-color: rgba(249, 115, 22, 0.35); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }
.bc-blog-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.bc-blog-card-media { height: 190px; overflow: hidden; background: rgba(0, 0, 0, 0.2); }
.bc-blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bc-blog-card:hover .bc-blog-card-media img { transform: scale(1.04); }
.bc-blog-card-media-placeholder { display: flex; align-items: center; justify-content: center; color: var(--bc-accent); font-size: 2.2rem; }
.bc-blog-card-body { padding: 20px; }
.bc-blog-card-meta { display: flex; justify-content: space-between; gap: 12px; font-size: .78rem; color: var(--bc-muted); margin-bottom: 10px; }
.bc-blog-card-body h3 {
    font-size: 1.08rem; line-height: 1.4; margin: 0 0 10px; color: var(--bc-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bc-blog-card-body p { font-size: .92rem; color: var(--bc-muted); line-height: 1.55; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bc-blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--bc-accent); }
.bc-blog-empty { text-align: center; padding: 72px 24px; background: var(--bc-surface); border: 1px dashed var(--bc-border); border-radius: 14px; }
.bc-blog-empty i { font-size: 2rem; color: var(--bc-accent); margin-bottom: 12px; }
.bc-blog-empty h2 { margin: 0 0 8px; font-size: 1.2rem; }
.bc-blog-empty p { margin: 0; color: var(--bc-muted); }
.bc-blog-detail { padding: 32px 0 80px; max-width: 820px; margin: 0 auto; }
.bc-blog-detail-cover { width: 100%; border-radius: 12px; margin: 16px 0 28px; display: block; max-height: 420px; object-fit: cover; }
.bc-blog-detail-header { margin-bottom: 28px; }
.bc-blog-detail-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: 0 0 12px; }
.bc-blog-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--bc-muted); font-size: .88rem; margin: 0 0 14px; }
.bc-blog-detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.bc-blog-detail-lead { font-size: 1.05rem; line-height: 1.65; color: var(--bc-muted); margin: 0; padding: 16px 18px; border-left: 3px solid var(--bc-accent); background: rgba(249, 115, 22, 0.06); border-radius: 0 10px 10px 0; }
.bc-blog-cta { margin-top: 48px; padding: 28px; border-radius: 14px; border: 1px solid var(--bc-border); background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.02)); text-align: center; }
.bc-blog-cta h3 { margin: 0 0 8px; font-size: 1.2rem; }
.bc-blog-cta p { margin: 0 0 18px; color: var(--bc-muted); }
.bc-blog-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ─── TR/EN dil değiştirici ─── */
.bc-lang-switch { display: inline-flex; align-items: center; gap: 4px; margin-right: 6px; }
.bc-lang-btn { display: inline-flex; align-items: center; gap: 5px; background: transparent; border: 1px solid transparent; border-radius: 8px; color: var(--bc-muted); font-size: .78rem; font-weight: 600; padding: 5px 8px; cursor: pointer; transition: color .15s, border-color .15s; }
.bc-lang-btn img { width: 20px; height: auto; border-radius: 2px; display: block; }
.bc-lang-btn:hover { color: var(--bc-text); }
.bc-lang-btn.is-active { color: var(--bc-text); border-color: var(--bc-border); background: var(--bc-surface); }
.bc-lang-sep { color: var(--bc-muted); font-size: .75rem; }

/* ─── Tanıtım (job kartları + video listesi) ─── */
.bc-promo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; padding: 32px 0 64px; }
@media (max-width: 991px) { .bc-promo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .bc-promo-grid { grid-template-columns: repeat(2, 1fr); } }
.bc-promo-card { display: block; text-align: center; text-decoration: none; color: var(--bc-text); }
.bc-promo-card .bc-trust-icon { color: var(--bc-accent); font-size: 1.5rem; }
.bc-promo-card:hover { border-color: rgba(249, 115, 22, 0.35); }
.bc-promo-count { display: block; margin-top: 8px; font-size: .72rem; color: var(--bc-accent); font-weight: 600; }
.bc-promo-back { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--bc-muted); text-decoration: none; margin-bottom: 12px; }
.bc-promo-back:hover { color: var(--bc-accent); }
.bc-promo-list { display: flex; flex-direction: column; gap: 28px; max-width: 960px; margin: 0 auto; padding: 24px 0 80px; }
.bc-promo-item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: stretch;
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: 14px;
    overflow: hidden;
}
.bc-promo-item.bc-promo-item-no-image {
    grid-template-columns: 1fr;
}
.bc-promo-media {
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid var(--bc-border);
    min-height: 180px;
}
.bc-promo-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}
.bc-promo-body { padding: 20px 22px; }
.bc-promo-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.bc-promo-title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bc-accent-light);
    line-height: 1.35;
}
.bc-promo-item-head .bc-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.bc-promo-body p { margin: 0 0 8px; font-size: .9rem; color: var(--bc-muted); line-height: 1.6; }
.bc-promo-body small { display: block; margin-top: 10px; font-size: .75rem; color: var(--bc-muted); }
.bc-promo-empty { text-align: center; padding: 60px 0 90px; color: var(--bc-muted); }
.bc-promo-empty i { font-size: 2rem; display: block; margin-bottom: 12px; color: var(--bc-accent); }
@media (max-width: 700px) {
    .bc-promo-item { grid-template-columns: 1fr; }
    .bc-promo-media { border-right: none; border-bottom: 1px solid var(--bc-border); min-height: 160px; }
    .bc-promo-media img { min-height: 160px; }
}

@media (max-width: 900px) {
    .bc-payment-grid { grid-template-columns: 1fr; }
    .bc-panel-wrap { grid-template-columns: 1fr; }
    .bc-bank-card { flex-direction: column; text-align: center; }
}

/* ─── UI notification toast ─── */
.bc-notify-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    z-index: 10050;
    max-width: 420px;
    width: calc(100% - 32px);
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.96);
    border: 1px solid rgba(249, 115, 22, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    color: #f1f5f9;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    text-align: center;
}
.bc-notify-toast strong { display: block; color: #fb923c; margin-bottom: 4px; font-size: 14px; }
.bc-notify-toast p { margin: 0; font-size: 13px; color: #cbd5e1; line-height: 1.5; }
.bc-notify-toast.bc-notify-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ─── Direct message widget (admin ↔ visitor/user) ─── */
.bc-ai-fab-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 9992; transition: bottom .2s ease; }
.bc-ai-fab {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(249,115,22,.45); border: none; cursor: pointer; text-decoration: none;
}
.bc-ai-fab:hover { filter: brightness(1.1); color: #fff; }

.bc-dm-widget { position: fixed; right: 20px; bottom: 20px; z-index: 9991; transition: bottom .2s ease; }
.bc-dm-fab {
    position: relative;
    width: 52px; height: 52px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
    font-size: 1.15rem; cursor: pointer; box-shadow: 0 8px 24px rgba(99,102,241,.4);
}
.bc-dm-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 20px; height: 20px; padding: 0 5px;
    border-radius: 10px; background: #ef4444; color: #fff;
    font-size: 11px; font-weight: 700; line-height: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(239,68,68,.5);
}
.bc-dm-panel {
    position: absolute; bottom: 64px; right: 0;
    width: 340px; max-height: 420px;
    display: flex; flex-direction: column;
    background: var(--bc-surface); border: 1px solid var(--bc-border);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.bc-dm-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-bottom: 1px solid var(--bc-border);
    font-weight: 600; font-size: .9rem;
}
.bc-dm-header button { border: none; background: none; color: var(--bc-muted); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.bc-dm-messages { flex: 1; min-height: 0; overflow-y: auto; padding: 12px; max-height: 280px; scrollbar-width: thin; scrollbar-color: rgba(99,102,241,.5) transparent; }
.bc-dm-messages::-webkit-scrollbar { width: 6px; }
.bc-dm-messages::-webkit-scrollbar-thumb { background: rgba(99,102,241,.5); border-radius: 6px; }
.bc-dm-empty { color: var(--bc-muted); font-size: .85rem; text-align: center; margin: 24px 0; }
.bc-dm-msg { margin-bottom: 10px; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.04); }
.bc-dm-msg-admin { border-left: 3px solid #8b5cf6; }
.bc-dm-msg-self { border-left: 3px solid var(--bc-accent); }
.bc-dm-msg-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.bc-dm-msg-head strong { font-size: .75rem; color: var(--bc-accent); }
.bc-dm-msg-head small { font-size: .7rem; color: var(--bc-muted); }
.bc-dm-msg p { margin: 0; font-size: .85rem; line-height: 1.45; }
.bc-dm-lock-msg { padding: 0 12px 8px; margin: 0; font-size: .75rem; color: #fbbf24; text-align: center; }
.bc-dm-input { display: flex; gap: 6px; padding: 8px; border-top: 1px solid var(--bc-border); }
.bc-dm-input input { flex: 1; border: 1px solid var(--bc-border); border-radius: 8px; padding: 8px; background: var(--bc-bg); color: var(--bc-text); }
.bc-dm-input button { border: none; background: #6366f1; color: #fff; border-radius: 8px; width: 36px; cursor: pointer; }
.bc-popup-link-wrap { position: relative; display: block; }
.bc-popup-text {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    max-width: 72%; text-align: center; color: #fff; font-weight: 700; font-size: 1.1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.85); line-height: 1.4; pointer-events: none;
}
.bc-nav-profile { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bc-panel-avatar-wrap { position: relative; text-align: center; margin-bottom: 16px; }
.bc-avatar-upload { display: none; }
.bc-panel-avatar-wrap .bc-avatar-camera {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.55); opacity: 0; transition: opacity .2s;
    color: #fff; font-size: 1.4rem; pointer-events: none;
}
.bc-panel-avatar-wrap:hover .bc-avatar-camera { opacity: 1; }
.bc-profile-summary { display: grid; gap: 4px; }
.bc-profile-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bc-border); }
.bc-profile-row:last-child { border-bottom: none; }
.bc-verified-badge { display: inline-flex; align-items: center; gap: 6px; color: #22c55e; font-size: .85rem; font-weight: 600; }
.bc-notify-pref { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.bc-notify-pref input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--bc-accent); }

/* ─── Changelog / update notes ─── */
.bc-changelog {
    padding: 48px 0 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(249, 115, 22, 0.04) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.bc-changelog-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: #f8fafc;
}
.bc-changelog-list { display: flex; flex-direction: column; gap: 10px; }
.bc-changelog-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(10, 15, 26, 0.85);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bc-changelog-item[open], .bc-changelog-item.is-open {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.08);
}
.bc-changelog-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    flex-wrap: wrap;
}
.bc-changelog-head::-webkit-details-marker { display: none; }
.bc-changelog-date { color: #94a3b8; font-size: 13px; }
.bc-changelog-date .fa { margin-right: 6px; color: #f97316; }
.bc-changelog-version {
    font-weight: 700;
    color: #fff;
    background: rgba(249, 115, 22, 0.2);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 13px;
}
.bc-changelog-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bc-badge-major { background: rgba(249, 115, 22, 0.25); color: #fb923c; }
.bc-badge-beta { background: rgba(99, 102, 241, 0.25); color: #a5b4fc; }
.bc-badge-normal { background: rgba(148, 163, 184, 0.2); color: #cbd5e1; }
.bc-changelog-chevron {
    margin-left: auto;
    color: #64748b;
    transition: transform 0.2s ease;
    font-size: 12px;
}
.bc-changelog-item[open] .bc-changelog-chevron { transform: rotate(90deg); color: #f97316; }
.bc-changelog-body {
    padding: 0 16px 16px 36px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}
.bc-changelog-body ul { margin: 0; padding-left: 18px; }
.bc-changelog-body li { margin-bottom: 6px; }
