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

body.qindorapeluGentleViewOrbit_Body {
    background-color: #050607;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.qindorapeluGentleViewOrbit_H2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-left: 30px;
}

.qindorapeluGentleViewOrbit_H2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #5AF3FF;
    box-shadow: 0 0 15px #5AF3FF;
}

.qindorapeluGentleViewOrbit_SubTitle {
    font-size: 1.25rem;
    color: #5AF3FF;
    margin-bottom: 1.5rem;
}

.qindorapeluGentleViewOrbit_Description {
    margin-bottom: 1.2rem;
    color: #cccccc;
    font-size: 1.1rem;
}

/* HEADER */
.qindorapeluGentleViewOrbit_MainHeader {
    background-color: rgba(5, 6, 7, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 5px 20px rgba(90, 243, 255, 0.2);
}

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

.qindorapeluGentleViewOrbit_Logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #5AF3FF;
}

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

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

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

/* BURGER MENU (NO JS) */
.qindorapeluGentleViewOrbit_NavToggle {
    display: none;
}

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

.qindorapeluGentleViewOrbit_Burger span {
    width: 30px;
    height: 3px;
    background-color: #5AF3FF;
    transition: 0.3s;
}

/* HERO SECTION */
.qindorapeluGentleViewOrbit_HeroSection {
    padding: 40px 0 80px;
    position: relative;
}

.qindorapeluGentleViewOrbit_QuickLinksWrapper {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(90, 243, 255, 0.3);
    padding-bottom: 20px;
}

.qindorapeluGentleViewOrbit_QuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.qindorapeluGentleViewOrbit_QuickLinkBtn {
    padding: 8px 16px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.qindorapeluGentleViewOrbit_QuickLinkBtn:hover {
    background-color: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

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

.qindorapeluGentleViewOrbit_HeroImageSide {
    flex: 1;
}

.qindorapeluGentleViewOrbit_HeroTextSide {
    flex: 1;
}

.qindorapeluGentleViewOrbit_MainImg {
    width: 100%;
    height: auto;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
    object-fit: cover;
}

.qindorapeluGentleViewOrbit_CtaBtn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #5AF3FF;
}

.qindorapeluGentleViewOrbit_CtaBtn:hover {
    background-color: transparent;
    color: #5AF3FF;
    box-shadow: 0 0 25px #5AF3FF;
    filter: blur(0.5px);
}

/* REVIEWS SLIDER (NO JS) */
.qindorapeluGentleViewOrbit_ReviewsSection {
    padding: 80px 0;
    background-color: #0a0c0e;
}

.qindorapeluGentleViewOrbit_SliderContainer {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
}

.qindorapeluGentleViewOrbit_SlideInput {
    display: none;
}

.qindorapeluGentleViewOrbit_SliderTrack {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}

.qindorapeluGentleViewOrbit_ReviewCard {
    width: 33.333%;
    padding: 40px;
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.2);
    text-align: center;
}

.qindorapeluGentleViewOrbit_ReviewText {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.qindorapeluGentleViewOrbit_ReviewAuthor {
    color: #5AF3FF;
    font-weight: 600;
}

.qindorapeluGentleViewOrbit_SliderDots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.qindorapeluGentleViewOrbit_Dot {
    width: 12px;
    height: 12px;
    border: 1px solid #5AF3FF;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

#rev-1:checked ~ .qindorapeluGentleViewOrbit_SliderTrack { transform: translateX(0); }
#rev-2:checked ~ .qindorapeluGentleViewOrbit_SliderTrack { transform: translateX(-33.333%); }
#rev-3:checked ~ .qindorapeluGentleViewOrbit_SliderTrack { transform: translateX(-66.666%); }

#rev-1:checked ~ .qindorapeluGentleViewOrbit_SliderDots label[for="rev-1"],
#rev-2:checked ~ .qindorapeluGentleViewOrbit_SliderDots label[for="rev-2"],
#rev-3:checked ~ .qindorapeluGentleViewOrbit_SliderDots label[for="rev-3"] {
    background-color: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* EXPERT SECTION */
.qindorapeluGentleViewOrbit_ExpertSection {
    padding: 60px 0;
}

.qindorapeluGentleViewOrbit_ExpertBox {
    background: linear-gradient(135deg, #050607 0%, #0a0c0e 100%);
    padding: 60px;
    border-left: 5px solid #5AF3FF;
    position: relative;
}

.qindorapeluGentleViewOrbit_ExpertQuote {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qindorapeluGentleViewOrbit_ExpertName {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5AF3FF;
}

.qindorapeluGentleViewOrbit_ExpertTitle {
    display: block;
    color: #999;
}

/* AUDIENCE SECTION */
.qindorapeluGentleViewOrbit_AudienceSection {
    padding: 80px 0;
}

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

.qindorapeluGentleViewOrbit_AudienceText {
    flex: 1.5;
}

.qindorapeluGentleViewOrbit_LeadText {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.qindorapeluGentleViewOrbit_CheckList {
    list-style: none;
}

.qindorapeluGentleViewOrbit_CheckItem {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
}

.qindorapeluGentleViewOrbit_CheckItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
    text-shadow: 0 0 5px #5AF3FF;
}

.qindorapeluGentleViewOrbit_AudienceImage {
    flex: 1;
}

.qindorapeluGentleViewOrbit_SideImg {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #5AF3FF;
    padding: 10px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.1);
}

/* VALUES SECTION */
.qindorapeluGentleViewOrbit_ValuesSection {
    padding: 80px 0;
    background-color: #0a0c0e;
}

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

.qindorapeluGentleViewOrbit_ValuesImage {
    flex: 1;
}

.qindorapeluGentleViewOrbit_ValuesText {
    flex: 1;
}

.qindorapeluGentleViewOrbit_ValueList {
    list-style: none;
    margin-top: 30px;
}

.qindorapeluGentleViewOrbit_ValueItem {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
}

.qindorapeluGentleViewOrbit_ValueItem strong {
    display: block;
    color: #5AF3FF;
    margin-bottom: 5px;
}

.qindorapeluGentleViewOrbit_ContentImg {
    width: 100%;
    border: 1px solid #5AF3FF;
}

/* PRICING SECTION */
.qindorapeluGentleViewOrbit_PricingSection {
    padding: 80px 0;
}

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

.qindorapeluGentleViewOrbit_PriceCard {
    flex: 1;
    min-width: 260px;
    background-color: #0a0c0e;
    padding: 40px 30px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.qindorapeluGentleViewOrbit_PriceCard:hover {
    transform: translateY(-10px);
    border-color: #5AF3FF;
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.1);
}

.qindorapeluGentleViewOrbit_Featured {
    border: 2px solid #5AF3FF;
    background-color: #050607;
    position: relative;
}

.qindorapeluGentleViewOrbit_PriceTitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.qindorapeluGentleViewOrbit_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5AF3FF;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

.qindorapeluGentleViewOrbit_PriceFeatures {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

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

.qindorapeluGentleViewOrbit_PriceFeatures li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

.qindorapeluGentleViewOrbit_PriceBtn {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.qindorapeluGentleViewOrbit_BtnActive {
    background-color: #5AF3FF;
    color: #050607;
}

.qindorapeluGentleViewOrbit_PriceBtn:hover {
    background-color: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

/* FAQ SECTION */
.qindorapeluGentleViewOrbit_FaqSection {
    padding: 80px 0;
    background-color: #0a0c0e;
}

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

.qindorapeluGentleViewOrbit_FaqItem {
    background-color: #050607;
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.1);
}

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

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

.qindorapeluGentleViewOrbit_FaqQuestion::after {
    content: '+';
    color: #5AF3FF;
    font-size: 1.5rem;
}

.qindorapeluGentleViewOrbit_FaqItem[open] .qindorapeluGentleViewOrbit_FaqQuestion::after {
    content: '-';
}

.qindorapeluGentleViewOrbit_FaqAnswer {
    padding: 0 20px 20px;
    color: #ccc;
    border-top: 1px solid rgba(90, 243, 255, 0.05);
}

/* TEXT SECTIONS (ARTICLES) */
.qindorapeluGentleViewOrbit_TextSection {
    padding: 100px 0;
}

.qindorapeluGentleViewOrbit_BgAlt {
    background-color: #080a0c;
}

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

.qindorapeluGentleViewOrbit_ArticleContent p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #ddd;
    text-align: justify;
}

/* FORM SECTION */
.qindorapeluGentleViewOrbit_FormSection {
    padding: 100px 0;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

.qindorapeluGentleViewOrbit_FormGrid {
    display: flex;
    gap: 80px;
}

.qindorapeluGentleViewOrbit_FormInfo {
    flex: 1;
}

.qindorapeluGentleViewOrbit_ContactLinks {
    margin-top: 40px;
}

.qindorapeluGentleViewOrbit_ContactLinks p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.qindorapeluGentleViewOrbit_FormWrapper {
    flex: 1;
    background-color: #0a0c0e;
    padding: 40px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.05);
}

.qindorapeluGentleViewOrbit_InputGroup {
    margin-bottom: 20px;
}

.qindorapeluGentleViewOrbit_Label {
    display: block;
    margin-bottom: 8px;
    color: #5AF3FF;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.qindorapeluGentleViewOrbit_Input,
.qindorapeluGentleViewOrbit_Textarea {
    width: 100%;
    padding: 15px;
    background-color: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.qindorapeluGentleViewOrbit_Input:focus,
.qindorapeluGentleViewOrbit_Textarea:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

.qindorapeluGentleViewOrbit_CheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.qindorapeluGentleViewOrbit_CheckboxLabel {
    font-size: 0.85rem;
    color: #aaa;
}

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

.qindorapeluGentleViewOrbit_SubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: #5AF3FF;
    color: #050607;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

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

/* FOOTER */
.qindorapeluGentleViewOrbit_MainFooter {
    padding: 60px 0;
    background-color: #050607;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

.qindorapeluGentleViewOrbit_FooterContent {
    text-align: center;
}

.qindorapeluGentleViewOrbit_Copy {
    margin-bottom: 10px;
    font-size: 1rem;
}

.qindorapeluGentleViewOrbit_FooterEmail {
    margin-bottom: 25px;
}

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

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

.qindorapeluGentleViewOrbit_FooterLink {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .qindorapeluGentleViewOrbit_HeroGrid,
    .qindorapeluGentleViewOrbit_AudienceGrid,
    .qindorapeluGentleViewOrbit_ValuesGrid,
    .qindorapeluGentleViewOrbit_FormGrid {
        flex-direction: column;
        gap: 40px;
    }
    
    .qindorapeluGentleViewOrbit_H1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .qindorapeluGentleViewOrbit_Burger { display: flex; }
    
    .qindorapeluGentleViewOrbit_Navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #050607;
        height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .qindorapeluGentleViewOrbit_NavList {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .qindorapeluGentleViewOrbit_NavToggle:checked ~ .qindorapeluGentleViewOrbit_Navigation {
        height: auto;
        border-bottom: 1px solid #5AF3FF;
    }

    .qindorapeluGentleViewOrbit_NavToggle:checked ~ .qindorapeluGentleViewOrbit_Burger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .qindorapeluGentleViewOrbit_NavToggle:checked ~ .qindorapeluGentleViewOrbit_Burger span:nth-child(2) { opacity: 0; }
    .qindorapeluGentleViewOrbit_NavToggle:checked ~ .qindorapeluGentleViewOrbit_Burger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .qindorapeluGentleViewOrbit_QuickLinks { gap: 10px; }
    .qindorapeluGentleViewOrbit_QuickLinkBtn { font-size: 0.75rem; }
}