.borsa-page {
        --b-bg: #0B1120;
        --b-card-bg: #111827;
        --b-gold: #F59E0B;
        --b-text: #E2E8F0;
        --b-gray: #94A3B8;
        --b-border: rgba(255,255,255,0.1);
    }

    .borsa-page { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--b-bg); color: var(--b-text); }
    .borsa-page *, .borsa-page *::before, .borsa-page *::after { box-sizing: border-box; }
    .borsa-page :where(a) { text-decoration: none; }
    .borsa-page :where(ul) { list-style: none; padding: 0; margin: 0; }
    .borsa-page :where(h1, h2, h3, h4, p) { margin: 0; padding: 0; }

    .borsa-hero {
        padding: 110px 20px 60px 20px;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero-container {
        max-width: 1100px; margin: 0 auto;
        display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
        position: relative; z-index: 5;
    }

    .bg-chart-line {
        position: absolute; bottom: 0; left: 0; width: 100%; height: 150px;
        background: linear-gradient(to right, transparent 0%, rgba(245, 158, 11, 0.05) 50%, transparent 100%);
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,234.7C960,203,1056,117,1152,96C1248,75,1344,117,1392,138.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,234.7C960,203,1056,117,1152,96C1248,75,1344,117,1392,138.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
        -webkit-mask-size: cover; mask-size: cover;
        -webkit-mask-position: bottom; mask-position: bottom;
        -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
        z-index: 1; pointer-events: none;
    }

    .hero-title { font-size: 2.8rem; font-weight: 700; line-height: 1.1; margin: 0 0 15px 0; color: #fff; }
    .hero-title span { color: var(--b-gold); }
    .hero-desc { font-size: 1rem; color: var(--b-gray); line-height: 1.6; margin-bottom: 25px; max-width: 500px; }

    .hero-btn-wrap { display: flex; align-items: center; gap: 15px; }
    .btn-link {
        color: #fff; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 5px; opacity: 0.8; transition: 0.3s; cursor: pointer;
    }
    .btn-link:hover { opacity: 1; gap: 8px; color: var(--b-gold); }

    .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 350px; }
    .server-img {
        width: 100%; max-width: 280px; height: auto; position: relative; z-index: 3;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); animation: float 5s ease-in-out infinite;
    }

    .gold-ring {
        position: absolute; width: 320px; height: 320px; border: 1px solid rgba(245, 158, 11, 0.3);
        border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.05);
    }
    .ring-dot {
        position: absolute; top: 50%; left: -3px; width: 6px; height: 6px; background: var(--b-gold);
        border-radius: 50%; box-shadow: 0 0 10px var(--b-gold); animation: orbit 15s linear infinite;
        transform-origin: 163px center;
    }

    .scroll-down {
        position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
        color: rgba(255,255,255,0.3); font-size: 1.2rem; animation: bounce 2s infinite; cursor: pointer; z-index: 10;
    }

    .borsa-pricing { padding: 100px 20px; background-color: var(--b-bg); position: relative; }
    .bp-container { max-width: 1300px; margin: 0 auto; }

    .bp-header { text-align: center; margin-bottom: 70px; }
    .bp-label { font-size: 0.8rem; font-weight: 800; color: var(--b-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; display: block; }
    .bp-title { font-size: 2.5rem; font-weight: 700; color: #fff; margin: 0 0 15px 0; letter-spacing: -0.02em; }
    .bp-desc { font-size: 1.1rem; color: var(--b-gray); max-width: 700px; margin: 0 auto; }

    .bp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

    .bp-card {
        background: var(--b-card-bg); border: 1px solid var(--b-border); border-radius: 20px;
        padding: 40px 25px; display: flex; flex-direction: column; transition: all 0.4s ease;
        position: relative; overflow: hidden;
    }
    .bp-card:hover { transform: translateY(-10px); border-color: var(--b-gold); box-shadow: 0 20px 50px -10px rgba(245, 158, 11, 0.15); }

    .bp-head { text-align: center; margin-bottom: 30px; border-bottom: 1px dashed var(--b-border); padding-bottom: 25px; }
    .bp-name { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 5px; display: block; }
    .bp-cpu { font-size: 0.9rem; color: var(--b-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

    .bp-price-box { margin-top: 15px; }
    .bp-old-price { text-decoration: line-through; color: var(--b-gray); font-size: 0.9rem; margin-right: 10px; }
    .bp-price { font-size: 2rem; font-weight: 700; color: #fff; }
    .bp-cycle { font-size: 0.85rem; color: var(--b-gray); }

    .bp-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
    .bp-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 0.9rem; color: var(--b-gray); }
    .bp-item strong { color: var(--b-text); font-weight: 600; }
    .bp-item i { color: var(--b-gold); margin-right: 8px; font-size: 0.8rem; }

    .bp-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
    .spec-badge {
        background: rgba(255, 255, 255, 0.05); padding: 8px; border-radius: 8px;
        text-align: center; font-size: 0.75rem; color: #fff; font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .spec-badge i { color: var(--b-gold); margin-right: 4px; }

    .bp-btn {
        margin-top: auto; display: block; width: 100%; padding: 16px; background: transparent;
        border: 1px solid var(--b-gold); color: var(--b-gold); text-align: center; border-radius: 12px;
        font-weight: 700; text-decoration: none; transition: 0.3s;
    }
    .bp-btn:hover { background: var(--b-gold); color: #000; box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3); }

    .bp-card.featured { background: linear-gradient(180deg, #162032 0%, #111827 100%); border: 1px solid var(--b-gold); transform: scale(1.05); z-index: 2; }
    .bp-card.featured:hover { transform: scale(1.05) translateY(-10px); }
    .bp-card.featured .bp-btn { background: var(--b-gold); color: #000; }
    .bp-card.featured .bp-btn:hover { background: #fff; }
    .pop-ribbon {
        position: absolute; top: 0; left: 50%; transform: translateX(-50%);
        background: var(--b-gold); color: #000; font-size: 0.7rem; font-weight: 800;
        padding: 5px 15px; border-radius: 0 0 10px 10px; text-transform: uppercase; white-space: nowrap;
    }

    .b-info-sec { padding: 120px 20px; background-color: #0F172A; position: relative; }
    .b-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 120px; }
    .b-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .b-row.rev .b-visual-col { order: 1; }
    .b-row.rev .b-text-col { order: 2; }

    .b-text-col { display: flex; flex-direction: column; justify-content: center; }
    .b-badge {
        font-size: 0.75rem; font-weight: 700; color: var(--b-gold); text-transform: uppercase;
        letter-spacing: 2px; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px;
    }
    .b-badge::before { content:''; width: 30px; height: 1px; background: var(--b-gold); }
    .b-title { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 25px; line-height: 1.2; letter-spacing: -0.02em; }
    .b-text { font-size: 1.05rem; color: var(--b-gray); line-height: 1.8; margin-bottom: 30px; text-align: justify; }
    .b-text p + p { margin-top: 18px; }
    .b-text strong { color: var(--b-text); font-weight: 600; border-bottom: 1px solid rgba(245, 158, 11, 0.3); }
    .b-text a { color: var(--b-gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
    .b-text a:hover { color: #fff; }

    .b-list { display: grid; grid-template-columns: 1fr; gap: 15px; }
    .b-li {
        display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; color: var(--b-text);
        background: rgba(255,255,255,0.03); padding: 12px 15px; border-radius: 8px; border-left: 3px solid var(--b-gold);
    }
    .b-li i { color: var(--b-gold); font-size: 1rem; }

    .b-visual-col { position: relative; }
    .b-img-box {
        position: relative; z-index: 2; overflow: hidden; border-radius: 20px;
        box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
        transition: transform 0.5s ease;
    }
    .b-row:hover .b-img-box { transform: translateY(-10px); border-color: var(--b-gold); }
    .b-img { width: 100%; height: auto; display: block; filter: brightness(0.9); }
    .b-glow {
        position: absolute; width: 100%; height: 100%; top: 20px; left: 20px;
        border: 2px dashed rgba(245, 158, 11, 0.2); border-radius: 20px; z-index: 1; pointer-events: none; transition: 0.4s;
    }
    .b-row.rev .b-glow { left: -20px; }
    .b-row:hover .b-glow { top: 30px; left: 30px; border-color: var(--b-gold); opacity: 0.4; }

    .b-feat-sec { padding: 100px 20px; background-color: var(--b-bg); position: relative; overflow: hidden; }
    .b-feat-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

    .b-feat-header { text-align: center; max-width: 800px; margin: 0 auto 70px auto; }
    .b-feat-label { font-size: 0.8rem; font-weight: 700; color: var(--b-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; display: block; }
    .b-feat-title { font-size: 2.4rem; font-weight: 700; color: #fff; margin: 0 0 15px 0; letter-spacing: -0.02em; }
    .b-feat-desc { font-size: 1.1rem; color: var(--b-gray); line-height: 1.6; }

    .b-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; }
    .b-feat-card {
        background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px;
        padding: 40px 30px; transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; align-items: flex-start;
    }
    .b-feat-card:hover { transform: translateY(-8px); border-color: var(--b-gold); background: rgba(255, 255, 255, 0.04); box-shadow: 0 10px 40px -10px rgba(245, 158, 11, 0.15); }
    .b-feat-icon-box {
        width: 60px; height: 60px; background: rgba(245, 158, 11, 0.1); color: var(--b-gold);
        border-radius: 14px; display: flex; align-items: center; justify-content: center;
        font-size: 1.5rem; margin-bottom: 25px; transition: 0.3s; border: 1px solid rgba(245, 158, 11, 0.2);
    }
    .b-feat-card:hover .b-feat-icon-box { background: var(--b-gold); color: #000; transform: rotate(10deg); }
    .b-feat-name { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 15px; }
    .b-feat-text { font-size: 1rem; color: var(--b-gray); line-height: 1.7; margin: 0; }

    .b-trust-bar {
        background: rgba(255,255,255,0.03); border-radius: 20px; padding: 40px;
        display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px;
        border: 1px solid rgba(255,255,255,0.08);
    }
    .b-trust-item { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 200px; }
    .b-trust-icon {
        width: 50px; height: 50px; flex-shrink: 0; background: transparent; color: var(--b-gold);
        border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    }
    .b-trust-info h4 { font-size: 1rem; font-weight: 700; margin: 0 0 3px 0; color: #fff; }
    .b-trust-info p { font-size: 0.85rem; margin: 0; color: var(--b-gray); }

    .b-faq-sec { padding: 100px 20px; background-color: #0F172A; }
    .b-faq-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 350px 1fr; gap: 60px; align-items: start; }

    .b-faq-sidebar {
        background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px; padding: 35px; position: sticky; top: 30px; z-index: 10;
    }
    .b-faq-contact-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 25px; letter-spacing: -0.01em; }
    .b-faq-list { display: flex; flex-direction: column; gap: 25px; }
    .b-faq-item { display: flex; align-items: center; gap: 15px; }
    .b-faq-item:hover .b-faq-icon { background: var(--b-gold); color: #000; border-color: var(--b-gold); }
    .b-faq-icon {
        width: 42px; height: 42px; background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2);
        color: var(--b-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: 0.3s;
    }
    .b-faq-info { display: flex; flex-direction: column; }
    .b-faq-label { font-size: 0.75rem; font-weight: 700; color: var(--b-gray); text-transform: uppercase; margin-bottom: 3px; }
    .b-faq-val { font-size: 0.95rem; font-weight: 700; color: #fff; }
    .b-faq-btn {
        margin-top: 35px; width: 100%; padding: 16px; background: transparent; border: 1px solid var(--b-gold);
        color: var(--b-gold); border-radius: 12px; font-weight: 700; font-size: 0.95rem;
        text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s;
    }
    .b-faq-btn:hover { background: var(--b-gold); color: #000; }

    .b-faq-content { display: flex; flex-direction: column; }
    .b-faq-main-title { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 15px; letter-spacing: -0.02em; }
    .b-faq-main-title span { color: var(--b-gold); }
    .b-faq-desc { font-size: 1.05rem; color: var(--b-gray); margin-bottom: 50px; line-height: 1.6; }

    .b-acc-item {
        background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px;
        margin-bottom: 20px; padding: 0 25px; transition: 0.3s ease;
    }
    .b-acc-item.active { border-color: var(--b-gold); background: rgba(245, 158, 11, 0.03); }
    .b-acc-btn {
        width: 100%; background: none; border: none; padding: 25px 0; text-align: left; cursor: pointer;
        display: flex; justify-content: space-between; align-items: center; gap: 20px;
        font-size: 1.1rem; font-weight: 700; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; transition: 0.3s;
    }
    .b-acc-btn:hover { color: var(--b-gold); }
    .b-acc-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--b-gray); transition: 0.3s; flex-shrink: 0; }
    .b-acc-item.active .b-acc-btn { color: var(--b-gold); }
    .b-acc-item.active .b-acc-icon { transform: rotate(180deg); color: var(--b-gold); }
    .b-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .b-acc-body p { margin: 0; padding-bottom: 25px; color: var(--b-gray); line-height: 1.7; font-size: 1rem; border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 20px; }

    @keyframes float { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-10px);} }
    @keyframes orbit { from{transform: rotate(0deg);} to{transform: rotate(360deg);} }
    @keyframes bounce { 0%,20%,50%,80%,100%{transform:translate(-50%,0);} 40%{transform:translate(-50%,-5px);} 60%{transform:translate(-50%,-3px);} }

    @media (max-width: 1200px) {
        .bp-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
        .bp-card.featured { transform: scale(1); }
        .bp-card.featured:hover { transform: translateY(-10px); }
        .b-row, .b-row.rev { gap: 50px; }
    }
    @media (max-width: 992px) {
        .borsa-hero { padding: 90px 20px 50px; }
        .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
        .hero-desc { margin-left: auto; margin-right: auto; }
        .hero-btn-wrap { justify-content: center; }
        .hero-visual { height: 280px; order: -1; }
        .server-img { max-width: 200px; }
        .gold-ring { width: 240px; height: 240px; }
        .ring-dot { transform-origin: 123px center; }
        .hero-title { font-size: 2.2rem; }

        .b-info-sec { padding: 80px 20px; }
        .b-container { gap: 80px; }
        .b-row, .b-row.rev { grid-template-columns: 1fr; gap: 50px; text-align: left; }
        .b-row.rev .b-visual-col { order: unset; }
        .b-glow { display: none; }
        .b-title { font-size: 1.8rem; }

        .b-feat-grid { grid-template-columns: repeat(2, 1fr); }
        .b-trust-bar { justify-content: flex-start; }

        .b-faq-container { grid-template-columns: 1fr; gap: 40px; }
        .b-faq-sidebar { position: relative; top: 0; order: 2; }
        .b-faq-content { order: 1; }
    }
    @media (max-width: 600px) {
        .borsa-hero { padding: 70px 15px 40px; }
        .hero-title { font-size: 1.9rem; }
        .borsa-pricing, .b-feat-sec, .b-faq-sec { padding: 70px 15px; }
        .b-info-sec { padding: 70px 15px; }
        .bp-grid { grid-template-columns: 1fr; }
        .b-feat-grid { grid-template-columns: 1fr; }
        .b-trust-item { width: 100%; }
        .b-trust-bar { padding: 30px 25px; }
        .b-feat-title, .bp-title, .b-faq-main-title { font-size: 2rem; }
        .b-text { text-align: left; }
        .b-faq-sidebar { padding: 30px 25px; }
        .b-acc-item { padding: 0 20px; }
    }