/* Глобальні налаштування та скидання */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050607;
    color: #ffffff;
}

body.qivorel-pulsecrest-9831-BodyMainContainer {
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header.qivorel-pulsecrest-9831-HeaderNavigationWrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 15px rgba(90, 243, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.qivorel-pulsecrest-9831-LogoTextBrandElement {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.7);
}

.qivorel-pulsecrest-9831-NavigationMenuLinksList {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.qivorel-pulsecrest-9831-NavLinkItemElement {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.qivorel-pulsecrest-9831-NavLinkItemElement:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.8);
}

.qivorel-pulsecrest-9831-CtaNavButton {
    padding: 0.5rem 1.2rem;
    border: 1px solid #5AF3FF;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.qivorel-pulsecrest-9831-CtaNavButton:hover {
    background-color: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

/* Burger Menu */
.qivorel-pulsecrest-9831-MobileMenuToggleHiddenInput {
    display: none;
}

.qivorel-pulsecrest-9831-BurgerMenuIconDisplay {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.qivorel-pulsecrest-9831-BurgerMenuIconDisplay span {
    width: 30px;
    height: 3px;
    background-color: #5AF3FF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.qivorel-pulsecrest-9831-HeroBlockSectionComponent {
    padding: 120px 2rem 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.qivorel-pulsecrest-9831-HeroQuickLinksTopBar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.qivorel-pulsecrest-9831-QuickLinkSmallButton {
    text-decoration: none;
    color: #5AF3FF;
    font-size: 0.85rem;
    padding: 5px 12px;
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.qivorel-pulsecrest-9831-QuickLinkSmallButton:hover {
    background-color: rgba(90, 243, 255, 0.1);
    border-color: #5AF3FF;
    box-shadow: 0 0 5px #5AF3FF;
}

.qivorel-pulsecrest-9831-HeroLayoutTwoColumnsGrid {
    display: flex;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
}

.qivorel-pulsecrest-9831-HeroImageColumnContainer {
    flex: 1;
}

.qivorel-pulsecrest-9831-HeroMainVisualImage {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    border: 1px solid rgba(90, 243, 255, 0.3);
    object-fit: cover;
}

.qivorel-pulsecrest-9831-HeroTextColumnContainer {
    flex: 1;
}

.qivorel-pulsecrest-9831-HeroMainTitleH1Element {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.qivorel-pulsecrest-9831-HeroSubtitleParagraphText {
    font-size: 1.5rem;
    color: #5AF3FF;
    margin-bottom: 2rem;
    font-weight: 300;
}

.qivorel-pulsecrest-9831-HeroDescriptionLongParagraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.qivorel-pulsecrest-9831-MainCallToActionHeroButton {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

.qivorel-pulsecrest-9831-MainCallToActionHeroButton:hover {
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.7);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Sections Common Styling */
.qivorel-pulsecrest-9831-SectionHeadingTitleCentered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.qivorel-pulsecrest-9831-SectionHeadingTitleCentered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* Reviews */
.qivorel-pulsecrest-9831-ReviewsListSectionComponent {
    padding: 80px 2rem;
    background-color: #080a0c;
}

.qivorel-pulsecrest-9831-ReviewsCardsGridContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qivorel-pulsecrest-9831-SingleReviewCardItem {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #0d1013;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(90, 243, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.qivorel-pulsecrest-9831-SingleReviewCardItem:hover {
    transform: translateY(-10px);
    border-color: #5AF3FF;
}

.qivorel-pulsecrest-9831-ReviewTextQuoteContent {
    font-style: italic;
    color: #dddddd;
    margin-bottom: 1.5rem;
}

.qivorel-pulsecrest-9831-ReviewAuthorNameText {
    display: block;
    color: #5AF3FF;
    font-weight: bold;
    text-align: right;
}

/* Target Audience */
.qivorel-pulsecrest-9831-TargetAudienceSectionComponent {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qivorel-pulsecrest-9831-SectionIntroSubtextDescription {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #bbbbbb;
    font-size: 1.2rem;
}

.qivorel-pulsecrest-9831-AudienceListStyledContainer {
    display: flex;
    justify-content: center;
}

.qivorel-pulsecrest-9831-AudienceItemsUnorderedList {
    list-style: none;
    width: 100%;
    max-width: 800px;
}

.qivorel-pulsecrest-9831-AudienceListItemWithLine {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.qivorel-pulsecrest-9831-AudienceListItemWithLine:hover {
    background-color: rgba(90, 243, 255, 0.05);
}

.qivorel-pulsecrest-9831-AudienceListItemWithLine::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
    text-shadow: 0 0 5px #5AF3FF;
}

/* Pricing */
.qivorel-pulsecrest-9831-PricingPackagesSectionComponent {
    padding: 80px 2rem;
    background-color: #050607;
}

.qivorel-pulsecrest-9831-PricingQuickNavLinksContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.qivorel-pulsecrest-9831-PricingFastAnchorLink {
    color: #5AF3FF;
    text-decoration: underline;
    font-size: 0.9rem;
}

.qivorel-pulsecrest-9831-PricingCardsGridWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.qivorel-pulsecrest-9831-PriceCardStandardItem {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #0d1013;
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.qivorel-pulsecrest-9831-PriceCardFeaturedAccent {
    border: 2px solid #5AF3FF;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    position: relative;
}

.qivorel-pulsecrest-9831-PriceCardTitleH3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.qivorel-pulsecrest-9831-PriceAmountDisplayContainer {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.qivorel-pulsecrest-9831-PriceOldValueText {
    text-decoration: line-through;
    color: #666666;
    font-size: 1.1rem;
}

.qivorel-pulsecrest-9831-PriceCurrentValueValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5AF3FF;
}

.qivorel-pulsecrest-9831-PriceFeaturesListContainer {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    text-align: left;
}

.qivorel-pulsecrest-9831-PriceFeaturesListContainer li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #cccccc;
}

.qivorel-pulsecrest-9831-PriceSelectPlanButton {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 1px solid #5AF3FF;
    text-decoration: none;
    color: #5AF3FF;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.qivorel-pulsecrest-9831-PriceSelectPlanButton:hover {
    background-color: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

/* Expert Section */
.qivorel-pulsecrest-9831-ExpertQuoteSectionComponent {
    padding: 80px 2rem;
    background-color: #080a0c;
}

.qivorel-pulsecrest-9831-ExpertQuoteBoxContent {
    max-width: 900px;
    margin: 0 auto;
    background-color: #0d1013;
    padding: 4rem;
    border-radius: 20px;
    border-left: 5px solid #5AF3FF;
}

.qivorel-pulsecrest-9831-MainQuoteTextDisplay {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 3rem;
    font-style: italic;
}

.qivorel-pulsecrest-9831-ExpertSignatureDetails {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.qivorel-pulsecrest-9831-ExpertSmallAvatarImage {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #5AF3FF;
}

.qivorel-pulsecrest-9831-ExpertPersonName {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #5AF3FF;
}

.qivorel-pulsecrest-9831-ExpertJobPosition {
    color: #888888;
}

.qivorel-pulsecrest-9831-ExpertDetailsSpoilerElement {
    background-color: rgba(90, 243, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.qivorel-pulsecrest-9831-ExpertSpoilerSummaryTitle {
    cursor: pointer;
    font-weight: bold;
    color: #5AF3FF;
    outline: none;
}

.qivorel-pulsecrest-9831-ExpertInnerPointsList {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: #cccccc;
}

/* Benefits Section */
.qivorel-pulsecrest-9831-BenefitsGridSectionComponent {
    padding: 80px 2rem;
}

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

.qivorel-pulsecrest-9831-BenefitsTextContentColumn {
    flex: 1;
}

.qivorel-pulsecrest-9831-BenefitSectionTitleH2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.qivorel-pulsecrest-9831-BenefitsCheckmarksListItems {
    list-style: none;
    margin-top: 2rem;
}

.qivorel-pulsecrest-9831-SingleBenefitCheckItem {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #dddddd;
}

.qivorel-pulsecrest-9831-SingleBenefitCheckItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
}

.qivorel-pulsecrest-9831-BenefitsImageVisualColumn {
    flex: 1;
}

.qivorel-pulsecrest-9831-BenefitMainVisualImage {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* FAQ */
.qivorel-pulsecrest-9831-FaqAccordionSectionComponent {
    padding: 80px 2rem;
    background-color: #080a0c;
}

.qivorel-pulsecrest-9831-FaqItemsWrapperList {
    max-width: 800px;
    margin: 0 auto;
}

.qivorel-pulsecrest-9831-FaqSingleAccordionItem {
    background-color: #0d1013;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qivorel-pulsecrest-9831-FaqQuestionSummaryText {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    outline: none;
}

.qivorel-pulsecrest-9831-FaqAnswerHiddenContent {
    padding: 0 1.5rem 1.5rem;
    color: #cccccc;
}

/* Long Text Sections */
.qivorel-pulsecrest-9831-LongTextSectionComponent {
    padding: 80px 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.qivorel-pulsecrest-9831-SectionLightBackgroundEffect {
    background-color: rgba(90, 243, 255, 0.02);
    border-radius: 30px;
}

.qivorel-pulsecrest-9831-ContentTitleH2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #5AF3FF;
}

.qivorel-pulsecrest-9831-ContentTitleH3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #ffffff;
}

.qivorel-pulsecrest-9831-TextContentBodyWrapper p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.qivorel-pulsecrest-9831-GenericUnorderedList {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.qivorel-pulsecrest-9831-GenericUnorderedList li {
    margin-bottom: 0.5rem;
    color: #dddddd;
}

/* Form Section */
.qivorel-pulsecrest-9831-LeadContactFormSectionComponent {
    padding: 100px 2rem;
    background-color: #050607;
}

.qivorel-pulsecrest-9831-FormContainerInnerWrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0d1013;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.qivorel-pulsecrest-9831-FormMainTitleH2Element {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.qivorel-pulsecrest-9831-FormSubtitleDescriptionText {
    text-align: center;
    color: #888888;
    margin-bottom: 2.5rem;
}

.qivorel-pulsecrest-9831-FormFieldGroupContainer {
    margin-bottom: 1.5rem;
}

.qivorel-pulsecrest-9831-FormLabelElement {
    display: block;
    margin-bottom: 0.5rem;
    color: #5AF3FF;
    font-weight: 500;
}

.qivorel-pulsecrest-9831-FormTextInputField,
.qivorel-pulsecrest-9831-FormTextAreaField {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #1a1e23;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.qivorel-pulsecrest-9831-FormTextInputField:focus,
.qivorel-pulsecrest-9831-FormTextAreaField:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 5px rgba(90, 243, 255, 0.5);
}

.qivorel-pulsecrest-9831-FormCheckboxConsentContainer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
}

.qivorel-pulsecrest-9831-ActualHiddenCheckbox {
    margin-top: 5px;
}

.qivorel-pulsecrest-9831-CheckboxLabelWithLink {
    font-size: 0.9rem;
    color: #aaaaaa;
}

.qivorel-pulsecrest-9831-CheckboxLabelWithLink a {
    color: #5AF3FF;
}

.qivorel-pulsecrest-9831-FormSubmitActionButton {
    width: 100%;
    padding: 1.2rem;
    background-color: #5AF3FF;
    color: #050607;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qivorel-pulsecrest-9831-FormSubmitActionButton:hover {
    box-shadow: 0 0 25px #5AF3FF;
    filter: brightness(1.1);
}

/* Footer */
.qivorel-pulsecrest-9831-FooterMainSectionComponent {
    padding: 60px 2rem;
    background-color: #050607;
    border-top: 1px solid #333;
    text-align: center;
}

.qivorel-pulsecrest-9831-FooterInnerWrapperContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.qivorel-pulsecrest-9831-FooterCopyrightRowText {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.qivorel-pulsecrest-9831-FooterContactEmailInfo,
.qivorel-pulsecrest-9831-FooterPhoneInfo {
    margin-bottom: 0.5rem;
    color: #888;
}

.qivorel-pulsecrest-9831-FooterEmailAnchorLink {
    color: #5AF3FF;
    text-decoration: none;
}

.qivorel-pulsecrest-9831-FooterLegalLinksNavigation {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.qivorel-pulsecrest-9831-FooterLegalLinkItem {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.qivorel-pulsecrest-9831-FooterLegalLinkItem:hover {
    color: #5AF3FF;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .qivorel-pulsecrest-9831-HeroLayoutTwoColumnsGrid,
    .qivorel-pulsecrest-9831-BenefitsMirroredLayoutGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .qivorel-pulsecrest-9831-HeroMainTitleH1Element {
        font-size: 2.5rem;
    }
    
    .qivorel-pulsecrest-9831-PriceCardFeaturedAccent {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .qivorel-pulsecrest-9831-NavigationMenuLinksList {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #050607;
        padding: 2rem;
        border-bottom: 1px solid #5AF3FF;
    }
    
    .qivorel-pulsecrest-9831-BurgerMenuIconDisplay {
        display: flex;
    }
    
    #qivorel-pulsecrest-9831-MobileMenuToggleCheckbox:checked ~ .qivorel-pulsecrest-9831-NavigationMenuLinksList {
        display: flex;
    }
    
    .qivorel-pulsecrest-9831-HeroBlockSectionComponent {
        padding-top: 100px;
    }
    
    .qivorel-pulsecrest-9831-HeroMainTitleH1Element {
        font-size: 2rem;
    }
}

/* Additional Layout Spacing/Paddings for Length */
.qivorel-pulsecrest-9831-MainContentAreaWrapper section {
    margin-bottom: 40px;
}

/* Cybersecurity Grid Effect in Hero */
.qivorel-pulsecrest-9831-HeroBlockSectionComponent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}