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

html {
    scroll-behavior: smooth;
}

body.balance-pelqi-5719-body-root {
    background-color: #050A18;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img.balance-pelqi-5719-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* Typography */
.balance-pelqi-5719-h1-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #6AA9FF;
    text-shadow: 0 0 15px rgba(106, 169, 255, 0.4);
}

.balance-pelqi-5719-h2-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #6AA9FF;
    text-align: center;
}

.balance-pelqi-5719-h3-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.balance-pelqi-5719-p-text {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #d1d1d1;
}

.balance-pelqi-5719-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Header */
.balance-pelqi-5719-header-main {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(106, 169, 255, 0.2);
}

.balance-pelqi-5719-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-pelqi-5719-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6AA9FF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.balance-pelqi-5719-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.balance-pelqi-5719-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.balance-pelqi-5719-nav-link:hover {
    color: #6AA9FF;
}

/* Burger Menu (No JS) */
.balance-pelqi-5719-nav-toggle-input {
    display: none;
}

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

.balance-pelqi-5719-burger-btn span {
    width: 25px;
    height: 3px;
    background: #6AA9FF;
    border-radius: 2px;
}

/* Hero Section */
.balance-pelqi-5719-hero-section {
    padding: 80px 0;
}

.balance-pelqi-5719-hero-grid-red-outline {
    display: flex;
    align-items: center;
    gap: 50px;
    border: 3px solid #ff4d4d; /* Variant 4 requirement */
    padding: 40px;
    border-radius: 15px;
}

.balance-pelqi-5719-hero-image-box {
    flex: 1;
}

.balance-pelqi-5719-hero-text-box {
    flex: 1.2;
}

.balance-pelqi-5719-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #6AA9FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.balance-pelqi-5719-btn-primary:hover {
    background-color: transparent;
    border-color: #6AA9FF;
    box-shadow: 0 0 15px #6AA9FF;
    color: #6AA9FF;
}

/* Audience Section */
.balance-pelqi-5719-audience-section {
    padding: 80px 0;
}

.balance-pelqi-5719-audience-img-top {
    margin-bottom: 40px;
}

.balance-pelqi-5719-check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.balance-pelqi-5719-check-item {
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}

.balance-pelqi-5719-check-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
    text-shadow: 0 0 5px #6AA9FF;
}

/* Pricing Section */
.balance-pelqi-5719-pricing-section {
    padding: 80px 0;
    background: rgba(106, 169, 255, 0.05);
}

.balance-pelqi-5719-price-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.balance-pelqi-5719-price-card {
    background: #0a1329;
    padding: 40px;
    border-radius: 12px;
    width: 280px;
    border: 1px solid rgba(106, 169, 255, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.balance-pelqi-5719-price-card:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.balance-pelqi-5719-featured {
    border: 2px solid #6AA9FF;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
    transform: scale(1.05);
}

.balance-pelqi-5719-price-val {
    font-size: 2rem;
    font-weight: 800;
    color: #6AA9FF;
    margin: 20px 0;
}

.balance-pelqi-5719-price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.balance-pelqi-5719-price-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

.balance-pelqi-5719-btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #6AA9FF;
    color: #6AA9FF;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.balance-pelqi-5719-btn-outline:hover {
    background: #6AA9FF;
    color: #ffffff;
}

/* Reviews Section */
.balance-pelqi-5719-reviews-section {
    padding: 80px 0;
}

.balance-pelqi-5719-reviews-flex {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.balance-pelqi-5719-review-item {
    background: #0a1329;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    border-left: 4px solid #6AA9FF;
}

.balance-pelqi-5719-review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #eee;
}

.balance-pelqi-5719-review-author {
    font-weight: bold;
    color: #6AA9FF;
}

/* Benefits Section */
.balance-pelqi-5719-benefits-section {
    padding: 80px 0;
}

.balance-pelqi-5719-benefits-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.balance-pelqi-5719-benefits-text, .balance-pelqi-5719-benefits-img {
    flex: 1;
}

/* Practitioner Section */
.balance-pelqi-5719-practitioner-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0a1a3a 0%, #050A18 100%);
}

.balance-pelqi-5719-quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.balance-pelqi-5719-main-quote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
}

.balance-pelqi-5719-quote-cite {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 40px;
    color: #6AA9FF;
}

.balance-pelqi-5719-details-pro {
    background: #0a1329;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.balance-pelqi-5719-summary-pro {
    cursor: pointer;
    font-weight: bold;
    color: #6AA9FF;
    outline: none;
}

.balance-pelqi-5719-pro-list {
    list-style: none;
    margin-top: 20px;
}

.balance-pelqi-5719-pro-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.balance-pelqi-5719-pro-list li::before {
    content: '•';
    color: #6AA9FF;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.balance-pelqi-5719-faq-section {
    padding: 80px 0;
}

.balance-pelqi-5719-faq-grid {
    max-width: 900px;
    margin: 40px auto 0;
}

.balance-pelqi-5719-faq-item {
    background: #0a1329;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.balance-pelqi-5719-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    background: rgba(106, 169, 255, 0.1);
    list-style: none;
}

.balance-pelqi-5719-faq-summary::-webkit-details-marker {
    display: none;
}

.balance-pelqi-5719-faq-answer {
    padding: 20px;
    color: #ccc;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
}

/* Form Section */
.balance-pelqi-5719-form-section {
    padding: 100px 0;
    background: #070e24;
}

.balance-pelqi-5719-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #050A18;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #6AA9FF;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.1);
}

.balance-pelqi-5719-form-group {
    margin-bottom: 25px;
}

.balance-pelqi-5719-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #6AA9FF;
}

.balance-pelqi-5719-form-input, .balance-pelqi-5719-form-textarea {
    width: 100%;
    padding: 12px;
    background: #0a1329;
    border: 1px solid rgba(106, 169, 255, 0.4);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.balance-pelqi-5719-form-input:focus, .balance-pelqi-5719-form-textarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 8px rgba(106, 169, 255, 0.5);
}

.balance-pelqi-5719-form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.balance-pelqi-5719-form-checkbox a {
    color: #6AA9FF;
}

.balance-pelqi-5719-btn-submit {
    width: 100%;
    padding: 15px;
    background: #6AA9FF;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.balance-pelqi-5719-btn-submit:hover {
    background: #4a90f2;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.6);
}

/* Text Block Sections */
.balance-pelqi-5719-text-block-section {
    padding: 80px 0;
}

.balance-pelqi-5719-bg-alt {
    background-color: #070e24;
}

/* Footer */
.balance-pelqi-5719-footer-main {
    background: #030712;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
}

.balance-pelqi-5719-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.balance-pelqi-5719-footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6AA9FF;
}

.balance-pelqi-5719-footer-contact p {
    color: #999;
    font-size: 0.95rem;
}

.balance-pelqi-5719-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.balance-pelqi-5719-copy {
    color: #666;
    font-size: 0.85rem;
}

.balance-pelqi-5719-footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 20px;
}

.balance-pelqi-5719-footer-nav a:hover {
    color: #6AA9FF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .balance-pelqi-5719-hero-grid-red-outline, .balance-pelqi-5719-benefits-grid {
        flex-direction: column;
    }
    
    .balance-pelqi-5719-h1-title {
        font-size: 2.5rem;
    }
    
    .balance-pelqi-5719-check-list {
        grid-template-columns: 1fr;
    }
    
    .balance-pelqi-5719-price-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .balance-pelqi-5719-burger-btn {
        display: flex;
    }
    
    .balance-pelqi-5719-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050A18;
        padding: 20px;
        border-bottom: 2px solid #6AA9FF;
    }
    
    .balance-pelqi-5719-nav-toggle-input:checked ~ .balance-pelqi-5719-nav-menu {
        display: block;
    }
    
    .balance-pelqi-5719-nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .balance-pelqi-5719-footer-top, .balance-pelqi-5719-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .balance-pelqi-5719-footer-nav a {
        margin: 5px 10px;
        display: inline-block;
    }
    
    .balance-pelqi-5719-reviews-flex {
        flex-direction: column;
    }
}

/* Extra decorative elements */
.balance-pelqi-5719-neon-dot {
    width: 8px;
    height: 8px;
    background: #6AA9FF;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #6AA9FF;
    margin-right: 10px;
}