/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.vekotorTempoPulseField_Body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0D10; /* Темний графіт */
    color: #E6FBFF; /* Світло-айс */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
.vekotorTempoPulseField_H1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #E6FBFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vekotorTempoPulseField_H2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #E6FBFF;
    position: relative;
    padding-bottom: 15px;
}

.vekotorTempoPulseField_H2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E6FBFF;
}

.vekotorTempoPulseField_H3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #E6FBFF;
}

.vekotorTempoPulseField_SubTitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #B0C4DE;
}

.vekotorTempoPulseField_Text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #B0C4DE;
    max-width: 800px;
}

.vekotorTempoPulseField_TextCenter {
    text-align: center;
    margin: 0 auto 3rem;
}

/* HEADER */
.vekotorTempoPulseField_HeaderMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

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

.vekotorTempoPulseField_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #E6FBFF;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.vekotorTempoPulseField_NavLink {
    text-decoration: none;
    color: #E6FBFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.vekotorTempoPulseField_NavLink:hover {
    color: #80E0FF;
}

/* BURGER MENU */
.vekotorTempoPulseField_MenuCheckbox {
    display: none;
}

.vekotorTempoPulseField_BurgerBtn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.vekotorTempoPulseField_BurgerBtn span {
    width: 30px;
    height: 2px;
    background-color: #E6FBFF;
    transition: 0.3s;
}

/* HERO SECTION */
.vekotorTempoPulseField_HeroSection {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.vekotorTempoPulseField_HeroImageCol {
    flex: 1;
}

.vekotorTempoPulseField_HeroImg {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(230, 251, 255, 0.1);
}

.vekotorTempoPulseField_HeroTextCol {
    flex: 1.2;
}

.vekotorTempoPulseField_HeroFormWrapper {
    margin-top: 3rem;
    padding: 30px;
    background: rgba(230, 251, 255, 0.03);
    border: 1px solid rgba(230, 251, 255, 0.1);
    border-radius: 8px;
}

.vekotorTempoPulseField_FormMiniTitle {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.vekotorTempoPulseField_HeroMiniForm {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vekotorTempoPulseField_InputMini {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(230, 251, 255, 0.3);
    color: #E6FBFF;
    border-radius: 4px;
}

/* BUTTONS */
.vekotorTempoPulseField_BtnPrimary {
    background-color: #E6FBFF;
    color: #0A0D10;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.vekotorTempoPulseField_BtnPrimary:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.6);
    background-color: #ffffff;
}

.vekotorTempoPulseField_BtnSecondary {
    background-color: transparent;
    color: #E6FBFF;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #E6FBFF;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

.vekotorTempoPulseField_BtnSecondary:hover {
    background-color: rgba(230, 251, 255, 0.1);
}

/* REVIEWS */
.vekotorTempoPulseField_ReviewsSection {
    padding: 100px 0;
    background-color: #0F1216;
}

.vekotorTempoPulseField_ReviewsGrid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.vekotorTempoPulseField_ReviewCardMain {
    flex: 1.5;
    padding: 50px;
    background: rgba(230, 251, 255, 0.05);
    border-left: 4px solid #E6FBFF;
}

.vekotorTempoPulseField_Quote {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.vekotorTempoPulseField_Author {
    font-weight: 700;
    color: #E6FBFF;
    display: block;
}

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

.vekotorTempoPulseField_ReviewCardSmall {
    padding: 25px;
    background: rgba(230, 251, 255, 0.02);
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.vekotorTempoPulseField_TextSmall {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #B0C4DE;
}

.vekotorTempoPulseField_AuthorSmall {
    font-weight: 600;
    font-size: 0.9rem;
}

/* PRICES */
.vekotorTempoPulseField_PriceSection {
    padding: 100px 0;
}

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

.vekotorTempoPulseField_PriceCard {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 251, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vekotorTempoPulseField_PriceCard:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 251, 255, 0.3);
}

.vekotorTempoPulseField_PriceCardFeatured {
    border: 2px solid #E6FBFF;
    transform: scale(1.05);
    background: rgba(230, 251, 255, 0.05);
}

.vekotorTempoPulseField_PriceTitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.vekotorTempoPulseField_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #E6FBFF;
}

.vekotorTempoPulseField_PriceList {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vekotorTempoPulseField_PriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(230, 251, 255, 0.05);
    font-size: 0.95rem;
    color: #B0C4DE;
}

/* BENEFITS & TARGET */
.vekotorTempoPulseField_BenefitsSection, 
.vekotorTempoPulseField_TargetSection {
    padding: 100px 0;
}

.vekotorTempoPulseField_FlexRowReverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.vekotorTempoPulseField_BenefitsImageCol, .vekotorTempoPulseField_BenefitsTextCol {
    flex: 1;
}

.vekotorTempoPulseField_ContentImg, .vekotorTempoPulseField_WideImg {
    width: 100%;
    border-radius: 4px;
}

.vekotorTempoPulseField_CustomList {
    list-style: none;
    margin-top: 2rem;
}

.vekotorTempoPulseField_CustomList li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #B0C4DE;
}

.vekotorTempoPulseField_CustomList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E6FBFF;
}

.vekotorTempoPulseField_TargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.vekotorTempoPulseField_TargetItem {
    padding: 25px;
    background: rgba(230, 251, 255, 0.03);
    border: 1px solid rgba(230, 251, 255, 0.1);
    text-align: center;
    font-weight: 500;
}

.vekotorTempoPulseField_TargetImageTop {
    margin-bottom: 50px;
}

/* FAQ */
.vekotorTempoPulseField_FaqSection {
    padding: 100px 0;
    background-color: #0F1216;
}

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

.vekotorTempoPulseField_FaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.vekotorTempoPulseField_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    font-size: 1.1rem;
}

.vekotorTempoPulseField_FaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.vekotorTempoPulseField_FaqItem[open] .vekotorTempoPulseField_FaqSummary::after {
    content: '-';
}

.vekotorTempoPulseField_FaqContent {
    padding: 0 20px 20px;
    color: #B0C4DE;
}

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

.vekotorTempoPulseField_FormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.vekotorTempoPulseField_FormRow {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.vekotorTempoPulseField_Label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #E6FBFF;
}

.vekotorTempoPulseField_Input, .vekotorTempoPulseField_Textarea {
    padding: 15px;
    background: #0A0D10;
    border: 1px solid rgba(230, 251, 255, 0.2);
    color: #E6FBFF;
    border-radius: 4px;
}

.vekotorTempoPulseField_Textarea {
    min-height: 120px;
    resize: vertical;
}

.vekotorTempoPulseField_CheckboxRow {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.vekotorTempoPulseField_LabelSmall {
    font-size: 0.85rem;
    color: #B0C4DE;
}

.vekotorTempoPulseField_LabelSmall a {
    color: #E6FBFF;
}

.vekotorTempoPulseField_BtnFull {
    width: 100%;
}

/* EXTRA SECTIONS */
.vekotorTempoPulseField_ExtraContentSection {
    padding: 80px 0;
}

.vekotorTempoPulseField_BgAlt {
    background-color: #0F1216;
}

.vekotorTempoPulseField_TextColumn {
    column-count: 1;
    margin-top: 30px;
}

/* FOOTER */
.vekotorTempoPulseField_FooterMain {
    padding: 80px 0 40px;
    background-color: #050709;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

.vekotorTempoPulseField_FooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.vekotorTempoPulseField_FooterLogo {
    font-size: 2rem;
    font-weight: 800;
    color: #E6FBFF;
}

.vekotorTempoPulseField_FooterInfo p {
    color: #B0C4DE;
    margin-bottom: 5px;
}

.vekotorTempoPulseField_FooterInfo a {
    color: #E6FBFF;
    text-decoration: none;
}

.vekotorTempoPulseField_FooterBottom {
    padding-top: 30px;
    border-top: 1px solid rgba(230, 251, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #667788;
}

.vekotorTempoPulseField_FooterLinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vekotorTempoPulseField_FooterLinks a {
    color: #667788;
    text-decoration: none;
    transition: color 0.3s;
}

.vekotorTempoPulseField_FooterLinks a:hover {
    color: #E6FBFF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vekotorTempoPulseField_FlexRow, .vekotorTempoPulseField_FlexRowReverse {
        flex-direction: column;
    }
    .vekotorTempoPulseField_H1 { font-size: 2.8rem; }
    .vekotorTempoPulseField_PriceCardFeatured { transform: scale(1); }
}

@media (max-width: 768px) {
    .vekotorTempoPulseField_BurgerBtn {
        display: flex;
        z-index: 1001;
    }

    .vekotorTempoPulseField_MenuList {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0A0D10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        border-left: 1px solid rgba(230, 251, 255, 0.1);
    }

    .vekotorTempoPulseField_MenuCheckbox:checked ~ .vekotorTempoPulseField_MenuList {
        right: 0;
    }

    .vekotorTempoPulseField_ReviewsGrid {
        flex-direction: column;
    }

    .vekotorTempoPulseField_FormContainer {
        padding: 30px;
    }
}