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

body.softQandiBodyMain {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #060708; /* Carbon Deep Black */
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

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

ul {
    list-style: none;
}

/* UTILS */
.softQandiAmberDividerLine {
    width: 60px;
    height: 3px;
    background-color: #FFC55E;
    margin: 15px auto;
    box-shadow: 0 0 10px rgba(255, 197, 94, 0.4);
}

/* HEADER */
.softQandiHeaderTop {
    background-color: #060708;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.softQandiNavLinkItem {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.softQandiNavLinkItem:hover {
    color: #FFC55E;
    text-shadow: 0 0 8px rgba(255, 197, 94, 0.6);
}

.softQandiNavCheckbox, .softQandiBurgerLabel {
    display: none;
}

/* HERO SECTION */
.softQandiHeroBlockWrap {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.softQandiQuickLinksTop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.softQandiQuickBtnItem {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.softQandiQuickBtnItem:hover {
    background: #FFC55E;
    color: #060708;
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.4);
}

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

.softQandiHeroImageSide {
    flex: 1;
}

.softQandiHeroImgElement {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #1a1a1a;
}

.softQandiHeroTextSide {
    flex: 1.2;
}

.softQandiHeroMainTitle {
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.softQandiHeroMainTitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    width: 6px;
    height: 40px;
    background: #FFC55E;
    box-shadow: 0 0 10px #FFC55E;
}

.softQandiHeroSubtitleText {
    font-size: 20px;
    color: #FFC55E;
    margin-bottom: 25px;
    font-weight: 300;
}

.softQandiHeroDescriptionPara {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 17px;
}

.softQandiCtaMainButton {
    display: inline-block;
    padding: 16px 40px;
    background-color: #FFC55E;
    color: #060708;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 197, 94, 0.3);
}

.softQandiCtaMainButton:hover {
    background-color: #ffd285;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 197, 94, 0.5);
}

/* AUDIENCE SECTION */
.softQandiAudienceBlockWrap {
    padding: 100px 20px;
    background-color: #0a0b0d;
}

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

.softQandiSectionTitleMain {
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
}

.softQandiSectionLeadText {
    color: #888;
    font-size: 18px;
}

.softQandiAudienceGridContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.softQandiAudienceImageInfo {
    flex: 1;
    position: relative;
}

.softQandiAudienceMainImg {
    border-radius: 12px;
    border: 1px solid #333;
}

.softQandiAudiencePriceBadge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #FFC55E;
    color: #060708;
    padding: 15px 30px;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.softQandiAudienceListSide {
    flex: 1;
}

.softQandiTargetCheckList {
    margin-bottom: 30px;
}

.softQandiCheckListItem {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 17px;
}

.softQandiCheckListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
    font-weight: bold;
    font-size: 20px;
}

.softQandiServiceDetailedInfo {
    padding: 25px;
    background: #111;
    border-left: 4px solid #FFC55E;
}

.softQandiServiceMiniTitle {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.softQandiServiceDescText {
    color: #999;
}

/* PRICING SECTION */
.softQandiPricingBlockWrap {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.softQandiPricingCardItem {
    background: #0d0e10;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    flex: 1;
    text-align: center;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.softQandiPricingCardItem:hover {
    border-color: #FFC55E;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.softQandiPriceCardFeatured {
    position: relative;
    border-color: #FFC55E;
    background: #111215;
    transform: scale(1.05);
}

.softQandiPriceBadgeHot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFC55E;
    color: #060708;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 20px;
}

.softQandiPriceCardTitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.softQandiPriceValue {
    font-size: 42px;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 25px;
}

.softQandiPriceFeatureList {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.softQandiPriceFeatureList li {
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 15px;
    color: #bbb;
}

.softQandiPriceOrderBtn {
    display: block;
    width: 100%;
    padding: 14px;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.softQandiPriceOrderBtn:hover {
    background: #FFC55E;
    color: #060708;
}

.softQandiPriceQuickLinks {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* BENEFITS SECTION */
.softQandiBenefitsBlockWrap {
    padding: 100px 20px;
    background-color: #0a0b0d;
}

.softQandiBenefitsRowMirror {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.softQandiBenefitsTextSide {
    flex: 1;
}

.softQandiBenefitsImageSide {
    flex: 1;
}

.softQandiBenefitsMainImg {
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(255, 197, 94, 0.1);
}

.softQandiBenefitsIntroPara {
    margin: 20px 0 30px;
    font-size: 19px;
    color: #FFC55E;
}

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

.softQandiBenefitsListStyled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #FFC55E;
    border-radius: 2px;
    transform: rotate(45deg);
}

.softQandiBenefitsListStyled strong {
    color: #fff;
    display: block;
}

/* EXPERT BLOCK */
.softQandiExpertBlockWrap {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.softQandiExpertContentBox {
    background: #111;
    border: 1px solid #222;
    padding: 50px;
    border-radius: 4px;
    position: relative;
}

.softQandiQuoteIconLarge {
    font-size: 80px;
    color: #FFC55E;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}

.softQandiExpertQuoteText {
    font-size: 24px;
    font-style: italic;
    color: #eee;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.softQandiExpertNameAuthor {
    display: block;
    text-align: right;
    font-weight: 700;
    color: #FFC55E;
    font-size: 18px;
    margin-bottom: 40px;
}

.softQandiExpertDetailsAccordion {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.softQandiDetailItemBox {
    margin-bottom: 15px;
}

.softQandiDetailSummaryBtn {
    padding: 15px;
    background: #1a1a1a;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
}

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

.softQandiDetailContentPara {
    padding: 20px;
    background: #0d0e10;
    color: #999;
}

/* FAQ SECTION */
.softQandiFAQBlockWrap {
    padding: 100px 20px;
}

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

.softQandiFAQItem {
    margin-bottom: 10px;
    border: 1px solid #222;
}

.softQandiFAQQuestion {
    padding: 20px;
    background: #0d0e10;
    cursor: pointer;
    font-weight: 600;
    color: #FFC55E;
    list-style: none;
}

.softQandiFAQQuestion:hover {
    background: #141518;
}

.softQandiFAQAnswer {
    padding: 20px;
    background: #060708;
    color: #bbb;
    border-top: 1px solid #222;
}

/* EXTRA TEXT SECTIONS */
.softQandiExtraTextBlockWrap {
    padding: 100px 20px;
}

.softQandiBgAltColor {
    background-color: #0a0b0d;
}

.softQandiContainerTextLarge {
    max-width: 1000px;
    margin: 0 auto;
}

.softQandiExtraTitle {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
}

.softQandiExtraPara {
    margin-bottom: 20px;
    font-size: 18px;
    color: #a0a0a0;
}

.softQandiExtraSubTitle {
    color: #FFC55E;
    margin: 40px 0 20px;
    font-size: 22px;
}

.softQandiExtraList {
    margin-bottom: 30px;
}

.softQandiExtraList li {
    margin-bottom: 12px;
    padding-left: 20px;
    border-left: 2px solid #FFC55E;
}

.softQandiImgFloatWrap {
    overflow: hidden;
    margin: 30px 0;
}

.softQandiFloatImg {
    float: right;
    width: 40%;
    margin-left: 30px;
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 8px;
}

/* FORM SECTION */
.softQandiFormBlockWrap {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #111 0%, #060708 100%);
}

.softQandiFormInnerContainer {
    max-width: 650px;
    margin: 0 auto;
    background: #0d0e10;
    padding: 60px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 50px rgba(255, 197, 94, 0.05);
}

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

.softQandiFormSubTitle {
    color: #777;
    margin-top: 10px;
}

.softQandiFormGroup {
    margin-bottom: 25px;
}

.softQandiFormLabel {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #FFC55E;
    text-transform: uppercase;
}

.softQandiFormInput, .softQandiFormTextarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.softQandiFormInput:focus, .softQandiFormTextarea:focus {
    outline: none;
    border-color: #FFC55E;
}

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

.softQandiFormCheckboxGroup {
    margin-bottom: 30px;
    font-size: 14px;
    color: #888;
}

.softQandiFormCheckboxGroup a {
    color: #FFC55E;
    text-decoration: underline;
}

.softQandiFormSubmitBtn {
    width: 100%;
    padding: 18px;
    background: #FFC55E;
    color: #060708;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.softQandiFormSubmitBtn:hover {
    background: #ffd285;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.4);
}

/* FOOTER */
.softQandiFooterMain {
    padding: 80px 20px 40px;
    background: #030405;
    border-top: 1px solid #111;
}

.softQandiContainerFooter {
    max-width: 1200px;
    margin: 0 auto;
}

.softQandiFooterTopRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.softQandiFooterBrand {
    font-size: 32px;
    font-weight: 800;
    color: #FFC55E;
}

.softQandiFooterContactInfo p {
    margin-bottom: 5px;
    color: #888;
}

.softQandiFooterContactInfo a:hover {
    color: #FFC55E;
}

.softQandiFooterDivider {
    height: 1px;
    background: #222;
    margin-bottom: 30px;
}

.softQandiFooterBottomRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.softQandiFooterLinks {
    display: flex;
    gap: 20px;
}

.softQandiFooterLinks a:hover {
    color: #888;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .softQandiHeroContentInner, 
    .softQandiAudienceGridContent, 
    .softQandiBenefitsRowMirror {
        flex-direction: column;
    }

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

    .softQandiPricingCardItem {
        width: 100%;
        max-width: 500px;
    }

    .softQandiPriceCardFeatured {
        transform: scale(1);
    }

    .softQandiFloatImg {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .softQandiNavMainList {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #060708;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
        z-index: 999;
    }

    .softQandiNavCheckbox:checked ~ .softQandiNavMainList {
        left: 0;
    }

    .softQandiBurgerLabel {
        display: block;
        cursor: pointer;
    }

    .softQandiBurgerLabel span {
        display: block;
        width: 25px;
        height: 3px;
        background: #FFC55E;
        margin-bottom: 5px;
    }

    .softQandiHeroMainTitle {
        font-size: 32px;
    }

    .softQandiFooterTopRow, .softQandiFooterBottomRow {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .softQandiFooterLinks {
        flex-wrap: wrap;
        justify-content: center;
    }
}