/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050A18;
    --accent-color: #6AA9FF;
    --text-color: #E0E6ED;
    --light-blue: #A3C9FF;
    --border-color: rgba(106, 169, 255, 0.3);
    --shadow-neon: 0 0 15px rgba(106, 169, 255, 0.5);
    --transition: all 0.3s ease;
}

body.balance-draxo-9057-body-main {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.balance-draxo-9057-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.balance-draxo-9057-header-wrapper {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 25px rgba(106, 169, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.balance-draxo-9057-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.balance-draxo-9057-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-shadow: var(--shadow-neon);
}

.balance-draxo-9057-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.balance-draxo-9057-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.balance-draxo-9057-nav-link:hover {
    color: var(--accent-color);
    text-shadow: var(--shadow-neon);
}

/* Burger Menu (No JS) */
.balance-draxo-9057-burger-check {
    display: none;
}

.balance-draxo-9057-burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.balance-draxo-9057-burger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

/* Hero Section */
.balance-draxo-9057-hero-section {
    padding: 80px 0;
    position: relative;
}

.balance-draxo-9057-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.balance-draxo-9057-hero-image-box {
    flex: 1;
    min-width: 300px;
}

.balance-draxo-9057-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.balance-draxo-9057-hero-content {
    flex: 1.2;
    min-width: 300px;
}

.balance-draxo-9057-h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(106, 169, 255, 0.4);
}

.balance-draxo-9057-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.balance-draxo-9057-hero-text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.balance-draxo-9057-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    margin-top: 10px;
}

.balance-draxo-9057-btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.balance-draxo-9057-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    transition: var(--transition);
    text-align: center;
}

.balance-draxo-9057-btn-secondary:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Price Section */
.balance-draxo-9057-price-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #050A18 0%, #0A1428 100%);
}

.balance-draxo-9057-h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.balance-draxo-9057-price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.balance-draxo-9057-price-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: rgba(10, 20, 40, 0.6);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.balance-draxo-9057-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(106, 169, 255, 0.15);
}

.balance-draxo-9057-price-featured {
    border-color: var(--accent-color);
    background: rgba(106, 169, 255, 0.05);
    transform: scale(1.05);
}

.balance-draxo-9057-h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.balance-draxo-9057-price-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.balance-draxo-9057-price-list {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    flex-grow: 1;
}

.balance-draxo-9057-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    text-align: center;
}

/* Who Section */
.balance-draxo-9057-who-section {
    padding: 100px 0;
}

.balance-draxo-9057-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.balance-draxo-9057-who-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.balance-draxo-9057-who-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.balance-draxo-9057-who-item:hover {
    background: rgba(106, 169, 255, 0.1);
}

.balance-draxo-9057-who-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    box-shadow: var(--shadow-neon);
}

.balance-draxo-9057-discount {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: bold;
    border: 1px dashed var(--accent-color);
    padding: 2px 8px;
}

/* Benefit Section */
.balance-draxo-9057-benefit-section {
    padding: 100px 0;
}

.balance-draxo-9057-benefit-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap-reverse;
}

.balance-draxo-9057-benefit-text {
    flex: 1.2;
    min-width: 300px;
}

.balance-draxo-9057-benefit-image {
    flex: 1;
    min-width: 300px;
}

.balance-draxo-9057-benefit-img {
    width: 100%;
    border-radius: 20px;
}

.balance-draxo-9057-check-list {
    list-style: none;
    margin: 30px 0;
}

.balance-draxo-9057-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.balance-draxo-9057-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Quote Section */
.balance-draxo-9057-quote-section {
    padding: 100px 0;
    background: rgba(106, 169, 255, 0.03);
}

.balance-draxo-9057-quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.balance-draxo-9057-blockquote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.balance-draxo-9057-cite {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 40px;
}

.balance-draxo-9057-disclosure-wrapper {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.balance-draxo-9057-details {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
}

.balance-draxo-9057-summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-color);
}

.balance-draxo-9057-details-content {
    margin-top: 15px;
    padding-left: 20px;
}

/* FAQ Section */
.balance-draxo-9057-faq-section {
    padding: 100px 0;
}

.balance-draxo-9057-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.balance-draxo-9057-faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
}

.balance-draxo-9057-faq-q {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.balance-draxo-9057-faq-a {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Section */
.balance-draxo-9057-form-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0A1428 0%, #050A18 100%);
}

.balance-draxo-9057-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 20, 40, 0.8);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.balance-draxo-9057-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.balance-draxo-9057-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.balance-draxo-9057-form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.balance-draxo-9057-form-group input,
.balance-draxo-9057-form-group textarea {
    padding: 12px 15px;
    background: rgba(5, 10, 24, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.balance-draxo-9057-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.balance-draxo-9057-checkbox-group a {
    color: var(--accent-color);
}

.balance-draxo-9057-btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.balance-draxo-9057-btn-submit:hover {
    box-shadow: var(--shadow-neon);
    transform: scale(1.02);
}

/* Content Blocks */
.balance-draxo-9057-content-block {
    padding: 60px 0;
}

.balance-draxo-9057-content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.balance-draxo-9057-text-list {
    margin: 20px 0;
    padding-left: 20px;
}

.balance-draxo-9057-text-list li {
    margin-bottom: 10px;
}

.balance-draxo-9057-tips-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.balance-draxo-9057-tip {
    flex: 1;
    min-width: 250px;
    background: rgba(106, 169, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Footer */
.balance-draxo-9057-footer-wrapper {
    padding: 60px 0;
    background: #02050D;
    border-top: 1px solid var(--border-color);
}

.balance-draxo-9057-footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.balance-draxo-9057-footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.balance-draxo-9057-footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.balance-draxo-9057-footer-nav a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .balance-draxo-9057-h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .balance-draxo-9057-burger-btn { display: flex; z-index: 1001; }
    
    .balance-draxo-9057-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        padding: 100px 40px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .balance-draxo-9057-burger-check:checked ~ .balance-draxo-9057-nav-menu {
        right: 0;
    }

    .balance-draxo-9057-nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .balance-draxo-9057-hero-grid, .balance-draxo-9057-benefit-grid {
        flex-direction: column;
        text-align: center;
    }

    .balance-draxo-9057-h1 { font-size: 2.2rem; }
    
    .balance-draxo-9057-price-card {
        transform: none !important;
        max-width: 100%;
    }

    .balance-draxo-9057-check-list li {
        text-align: left;
    }
}