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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.tenvirozElasticRenewOrbit_NavList {
    list-style: none;
    display: flex;
    gap: 25px;
}

.tenvirozElasticRenewOrbit_NavLink {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* BURGER MENU (No JS) */
.tenvirozElasticRenewOrbit_NavToggle {
    display: none;
}

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

.tenvirozElasticRenewOrbit_Burger span {
    width: 25px;
    height: 3px;
    background: #6AA9FF;
    display: block;
    transition: 0.3s;
}

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

    .tenvirozElasticRenewOrbit_Nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050A18;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .tenvirozElasticRenewOrbit_NavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .tenvirozElasticRenewOrbit_NavToggle:checked ~ .tenvirozElasticRenewOrbit_Nav {
        max-height: 500px;
    }
}

/* HERO SECTION */
.tenvirozElasticRenewOrbit_SectionHero {
    padding: 100px 0;
}

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

.tenvirozElasticRenewOrbit_HeroImageSide {
    flex: 1;
}

.tenvirozElasticRenewOrbit_HeroMainImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
}

.tenvirozElasticRenewOrbit_HeroGallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tenvirozElasticRenewOrbit_HeroThumb {
    flex: 1;
    border-radius: 10px;
    border: 1px solid rgba(106, 169, 255, 0.3);
}

.tenvirozElasticRenewOrbit_HeroTextSide {
    flex: 1;
}

.tenvirozElasticRenewOrbit_H1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

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

.tenvirozElasticRenewOrbit_Text {
    margin-bottom: 20px;
    color: #E0E0E0;
    font-size: 17px;
}

.tenvirozElasticRenewOrbit_HeroCTA {
    margin-top: 30px;
}

/* BUTTONS */
.tenvirozElasticRenewOrbit_BtnPrimary {
    display: inline-block;
    background: #6AA9FF;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 2px solid transparent;
}

.tenvirozElasticRenewOrbit_BtnPrimary:hover {
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.8);
    background: transparent;
    border-color: #6AA9FF;
}

.tenvirozElasticRenewOrbit_BtnSecondary {
    display: inline-block;
    background: transparent;
    color: #6AA9FF;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #6AA9FF;
    transition: 0.3s;
}

.tenvirozElasticRenewOrbit_BtnSecondary:hover {
    background: #6AA9FF;
    color: #FFFFFF;
}

/* REVIEWS */
.tenvirozElasticRenewOrbit_SectionReviews {
    padding: 80px 0;
    background: rgba(10, 20, 40, 0.5);
}

.tenvirozElasticRenewOrbit_H2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

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

.tenvirozElasticRenewOrbit_ReviewCard {
    flex: 1 1 calc(50% - 30px);
    background: #0D1426;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #6AA9FF;
}

.tenvirozElasticRenewOrbit_ReviewText {
    font-style: italic;
    margin-bottom: 15px;
}

.tenvirozElasticRenewOrbit_ReviewAuthor {
    font-weight: 700;
    color: #6AA9FF;
}

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

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

.tenvirozElasticRenewOrbit_PriceCard {
    flex: 1 1 calc(33.333% - 20px);
    background: #0D1426;
    border: 1px solid rgba(106, 169, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.tenvirozElasticRenewOrbit_PriceCard:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.tenvirozElasticRenewOrbit_PriceCardFeatured {
    border: 2px solid #6AA9FF;
    position: relative;
    overflow: hidden;
}

.tenvirozElasticRenewOrbit_PriceValue {
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0;
    color: #6AA9FF;
}

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

.tenvirozElasticRenewOrbit_PriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* FOR WHOM */
.tenvirozElasticRenewOrbit_SectionForWhom {
    padding: 80px 0;
}

.tenvirozElasticRenewOrbit_FullImg {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.tenvirozElasticRenewOrbit_CheckList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: 40px;
}

.tenvirozElasticRenewOrbit_CheckItem {
    background: #0D1426;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.tenvirozElasticRenewOrbit_CheckItem::before {
    content: '✓';
    color: #6AA9FF;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

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

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

.tenvirozElasticRenewOrbit_Quote {
    font-size: 24px;
    line-height: 1.4;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.tenvirozElasticRenewOrbit_Cite {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    color: #6AA9FF;
}

.tenvirozElasticRenewOrbit_Details {
    background: #050A18;
    border: 1px solid #6AA9FF;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    text-align: left;
}

.tenvirozElasticRenewOrbit_Summary {
    cursor: pointer;
    font-weight: 600;
    color: #6AA9FF;
}

.tenvirozElasticRenewOrbit_ExpertList {
    margin-top: 20px;
    padding-left: 20px;
}

/* BENEFITS */
.tenvirozElasticRenewOrbit_SectionBenefits {
    padding: 100px 0;
}

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

.tenvirozElasticRenewOrbit_BenefitsText, .tenvirozElasticRenewOrbit_BenefitsImage {
    flex: 1;
}

.tenvirozElasticRenewOrbit_RoundedImg {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px rgba(106, 169, 255, 0.1);
}

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

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

.tenvirozElasticRenewOrbit_IconList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* EXTRA SECTIONS */
.tenvirozElasticRenewOrbit_SectionExtra, .tenvirozElasticRenewOrbit_SectionExtraAlt {
    padding: 80px 0;
}

.tenvirozElasticRenewOrbit_SectionExtraAlt {
    background: #0D1426;
}

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

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

.tenvirozElasticRenewOrbit_FAQItem {
    margin-bottom: 15px;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.tenvirozElasticRenewOrbit_FAQSummary {
    padding: 20px;
    cursor: pointer;
    background: #0D1426;
    font-weight: 600;
    transition: 0.3s;
}

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

.tenvirozElasticRenewOrbit_FAQContent {
    padding: 20px;
    background: #050A18;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
}

/* FORM */
.tenvirozElasticRenewOrbit_SectionForm {
    padding: 100px 0;
    background: #0D1426;
}

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

.tenvirozElasticRenewOrbit_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
}

.tenvirozElasticRenewOrbit_FormGroup {
    margin-bottom: 20px;
}

.tenvirozElasticRenewOrbit_Label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.tenvirozElasticRenewOrbit_Input, .tenvirozElasticRenewOrbit_Textarea {
    width: 100%;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.4);
    padding: 15px;
    color: #FFFFFF;
    border-radius: 10px;
    outline: none;
}

.tenvirozElasticRenewOrbit_Input:focus, .tenvirozElasticRenewOrbit_Textarea:focus {
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
}

.tenvirozElasticRenewOrbit_Textarea {
    height: 120px;
    resize: vertical;
}

.tenvirozElasticRenewOrbit_BtnSubmit {
    width: 100%;
    padding: 18px;
    background: #6AA9FF;
    border: none;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tenvirozElasticRenewOrbit_BtnSubmit:hover {
    background: #5092FF;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.5);
}

/* FOOTER */
.tenvirozElasticRenewOrbit_Footer {
    padding: 60px 0 30px;
    background: #050A18;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.tenvirozElasticRenewOrbit_FooterLogo {
    font-size: 24px;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 10px;
}

.tenvirozElasticRenewOrbit_FooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.tenvirozElasticRenewOrbit_FooterLinks a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    margin-left: 15px;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .tenvirozElasticRenewOrbit_HeroFlex, .tenvirozElasticRenewOrbit_BenefitsFlex {
        flex-direction: column;
    }
    
    .tenvirozElasticRenewOrbit_PriceCard {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .tenvirozElasticRenewOrbit_PriceCard {
        flex: 1 1 100%;
    }
    .tenvirozElasticRenewOrbit_FooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .tenvirozElasticRenewOrbit_H1 {
        font-size: 32px;
    }
}