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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

/* Header and Navigation */
.headerNavigationContainerWrap {
    background-color: #0c0d0e;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logoTextBrandRepresentation {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFC55E;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navigationListItemsWrapper {
    display: flex;
    gap: 1.5rem;
}

.navLinkItemAnchorScroll {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #ffffff;
}

.navLinkItemAnchorScroll:hover {
    color: #FFC55E;
}

/* Mobile Menu Burger (No JS) */
.mobileMenuToggleInputHidden {
    display: none;
}

.mobileMenuBurgerIconLabel {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobileMenuBurgerIconLabel span {
    width: 25px;
    height: 3px;
    background-color: #FFC55E;
    border-radius: 2px;
}

/* Hero Section */
.heroSectionMainBlockWrapper {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.heroSectionContentFlexbox {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.heroSectionImageSideColumn {
    flex: 1;
}

.heroMainBannerDisplayImage {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 197, 94, 0.2);
}

.heroSmallGalleryGridDisplay {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.heroGallerySmallThumbImage {
    width: 31%;
    border-radius: 8px;
    border: 1px solid rgba(255, 197, 94, 0.1);
}

.heroSectionTextSideColumn {
    flex: 1;
}

.heroMainTitleHeadlineText {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
}

.heroMainTitleHeadlineText::after {
    content: '✦';
    color: #FFC55E;
    font-size: 1.2rem;
    position: absolute;
    top: -10px;
    right: -20px;
}

.heroSubTitleDescriptionText {
    font-size: 1.4rem;
    color: #FFC55E;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.heroParagraphExtraDetailsOne, 
.heroParagraphExtraDetailsTwo {
    margin-bottom: 1.2rem;
    color: #b0b0b0;
}

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

.heroCallToActionButtonCta:hover {
    background-color: #ffd18a;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.6);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricingSectionPackagesWrapper {
    background-color: #0a0b0c;
    padding: 6rem 2rem;
}

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

.pricingSectionMainHeadingTitle {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricingSectionSubHeadingDesc {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

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

.priceCardItemSingleBox {
    background-color: #121416;
    border: 1px solid #2a2a2a;
    padding: 3rem 2rem;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.priceCardItemSingleBox:hover {
    transform: translateY(-10px);
    border-color: #FFC55E;
}

.priceCardItemFeaturedSpecial {
    border-color: #FFC55E;
    position: relative;
    overflow: hidden;
}

.priceCardItemFeaturedSpecial::before {
    content: "Популярний";
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #FFC55E;
    color: #060708;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.priceCardHeaderTopPart {
    text-align: center;
    margin-bottom: 2rem;
}

.priceCardPackageNameTitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #FFC55E;
    margin-bottom: 1rem;
}

.priceCardValueDisplayAmount {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.priceCardFeaturesListItems {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.priceCardFeaturesListItems li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.priceCardOrderButtonCta {
    display: block;
    text-align: center;
    padding: 1rem;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.priceCardOrderButtonCta:hover {
    background-color: #FFC55E;
    color: #060708;
}

/* Audience Section */
.audienceSectionTargetGroupWrapper {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audienceSectionContentDividerLine,
.audienceSectionContentDividerLineBottom {
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFC55E, transparent);
    width: 100%;
    margin: 2rem 0;
}

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

.audienceSectionHeadingText {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.audienceSectionIntroductionIntro {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.audienceSectionIntroductionIntro strong {
    color: #FFC55E;
}

.audienceItemsFlexContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.audienceSingleItemCardBox {
    flex: 1 1 300px;
    background-color: #0d0e0f;
    padding: 2rem;
    border-left: 4px solid #FFC55E;
    position: relative;
}

.audienceItemIconDecorLine {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid rgba(255, 197, 94, 0.4);
    border-right: 2px solid rgba(255, 197, 94, 0.4);
}

.audienceItemDescriptionText {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Benefits Section */
.benefitsSectionValueDisplayWrapper {
    padding: 6rem 2rem;
    background-color: #08090a;
}

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

.benefitsSectionTextColumnSide {
    flex: 1;
}

.benefitsSectionImageColumnSide {
    flex: 1;
}

.benefitsMainIllustrationGraphic {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.benefitsSectionTitleHeader {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.benefitsSectionSubTextDesc {
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

.benefitsListPointsCollection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefitsListItemSingleUnit {
    display: flex;
    gap: 1.5rem;
}

.benefitsListIconMarker {
    color: #FFC55E;
    font-size: 1.5rem;
    line-height: 1;
}

.benefitsListTitleStrong {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefitsListParaDetails {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Expert Quote Section */
.expertQuoteSectionBlockWrapper {
    padding: 8rem 2rem;
    background: linear-gradient(rgba(6, 7, 8, 0.9), rgba(6, 7, 8, 0.9)), url('https://placehold.co/1200x600/1a1a1a/FFC55E?text=Texture&font=lato&width=1200&height=600');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

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

.expertQuoteTextBody {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.5;
    position: relative;
}

.expertQuoteTextBody::before {
    content: "«";
    color: #FFC55E;
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -40px;
    opacity: 0.3;
}

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

.expertQuoteAuthorNameText {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFC55E;
}

.expertQuoteAuthorTitleText {
    font-size: 0.9rem;
    color: #888;
}

/* Extra Info Sections (1, 2, 3) */
.extraInformationSectionOneWrapper,
.extraInformationSectionTwoWrapper,
.extraInformationSectionThreeWrapper {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.extraInfoSectionContainerBox {
    background-color: #0c0d0e;
    padding: 4rem;
    border-radius: 12px;
}

.extraInfoSectionTitleHeader {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    border-left: 5px solid #FFC55E;
    padding-left: 1.5rem;
}

.extraInfoTextColumnsLayout {
    column-count: 2;
    column-gap: 3rem;
    color: #b0b0b0;
}

.extraInfoParagraphBodyText {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.extraInfoSubTitleHeaderSmall {
    column-span: all;
    font-size: 1.3rem;
    color: #FFC55E;
    margin: 2rem 0 1rem;
}

.extraInfoBulletsList {
    column-span: all;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.extraInfoBulletsList li {
    background-color: #1a1b1d;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* FAQ Section */
.faqSectionAccordionWrapper {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faqSectionHeaderContainer {
    text-align: center;
    margin-bottom: 3rem;
}

.faqSectionHeadingTitle {
    font-size: 2.5rem;
    color: #ffffff;
}

.faqAccordionSingleItemBox {
    background-color: #121416;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

.faqAccordionSummaryTitle {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.faqAccordionSummaryTitle::after {
    content: "▼";
    font-size: 0.8rem;
    color: #FFC55E;
    transition: transform 0.3s ease;
}

.faqAccordionSingleItemBox[open] .faqAccordionSummaryTitle::after {
    transform: rotate(180deg);
}

.faqAccordionContentDetails {
    padding: 0 1.5rem 1.5rem;
    color: #a0a0a0;
}

/* Contact Form Section */
.contactFormSectionBlockWrapper {
    padding: 6rem 2rem;
    background-color: #0a0b0c;
}

.contactFormHeaderContainer {
    text-align: center;
    margin-bottom: 3rem;
}

.contactFormMainHeadingTitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contactFormSubHeadingDesc {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.contactFormElementContainer {
    max-width: 600px;
    margin: 0 auto;
}

.contactFormTagElementForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.formInputGroupFieldItem {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formLabelTextTitle {
    font-size: 0.9rem;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formInputFieldTagInput,
.formTextAreaFieldTagInput {
    background-color: #121416;
    border: 1px solid #2a2a2a;
    padding: 1rem;
    color: #ffffff;
    border-radius: 4px;
    font-family: inherit;
}

.formInputFieldTagInput:focus,
.formTextAreaFieldTagInput:focus {
    border-color: #FFC55E;
    outline: none;
}

.formCheckboxGroupFieldItem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

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

.formSubmitButtonTagButton {
    background-color: #FFC55E;
    color: #060708;
    padding: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 1rem;
}

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

/* Footer Section */
.mainFooterSectionContainer {
    background-color: #060708;
    border-top: 1px solid #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
}

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

.footerLogoBrandText {
    font-size: 1.5rem;
    color: #FFC55E;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footerCopyrightNoticeText {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.footerContactEmailLink,
.footerContactPhoneText {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

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

.footerLegalLinksWrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footerLegalLinkItem {
    font-size: 0.8rem;
    color: #666;
}

.footerLegalLinkItem:hover {
    color: #FFC55E;
}

/* Responsive Queries */

@media (max-width: 1024px) {
    .heroMainTitleHeadlineText {
        font-size: 2.8rem;
    }
    .extraInfoTextColumnsLayout {
        column-count: 1;
    }
    .extraInfoBulletsList {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .headerContentInnerWrapper {
        padding: 1rem;
    }
    
    .mobileMenuBurgerIconLabel {
        display: flex;
    }

    .mainHeaderNavigationLinksMenu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0c0d0e;
        padding: 2rem;
        border-bottom: 2px solid #FFC55E;
    }

    .mobileMenuToggleInputHidden:checked ~ .mainHeaderNavigationLinksMenu {
        display: block;
    }

    .navigationListItemsWrapper {
        flex-direction: column;
        text-align: center;
    }

    .heroSectionContentFlexbox,
    .benefitsSectionFlexLayoutContainer {
        flex-direction: column;
    }

    .heroSectionTextSideColumn {
        text-align: center;
    }

    .heroMainTitleHeadlineText {
        font-size: 2.5rem;
    }

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

    .priceCardItemSingleBox {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .heroMainTitleHeadlineText {
        font-size: 2rem;
    }
    .extraInfoSectionContainerBox {
        padding: 2rem;
    }
}