/* 
   CSS FILE FOR LORQIROX 
   UNIQUE CLASS PREFIX: lorqiroxCoreControlLattice_
   THEME: NIGHT INDIGO (#050A18)
*/

/* --- GLOBAL RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: #050A18;
}

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

/* --- UTILITIES --- */
.lorqiroxCoreControlLattice_Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.lorqiroxCoreControlLattice_ResponsiveImage {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.lorqiroxCoreControlLattice_SectionHeading {
    font-size: 2.5rem;
    color: #6AA9FF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lorqiroxCoreControlLattice_SectionHeading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6AA9FF;
    margin: 15px auto 0;
    box-shadow: 0 0 10px #6AA9FF;
}

.lorqiroxCoreControlLattice_SectionIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #a0aec0;
}

/* --- BUTTONS --- */
.lorqiroxCoreControlLattice_PrimaryBtn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #6AA9FF;
    color: #050A18;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #6AA9FF;
    cursor: pointer;
    text-align: center;
}

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

.lorqiroxCoreControlLattice_SecondaryBtn {
    display: inline-block;
    padding: 13px 30px;
    background-color: transparent;
    color: #6AA9FF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid #6AA9FF;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.lorqiroxCoreControlLattice_LogoText {
    font-size: 1.8rem;
    font-weight: 900;
    color: #6AA9FF;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
    letter-spacing: 1px;
}

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

.lorqiroxCoreControlLattice_NavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.lorqiroxCoreControlLattice_NavToggleInput, 
.lorqiroxCoreControlLattice_BurgerButton {
    display: none;
}

/* --- HERO --- */
.lorqiroxCoreControlLattice_HeroBlock {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(106, 169, 255, 0.05), transparent);
}

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

.lorqiroxCoreControlLattice_HeroVisuals {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lorqiroxCoreControlLattice_HeroPhotoCard {
    position: relative;
    border: 1px solid rgba(106, 169, 255, 0.3);
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.lorqiroxCoreControlLattice_HeroImage {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.lorqiroxCoreControlLattice_HeroPhotoLabel {
    margin-top: 10px;
    text-align: center;
    color: #6AA9FF;
    font-weight: 600;
}

.lorqiroxCoreControlLattice_HeroTextContent {
    flex: 1;
    min-width: 350px;
}

.lorqiroxCoreControlLattice_HeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.lorqiroxCoreControlLattice_HeroSubtitle {
    font-size: 1.5rem;
    color: #6AA9FF;
    margin-bottom: 20px;
    font-weight: 600;
}

.lorqiroxCoreControlLattice_HeroParagraph {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cbd5e0;
}

.lorqiroxCoreControlLattice_HeroCTA {
    margin-top: 40px;
}

/* --- PRICE --- */
.lorqiroxCoreControlLattice_PriceBlock {
    padding: 100px 0;
    background-color: rgba(10, 15, 35, 1);
}

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

.lorqiroxCoreControlLattice_PriceCard {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: #0d1428;
    border: 1px solid rgba(106, 169, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.lorqiroxCoreControlLattice_PriceCard:hover {
    transform: scale(1.05);
    border-color: #6AA9FF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lorqiroxCoreControlLattice_FeaturedCard {
    border: 2px solid #6AA9FF;
    background: #111d3d;
    position: relative;
    overflow: hidden;
}

.lorqiroxCoreControlLattice_FeaturedCard::before {
    content: "Популярно";
    position: absolute;
    top: 20px;
    right: -30px;
    background: #6AA9FF;
    color: #050A18;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.lorqiroxCoreControlLattice_CardTitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.lorqiroxCoreControlLattice_CardCost {
    font-size: 2.2rem;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 30px;
}

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

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

.lorqiroxCoreControlLattice_CardFeatures li:last-child {
    border-bottom: none;
}

.lorqiroxCoreControlLattice_CardFooter {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

/* --- REVIEWS --- */
.lorqiroxCoreControlLattice_ReviewsBlock {
    padding: 100px 0;
}

.lorqiroxCoreControlLattice_ReviewsSlider {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.lorqiroxCoreControlLattice_ReviewItem {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(106, 169, 255, 0.03);
    padding: 40px;
    border-left: 4px solid #6AA9FF;
    border-radius: 4px;
}

.lorqiroxCoreControlLattice_ReviewText {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #e2e8f0;
}

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

/* --- TARGET --- */
.lorqiroxCoreControlLattice_TargetBlock {
    padding: 100px 0;
    background-color: #080f24;
}

.lorqiroxCoreControlLattice_TargetMainPhoto {
    margin-bottom: 60px;
}

.lorqiroxCoreControlLattice_TargetList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    justify-content: center;
}

.lorqiroxCoreControlLattice_TargetList li {
    background: #0d1428;
    padding: 20px;
    border-radius: 8px;
    width: calc(50% - 20px);
    min-width: 280px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    display: flex;
    align-items: center;
}

.lorqiroxCoreControlLattice_TargetList li::before {
    content: '→';
    margin-right: 15px;
    color: #6AA9FF;
    font-weight: bold;
}

/* --- EXPERT --- */
.lorqiroxCoreControlLattice_ExpertBlock {
    padding: 120px 0;
    background: linear-gradient(rgba(5, 10, 24, 0.8), rgba(5, 10, 24, 0.8)), 
                url('https://placehold.co/1920x600/050A18/050A18?text=Invisible+Background');
    text-align: center;
}

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

.lorqiroxCoreControlLattice_ExpertQuote {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
}

.lorqiroxCoreControlLattice_ExpertName {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #6AA9FF;
    margin-bottom: 5px;
}

.lorqiroxCoreControlLattice_ExpertTitle {
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.lorqiroxCoreControlLattice_BenefitsText {
    flex: 1;
    min-width: 350px;
}

.lorqiroxCoreControlLattice_BenefitsImage {
    flex: 1;
    min-width: 350px;
}

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

.lorqiroxCoreControlLattice_BenefitsList li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.lorqiroxCoreControlLattice_BenefitsList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #6AA9FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #6AA9FF;
}

.lorqiroxCoreControlLattice_BenefitsList li strong {
    display: block;
    font-size: 1.2rem;
    color: #6AA9FF;
    margin-bottom: 5px;
}

/* --- FAQ --- */
.lorqiroxCoreControlLattice_FaqBlock {
    padding: 100px 0;
    background-color: #080f24;
}

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

.lorqiroxCoreControlLattice_FaqItem {
    margin-bottom: 20px;
    border: 1px solid rgba(106, 169, 255, 0.2);
    border-radius: 8px;
    background: #0d1428;
    overflow: hidden;
}

.lorqiroxCoreControlLattice_FaqQuestion {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #ffffff;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lorqiroxCoreControlLattice_FaqQuestion:hover {
    background: rgba(106, 169, 255, 0.05);
}

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

.lorqiroxCoreControlLattice_FaqQuestion::after {
    content: '+';
    font-size: 1.5rem;
    color: #6AA9FF;
}

details[open] .lorqiroxCoreControlLattice_FaqQuestion::after {
    content: '-';
}

.lorqiroxCoreControlLattice_FaqAnswer {
    padding: 0 25px 25px;
    color: #cbd5e0;
    line-height: 1.7;
}

/* --- FORM --- */
.lorqiroxCoreControlLattice_FormBlock {
    padding: 100px 0;
}

.lorqiroxCoreControlLattice_FormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #0d1428;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lorqiroxCoreControlLattice_FormGroup {
    margin-bottom: 25px;
}

.lorqiroxCoreControlLattice_FormLabel {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #6AA9FF;
}

.lorqiroxCoreControlLattice_FormInput, 
.lorqiroxCoreControlLattice_FormTextarea {
    width: 100%;
    padding: 15px;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 4px;
    color: #ffffff;
    font-size: 1rem;
}

.lorqiroxCoreControlLattice_FormInput:focus, 
.lorqiroxCoreControlLattice_FormTextarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.2);
}

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

.lorqiroxCoreControlLattice_FormCheckbox {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lorqiroxCoreControlLattice_CheckboxLabel {
    font-size: 0.9rem;
    color: #cbd5e0;
}

.lorqiroxCoreControlLattice_InlineLink {
    color: #6AA9FF;
    text-decoration: underline;
}

/* --- TEXT SECTIONS --- */
.lorqiroxCoreControlLattice_TextSection {
    padding: 80px 0;
}

.lorqiroxCoreControlLattice_BgAlt {
    background-color: rgba(255, 255, 255, 0.02);
}

.lorqiroxCoreControlLattice_TextSectionHeader {
    font-size: 2rem;
    color: #6AA9FF;
    margin-bottom: 30px;
}

.lorqiroxCoreControlLattice_TextSectionBody p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cbd5e0;
    text-align: justify;
}

.lorqiroxCoreControlLattice_SimpleList {
    margin: 20px 0 30px 20px;
    list-style: square;
    color: #6AA9FF;
}

.lorqiroxCoreControlLattice_SimpleList li {
    margin-bottom: 10px;
}

/* --- FOOTER --- */
.lorqiroxCoreControlLattice_FooterSection {
    background: #030712;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
}

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

.lorqiroxCoreControlLattice_FooterInfo {
    flex: 1;
    min-width: 280px;
}

.lorqiroxCoreControlLattice_FooterInfo p {
    margin-top: 20px;
    color: #718096;
}

.lorqiroxCoreControlLattice_FooterContacts {
    flex: 1;
    min-width: 280px;
}

.lorqiroxCoreControlLattice_FooterContacts p {
    margin-bottom: 10px;
    color: #cbd5e0;
}

.lorqiroxCoreControlLattice_FooterContacts a {
    color: #6AA9FF;
    text-decoration: none;
}

.lorqiroxCoreControlLattice_FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.lorqiroxCoreControlLattice_Copyright {
    color: #718096;
    margin-bottom: 20px;
}

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

.lorqiroxCoreControlLattice_LegalLink {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .lorqiroxCoreControlLattice_HeroTitle {
        font-size: 2.8rem;
    }
    .lorqiroxCoreControlLattice_SectionHeading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .lorqiroxCoreControlLattice_BurgerButton {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1010;
    }

    .lorqiroxCoreControlLattice_BurgerButton span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #6AA9FF;
        transition: 0.3s;
    }

    .lorqiroxCoreControlLattice_NavMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #050A18;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
    }

    .lorqiroxCoreControlLattice_NavList {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .lorqiroxCoreControlLattice_NavLink {
        font-size: 1.5rem;
    }

    .lorqiroxCoreControlLattice_NavToggleInput:checked ~ .lorqiroxCoreControlLattice_NavMenu {
        right: 0;
    }

    .lorqiroxCoreControlLattice_NavToggleInput:checked ~ .lorqiroxCoreControlLattice_BurgerButton span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .lorqiroxCoreControlLattice_NavToggleInput:checked ~ .lorqiroxCoreControlLattice_BurgerButton span:nth-child(2) {
        opacity: 0;
    }

    .lorqiroxCoreControlLattice_NavToggleInput:checked ~ .lorqiroxCoreControlLattice_BurgerButton span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .lorqiroxCoreControlLattice_HeroLayout, 
    .lorqiroxCoreControlLattice_BenefitsLayout {
        flex-direction: column;
    }

    .lorqiroxCoreControlLattice_HeroVisuals {
        order: 2;
    }

    .lorqiroxCoreControlLattice_HeroTextContent {
        order: 1;
        text-align: center;
    }

    .lorqiroxCoreControlLattice_FormWrapper {
        padding: 30px;
    }
}