/* GLOBAL RESETS & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #111827;
    --accent-blue: #4f46e5;
    --accent-purple: #c4b5fd;
    --accent-cyan: #00ffff;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: #1e293b;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
}

body.VonesoCore_MainBodyWrapper {
    line-height: 1.6;
    overflow-x: hidden;
    /* Matrix Lines Effect */
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* CONTAINER */
.VonesoCore_SectionConstraint {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.VonesoCore_HeaderContainer {
    background: rgba(17, 24, 39, 0.95);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.VonesoCore_BrandLogo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.VonesoCore_NavMenu {
    display: flex;
    align-items: center;
}

.VonesoCore_NavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

.VonesoCore_NavLink {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color var(--transition-speed);
}

.VonesoCore_NavLink:hover {
    color: var(--accent-cyan);
}

.VonesoCore_MenuInput {
    display: none;
}

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

.VonesoCore_BurgerBtn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* PATTERN STRIP */
.VonesoCore_PatternStripDivider {
    height: 6px;
    background: repeating-linear-gradient(
        45deg,
        var(--accent-blue),
        var(--accent-blue) 10px,
        var(--accent-cyan) 10px,
        var(--accent-cyan) 20px
    );
    opacity: 0.7;
}

/* HERO SECTION */
.VonesoCore_HeroBlockSection {
    padding: 100px 0;
}

.VonesoCore_HeroInnerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.VonesoCore_HeroImageWrapper {
    flex: 1;
}

.VonesoCore_HeroVisualElement {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.3);
    object-fit: cover;
}

.VonesoCore_HeroTextContent {
    flex: 1.2;
}

.VonesoCore_HeroMainHeading {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.VonesoCore_HeroSubText {
    font-size: 20px;
    color: var(--accent-purple);
    margin-bottom: 20px;
    font-weight: 300;
}

.VonesoCore_HeroDescription {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.VonesoCore_HeroActionsRow {
    display: flex;
    gap: 20px;
}

.VonesoCore_PrimaryActionButton {
    padding: 16px 32px;
    background: var(--accent-cyan);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.VonesoCore_PrimaryActionButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.VonesoCore_SecondaryActionButton {
    padding: 16px 32px;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.VonesoCore_SecondaryActionButton:hover {
    background: rgba(0, 255, 255, 0.1);
}

/* PRICING SECTION */
.VonesoCore_PricingPackagesSection {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.5);
}

.VonesoCore_SectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.VonesoCore_PriceCardItem {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.VonesoCore_PriceCardItem:hover {
    transform: scale(1.03);
    border-color: var(--accent-cyan);
}

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

.VonesoCore_PriceCardPremium::before {
    content: "Популярно";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.VonesoCore_CardIconBox {
    margin-bottom: 25px;
}

.VonesoCore_PriceIconImg {
    border-radius: 50%;
}

.VonesoCore_CardPriceName {
    font-size: 24px;
    margin-bottom: 15px;
}

.VonesoCore_PriceValue {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 30px;
}

.VonesoCore_PriceValue span {
    font-size: 16px;
    color: var(--text-muted);
}

.VonesoCore_CardFeatureList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.VonesoCore_CardFeatureList li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-muted);
}

.VonesoCore_CardFeatureList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.VonesoCore_CardCtaButton {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.VonesoCore_CardCtaButton:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

/* BENEFITS SECTION */
.VonesoCore_PracticeBenefitsSection {
    padding: 100px 0;
}

.VonesoCore_BenefitContentWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.VonesoCore_BenefitTextCol {
    flex: 1.2;
}

.VonesoCore_BenefitImageCol {
    flex: 1;
}

.VonesoCore_BenefitVisualAsset {
    width: 100%;
    border-radius: 30px;
}

.VonesoCore_BenefitLeadParagraph {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--accent-purple);
}

.VonesoCore_BenefitBulletPoints {
    list-style: none;
    margin-bottom: 40px;
}

.VonesoCore_BenefitBulletPoints li {
    margin-bottom: 20px;
    font-size: 16px;
}

.VonesoCore_BenefitBulletPoints strong {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 5px;
}

.VonesoCore_BenefitHighlightBox {
    background: rgba(196, 181, 253, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 20px;
}

.VonesoCore_HighlightText {
    font-style: italic;
    color: var(--text-light);
}

/* TARGET AUDIENCE */
.VonesoCore_TargetAudienceSection {
    padding: 100px 0;
    text-align: center;
    background: #0f172a;
}

.VonesoCore_TargetIntroHeader {
    margin-bottom: 50px;
}

.VonesoCore_TargetSubtitle {
    color: var(--text-muted);
}

.VonesoCore_CloudTagsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.VonesoCore_CloudBadge {
    padding: 12px 25px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid var(--accent-blue);
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
    cursor: default;
}

.VonesoCore_CloudBadge:hover {
    background: var(--accent-blue);
    transform: scale(1.1);
}

/* DETAILED TEXT SECTIONS */
.VonesoCore_DetailedContentSection {
    padding: 100px 0;
}

.VonesoCore_AltBgColor {
    background: rgba(30, 41, 59, 0.4);
}

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

.VonesoCore_TextSectionHeading {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--accent-cyan);
}

.VonesoCore_TextParaItem {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--text-muted);
}

.VonesoCore_TextSubList {
    margin-bottom: 30px;
    padding-left: 20px;
}

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

.VonesoCore_KeyPhraseCallout {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-purple);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ SECTION */
.VonesoCore_FaqSectionBlock {
    padding: 100px 0;
}

.VonesoCore_FaqIntro {
    text-align: center;
    margin-bottom: 60px;
}

.VonesoCore_FaqDescription {
    color: var(--text-muted);
    max-width: 700px;
    margin: 10px auto;
}

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

.VonesoCore_FaqAccordionItem {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.VonesoCore_FaqSummary::after {
    content: "+";
    color: var(--accent-cyan);
    font-size: 24px;
}

details[open] .VonesoCore_FaqSummary::after {
    content: "−";
}

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

/* EXPERT QUOTE */
.VonesoCore_ExpertQuoteSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
}

.VonesoCore_ExpertBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.VonesoCore_ExpertPhotoCircle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--accent-cyan);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}

.VonesoCore_ExpertImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.VonesoCore_QuoteContent {
    max-width: 600px;
}

.VonesoCore_QuoteLine {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
}

.VonesoCore_QuoteAuthor {
    font-weight: 700;
    color: var(--accent-cyan);
    font-style: normal;
}

/* CONTACT FORM */
.VonesoCore_ContactFormSection {
    padding: 100px 0;
}

.VonesoCore_FormWrapper {
    background: #1e293b;
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.VonesoCore_FormHeading {
    text-align: center;
    margin-bottom: 10px;
}

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

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

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

.VonesoCore_FormLabel {
    font-size: 14px;
    font-weight: 600;
}

.VonesoCore_FormInput, 
.VonesoCore_FormTextarea {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-family: inherit;
}

.VonesoCore_FormInput:focus, 
.VonesoCore_FormTextarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.VonesoCore_FormTextarea {
    height: 150px;
    resize: vertical;
}

.VonesoCore_FormCheckboxRow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.VonesoCore_CheckboxLabel a {
    color: var(--accent-cyan);
}

.VonesoCore_SubmitButton {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    border: none;
    padding: 18px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.VonesoCore_SubmitButton:hover {
    background: #00cccc;
    transform: translateY(-2px);
}

/* FOOTER */
.VonesoCore_FooterContainer {
    background: #020617;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.VonesoCore_FooterMainContent {
    text-align: center;
}

.VonesoCore_FooterBrand {
    font-weight: 700;
    margin-bottom: 10px;
}

.VonesoCore_FooterContact {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.VonesoCore_FooterContact a {
    color: var(--accent-purple);
    text-decoration: none;
}

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

.VonesoCore_FooterLinks a {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.VonesoCore_FooterLinks a:hover {
    color: var(--accent-cyan);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .VonesoCore_HeroInnerContainer {
        flex-direction: column;
        text-align: center;
    }
    .VonesoCore_HeroActionsRow {
        justify-content: center;
    }
    .VonesoCore_BenefitContentWrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .VonesoCore_BurgerBtn {
        display: flex;
        z-index: 1001;
    }
    .VonesoCore_NavList {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .VonesoCore_MenuInput:checked ~ .VonesoCore_NavList {
        right: 0;
    }
    .VonesoCore_HeroMainHeading {
        font-size: 32px;
    }
    .VonesoCore_PricingGridContainer {
        flex-direction: column;
        align-items: center;
    }
    .VonesoCore_PriceCardItem {
        width: 100%;
        max-width: 400px;
    }
    .VonesoCore_PriceCardPremium {
        transform: scale(1);
    }
    .VonesoCore_FormWrapper {
        padding: 30px;
    }
}