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

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

h1.haloqarHeroMainTitleHeading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2.haloqarSectionGeneralMainHeading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 4rem;
}

h2.haloqarSectionGeneralMainHeading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4FF7FF;
    box-shadow: 0 0 10px #4FF7FF;
}

/* HEADER */
header.haloqarHeaderNavigationWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 12, 0.95);
    border-bottom: 1px solid rgba(79, 247, 255, 0.3);
    backdrop-filter: blur(10px);
}

.haloqarHeaderInnerConstraint {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.haloqarHeaderLogoBrandText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.haloqarHeaderNavLinksList {
    display: flex;
    gap: 2rem;
}

.haloqarNavLinkItemElement {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.haloqarNavLinkItemElement:hover {
    color: #4FF7FF;
    text-shadow: 0 0 8px #4FF7FF;
}

/* BURGER MENU (NO JS) */
.haloqarMenuToggleHiddenInput {
    display: none;
}

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

.haloqarBurgerMenuIconLabel span {
    width: 30px;
    height: 2px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .haloqarBurgerMenuIconLabel {
        display: flex;
    }

    .haloqarHeaderNavLinksList {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #07090C;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        border-bottom: 2px solid #4FF7FF;
    }

    .haloqarMenuToggleHiddenInput:checked ~ .haloqarHeaderNavLinksList {
        transform: translateY(0);
    }
}

/* HERO SECTION */
.haloqarHeroSectionMainWrapper {
    padding: 160px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.haloqarHeroSectionInnerContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.haloqarHeroSectionImageColumnSide {
    flex: 1;
}

.haloqarHeroMainVisualImageElement {
    width: 100%;
    height: auto;
    border: 1px solid #4FF7FF;
    box-shadow: 20px 20px 0px rgba(79, 247, 255, 0.1);
    object-fit: cover;
}

.haloqarHeroSectionContentColumnSide {
    flex: 1.2;
}

.haloqarHeroSubtitleTextDescription {
    font-size: 1.2rem;
    color: #B0B0B0;
    margin-bottom: 2.5rem;
}

.haloqarHeroFeatureTextBlockItem {
    margin-bottom: 2rem;
    border-left: 2px solid #4FF7FF;
    padding-left: 1.5rem;
}

.haloqarHeroFeatureSmallHeading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4FF7FF;
}

.haloqarHeroFeatureParagraphContent {
    font-size: 0.95rem;
    color: #D0D0D0;
}

.haloqarHeroCtaButtonWrapper {
    margin-top: 3rem;
}

/* BUTTONS */
.haloqarPrimaryActionBtnLink {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4FF7FF;
    color: #07090C;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.4);
}

.haloqarPrimaryActionBtnLink:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px #4FF7FF;
    transform: translateY(-2px);
}

.haloqarSecondaryActionBtnLink {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: transparent;
    color: #4FF7FF;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #4FF7FF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.haloqarSecondaryActionBtnLink:hover {
    background-color: rgba(79, 247, 255, 0.1);
    box-shadow: 0 0 10px #4FF7FF;
}

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

/* REVIEWS SECTION */
.haloqarReviewsSectionMainWrapper {
    padding: 100px 20px;
    background-color: #0A0D12;
}

.haloqarReviewsSectionInnerContainer {
    max-width: 1100px;
    margin: 0 auto;
}

.haloqarReviewsGridDisplayLayout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.haloqarReviewCardCentralHighlighted {
    grid-column: 1 / 4;
    background: #0D1117;
    padding: 4rem;
    border: 1px solid #4FF7FF;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.haloqarReviewQuoteTextBody {
    font-size: 1.8rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.haloqarReviewAuthorNameSignature {
    font-weight: 700;
    color: #4FF7FF;
    font-style: normal;
    display: block;
    font-size: 1.2rem;
}

.haloqarReviewCardSmallSideItem {
    background: #07090C;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.haloqarReviewSmallParagraph {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #B0B0B0;
}

.haloqarReviewSmallAuthor {
    color: #4FF7FF;
    font-weight: 600;
    font-size: 0.85rem;
}

/* PRICING SECTION */
.haloqarPricingSectionMainWrapper {
    padding: 100px 20px;
}

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

.haloqarPricingHorizontalScrollContainer {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: thin;
    scrollbar-color: #4FF7FF #07090C;
}

.haloqarPricePackageCardItem {
    flex: 0 0 350px;
    background: #0D1117;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.haloqarPricePackageCardFeatured {
    border: 1px solid #4FF7FF;
    transform: scale(1.05);
    z-index: 2;
}

.haloqarPricePackageTitleHeading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.haloqarPricePackageCostValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 2rem;
}

.haloqarPricePackageFeaturesList {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.haloqarPricePackageFeaturesList li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #D0D0D0;
}

/* TARGET SECTION */
.haloqarTargetSectionMainWrapper {
    padding: 100px 20px;
    background-color: #0A0D12;
}

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

.haloqarTargetContentFlexLayout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.haloqarTargetTextContentSide {
    flex: 1.5;
}

.haloqarTargetSectionIntroDescription {
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
}

.haloqarTargetAudienceBulletList {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.haloqarTargetAudienceBulletList li {
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

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

.haloqarTargetImageVisualSide {
    flex: 1;
}

.haloqarTargetProductCardPreview {
    background: #07090C;
    border: 1px solid #4FF7FF;
    padding: 1rem;
    text-align: center;
}

.haloqarTargetProductImageElement {
    width: 100%;
    margin-bottom: 1.5rem;
}

.haloqarTargetProductPriceTag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4FF7FF;
    margin-bottom: 0.5rem;
}

.haloqarTargetProductShortDesc {
    font-size: 0.85rem;
    color: #888;
}

/* BENEFITS SECTION */
.haloqarBenefitsSectionMainWrapper {
    padding: 100px 20px;
}

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

.haloqarBenefitsContentReverseLayout {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

.haloqarBenefitsImageVisualSide {
    flex: 1;
}

.haloqarBenefitsMainVisualImage {
    width: 100%;
    border-radius: 50%;
    border: 1px solid #4FF7FF;
}

.haloqarBenefitsTextContentSide {
    flex: 1.2;
}

.haloqarBenefitsGridItemsList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.haloqarBenefitSingleItemEntry {
    padding-top: 1rem;
    border-top: 1px solid rgba(79, 247, 255, 0.2);
}

.haloqarBenefitItemTitle {
    color: #4FF7FF;
    margin-bottom: 0.8rem;
}

.haloqarBenefitItemText {
    font-size: 0.9rem;
    color: #B0B0B0;
}

/* FAQ SECTION */
.haloqarFaqSectionMainWrapper {
    padding: 100px 20px;
    background-color: #0A0D12;
}

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

.haloqarFaqDetailsItemContainer {
    background: #0D1117;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.haloqarFaqSummaryHeadingLabel {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    position: relative;
}

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

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

.haloqarFaqDetailsItemContainer[open] .haloqarFaqSummaryHeadingLabel::after {
    content: '-';
}

.haloqarFaqAnswerContentBox {
    padding: 0 1.5rem 1.5rem;
    color: #B0B0B0;
    font-size: 0.95rem;
}

/* LONG TEXT SECTIONS */
.haloqarLongTextSectionMainWrapper {
    padding: 100px 20px;
}

.haloqarAltBgSectionColor {
    background-color: #0A0D12;
}

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

.haloqarLongTextSectionInnerConstraint p {
    margin-bottom: 1.5rem;
    color: #D0D0D0;
    font-size: 1.1rem;
}

.haloqarCustomBulletPointsList, .haloqarCustomOrderedPointsList {
    margin: 2rem 0 2rem 2rem;
}

.haloqarCustomBulletPointsList li, .haloqarCustomOrderedPointsList li {
    margin-bottom: 1rem;
    color: #4FF7FF;
}

.haloqarSubHeadingTechnicalStyle {
    color: #4FF7FF;
    margin-top: 3rem;
}

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

.haloqarContactFormSectionInnerContainer {
    max-width: 700px;
    margin: 0 auto;
}

.haloqarContactFormHeaderArea {
    text-align: center;
    margin-bottom: 4rem;
}

.haloqarContactFormSubtitleDescription {
    color: #B0B0B0;
}

.haloqarMainFormElementStructure {
    background: #07090C;
    padding: 3rem;
    border: 1px solid #4FF7FF;
}

.haloqarFormFieldGroupRow {
    margin-bottom: 1.5rem;
}

.haloqarFormInputLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #4FF7FF;
    letter-spacing: 1px;
}

.haloqarFormTextInputField, .haloqarFormTextAreaField {
    width: 100%;
    padding: 1rem;
    background: #0A0D12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1rem;
}

.haloqarFormTextInputField:focus, .haloqarFormTextAreaField:focus {
    outline: none;
    border-color: #4FF7FF;
}

.haloqarFormCheckboxConsentWrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
}

.haloqarFormCheckboxInputControl {
    margin-top: 5px;
}

.haloqarFormCheckboxLabelText {
    font-size: 0.85rem;
    color: #888;
}

.haloqarFormLinkInsideLabel {
    color: #4FF7FF;
    text-decoration: underline;
}

/* FOOTER */
.haloqarFooterMainWrapperArea {
    background: #05070A;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(79, 247, 255, 0.1);
}

.haloqarFooterInnerConstraint {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.haloqarFooterBrandNameDisplay {
    font-size: 1.5rem;
    color: #4FF7FF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.haloqarFooterCopyrightText {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 2rem;
}

.haloqarFooterContactDetailsInfo {
    margin-bottom: 3rem;
    color: #B0B0B0;
}

.haloqarFooterLinkItem {
    color: #FFFFFF;
    text-decoration: none;
}

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

.haloqarFooterLegalLinkItem {
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.haloqarFooterLegalLinkItem:hover {
    color: #4FF7FF;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .haloqarHeroSectionInnerContainer, 
    .haloqarTargetContentFlexLayout, 
    .haloqarBenefitsContentReverseLayout {
        flex-direction: column !important;
    }

    .haloqarHeroSectionImageColumnSide, .haloqarHeroSectionContentColumnSide {
        width: 100%;
    }

    .haloqarReviewsGridDisplayLayout {
        grid-template-columns: 1fr;
    }

    .haloqarReviewCardCentralHighlighted {
        grid-column: 1;
        padding: 2rem;
    }

    .haloqarBenefitsGridItemsList, .haloqarTargetAudienceBulletList {
        grid-template-columns: 1fr;
    }

    .haloqarMainFormElementStructure {
        padding: 1.5rem;
    }
}