/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header & Navigation */
.linretixSoftAxisBloomHeaderWrapper {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid #1A2238;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.15);
}

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

.linretixSoftAxisBloomLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.5);
}

.linretixSoftAxisBloomMenuCheckbox {
    display: none;
}

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

.linretixSoftAxisBloomNavLink {
    text-decoration: none;
    color: #E0E6ED;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Burger Menu for Mobile */
.linretixSoftAxisBloomMenuBtn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

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

/* Hero Section */
.linretixSoftAxisBloomQuickLinks {
    padding: 20px 0;
    background: linear-gradient(180deg, #050A18 0%, #081229 100%);
    text-align: center;
}

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

.linretixSoftAxisBloomQuickBtn {
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid #6AA9FF;
    border-radius: 20px;
    color: #6AA9FF;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.linretixSoftAxisBloomHeroSection {
    padding: 80px 0;
}

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

.linretixSoftAxisBloomHeroImageSide {
    flex: 1;
}

.linretixSoftAxisBloomHeroTextSide {
    flex: 1;
}

.linretixSoftAxisBloomImgFluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

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

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

.linretixSoftAxisBloomDescription {
    margin-bottom: 20px;
    font-size: 17px;
    color: #B0C4DE;
}

.linretixSoftAxisBloomPrimaryButton {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6AA9FF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

/* Audience Section */
.linretixSoftAxisBloomAudienceSection {
    padding: 100px 0;
    background-color: #081229;
}

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

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

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

.linretixSoftAxisBloomAudienceItem {
    flex: 1 1 300px;
    max-width: 380px;
    padding: 30px;
    background: #0D1B3E;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid #6AA9FF;
}

.linretixSoftAxisBloomDecorativeLine {
    height: 2px;
    background: linear-gradient(90deg, #6AA9FF, transparent);
    margin-bottom: 15px;
}

/* Pricing Section */
.linretixSoftAxisBloomPricingSection {
    padding: 100px 0;
}

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

.linretixSoftAxisBloomPriceCard {
    flex: 1 1 300px;
    max-width: 350px;
}

.linretixSoftAxisBloomCardOutline {
    height: 100%;
    padding: 40px 30px;
    border: 2px solid #1A2238;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s;
    background: #050A18;
}

.linretixSoftAxisBloomCardOutline:hover {
    border-color: #6AA9FF;
    box-shadow: 0 0 25px rgba(106, 169, 255, 0.1);
}

.linretixSoftAxisBloomPriceTitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #6AA9FF;
}

.linretixSoftAxisBloomPriceValue {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.linretixSoftAxisBloomOldPrice {
    font-size: 16px;
    text-decoration: line-through;
    color: #5D7293;
    margin-right: 10px;
}

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

.linretixSoftAxisBloomPriceFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

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

.linretixSoftAxisBloomSecondaryButton {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #6AA9FF;
    color: #6AA9FF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

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

/* Benefits Section */
.linretixSoftAxisBloomBenefitsSection {
    padding: 100px 0;
    background-color: #081229;
}

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

.linretixSoftAxisBloomBenefitsText {
    flex: 1;
}

.linretixSoftAxisBloomBenefitsImage {
    flex: 1;
}

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

.linretixSoftAxisBloomBenefitsList li {
    margin-bottom: 20px;
    font-size: 17px;
}

.linretixSoftAxisBloomBenefitsList li strong {
    color: #6AA9FF;
    display: block;
    font-size: 18px;
}

/* Expert Section */
.linretixSoftAxisBloomExpertSection {
    padding: 100px 0;
    background: radial-gradient(circle at center, #111E41 0%, #050A18 100%);
}

.linretixSoftAxisBloomQuoteBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    border: 1px solid #1A2238;
    background: rgba(13, 27, 62, 0.4);
    border-radius: 30px;
}

.linretixSoftAxisBloomQuoteText {
    font-size: 26px;
    font-style: italic;
    color: #E0E6ED;
    margin-bottom: 30px;
    line-height: 1.5;
}

.linretixSoftAxisBloomExpertMeta {
    display: flex;
    flex-direction: column;
}

.linretixSoftAxisBloomExpertName {
    font-size: 22px;
    font-weight: bold;
    color: #6AA9FF;
}

.linretixSoftAxisBloomExpertTitle {
    color: #B0C4DE;
    font-size: 16px;
}

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

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

.linretixSoftAxisBloomFaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid #1A2238;
}

.linretixSoftAxisBloomFaqSummary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #6AA9FF;
    outline: none;
}

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

.linretixSoftAxisBloomFaqContent {
    padding: 0 20px 20px;
    color: #B0C4DE;
}

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

.linretixSoftAxisBloomAltBg {
    background-color: #081229;
}

.linretixSoftAxisBloomFullText {
    margin-bottom: 20px;
    font-size: 18px;
    color: #B0C4DE;
}

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

.linretixSoftAxisBloomTextList {
    list-style: square;
    padding-left: 20px;
    margin-bottom: 30px;
}

.linretixSoftAxisBloomTextList li {
    margin-bottom: 10px;
    color: #B0C4DE;
}

/* Form Section */
.linretixSoftAxisBloomFormSection {
    padding: 100px 0;
    background: #050A18;
}

.linretixSoftAxisBloomFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0D1B3E;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.linretixSoftAxisBloomFormSubtitle {
    text-align: center;
    margin-bottom: 30px;
}

.linretixSoftAxisBloomFormField {
    margin-bottom: 20px;
}

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

.linretixSoftAxisBloomInput, 
.linretixSoftAxisBloomTextarea {
    width: 100%;
    padding: 12px 15px;
    background: #050A18;
    border: 1px solid #1A2238;
    color: #FFFFFF;
    border-radius: 5px;
    outline: none;
}

.linretixSoftAxisBloomInput:focus, 
.linretixSoftAxisBloomTextarea:focus {
    border-color: #6AA9FF;
}

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

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

.linretixSoftAxisBloomCheckbox {
    margin-top: 5px;
}

.linretixSoftAxisBloomCheckboxLabel {
    font-size: 14px;
    color: #B0C4DE;
}

.linretixSoftAxisBloomCheckboxLabel a {
    color: #6AA9FF;
}

.linretixSoftAxisBloomSubmitBtn {
    width: 100%;
    padding: 15px;
    background: #6AA9FF;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Footer */
.linretixSoftAxisBloomFooter {
    padding: 60px 0 40px;
    background-color: #02050D;
    border-top: 1px solid #1A2238;
    text-align: center;
}

.linretixSoftAxisBloomFooterTop {
    margin-bottom: 40px;
}

.linretixSoftAxisBloomCopyright {
    margin-bottom: 10px;
}

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

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

.linretixSoftAxisBloomFooterLinks a {
    color: #5D7293;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .linretixSoftAxisBloomHeroFlex, 
    .linretixSoftAxisBloomFlexReverse {
        flex-direction: column;
        text-align: center;
    }
    
    .linretixSoftAxisBloomH1Title {
        font-size: 36px;
    }
    
    .linretixSoftAxisBloomHeroImageSide, 
    .linretixSoftAxisBloomHeroTextSide,
    .linretixSoftAxisBloomBenefitsText,
    .linretixSoftAxisBloomBenefitsImage {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .linretixSoftAxisBloomMenuBtn {
        display: flex;
        z-index: 1001;
    }

    .linretixSoftAxisBloomNavigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #050A18;
        padding-top: 100px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .linretixSoftAxisBloomNavList {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .linretixSoftAxisBloomMenuCheckbox:checked ~ .linretixSoftAxisBloomNavigation {
        right: 0;
    }

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

    .linretixSoftAxisBloomFormWrapper {
        padding: 30px 20px;
    }

    .linretixSoftAxisBloomQuoteText {
        font-size: 20px;
    }
}