/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.qelmorapunitBalanceTonusFieldBody {
    background-color: #120014;
    color: #f0f0f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.qelmoHeaderContainer {
    background: rgba(18, 0, 20, 0.95);
    border-bottom: 2px solid #FF4FD8;
    box-shadow: 0 4px 20px rgba(255, 79, 216, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.qelmoHeaderWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qelmoLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF4FD8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.6);
}

.qelmoNavList {
    list-style: none;
    display: flex;
    gap: 20px;
}

.qelmoNavLink {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.qelmoNavLink:hover {
    color: #FF4FD8;
}

/* Burger Menu Styles */
.qelmoMenuCheckbox {
    display: none;
}

.qelmoBurgerButton {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.qelmoBurgerButton span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FF4FD8;
    transition: 0.3s;
}

/* Hero Section */
.qelmoHeroSection {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #1a001d 0%, #120014 100%);
}

.qelmoHeroInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.qelmoHeroColumnLeft {
    flex: 1;
    min-width: 300px;
}

.qelmoHeroColumnRight {
    flex: 1.2;
    min-width: 300px;
}

.qelmoHeroImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.2);
    border: 1px solid rgba(255, 79, 216, 0.3);
    object-fit: cover;
}

.qelmoHeroTitle {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.qelmoHeroSubtitle {
    font-size: 1.25rem;
    color: #FF4FD8;
    margin-bottom: 30px;
    font-weight: 600;
}

.qelmoHeroTextBlock {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #FF4FD8;
}

.qelmoHeroTextHeader {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #FF4FD8;
}

.qelmoHeroTextContent {
    font-size: 1rem;
    color: #ccc;
}

.qelmoMainCtaButton {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF4FD8;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.5);
    margin-top: 20px;
}

.qelmoMainCtaButton:hover {
    background-color: #ff7be2;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 79, 216, 0.8);
    animation: qelmoPulse 1.5s infinite;
}

@keyframes qelmoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Common Section Styles */
.qelmoSectionTitle {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.qelmoSectionSubtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #FF4FD8;
    font-size: 1.1rem;
}

/* Price Section */
.qelmoPriceSection {
    padding: 80px 20px;
    background-color: #0d000f;
}

.qelmoPriceGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.qelmoPriceCard {
    background: #1a001d;
    border: 1px solid rgba(255, 79, 216, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    width: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.qelmoPriceCard:hover {
    transform: translateY(-10px);
    border-color: #FF4FD8;
}

.qelmoPriceCardFeatured {
    border: 2px solid #FF4FD8;
    background: linear-gradient(145deg, #1a001d, #250029);
    position: relative;
    transform: scale(1.05);
}

.qelmoPriceCardFeatured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.qelmoPriceValue {
    font-size: 2rem;
    font-weight: 800;
    color: #FF4FD8;
    text-align: center;
    margin-bottom: 25px;
}

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

.qelmoPriceFeatures li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.qelmoPriceFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF4FD8;
}

.qelmoPriceButton {
    text-align: center;
    padding: 12px;
    border: 1px solid #FF4FD8;
    color: #FF4FD8;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qelmoPriceButton:hover {
    background-color: #FF4FD8;
    color: #fff;
}

/* Who Section */
.qelmoWhoSection {
    padding: 80px 0;
}

.qelmoWhoImageWrapper {
    margin-bottom: 40px;
    overflow: hidden;
}

.qelmoFullWidthImage {
    width: 100%;
    height: auto;
    display: block;
}

.qelmoWhoContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.qelmoWhoList {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.qelmoWhoListItem {
    background: rgba(255, 79, 216, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF4FD8;
}

/* Benefits Section */
.qelmoBenefitsSection {
    padding: 80px 20px;
    background-color: #0d000f;
}

.qelmoBenefitsInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.qelmoBenefitsContent {
    flex: 1.5;
    min-width: 300px;
}

.qelmoBenefitsImageBlock {
    flex: 1;
    min-width: 300px;
}

.qelmoBenefitsImage {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.2);
}

.qelmoBenefitsIntro {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.qelmoBenefitsList {
    list-style: none;
}

.qelmoBenefitItem {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 79, 216, 0.1);
}

.qelmoBenefitItem strong {
    display: block;
    color: #FF4FD8;
    margin-bottom: 5px;
}

/* Expert Section */
.qelmoExpertSection {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #120014, #1a001d);
}

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

.qelmoExpertQuoteWrapper {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(255, 79, 216, 0.03);
    padding: 40px;
    border-radius: 30px;
    position: relative;
}

.qelmoExpertQuote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #eee;
}

.qelmoExpertName {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF4FD8;
}

.qelmoExpertBio {
    font-size: 0.9rem;
    color: #888;
}

.qelmoExpertListDetails {
    margin-top: 40px;
}

.qelmoExpertDetails {
    margin-bottom: 15px;
    background: #250029;
    border-radius: 10px;
    overflow: hidden;
}

.qelmoExpertSummary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FF4FD8;
    list-style: none;
}

.qelmoExpertDetailsContent {
    padding: 20px;
    background: rgba(255, 79, 216, 0.05);
    border-top: 1px solid #FF4FD8;
}

/* Info Sections (Long text) */
.qelmoInfoSection {
    padding: 80px 20px;
}

.qelmoDarkerBg {
    background-color: #0d000f;
}

.qelmoInfoContainer {
    max-width: 900px;
    margin: 0 auto;
}

.qelmoInfoTitle {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #FF4FD8;
}

.qelmoInfoPara {
    margin-bottom: 20px;
    color: #ddd;
}

.qelmoInfoList {
    margin: 20px 0 30px 40px;
}

.qelmoInfoList li {
    margin-bottom: 10px;
}

.qelmoComfortGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.qelmoComfortCard {
    flex: 1;
    min-width: 250px;
    background: #1a001d;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #FF4FD8;
}

.qelmoComfortCard h4 {
    color: #FF4FD8;
    margin-bottom: 10px;
}

/* FAQ Section */
.qelmoFaqSection {
    padding: 80px 20px;
    background-color: #0d000f;
}

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

.qelmoFaqItem {
    margin-bottom: 15px;
}

.qelmoFaqDetails {
    background: #1a001d;
    border-radius: 8px;
    border: 1px solid rgba(255, 79, 216, 0.2);
}

.qelmoFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.qelmoFaqSummary::after {
    content: '+';
    color: #FF4FD8;
}

.qelmoFaqAnswer {
    padding: 0 20px 20px;
    color: #ccc;
}

/* Form Section */
.qelmoFormSection {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #250029 0%, #120014 100%);
}

.qelmoFormContainer {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(255, 79, 216, 0.15);
    border: 1px solid rgba(255, 79, 216, 0.2);
}

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

.qelmoInputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qelmoInputLabel {
    font-size: 0.9rem;
    font-weight: bold;
    color: #FF4FD8;
}

.qelmoInputField {
    background: #120014;
    border: 1px solid #444;
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.qelmoInputField:focus {
    outline: none;
    border-color: #FF4FD8;
    box-shadow: 0 0 10px rgba(255, 79, 216, 0.3);
}

.qelmoTextarea {
    resize: vertical;
}

.qelmoCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.qelmoCheckboxInput {
    margin-top: 5px;
}

.qelmoCheckboxLabel {
    font-size: 0.85rem;
    color: #bbb;
}

.qelmoCheckboxLabel a {
    color: #FF4FD8;
    text-decoration: underline;
}

.qelmoFormSubmitButton {
    background-color: #FF4FD8;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.qelmoFormSubmitButton:hover {
    background-color: #ff7be2;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.6);
}

/* Footer */
.qelmoFooter {
    background-color: #0a000b;
    padding: 60px 20px 30px;
    border-top: 2px solid #FF4FD8;
}

.qelmoFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.qelmoFooterTop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.qelmoFooterBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF4FD8;
}

.qelmoFooterContacts p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.qelmoFooterContacts a {
    color: #fff;
    text-decoration: none;
}

.qelmoFooterBottom {
    border-top: 1px solid rgba(255, 79, 216, 0.1);
    padding-top: 30px;
    text-align: center;
}

.qelmoCopyright {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #888;
}

.qelmoFooterNav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.qelmoFooterNav a:hover {
    color: #FF4FD8;
}

/* Responsive */
@media (max-width: 992px) {
    .qelmoHeroTitle { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .qelmoBurgerButton {
        display: flex;
    }

    .qelmoNavigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #120014;
        display: none;
        border-bottom: 2px solid #FF4FD8;
    }

    .qelmoNavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .qelmoMenuCheckbox:checked ~ .qelmoNavigation {
        display: block;
    }

    .qelmoHeroInner {
        flex-direction: column;
    }

    .qelmoHeroColumnLeft, .qelmoHeroColumnRight {
        width: 100%;
    }

    .qelmoBenefitsInner {
        flex-direction: column-reverse;
    }

    .qelmoFooterTop {
        flex-direction: column;
        text-align: center;
    }
}