/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.balance-korva-body-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0B0020;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.balance-korva-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.balance-korva-header-main {
    background: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(185, 140, 255, 0.3);
}

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

.balance-korva-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.6);
}

.balance-korva-nav-links {
    display: flex;
    gap: 25px;
}

.balance-korva-nav-item {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.balance-korva-nav-item:hover {
    color: #B98CFF;
}

.balance-korva-menu-checkbox {
    display: none;
}

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

.balance-korva-burger-btn span {
    width: 25px;
    height: 3px;
    background-color: #B98CFF;
    border-radius: 2px;
}

/* HERO SECTION - Variant 4: Red lines */
.balance-korva-hero-section {
    padding: 100px 0;
    position: relative;
    border: 4px solid #FF3B3B; /* Red lines requirement */
    margin: 20px;
}

.balance-korva-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.balance-korva-hero-image-wrap {
    flex: 1;
}

.balance-korva-hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    object-fit: cover;
}

.balance-korva-hero-content {
    flex: 1;
}

.balance-korva-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #B98CFF;
}

.balance-korva-hero-subtitle {
    font-size: 1.4rem;
    color: #E0E0E0;
    margin-bottom: 25px;
    font-weight: 300;
}

.balance-korva-hero-desc {
    margin-bottom: 20px;
    color: #CCCCCC;
}

/* BUTTONS */
.balance-korva-btn-primary {
    display: inline-block;
    background-color: #B98CFF;
    color: #0B0020;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.5);
}

.balance-korva-btn-primary:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(185, 140, 255, 0.8);
    transform: translateY(-2px);
}

.balance-korva-btn-secondary {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #B98CFF;
    color: #B98CFF;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.balance-korva-btn-secondary:hover {
    background-color: rgba(185, 140, 255, 0.1);
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

/* PRICE SECTION - Variant 3: Quick links */
.balance-korva-price-section {
    padding: 80px 0;
    background-color: #0e002a;
}

.balance-korva-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #B98CFF;
    text-shadow: 0 0 5px rgba(185, 140, 255, 0.4);
}

.balance-korva-price-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.balance-korva-quick-link {
    color: #B98CFF;
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.balance-korva-quick-link:hover {
    border-color: #B98CFF;
    background: rgba(185, 140, 255, 0.1);
}

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

.balance-korva-price-card {
    background: #16003d;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    max-width: 350px;
    text-align: center;
    border: 1px solid rgba(185, 140, 255, 0.2);
    transition: transform 0.3s ease;
}

.balance-korva-price-card:hover {
    transform: translateY(-10px);
    border-color: #B98CFF;
}

.balance-korva-price-featured {
    border: 2px solid #B98CFF;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    background: #1a004a;
}

.balance-korva-price-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.balance-korva-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #B98CFF;
}

.balance-korva-price-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.balance-korva-price-list li {
    margin-bottom: 12px;
    color: #E0E0E0;
    position: relative;
    padding-left: 20px;
}

.balance-korva-price-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #B98CFF;
}

/* AUDIENCE SECTION - Variant 2: Lines & Discounts */
.balance-korva-audience-section {
    padding: 80px 0;
}

.balance-korva-section-introText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.balance-korva-audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.balance-korva-audience-item {
    flex: 1 1 calc(25% - 20px);
    min-width: 250px;
    background: rgba(185, 140, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #B98CFF;
}

.balance-korva-audience-deco-line {
    width: 50px;
    height: 2px;
    background: #B98CFF;
    margin-bottom: 15px;
}

.balance-korva-discount-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #0B0020;
    background: #B98CFF;
    padding: 2px 10px;
    border-radius: 5px;
}

/* REVIEWS SLIDER - NO JS */
.balance-korva-reviews-section {
    padding: 80px 0;
    background: #080018;
}

.balance-korva-slider-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.balance-korva-slider-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.balance-korva-review-card {
    min-width: 100%;
    padding: 40px;
}

.balance-korva-review-content {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.balance-korva-review-author {
    color: #B98CFF;
    font-weight: bold;
}

.balance-korva-slider-radio {
    display: none;
}

#rev-1:checked ~ .balance-korva-slider-inner { transform: translateX(0); }
#rev-2:checked ~ .balance-korva-slider-inner { transform: translateX(-100%); }
#rev-3:checked ~ .balance-korva-slider-inner { transform: translateX(-200%); }

.balance-korva-slider-nav {
    margin-top: 20px;
}

.balance-korva-slider-nav label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(185, 140, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#rev-1:checked ~ .balance-korva-slider-nav label[for="rev-1"],
#rev-2:checked ~ .balance-korva-slider-nav label[for="rev-2"],
#rev-3:checked ~ .balance-korva-slider-nav label[for="rev-3"] {
    background: #B98CFF;
    box-shadow: 0 0 10px #B98CFF;
}

/* BENEFITS SECTION */
.balance-korva-benefits-section {
    padding: 80px 0;
}

.balance-korva-benefits-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.balance-korva-benefits-text {
    flex: 1;
}

.balance-korva-benefits-image {
    flex: 1;
}

.balance-korva-content-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 rgba(185, 140, 255, 0.1);
}

.balance-korva-benefits-list {
    list-style: none;
}

.balance-korva-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.balance-korva-benefits-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #B98CFF;
}

/* EXPERT */
.balance-korva-expert-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B0020 0%, #16003d 100%);
}

.balance-korva-expert-quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(185, 140, 255, 0.2);
    padding: 60px;
    border-radius: 30px;
    background: rgba(185, 140, 255, 0.02);
}

.balance-korva-expert-quote {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.4;
}

.balance-korva-expert-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.balance-korva-expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #B98CFF;
}

.balance-korva-expert-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.balance-korva-expert-status {
    color: #B98CFF;
    font-size: 0.9rem;
}

/* EXTRA TEXT SECTIONS */
.balance-korva-extra-content-section, 
.balance-korva-extra-content-section-alt {
    padding: 100px 0;
}

.balance-korva-extra-content-section-alt {
    background: #060012;
}

.balance-korva-text-block {
    max-width: 1000px;
    margin: 0 auto;
}

.balance-korva-text-block p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #D1D1D1;
}

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

.balance-korva-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.balance-korva-faq-item {
    background: #16003d;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.balance-korva-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #B98CFF;
    list-style: none;
    position: relative;
}

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

.balance-korva-faq-content {
    padding: 0 20px 20px;
    color: #E0E0E0;
}

/* FORM */
.balance-korva-form-section {
    padding: 80px 0;
}

.balance-korva-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #1a004a;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(185, 140, 255, 0.2);
}

.balance-korva-form-title {
    text-align: center;
    margin-bottom: 10px;
    color: #B98CFF;
}

.balance-korva-form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #BBB;
}

.balance-korva-form-group {
    margin-bottom: 20px;
}

.balance-korva-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.balance-korva-form-input, 
.balance-korva-form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #0B0020;
    border: 1px solid rgba(185, 140, 255, 0.3);
    color: white;
    border-radius: 8px;
    outline: none;
}

.balance-korva-form-input:focus, 
.balance-korva-form-textarea:focus {
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.2);
}

.balance-korva-form-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.balance-korva-form-checkbox-wrap a {
    color: #B98CFF;
}

.balance-korva-btn-submit {
    width: 100%;
    background: #B98CFF;
    color: #0B0020;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.balance-korva-btn-submit:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px #B98CFF;
}

/* FOOTER */
.balance-korva-footer-main {
    background: #050010;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(185, 140, 255, 0.1);
}

.balance-korva-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.balance-korva-footer-logo {
    font-size: 1.5rem;
    color: #B98CFF;
    font-weight: bold;
}

.balance-korva-footer-contact p {
    font-size: 0.9rem;
    color: #AAA;
}

.balance-korva-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.balance-korva-copyright {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

.balance-korva-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.balance-korva-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.balance-korva-footer-links a:hover {
    color: #B98CFF;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .balance-korva-hero-grid, 
    .balance-korva-benefits-row {
        flex-direction: column;
    }
    
    .balance-korva-price-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .balance-korva-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .balance-korva-burger-btn {
        display: flex;
        z-index: 1001;
    }
    
    .balance-korva-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0B0020;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .balance-korva-menu-checkbox:checked ~ .balance-korva-nav-links {
        right: 0;
    }
    
    .balance-korva-nav-item {
        font-size: 1.2rem;
    }
    
    .balance-korva-hero-section {
        padding: 60px 0;
        margin: 10px;
    }
    
    .balance-korva-audience-item {
        flex: 1 1 100%;
    }
}