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

html {
    scroll-behavior: smooth;
}

body.velqanoGentleViewOrbit_Body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050A18;
    color: #E0E6F0;
    line-height: 1.6;
    overflow-x: hidden;
}

.velqanoGentleViewOrbit_Container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img.velqanoGentleViewOrbit_ResponsiveImg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER */
.velqanoGentleViewOrbit_Header {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.3);
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.velqanoGentleViewOrbit_FlexHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.velqanoGentleViewOrbit_Logo {
    font-size: 24px;
    font-weight: 700;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.velqanoGentleViewOrbit_NavList {
    list-style: none;
    display: flex;
}

.velqanoGentleViewOrbit_NavLink {
    color: #E0E6F0;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.velqanoGentleViewOrbit_NavLink:hover {
    color: #6AA9FF;
}

/* MOBILE MENU (NO JS) */
.velqanoGentleViewOrbit_MenuToggle {
    display: none;
}

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

.velqanoGentleViewOrbit_Burger span {
    width: 25px;
    height: 3px;
    background-color: #6AA9FF;
    transition: 0.3s;
}

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

    .velqanoGentleViewOrbit_Nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #050A18;
        display: none;
        flex-direction: column;
        border-bottom: 1px solid #6AA9FF;
    }

    .velqanoGentleViewOrbit_NavList {
        flex-direction: column;
        padding: 20px;
    }

    .velqanoGentleViewOrbit_MenuToggle:checked ~ .velqanoGentleViewOrbit_Nav {
        display: block;
    }
}

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

.velqanoGentleViewOrbit_QuickLinks {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.velqanoGentleViewOrbit_QuickBtn {
    background: transparent;
    border: 1px solid rgba(106, 169, 255, 0.4);
    color: #6AA9FF;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s;
}

.velqanoGentleViewOrbit_QuickBtn:hover {
    background: #6AA9FF;
    color: #fff;
    box-shadow: 0 0 10px #6AA9FF;
}

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

.velqanoGentleViewOrbit_HeroImageCol, .velqanoGentleViewOrbit_HeroTextCol {
    flex: 1;
    min-width: 300px;
}

.velqanoGentleViewOrbit_HeroImg {
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.15);
}

.velqanoGentleViewOrbit_H1 {
    font-size: 42px;
    color: #6AA9FF;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
}

.velqanoGentleViewOrbit_SubTitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #FFF;
}

.velqanoGentleViewOrbit_Text {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* BUTTONS */
.velqanoGentleViewOrbit_BtnPrimary {
    display: inline-block;
    background-color: #6AA9FF;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #6AA9FF;
    margin-top: 10px;
}

.velqanoGentleViewOrbit_BtnPrimary:hover {
    background: transparent;
    box-shadow: 0 0 15px #6AA9FF;
    color: #6AA9FF;
}

.velqanoGentleViewOrbit_BtnSecondary {
    display: inline-block;
    background: transparent;
    color: #6AA9FF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid #6AA9FF;
    transition: 0.3s;
}

.velqanoGentleViewOrbit_BtnSecondary:hover {
    background: #6AA9FF;
    color: #fff;
}

/* TITLES */
.velqanoGentleViewOrbit_H2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #6AA9FF;
    position: relative;
}

.velqanoGentleViewOrbit_H2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #6AA9FF;
    margin: 15px auto 0;
}

/* REVIEWS */
.velqanoGentleViewOrbit_ReviewsSection {
    padding: 80px 0;
    background-color: #080F25;
}

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

.velqanoGentleViewOrbit_ReviewCard {
    flex: 1;
    min-width: 280px;
    background: #0D1530;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s;
}

.velqanoGentleViewOrbit_ReviewCard:hover {
    transform: translateY(-5px);
}

.velqanoGentleViewOrbit_ReviewText {
    font-style: italic;
    margin-bottom: 20px;
}

.velqanoGentleViewOrbit_ReviewAuthor {
    color: #6AA9FF;
    font-weight: bold;
    display: block;
}

/* PRICE SECTION */
.velqanoGentleViewOrbit_PriceSection {
    padding: 80px 0;
}

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

.velqanoGentleViewOrbit_PriceCard {
    flex: 1;
    min-width: 220px;
    max-width: 350px;
    background: #0D1530;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #203560;
    position: relative;
    overflow: hidden;
}

.velqanoGentleViewOrbit_PriceCardFeatured {
    border: 2px solid #6AA9FF;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.1);
    transform: scale(1.05);
}

.velqanoGentleViewOrbit_PriceTag {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
    color: #FFF;
}

.velqanoGentleViewOrbit_OldPrice {
    font-size: 16px;
    text-decoration: line-through;
    color: #777;
    margin-left: 10px;
}

.velqanoGentleViewOrbit_PriceList {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    font-size: 14px;
}

.velqanoGentleViewOrbit_PriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
}

.velqanoGentleViewOrbit_PriceList li::before {
    content: '→';
    color: #6AA9FF;
    margin-right: 10px;
}

/* FOR WHOM */
.velqanoGentleViewOrbit_ForWhomSection {
    padding: 80px 0;
    background-color: #080F25;
}

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

.velqanoGentleViewOrbit_TargetItem {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-left: 4px solid #6AA9FF;
    background: #0D1530;
    font-size: 16px;
    transition: background 0.3s;
}

.velqanoGentleViewOrbit_TargetItem:hover {
    background: #152045;
}

/* BENEFITS */
.velqanoGentleViewOrbit_BenefitsSection {
    padding: 80px 0;
}

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

.velqanoGentleViewOrbit_BenefitsText, .velqanoGentleViewOrbit_BenefitsImage {
    flex: 1;
    min-width: 300px;
}

.velqanoGentleViewOrbit_CheckList {
    list-style: none;
}

.velqanoGentleViewOrbit_CheckList li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.velqanoGentleViewOrbit_CheckList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

.velqanoGentleViewOrbit_BorderedImg {
    border: 8px solid #0D1530;
    border-radius: 10px;
}

/* EXPERT SECTION */
.velqanoGentleViewOrbit_ExpertSection {
    padding: 80px 0;
    background: linear-gradient(180deg, #050A18 0%, #0D1530 100%);
}

.velqanoGentleViewOrbit_QuoteBox {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.velqanoGentleViewOrbit_Quote {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
}

.velqanoGentleViewOrbit_Cite {
    display: block;
    color: #6AA9FF;
    font-weight: 700;
    margin-bottom: 40px;
}

.velqanoGentleViewOrbit_Details {
    background: #152045;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
}

.velqanoGentleViewOrbit_Summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #6AA9FF;
}

.velqanoGentleViewOrbit_DetailsContent {
    padding: 15px;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
}

/* TEXT SECTIONS */
.velqanoGentleViewOrbit_TextSection {
    padding: 60px 0;
}

.velqanoGentleViewOrbit_AltBg {
    background-color: #080F25;
}

/* FAQ */
.velqanoGentleViewOrbit_FAQSection {
    padding: 80px 0;
}

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

/* FORM */
.velqanoGentleViewOrbit_FormSection {
    padding: 80px 0;
    background-color: #080F25;
}

.velqanoGentleViewOrbit_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0D1530;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #203560;
}

.velqanoGentleViewOrbit_FormSub {
    text-align: center;
    margin-bottom: 30px;
}

.velqanoGentleViewOrbit_InputGroup {
    margin-bottom: 20px;
}

.velqanoGentleViewOrbit_Label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.velqanoGentleViewOrbit_Input, .velqanoGentleViewOrbit_Textarea {
    width: 100%;
    background: #050A18;
    border: 1px solid #203560;
    padding: 12px;
    color: #FFF;
    border-radius: 5px;
}

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

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

.velqanoGentleViewOrbit_LabelCheckbox {
    font-size: 12px;
}

.velqanoGentleViewOrbit_LabelCheckbox a {
    color: #6AA9FF;
}

.velqanoGentleViewOrbit_BtnSubmit {
    width: 100%;
    padding: 15px;
    background: #6AA9FF;
    border: none;
    color: #FFF;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.velqanoGentleViewOrbit_BtnSubmit:hover {
    box-shadow: 0 0 20px #6AA9FF;
}

/* FOOTER */
.velqanoGentleViewOrbit_Footer {
    padding: 60px 0 30px;
    background-color: #050A18;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    text-align: center;
}

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

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

.velqanoGentleViewOrbit_FooterLinks a {
    color: #6AA9FF;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
}

.velqanoGentleViewOrbit_FooterLinks a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050A18;
}
::-webkit-scrollbar-thumb {
    background: #203560;
}
::-webkit-scrollbar-thumb:hover {
    background: #6AA9FF;
}