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

:root {
    --bg-color: #060708;
    --accent-amber: #FFC55E;
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --card-bg: #111214;
    --border-color: rgba(255, 197, 94, 0.2);
    --hover-glow: 0 0 15px rgba(255, 197, 94, 0.6);
}

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

.kermudavolixSoftBalanceField_Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.kermudavolixSoftBalanceField_TitleH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.kermudavolixSoftBalanceField_TitleH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.kermudavolixSoftBalanceField_TitleH2::after {
    content: '●';
    color: var(--accent-amber);
    font-size: 10px;
    margin-left: 10px;
    vertical-align: middle;
}

.kermudavolixSoftBalanceField_TitleH3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-amber);
}

.kermudavolixSoftBalanceField_Accent {
    color: var(--accent-amber);
}

/* Header & Nav */
.kermudavolixSoftBalanceField_HeaderMain {
    background-color: var(--bg-color);
    border-bottom: 2px solid var(--accent-amber);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.kermudavolixSoftBalanceField_HeaderWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kermudavolixSoftBalanceField_Logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kermudavolixSoftBalanceField_NavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.kermudavolixSoftBalanceField_NavLink {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.kermudavolixSoftBalanceField_NavLink:hover {
    color: var(--accent-amber);
}

/* Burger Menu */
.kermudavolixSoftBalanceField_NavToggle {
    display: none;
}

.kermudavolixSoftBalanceField_Burger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.kermudavolixSoftBalanceField_Hero {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.kermudavolixSoftBalanceField_HeroGrid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.kermudavolixSoftBalanceField_HeroImageWrap {
    flex: 1;
}

.kermudavolixSoftBalanceField_MainImg {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(255, 197, 94, 0.1);
}

.kermudavolixSoftBalanceField_HeroContent {
    flex: 1.2;
}

.kermudavolixSoftBalanceField_Subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.kermudavolixSoftBalanceField_HeroTextBlocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

/* Buttons */
.kermudavolixSoftBalanceField_BtnPrimary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-amber);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-amber);
    text-align: center;
}

.kermudavolixSoftBalanceField_BtnPrimary:hover {
    background-color: transparent;
    color: var(--accent-amber);
    box-shadow: var(--hover-glow);
}

.kermudavolixSoftBalanceField_BtnSecondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--accent-amber);
    transition: all 0.3s ease;
    text-align: center;
}

.kermudavolixSoftBalanceField_BtnSecondary:hover {
    background-color: var(--accent-amber);
    color: var(--bg-color);
}

/* Audience Section */
.kermudavolixSoftBalanceField_Audience {
    padding: 100px 0;
}

.kermudavolixSoftBalanceField_SectionIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_AudienceLayout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.kermudavolixSoftBalanceField_AudienceList {
    flex: 1;
}

.kermudavolixSoftBalanceField_Features {
    list-style: none;
}

.kermudavolixSoftBalanceField_Features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.kermudavolixSoftBalanceField_Features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-amber);
}

.kermudavolixSoftBalanceField_AudienceImage {
    flex: 1;
    background-color: var(--card-bg);
    padding: 20px;
    border: 1px solid var(--border-color);
}

.kermudavolixSoftBalanceField_SideImg {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.kermudavolixSoftBalanceField_PriceTag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 5px;
}

/* Pricing Section */
.kermudavolixSoftBalanceField_Pricing {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.kermudavolixSoftBalanceField_PriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.kermudavolixSoftBalanceField_PriceCard {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.kermudavolixSoftBalanceField_PriceCard:hover {
    transform: translateY(-10px);
    border-color: var(--accent-amber);
}

.kermudavolixSoftBalanceField_CardFeatured {
    border: 2px solid var(--accent-amber);
    position: relative;
    transform: scale(1.05);
}

.kermudavolixSoftBalanceField_CardTitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
}

.kermudavolixSoftBalanceField_CardPrice {
    font-size: 2rem;
    color: var(--accent-amber);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.kermudavolixSoftBalanceField_CardList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.kermudavolixSoftBalanceField_CardList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Benefits Section */
.kermudavolixSoftBalanceField_Benefits {
    padding: 100px 0;
}

.kermudavolixSoftBalanceField_BenefitsGrid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.kermudavolixSoftBalanceField_BenefitsContent {
    flex: 1;
}

.kermudavolixSoftBalanceField_BenefitList {
    list-style: none;
    margin-top: 30px;
}

.kermudavolixSoftBalanceField_BenefitList li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.kermudavolixSoftBalanceField_Dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent-amber);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.kermudavolixSoftBalanceField_BenefitsImage {
    flex: 1;
}

/* Quote Section */
.kermudavolixSoftBalanceField_Quote {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0c0e10 100%);
}

.kermudavolixSoftBalanceField_QuoteWrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.kermudavolixSoftBalanceField_Blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.4;
    position: relative;
}

.kermudavolixSoftBalanceField_Blockquote::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-amber);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.kermudavolixSoftBalanceField_Author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.kermudavolixSoftBalanceField_AuthorImg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent-amber);
}

.kermudavolixSoftBalanceField_AuthorInfo {
    text-align: left;
}

.kermudavolixSoftBalanceField_AuthorName {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    font-style: normal;
}

.kermudavolixSoftBalanceField_AuthorTitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.kermudavolixSoftBalanceField_Faq {
    padding: 100px 0;
}

.kermudavolixSoftBalanceField_FaqGrid {
    max-width: 800px;
    margin: 0 auto;
}

.kermudavolixSoftBalanceField_FaqItem {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.kermudavolixSoftBalanceField_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kermudavolixSoftBalanceField_FaqSummary::after {
    content: '+';
    color: var(--accent-amber);
    font-size: 1.5rem;
}

.kermudavolixSoftBalanceField_FaqItem[open] .kermudavolixSoftBalanceField_FaqSummary::after {
    content: '-';
}

.kermudavolixSoftBalanceField_FaqContent {
    padding: 0 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Text Sections */
.kermudavolixSoftBalanceField_TextSection {
    padding: 80px 0;
}

.kermudavolixSoftBalanceField_AltBg {
    background-color: #090a0c;
}

.kermudavolixSoftBalanceField_TextContent p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_SimpleList {
    margin: 30px 0;
    list-style: none;
}

.kermudavolixSoftBalanceField_SimpleList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.kermudavolixSoftBalanceField_SimpleList li::before {
    content: '◈';
    color: var(--accent-amber);
    position: absolute;
    left: 0;
}

.kermudavolixSoftBalanceField_InfoGrid {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.kermudavolixSoftBalanceField_InfoBox {
    flex: 1;
    padding: 25px;
    background-color: var(--card-bg);
    border-left: 4px solid var(--accent-amber);
}

.kermudavolixSoftBalanceField_InfoBox h4 {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Contact Form */
.kermudavolixSoftBalanceField_ContactForm {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #111, var(--bg-color));
}

.kermudavolixSoftBalanceField_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.kermudavolixSoftBalanceField_FormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_InputGroup {
    margin-bottom: 20px;
}

.kermudavolixSoftBalanceField_InputGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.kermudavolixSoftBalanceField_InputGroup input,
.kermudavolixSoftBalanceField_InputGroup textarea {
    width: 100%;
    padding: 12px;
    background-color: #060708;
    border: 1px solid var(--border-color);
    color: white;
    font-family: inherit;
}

.kermudavolixSoftBalanceField_CheckboxGroup {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.kermudavolixSoftBalanceField_CheckboxGroup a {
    color: var(--accent-amber);
}

.kermudavolixSoftBalanceField_BtnFull {
    width: 100%;
}

/* Footer */
.kermudavolixSoftBalanceField_Footer {
    padding: 60px 0 30px;
    background-color: #030405;
    border-top: 1px solid var(--border-color);
}

.kermudavolixSoftBalanceField_FooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.kermudavolixSoftBalanceField_FooterInfo p {
    margin-top: 15px;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_FooterContacts {
    text-align: right;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_FooterContacts a {
    color: var(--accent-amber);
    text-decoration: none;
}

.kermudavolixSoftBalanceField_FooterBottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_FooterNav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text-muted);
}

.kermudavolixSoftBalanceField_FooterNav a:hover {
    color: var(--accent-amber);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .kermudavolixSoftBalanceField_HeroGrid,
    .kermudavolixSoftBalanceField_AudienceLayout,
    .kermudavolixSoftBalanceField_BenefitsGrid {
        flex-direction: column;
    }

    .kermudavolixSoftBalanceField_HeroImageWrap,
    .kermudavolixSoftBalanceField_AudienceImage {
        order: -1;
        width: 100%;
    }

    .kermudavolixSoftBalanceField_TitleH1 {
        font-size: 2.8rem;
    }

    .kermudavolixSoftBalanceField_PriceCard {
        max-width: 100%;
    }

    .kermudavolixSoftBalanceField_InfoGrid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .kermudavolixSoftBalanceField_Burger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .kermudavolixSoftBalanceField_Burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--accent-amber);
        position: absolute;
        transition: 0.3s;
    }

    .kermudavolixSoftBalanceField_Burger span:nth-child(1) { top: 0; }
    .kermudavolixSoftBalanceField_Burger span:nth-child(2) { top: 9px; }
    .kermudavolixSoftBalanceField_Burger span:nth-child(3) { top: 18px; }

    .kermudavolixSoftBalanceField_Nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 100px 40px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .kermudavolixSoftBalanceField_NavList {
        flex-direction: column;
        gap: 20px;
    }

    .kermudavolixSoftBalanceField_NavToggle:checked ~ .kermudavolixSoftBalanceField_Nav {
        right: 0;
    }

    .kermudavolixSoftBalanceField_NavToggle:checked ~ .kermudavolixSoftBalanceField_Burger span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }
    .kermudavolixSoftBalanceField_NavToggle:checked ~ .kermudavolixSoftBalanceField_Burger span:nth-child(2) {
        opacity: 0;
    }
    .kermudavolixSoftBalanceField_NavToggle:checked ~ .kermudavolixSoftBalanceField_Burger span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .kermudavolixSoftBalanceField_FooterTop,
    .kermudavolixSoftBalanceField_FooterBottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .kermudavolixSoftBalanceField_FooterContacts {
        text-align: center;
    }

    .kermudavolixSoftBalanceField_FooterNav a {
        display: block;
        margin: 10px 0;
    }
}