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

html {
    scroll-behavior: smooth;
}

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

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

/* HEADER */
.tenoramilStablePowerOrbit_header_main {
    background-color: #0A0C10;
    border-bottom: 2px solid #4FF7FF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.tenoramilStablePowerOrbit_nav_link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.tenoramilStablePowerOrbit_nav_link:hover {
    color: #4FF7FF;
    text-shadow: 0 0 10px rgba(79, 247, 255, 0.5);
}

/* BURGER MENU */
.tenoramilStablePowerOrbit_menu_checkbox {
    display: none;
}

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

.tenoramilStablePowerOrbit_burger_btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

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

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

.tenoramilStablePowerOrbit_fast_btn {
    background: transparent;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tenoramilStablePowerOrbit_fast_btn:hover {
    background: rgba(79, 247, 255, 0.1);
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.3);
}

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

.tenoramilStablePowerOrbit_hero_img_col {
    flex: 1;
}

.tenoramilStablePowerOrbit_hero_image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0px rgba(79, 247, 255, 0.05);
}

.tenoramilStablePowerOrbit_hero_text_col {
    flex: 1;
}

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

.tenoramilStablePowerOrbit_subtitle {
    font-size: 20px;
    color: #4FF7FF;
    margin-bottom: 25px;
    font-weight: 300;
}

.tenoramilStablePowerOrbit_hero_desc {
    margin-bottom: 20px;
    font-size: 17px;
    color: #B0B0B0;
}

.tenoramilStablePowerOrbit_cta_btn {
    display: inline-block;
    background-color: #4FF7FF;
    color: #07090C;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

/* SECTION AUDIENCE */
.tenoramilStablePowerOrbit_section_audience {
    padding: 100px 0;
    background-color: #0A0C10;
}

.tenoramilStablePowerOrbit_audience_main_img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 50px;
}

.tenoramilStablePowerOrbit_h2_title {
    font-size: 36px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.tenoramilStablePowerOrbit_h2_title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #4FF7FF;
    margin: 15px auto 0;
}

.tenoramilStablePowerOrbit_intro_text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #B0B0B0;
}

.tenoramilStablePowerOrbit_audience_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.tenoramilStablePowerOrbit_audience_item {
    background: #111418;
    border-left: 4px solid #4FF7FF;
    padding: 20px;
    flex: calc(50% - 10px);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.tenoramilStablePowerOrbit_audience_item:hover {
    transform: translateX(10px);
    background: #161a1f;
}

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

.tenoramilStablePowerOrbit_pricing_grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.tenoramilStablePowerOrbit_price_card {
    flex: 1;
    background: #0A0C10;
    border: 1px solid #1A1D23;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.tenoramilStablePowerOrbit_price_card_featured {
    border: 2px solid #4FF7FF;
    position: relative;
    transform: scale(1.05);
    background: #111418;
}

.tenoramilStablePowerOrbit_price_name {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.tenoramilStablePowerOrbit_price_value {
    font-size: 32px;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 30px;
}

.tenoramilStablePowerOrbit_price_features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.tenoramilStablePowerOrbit_price_features li {
    padding: 10px 0;
    border-bottom: 1px solid #1A1D23;
    font-size: 14px;
    color: #B0B0B0;
}

.tenoramilStablePowerOrbit_price_btn {
    display: block;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* BENEFITS */
.tenoramilStablePowerOrbit_section_benefits {
    padding: 100px 0;
    background-color: #0A0C10;
}

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

.tenoramilStablePowerOrbit_benefits_text {
    flex: 1.2;
}

.tenoramilStablePowerOrbit_benefits_img {
    flex: 0.8;
}

.tenoramilStablePowerOrbit_round_img {
    width: 100%;
    border-radius: 50%;
    border: 8px solid #111418;
}

.tenoramilStablePowerOrbit_benefit_p {
    margin-bottom: 30px;
    font-size: 18px;
}

.tenoramilStablePowerOrbit_benefit_points {
    list-style: none;
}

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

.tenoramilStablePowerOrbit_benefit_points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-weight: bold;
}

/* EXPERT (SLIDER) */
.tenoramilStablePowerOrbit_section_expert {
    padding: 100px 0;
}

.tenoramilStablePowerOrbit_slider_container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
    background: #0A0C10;
    padding: 60px;
    border-radius: 20px;
}

.tenoramilStablePowerOrbit_radio_input {
    display: none;
}

.tenoramilStablePowerOrbit_slides_wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.tenoramilStablePowerOrbit_slide_item {
    min-width: 100%;
    text-align: center;
}

.tenoramilStablePowerOrbit_quote {
    font-size: 24px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.tenoramilStablePowerOrbit_cite {
    color: #4FF7FF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.tenoramilStablePowerOrbit_control_label {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #1A1D23;
    cursor: pointer;
    border: 1px solid #4FF7FF;
}

#slide1:checked ~ .tenoramilStablePowerOrbit_slides_wrapper { transform: translateX(0); }
#slide2:checked ~ .tenoramilStablePowerOrbit_slides_wrapper { transform: translateX(-100%); }
#slide3:checked ~ .tenoramilStablePowerOrbit_slides_wrapper { transform: translateX(-200%); }

#slide1:checked ~ .tenoramilStablePowerOrbit_slider_controls label:nth-child(1),
#slide2:checked ~ .tenoramilStablePowerOrbit_slider_controls label:nth-child(2),
#slide3:checked ~ .tenoramilStablePowerOrbit_slider_controls label:nth-child(3) {
    background: #4FF7FF;
}

/* EXTRA SECTIONS */
.tenoramilStablePowerOrbit_extra_section {
    padding: 100px 0;
}

.tenoramilStablePowerOrbit_bg_alt {
    background-color: #0A0C10;
}

.tenoramilStablePowerOrbit_text_block p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #B0B0B0;
}

.tenoramilStablePowerOrbit_h3_title {
    font-size: 24px;
    color: #FFFFFF;
    margin: 40px 0 20px;
}

.tenoramilStablePowerOrbit_simple_list {
    list-style: none;
}

.tenoramilStablePowerOrbit_simple_list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #1A1D23;
}

.tenoramilStablePowerOrbit_simple_list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

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

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

.tenoramilStablePowerOrbit_faq_item {
    background: #0A0C10;
    margin-bottom: 15px;
    border-radius: 8px;
}

.tenoramilStablePowerOrbit_faq_question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    position: relative;
}

.tenoramilStablePowerOrbit_faq_question::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #4FF7FF;
}

.tenoramilStablePowerOrbit_faq_item[open] .tenoramilStablePowerOrbit_faq_question::after {
    content: '-';
}

.tenoramilStablePowerOrbit_faq_answer {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

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

.tenoramilStablePowerOrbit_form_card {
    background: #111418;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tenoramilStablePowerOrbit_form_subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #B0B0B0;
}

.tenoramilStablePowerOrbit_form_group {
    margin-bottom: 25px;
}

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

.tenoramilStablePowerOrbit_input,
.tenoramilStablePowerOrbit_textarea {
    width: 100%;
    background: #07090C;
    border: 1px solid #1A1D23;
    padding: 15px;
    color: #FFFFFF;
    border-radius: 4px;
}

.tenoramilStablePowerOrbit_input:focus,
.tenoramilStablePowerOrbit_textarea:focus {
    outline: none;
    border-color: #4FF7FF;
}

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

.tenoramilStablePowerOrbit_checkbox_group a {
    color: #4FF7FF;
}

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

.tenoramilStablePowerOrbit_submit_btn:hover {
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.4);
    transform: scale(1.01);
}

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

.tenoramilStablePowerOrbit_footer_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.tenoramilStablePowerOrbit_footer_info {
    flex: 1;
    max-width: 400px;
}

.tenoramilStablePowerOrbit_footer_info p {
    margin-top: 20px;
    color: #808080;
}

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

.tenoramilStablePowerOrbit_footer_bottom {
    text-align: center;
    border-top: 1px solid #1A1D23;
    padding-top: 40px;
}

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

.tenoramilStablePowerOrbit_legal_links a {
    color: #606060;
    font-size: 12px;
    text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .tenoramilStablePowerOrbit_hero_grid,
    .tenoramilStablePowerOrbit_benefits_flex {
        flex-direction: column;
    }
    
    .tenoramilStablePowerOrbit_pricing_grid {
        flex-direction: column;
        align-items: center;
    }
    
    .tenoramilStablePowerOrbit_price_card {
        width: 100%;
        max-width: 450px;
    }
    
    .tenoramilStablePowerOrbit_price_card_featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .tenoramilStablePowerOrbit_burger_btn {
        display: flex;
    }
    
    .tenoramilStablePowerOrbit_nav_menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0A0C10;
        transition: 0.4s;
        padding-top: 50px;
    }
    
    .tenoramilStablePowerOrbit_nav_list {
        flex-direction: column;
        align-items: center;
    }
    
    .tenoramilStablePowerOrbit_menu_checkbox:checked ~ .tenoramilStablePowerOrbit_nav_menu {
        left: 0;
    }
    
    .tenoramilStablePowerOrbit_h1_title {
        font-size: 32px;
    }
    
    .tenoramilStablePowerOrbit_audience_item {
        flex: 100%;
    }
    
    .tenoramilStablePowerOrbit_footer_top {
        flex-direction: column;
        gap: 40px;
    }
}