/* 
   Стилі винесені сюди для демонстрації, але мають бути у ./assets/style.css.
   Я генерую повний блок стилів, щоб ви могли скопіювати його в окремий файл.
*/

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

html {
    scroll-behavior: smooth;
}

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

/* Header & Nav */
header.vmPF_headerNavigationWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 15px rgba(90, 243, 255, 0.2);
}

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

.vmPF_logoTextElement {
    font-size: 24px;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vmPF_navLinksList {
    display: flex;
    gap: 30px;
}

.vmPF_navSingleItemLink {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.vmPF_navSingleItemLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px #5AF3FF;
}

/* Burger Menu (No JS) */
.vmPF_menuCheckboxHidden {
    display: none;
}

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

.vmPF_burgerIconLabel span {
    display: block;
    width: 25px;
    height: 3px;
    background: #5AF3FF;
    transition: 0.3s;
}

/* Hero Section */
.vmPF_heroSectionMainBlock {
    padding: 140px 20px 80px;
    border: 4px solid #FF0000; /* Червоне обведення за вимогою */
    margin: 20px;
    background: radial-gradient(circle at center, rgba(90, 243, 255, 0.05) 0%, transparent 70%);
}

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

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

.vmPF_heroImageResponsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.3);
    object-fit: cover;
}

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

.vmPF_heroMainTitle {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.vmPF_heroSubTitle {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 20px;
    font-weight: 600;
}

.vmPF_heroParagraphText {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 17px;
}

.vmPF_heroButtonWrapper {
    margin-top: 30px;
}

/* Buttons */
.vmPF_primaryButtonCyan {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #5AF3FF;
    text-transform: uppercase;
}

.vmPF_primaryButtonCyan:hover {
    box-shadow: 0 0 20px #5AF3FF;
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.vmPF_secondaryOutlineBtn {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #5AF3FF;
    text-align: center;
}

.vmPF_secondaryOutlineBtn:hover {
    background: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 10px #5AF3FF;
}

/* Section Common */
.vmPF_sectionHeaderCenter {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.vmPF_sectionMainHeading {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.vmPF_headerNeonUnderline {
    width: 60px;
    height: 3px;
    background: #5AF3FF;
    margin: 10px auto 20px;
    box-shadow: 0 0 10px #5AF3FF;
}

/* Target Audience */
.vmPF_targetAudienceSection {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vmPF_targetGridItems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vmPF_targetCardItem {
    background: #0d0f11;
    padding: 30px;
    border-left: 3px solid #5AF3FF;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.vmPF_targetCardItem:hover {
    transform: translateX(10px);
    background: #13161a;
}

.vmPF_cardSmallHeading {
    font-size: 22px;
    margin-bottom: 15px;
    color: #5AF3FF;
}

.vmPF_discountBadge {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #ff4d4d;
    font-weight: bold;
    text-transform: uppercase;
}

/* Pricing */
.vmPF_pricingOptionsSection {
    padding: 80px 20px;
    background: #080a0c;
}

.vmPF_pricingGridContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.vmPF_priceCardElement {
    background: #050607;
    border: 1px solid #1a1d21;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border 0.3s;
}

.vmPF_priceCardFeatured {
    border: 2px solid #5AF3FF;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.15);
}

.vmPF_priceTitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.vmPF_priceValue {
    font-size: 32px;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 30px;
}

.vmPF_priceFeaturesList {
    list-style: none;
    margin-bottom: 30px;
}

.vmPF_priceFeaturesList li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: #bbb;
}

.vmPF_priceFeaturesList li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

/* Benefits Section */
.vmPF_benefitsSectionSplit {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vmPF_benefitsGridRow {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.vmPF_benefitsImageCol {
    flex: 0.8;
    min-width: 300px;
}

.vmPF_benefitImgRounded {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #5AF3FF;
}

.vmPF_customCheckList {
    list-style: none;
    margin-top: 25px;
}

.vmPF_checkListItem {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
}

.vmPF_checkListItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
}

/* Testimonials / Reviews */
.vmPF_testimonialsSliderSection {
    padding: 80px 20px;
    background: #020304;
}

.vmPF_sliderViewportWrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.vmPF_sliderViewportWrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.vmPF_sliderContentHorizontal {
    display: flex;
    gap: 30px;
}

.vmPF_testimonialSlideCard {
    min-width: 100%;
    scroll-snap-align: start;
    background: #0d0f11;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.vmPF_quoteText {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 25px;
    color: #eee;
}

.vmPF_quoteAuthor {
    display: block;
    color: #5AF3FF;
    font-weight: bold;
    font-style: normal;
}

.vmPF_sliderHintText {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
}

/* FAQ Section */
.vmPF_faqAccordionSection {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.vmPF_faqItemDetails {
    background: #0d0f11;
    margin-bottom: 15px;
    border: 1px solid #1a1d21;
}

.vmPF_faqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: #5AF3FF;
    list-style: none;
}

.vmPF_faqSummary::-webkit-details-marker {
    display: none;
}

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

/* Extra Text Sections */
.vmPF_extraTextSectionFull {
    padding: 100px 20px;
}

.vmPF_extraSectionAltBg {
    background: #080a0c;
}

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

.vmPF_extraSectionTitle {
    font-size: 32px;
    margin-bottom: 30px;
    color: #5AF3FF;
}

.vmPF_extraParagraph {
    margin-bottom: 20px;
    font-size: 18px;
    color: #bbb;
}

.vmPF_extraSubTitle {
    margin: 40px 0 20px;
    font-size: 24px;
}

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

.vmPF_extraBulletsList li {
    margin-bottom: 10px;
    color: #5AF3FF;
}

/* Form Section */
.vmPF_contactFormSection {
    padding: 80px 20px;
    background: radial-gradient(circle at bottom, rgba(90, 243, 255, 0.1), transparent);
}

.vmPF_formContainerBox {
    max-width: 600px;
    margin: 0 auto;
    background: #0d0f11;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #1a1d21;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.vmPF_formMainTitle {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
}

.vmPF_formSubTitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
}

.vmPF_formFieldGroup {
    margin-bottom: 20px;
}

.vmPF_inputLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #5AF3FF;
}

.vmPF_textInputField, .vmPF_textareaField {
    width: 100%;
    padding: 15px;
    background: #050607;
    border: 1px solid #1a1d21;
    color: #fff;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.vmPF_textInputField:focus, .vmPF_textareaField:focus {
    border-color: #5AF3FF;
}

.vmPF_checkboxRow {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.vmPF_checkboxInput {
    margin-top: 5px;
}

.vmPF_checkboxLabel {
    font-size: 14px;
    color: #888;
}

.vmPF_inlineLink {
    color: #5AF3FF;
    text-decoration: underline;
}

.vmPF_submitButtonFull {
    width: 100%;
    padding: 18px;
    background: #5AF3FF;
    color: #050607;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.vmPF_submitButtonFull:hover {
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.4);
}

/* Footer */
.vmPF_footerFinalContainer {
    padding: 60px 20px;
    background: #020304;
    border-top: 1px solid #1a1d21;
}

.vmPF_footerInnerContent {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vmPF_footerCopyright {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.vmPF_footerContactInfo, .vmPF_footerLocation {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.vmPF_footerMailLink {
    color: #5AF3FF;
    text-decoration: none;
}

.vmPF_footerLegalNav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.vmPF_footerLegalLink {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.vmPF_footerLegalLink:hover {
    color: #5AF3FF;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .vmPF_heroMainTitle { font-size: 34px; }
    .vmPF_heroGridSystem { flex-direction: column-reverse; }
}

@media (max-width: 768px) {
    .vmPF_burgerIconLabel { display: flex; }
    .vmPF_navLinksList {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050607;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 2px solid #5AF3FF;
        display: none;
    }

    .vmPF_menuCheckboxHidden:checked ~ .vmPF_navLinksList {
        display: flex;
    }

    .vmPF_priceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .vmPF_heroMainTitle { font-size: 28px; }
    .vmPF_formContainerBox { padding: 30px 20px; }
}