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

body.veloravimGentleViewOrbit_BodyMain {
    background-color: #07090C;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.veloravimGentleViewOrbit_HeaderSection {
    background-color: rgba(7, 9, 12, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.veloravimGentleViewOrbit_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.veloravimGentleViewOrbit_CyanRailLine {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4FF7FF, transparent);
    width: 100%;
}

.veloravimGentleViewOrbit_NavToggleCheckbox {
    display: none;
}

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

.veloravimGentleViewOrbit_NavLink {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.veloravimGentleViewOrbit_NavLink:hover {
    color: #4FF7FF;
}

/* BURGER */
.veloravimGentleViewOrbit_BurgerBtn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.veloravimGentleViewOrbit_BurgerBtn span {
    width: 30px;
    height: 2px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

/* HERO SECTION */
.veloravimGentleViewOrbit_HeroBlockSection {
    padding: 160px 0 80px;
}

.veloravimGentleViewOrbit_HeroFlexWrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.veloravimGentleViewOrbit_HeroImageCol,
.veloravimGentleViewOrbit_HeroTextCol {
    flex: 1;
}

.veloravimGentleViewOrbit_MainHeroImg {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.1);
    border: 1px solid rgba(79, 247, 255, 0.2);
}

.veloravimGentleViewOrbit_MainH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    color: #FFFFFF;
}

.veloravimGentleViewOrbit_HeroSub {
    font-size: 1.25rem;
    color: #4FF7FF;
    margin-bottom: 25px;
    font-weight: 500;
}

.veloravimGentleViewOrbit_HeroPara {
    margin-bottom: 20px;
    color: #CCCCCC;
}

.veloravimGentleViewOrbit_CtaButtonPrimary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #4FF7FF;
    color: #07090C;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.4);
}

.veloravimGentleViewOrbit_CtaButtonPrimary:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

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

.veloravimGentleViewOrbit_HeroExtraItem {
    flex: 1;
    background: #111418;
    padding: 20px;
    border: 1px solid rgba(79, 247, 255, 0.1);
}

.veloravimGentleViewOrbit_ExtraImg {
    width: 100%;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.veloravimGentleViewOrbit_HeroExtraItem:hover .veloravimGentleViewOrbit_ExtraImg {
    filter: grayscale(0%);
}

.veloravimGentleViewOrbit_ExtraTitle {
    color: #4FF7FF;
    margin-bottom: 10px;
}

.veloravimGentleViewOrbit_ExtraDesc {
    font-size: 0.9rem;
    color: #999;
}

/* REVIEWS SLIDER */
.veloravimGentleViewOrbit_ReviewsSection {
    padding: 100px 0;
    background-color: #0A0C11;
}

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

.veloravimGentleViewOrbit_ReviewSliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

.veloravimGentleViewOrbit_SliderInput {
    display: none;
}

.veloravimGentleViewOrbit_SlidesContainer {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    width: 300%;
}

.veloravimGentleViewOrbit_ReviewCard {
    width: 33.333%;
    padding: 40px;
    background: #111418;
    border-left: 4px solid #4FF7FF;
    text-align: center;
}

.veloravimGentleViewOrbit_Quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #EEE;
}

.veloravimGentleViewOrbit_Cite {
    font-weight: 700;
    color: #4FF7FF;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.veloravimGentleViewOrbit_SliderControls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.veloravimGentleViewOrbit_ControlBtn {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

#rev_1:checked ~ .veloravimGentleViewOrbit_SliderControls label[for="rev_1"],
#rev_2:checked ~ .veloravimGentleViewOrbit_SliderControls label[for="rev_2"],
#rev_3:checked ~ .veloravimGentleViewOrbit_SliderControls label[for="rev_3"] {
    background: #4FF7FF;
}

#rev_1:checked ~ .veloravimGentleViewOrbit_SlidesContainer { transform: translateX(0); }
#rev_2:checked ~ .veloravimGentleViewOrbit_SlidesContainer { transform: translateX(-33.333%); }
#rev_3:checked ~ .veloravimGentleViewOrbit_SlidesContainer { transform: translateX(-66.666%); }

/* FOR WHOM */
.veloravimGentleViewOrbit_ForWhomSection {
    padding: 100px 0;
}

.veloravimGentleViewOrbit_SectionIntro {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    color: #999;
}

.veloravimGentleViewOrbit_ForWhomGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.veloravimGentleViewOrbit_ForWhomItem {
    flex: 1 1 calc(33.333% - 30px);
    background: #0A0C11;
    padding: 40px;
    border: 1px solid #1A1D23;
    position: relative;
    transition: border-color 0.3s;
}

.veloravimGentleViewOrbit_ForWhomItem:hover {
    border-color: #4FF7FF;
}

.veloravimGentleViewOrbit_ItemLine {
    width: 40px;
    height: 2px;
    background: #4FF7FF;
    margin-bottom: 20px;
}

.veloravimGentleViewOrbit_ItemTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.veloravimGentleViewOrbit_ItemText {
    color: #888;
    font-size: 0.95rem;
}

.veloravimGentleViewOrbit_DiscountBadge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4FF7FF;
    color: #07090C;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 2px;
}

/* BENEFITS */
.veloravimGentleViewOrbit_BenefitsSection {
    padding: 100px 0;
    background: #111418;
}

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

.veloravimGentleViewOrbit_BenefitsText,
.veloravimGentleViewOrbit_BenefitsImage {
    flex: 1;
}

.veloravimGentleViewOrbit_SideImg {
    width: 100%;
    border: 1px solid #4FF7FF;
}

.veloravimGentleViewOrbit_BenefitsList {
    list-style: none;
    margin-top: 40px;
}

.veloravimGentleViewOrbit_BenefitsList li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.veloravimGentleViewOrbit_ListMarker {
    color: #4FF7FF;
    margin-right: 15px;
    font-weight: 900;
}

/* PRICING */
.veloravimGentleViewOrbit_PricingSection {
    padding: 100px 0;
}

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

.veloravimGentleViewOrbit_PriceCard {
    flex: 1;
    background: #0A0C11;
    padding: 40px 30px;
    border: 1px solid #1A1D23;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.veloravimGentleViewOrbit_PriceCard:hover {
    transform: translateY(-10px);
}

.veloravimGentleViewOrbit_FeaturedCard {
    border: 1px solid #4FF7FF;
    background: #0D1219;
}

.veloravimGentleViewOrbit_BestSeller {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4FF7FF;
    color: #07090C;
    padding: 5px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.veloravimGentleViewOrbit_PriceTitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.veloravimGentleViewOrbit_PriceAmount {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #4FF7FF;
    margin-bottom: 30px;
}

.veloravimGentleViewOrbit_PriceFeatures {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.veloravimGentleViewOrbit_PriceFeatures li {
    padding: 12px 0;
    border-bottom: 1px solid #1A1D23;
    font-size: 0.9rem;
    color: #BBB;
}

.veloravimGentleViewOrbit_PriceBtn {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.veloravimGentleViewOrbit_PriceBtn:hover {
    background: #4FF7FF;
    color: #07090C;
}

/* FAQ */
.veloravimGentleViewOrbit_FaqSection {
    padding: 100px 0;
    background: #0A0C11;
}

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

.veloravimGentleViewOrbit_FaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid #1A1D23;
}

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

.veloravimGentleViewOrbit_FaqSummary::after {
    content: '+';
    color: #4FF7FF;
    font-size: 1.5rem;
}

.veloravimGentleViewOrbit_FaqItem[open] .veloravimGentleViewOrbit_FaqSummary::after {
    content: '-';
}

.veloravimGentleViewOrbit_FaqContent {
    padding-bottom: 20px;
    color: #999;
}

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

.veloravimGentleViewOrbit_AltBg {
    background: #0A0C11;
}

.veloravimGentleViewOrbit_LongText {
    font-size: 1.1rem;
    color: #CCC;
    max-width: 900px;
    margin: 0 auto 30px;
}

.veloravimGentleViewOrbit_CustomBullets {
    max-width: 900px;
    margin: 0 auto 30px;
    list-style: none;
    padding-left: 20px;
}

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

.veloravimGentleViewOrbit_CustomBullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background: #4FF7FF;
}

.veloravimGentleViewOrbit_SubH4 {
    max-width: 900px;
    margin: 40px auto 20px;
    font-size: 1.5rem;
    color: #4FF7FF;
}

.veloravimGentleViewOrbit_ErgoGrid {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.veloravimGentleViewOrbit_ErgoBox {
    flex: 1;
    background: #111418;
    padding: 30px;
    border: 1px solid #1A1D23;
}

.veloravimGentleViewOrbit_CyanText {
    color: #4FF7FF;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* FORM */
.veloravimGentleViewOrbit_FormSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #07090C 0%, #0D1219 100%);
}

.veloravimGentleViewOrbit_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #111418;
    padding: 50px;
    border: 1px solid #1A1D23;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

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

.veloravimGentleViewOrbit_InputGroup {
    margin-bottom: 25px;
}

.veloravimGentleViewOrbit_Label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4FF7FF;
    text-transform: uppercase;
}

.veloravimGentleViewOrbit_InputField,
.veloravimGentleViewOrbit_TextareaField {
    width: 100%;
    padding: 15px;
    background: #07090C;
    border: 1px solid #333;
    color: #FFF;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
}

.veloravimGentleViewOrbit_InputField:focus,
.veloravimGentleViewOrbit_TextareaField:focus {
    border-color: #4FF7FF;
}

.veloravimGentleViewOrbit_TextareaField {
    height: 120px;
    resize: none;
}

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

.veloravimGentleViewOrbit_CheckLabel {
    font-size: 0.85rem;
    color: #999;
}

.veloravimGentleViewOrbit_CheckLabel a {
    color: #4FF7FF;
    text-decoration: none;
}

.veloravimGentleViewOrbit_SubmitBtn {
    width: 100%;
    padding: 18px;
    background: #4FF7FF;
    border: none;
    color: #07090C;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.veloravimGentleViewOrbit_SubmitBtn:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.5);
}

/* FOOTER */
.veloravimGentleViewOrbit_FooterSection {
    background: #07090C;
    padding: 80px 0 40px;
    border-top: 1px solid #1A1D23;
}

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

.veloravimGentleViewOrbit_FooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 20px;
}

.veloravimGentleViewOrbit_FooterInfo p {
    max-width: 400px;
    color: #777;
}

.veloravimGentleViewOrbit_FooterContacts p {
    margin-bottom: 10px;
}

.veloravimGentleViewOrbit_FooterContacts a {
    color: #FFFFFF;
    text-decoration: none;
}

.veloravimGentleViewOrbit_FooterDivider {
    height: 1px;
    background: #1A1D23;
    margin-bottom: 30px;
}

.veloravimGentleViewOrbit_FooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

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

.veloravimGentleViewOrbit_FooterLinks a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.veloravimGentleViewOrbit_FooterLinks a:hover {
    color: #4FF7FF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .veloravimGentleViewOrbit_HeroFlexWrapper {
        flex-direction: column;
    }
    .veloravimGentleViewOrbit_HeroExtraPhotos {
        flex-wrap: wrap;
    }
    .veloravimGentleViewOrbit_PriceGrid {
        flex-wrap: wrap;
    }
    .veloravimGentleViewOrbit_PriceCard {
        flex: 1 1 calc(50% - 20px);
    }
    .veloravimGentleViewOrbit_BenefitsFlex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .veloravimGentleViewOrbit_NavigationMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #07090C;
        transition: 0.5s;
        padding-top: 50px;
    }
    .veloravimGentleViewOrbit_NavList {
        flex-direction: column;
        align-items: center;
    }
    .veloravimGentleViewOrbit_BurgerBtn {
        display: flex;
    }
    #veloravimGentleViewOrbit_NavToggle:checked ~ .veloravimGentleViewOrbit_NavigationMenu {
        left: 0;
    }
    #veloravimGentleViewOrbit_NavToggle:checked ~ .veloravimGentleViewOrbit_BurgerBtn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    #veloravimGentleViewOrbit_NavToggle:checked ~ .veloravimGentleViewOrbit_BurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    #veloravimGentleViewOrbit_NavToggle:checked ~ .veloravimGentleViewOrbit_BurgerBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .veloravimGentleViewOrbit_MainH1 {
        font-size: 2.5rem;
    }
    .veloravimGentleViewOrbit_ForWhomItem {
        flex: 1 1 100%;
    }
    .veloravimGentleViewOrbit_PriceCard {
        flex: 1 1 100%;
    }
    .veloravimGentleViewOrbit_ErgoGrid {
        flex-direction: column;
    }
    .veloravimGentleViewOrbit_FooterMain {
        flex-direction: column;
        gap: 30px;
    }
    .veloravimGentleViewOrbit_FooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}