/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.torenavelGentleViewOrbit_Body {
    background-color: #050A18;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

.torenavelGentleViewOrbit_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #6AA9FF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.torenavelGentleViewOrbit_NavList {
    display: flex;
    gap: 25px;
}

.torenavelGentleViewOrbit_NavLink {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
}

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

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

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

.torenavelGentleViewOrbit_Burger span {
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
}

/* Hero Section */
.torenavelGentleViewOrbit_HeroSection {
    padding: 60px 0 100px;
}

.torenavelGentleViewOrbit_QuickLinks {
    margin-bottom: 50px;
}

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

.torenavelGentleViewOrbit_QuickBtn {
    padding: 8px 20px;
    border: 1px solid #6AA9FF;
    color: #6AA9FF;
    border-radius: 50px;
    font-size: 14px;
}

.torenavelGentleViewOrbit_QuickBtn:hover {
    background: #6AA9FF;
    color: #fff;
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.5);
}

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

.torenavelGentleViewOrbit_HeroImageCol, .torenavelGentleViewOrbit_HeroTextCol {
    flex: 1;
}

.torenavelGentleViewOrbit_MainImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.torenavelGentleViewOrbit_MainTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #6AA9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torenavelGentleViewOrbit_SubTitle {
    font-size: 20px;
    color: #6AA9FF;
    margin-bottom: 25px;
    font-weight: 600;
}

.torenavelGentleViewOrbit_HeroDesc {
    margin-bottom: 20px;
    font-size: 17px;
    color: #d1d1d1;
}

.torenavelGentleViewOrbit_BtnPrimary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6AA9FF;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.torenavelGentleViewOrbit_BtnPrimary:hover {
    background: transparent;
    border-color: #6AA9FF;
    box-shadow: 0 0 20px #6AA9FF;
}

/* Reviews Section */
.torenavelGentleViewOrbit_ReviewsSection {
    padding: 100px 0;
    background-color: #081024;
}

.torenavelGentleViewOrbit_SecHeading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #6AA9FF;
}

.torenavelGentleViewOrbit_SliderWrapper {
    width: 100%;
    overflow: hidden;
}

.torenavelGentleViewOrbit_SliderContainer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 30px;
}

.torenavelGentleViewOrbit_SliderContainer::-webkit-scrollbar {
    height: 6px;
}

.torenavelGentleViewOrbit_SliderContainer::-webkit-scrollbar-thumb {
    background: #6AA9FF;
    border-radius: 10px;
}

.torenavelGentleViewOrbit_ReviewCard {
    min-width: 350px;
    background: #0d1631;
    padding: 40px;
    border-radius: 15px;
    scroll-snap-align: center;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

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

.torenavelGentleViewOrbit_ReviewAuthor {
    display: block;
    font-weight: 700;
    color: #6AA9FF;
}

/* For Whom Section */
.torenavelGentleViewOrbit_ForWhomSection {
    padding: 100px 0;
}

.torenavelGentleViewOrbit_WideImg {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 40px;
}

.torenavelGentleViewOrbit_IntroPara {
    font-size: 22px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.torenavelGentleViewOrbit_FeatureList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.torenavelGentleViewOrbit_FeatureItem {
    background: #0d1631;
    padding: 20px 30px;
    border-left: 4px solid #6AA9FF;
    border-radius: 5px;
}

/* Expert Section */
.torenavelGentleViewOrbit_ExpertSection {
    padding: 100px 0;
    background-color: #081024;
}

.torenavelGentleViewOrbit_ExpertBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.torenavelGentleViewOrbit_Quote {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
}

.torenavelGentleViewOrbit_ExpertName {
    font-size: 22px;
    font-weight: 700;
    color: #6AA9FF;
}

.torenavelGentleViewOrbit_ExpertTitle {
    color: #888;
}

/* Benefits Section */
.torenavelGentleViewOrbit_BenefitsSection {
    padding: 100px 0;
}

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

.torenavelGentleViewOrbit_BenefitsText, .torenavelGentleViewOrbit_BenefitsImg {
    flex: 1;
}

.torenavelGentleViewOrbit_BenefitsList li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.torenavelGentleViewOrbit_BenefitsList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

/* Price Section */
.torenavelGentleViewOrbit_PriceSection {
    padding: 100px 0;
    background-color: #081024;
}

.torenavelGentleViewOrbit_PriceGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.torenavelGentleViewOrbit_PriceCard {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background: #0d1631;
    border: 2px solid #223355;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.torenavelGentleViewOrbit_CardFeatured {
    border-color: #6AA9FF;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.1);
    background: #0f1c3d;
}

.torenavelGentleViewOrbit_CardTitle {
    font-size: 22px;
    margin-bottom: 20px;
}

.torenavelGentleViewOrbit_PriceValue {
    font-size: 32px;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 30px;
}

.torenavelGentleViewOrbit_CardFeatures {
    margin-bottom: 30px;
    text-align: left;
}

.torenavelGentleViewOrbit_CardFeatures li {
    margin-bottom: 12px;
    font-size: 14px;
}

.torenavelGentleViewOrbit_BtnSecondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #6AA9FF;
    color: #6AA9FF;
    border-radius: 8px;
    font-weight: 600;
}

/* FAQ */
.torenavelGentleViewOrbit_FaqSection {
    padding: 100px 0;
}

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

.torenavelGentleViewOrbit_FaqItem {
    margin-bottom: 15px;
    background: #0d1631;
    border-radius: 10px;
    overflow: hidden;
}

.torenavelGentleViewOrbit_FaqTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #6AA9FF;
}

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

/* Form Section */
.torenavelGentleViewOrbit_FormSection {
    padding: 100px 0;
    background-color: #081024;
}

.torenavelGentleViewOrbit_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0d1631;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(106, 169, 255, 0.2);
}

.torenavelGentleViewOrbit_FormSub {
    text-align: center;
    margin-bottom: 40px;
}

.torenavelGentleViewOrbit_Input, .torenavelGentleViewOrbit_Textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #050A18;
    border: 1px solid #223355;
    color: #fff;
    border-radius: 5px;
}

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

.torenavelGentleViewOrbit_CheckboxLabel {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 30px;
}

.torenavelGentleViewOrbit_FullWidth {
    width: 100%;
}

/* Text Sections */
.torenavelGentleViewOrbit_TextSection {
    padding: 80px 0;
}

.torenavelGentleViewOrbit_BgAlt {
    background-color: #081024;
}

.torenavelGentleViewOrbit_TextSection h3 {
    margin: 30px 0 15px;
    color: #6AA9FF;
}

.torenavelGentleViewOrbit_TextSection p {
    margin-bottom: 15px;
}

/* Footer */
.torenavelGentleViewOrbit_Footer {
    padding: 80px 0 30px;
    border-top: 1px solid #223355;
}

.torenavelGentleViewOrbit_FooterContent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.torenavelGentleViewOrbit_FooterLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.torenavelGentleViewOrbit_FooterLinks a:hover {
    color: #6AA9FF;
}

.torenavelGentleViewOrbit_Copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .torenavelGentleViewOrbit_HeroGrid, .torenavelGentleViewOrbit_BenefitsGrid {
        flex-direction: column;
        text-align: center;
    }
    .torenavelGentleViewOrbit_BenefitsList {
        text-align: left;
    }
}

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

    .torenavelGentleViewOrbit_Nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050A18;
        transition: 0.4s;
        padding: 40px 20px;
    }

    .torenavelGentleViewOrbit_NavList {
        flex-direction: column;
        align-items: center;
    }

    .torenavelGentleViewOrbit_NavToggle:checked ~ .torenavelGentleViewOrbit_Nav {
        left: 0;
    }

    .torenavelGentleViewOrbit_FeatureList {
        grid-template-columns: 1fr;
    }

    .torenavelGentleViewOrbit_MainTitle {
        font-size: 32px;
    }

    .torenavelGentleViewOrbit_FormWrapper {
        padding: 30px 20px;
    }
}