/* 
CSS Variables and Global Resets 
Project: Vexbrunali - Smooth Rhythm
Style: Obsidian Dark with Mint Accents
*/

:root {
    --VexColorBg: #03070A;
    --VexColorMint: #42FFD5;
    --VexColorMintSoft: rgba(66, 255, 213, 0.15);
    --VexColorText: #E0E0E0;
    --VexColorWhite: #FFFFFF;
    --VexColorGray: #888888;
    --VexTransition: all 0.3s ease;
    --VexContainerWidth: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.VexBodyElementMain {
    background-color: var(--VexColorBg);
    color: var(--VexColorText);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.VexHeaderWrapper {
    width: 100%;
    background-color: var(--VexColorBg);
    border-bottom: 2px solid var(--VexColorMint);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.VexHeaderContainer {
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.VexLogoText {
    font-size: 28px;
    font-weight: 800;
    color: var(--VexColorMint);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.VexNavigationMenu {
    display: flex;
}

.VexNavListItems {
    list-style: none;
    display: flex;
    gap: 25px;
}

.VexNavLinkItem {
    text-decoration: none;
    color: var(--VexColorWhite);
    font-weight: 500;
    font-size: 16px;
    transition: var(--VexTransition);
    position: relative;
}

.VexNavLinkItem:hover {
    color: var(--VexColorMint);
}

.VexNavLinkItem::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--VexColorMint);
    transition: var(--VexTransition);
}

.VexNavLinkItem:hover::after {
    width: 100%;
}

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

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

.VexBurgerBtn span {
    width: 25px;
    height: 3px;
    background-color: var(--VexColorMint);
    transition: var(--VexTransition);
}

/* Hero Section */
.VexHeroSectionMain {
    padding: 60px 20px;
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
}

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

.VexQuickBtn {
    padding: 8px 16px;
    border: 1px solid var(--VexColorMint);
    color: var(--VexColorMint);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: var(--VexTransition);
}

.VexQuickBtn:hover {
    background-color: var(--VexColorMint);
    color: var(--VexColorBg);
    box-shadow: 0 0 15px var(--VexColorMint);
}

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

.VexHeroImageSide, .VexHeroTextSide {
    flex: 1;
}

.VexHeroMainImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(66, 255, 213, 0.2);
    object-fit: cover;
}

.VexMainHeadingH1 {
    font-size: 48px;
    color: var(--VexColorWhite);
    line-height: 1.2;
    margin-bottom: 25px;
}

.VexHeroSubline {
    font-size: 20px;
    color: var(--VexColorMint);
    margin-bottom: 20px;
    font-weight: 500;
}

.VexHeroDescription {
    margin-bottom: 15px;
    color: var(--VexColorGray);
}

.VexHeroCtaWrap {
    margin-top: 35px;
}

.VexCtaButtonMain {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--VexColorMint);
    color: var(--VexColorBg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    transition: var(--VexTransition);
    box-shadow: 0 4px 15px rgba(66, 255, 213, 0.3);
}

.VexCtaButtonMain:hover {
    background-color: var(--VexColorWhite);
    box-shadow: 0 0 25px var(--VexColorMint);
    transform: translateY(-2px);
}

/* Reviews (CSS Scroll Snap) */
.VexReviewsContainer {
    padding: 80px 20px;
    background-color: rgba(66, 255, 213, 0.03);
}

.VexSectionTitleH2 {
    text-align: center;
    font-size: 36px;
    color: var(--VexColorWhite);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.VexSectionTitleH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--VexColorMint);
}

.VexReviewSliderWrapper {
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
    overflow: hidden;
}

.VexReviewInnerScroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--VexColorMint) transparent;
}

.VexReviewCardItem {
    min-width: 350px;
    background: #0A1014;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--VexColorMint);
    scroll-snap-align: center;
}

.VexReviewText {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 20px;
}

.VexReviewAuthor {
    display: block;
    color: var(--VexColorMint);
    font-weight: 600;
}

/* Pricing Section */
.VexPricingWrapperSection {
    padding: 80px 20px;
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
}

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

.VexPriceCardBox {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #080C10;
    border: 1px solid #1A252B;
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: var(--VexTransition);
}

.VexPriceCardBox:hover {
    border-color: var(--VexColorMint);
    transform: translateY(-5px);
}

.VexPriceCardFeatured {
    border: 1px solid var(--VexColorMint);
    background: #0D161B;
    transform: scale(1.05);
}

.VexPriceTitleH3 {
    color: var(--VexColorMint);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.VexPriceValue {
    font-size: 32px;
    font-weight: 800;
    color: var(--VexColorWhite);
    text-align: center;
    margin-bottom: 25px;
}

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

.VexPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #1A252B;
    font-size: 15px;
    color: var(--VexColorGray);
}

.VexPriceFeatures li:last-child {
    border-bottom: none;
}

.VexPriceBtnLink {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--VexColorMint);
    color: var(--VexColorMint);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--VexTransition);
}

.VexPriceBtnLink:hover {
    background: var(--VexColorMint);
    color: var(--VexColorBg);
}

/* For Whom Section */
.VexAudienceSectionWrap {
    padding: 80px 20px;
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
}

.VexAudienceIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--VexColorGray);
}

.VexAudienceDetailedGrid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.VexAudienceItemRow {
    display: flex;
    gap: 40px;
    align-items: center;
}

.VexAudienceReverse {
    flex-direction: row-reverse;
}

.VexAudienceImgBox {
    flex: 1;
}

.VexAudienceImg {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--VexColorMintSoft);
}

.VexAudienceTextBox {
    flex: 1;
}

.VexAudienceTitleH3 {
    font-size: 26px;
    color: var(--VexColorWhite);
    margin-bottom: 15px;
}

.VexAudiencePriceTag {
    display: inline-block;
    margin-top: 15px;
    color: var(--VexColorMint);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.VexAudienceListExtra {
    margin-top: 60px;
    background: #0A1014;
    padding: 40px;
    border-radius: 12px;
}

.VexSimpleCheckList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.VexSimpleCheckList li {
    padding-left: 30px;
    position: relative;
    color: var(--VexColorGray);
}

.VexSimpleCheckList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--VexColorMint);
    font-weight: bold;
}

/* Benefits Section */
.VexBenefitsSectionBox {
    padding: 80px 20px;
    background-color: #050A0E;
}

.VexBenefitsContentSplit {
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.VexBenefitsTextPart {
    flex: 1;
}

.VexBenefitsImagePart {
    flex: 1;
}

.VexBenefitSideImg {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--VexColorMintSoft);
}

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

.VexBenefitListItems li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid var(--VexColorMint);
}

/* Expert Quote */
.VexExpertQuoteSection {
    padding: 100px 20px;
    background: linear-gradient(rgba(3,7,10,0.9), rgba(3,7,10,0.9)), url('https://placeholder.co/1920x1080/03070A/42FFD5?text=Background+Pattern');
    background-attachment: fixed;
    text-align: center;
}

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

.VexMainQuoteText {
    font-size: 32px;
    color: var(--VexColorWhite);
    line-height: 1.4;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    font-style: italic;
}

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

.VexExpertName {
    font-size: 20px;
    color: var(--VexColorMint);
    font-weight: 700;
}

.VexExpertRole {
    color: var(--VexColorGray);
    font-size: 14px;
}

/* FAQ Section */
.VexFaqWrapperMain {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.VexFaqItemsList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.VexFaqDetails {
    background: #0A1014;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #1A252B;
}

.VexFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--VexColorWhite);
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.VexFaqSummary::after {
    content: '+';
    color: var(--VexColorMint);
}

.VexFaqDetails[open] .VexFaqSummary::after {
    content: '-';
}

.VexFaqContent {
    padding: 0 20px 20px;
    color: var(--VexColorGray);
}

/* Form Section */
.VexFormSectionWrapper {
    padding: 80px 20px;
    background-color: #03070A;
}

.VexFormContainerInner {
    max-width: 600px;
    margin: 0 auto;
    background: #0A1014;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--VexColorMintSoft);
}

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

.VexFormSubline {
    color: var(--VexColorGray);
}

.VexMainContactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.VexInputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.VexFormLabel {
    font-size: 14px;
    color: var(--VexColorMint);
}

.VexInputField, .VexTextField {
    background: #050A0E;
    border: 1px solid #1A252B;
    padding: 12px;
    color: var(--VexColorWhite);
    border-radius: 4px;
    outline: none;
    transition: var(--VexTransition);
}

.VexInputField:focus, .VexTextField:focus {
    border-color: var(--VexColorMint);
}

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

.VexCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.VexCheckboxLabel {
    font-size: 13px;
    color: var(--VexColorGray);
}

.VexPolicyLink {
    color: var(--VexColorMint);
}

.VexSubmitButtonAction {
    padding: 15px;
    background: var(--VexColorMint);
    color: var(--VexColorBg);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--VexTransition);
}

.VexSubmitButtonAction:hover {
    box-shadow: 0 0 20px var(--VexColorMint);
}

/* Long Text Sections */
.VexLongTextSection {
    padding: 80px 20px;
}

.VexBgAlt {
    background-color: #050A0E;
}

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

.VexTextContentWrap p {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--VexColorGray);
}

.VexArticleBenefitList {
    list-style: none;
    margin-top: 20px;
}

.VexArticleBenefitList li {
    padding: 10px 0;
    color: var(--VexColorWhite);
    border-bottom: 1px dashed var(--VexColorMintSoft);
}

/* Footer */
.VexFooterMainContainer {
    padding: 60px 20px;
    background-color: #010203;
    border-top: 1px solid #1A252B;
    text-align: center;
}

.VexFooterContent {
    max-width: var(--VexContainerWidth);
    margin: 0 auto;
}

.VexFooterLogoBox {
    font-size: 24px;
    color: var(--VexColorMint);
    font-weight: 800;
    margin-bottom: 10px;
}

.VexFooterTagline {
    font-size: 14px;
    color: var(--VexColorGray);
    margin-bottom: 25px;
}

.VexFooterContactMail {
    margin-bottom: 30px;
}

.VexFooterPolicyLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.VexFooterLink {
    color: var(--VexColorGray);
    text-decoration: none;
    font-size: 13px;
    transition: var(--VexTransition);
}

.VexFooterLink:hover {
    color: var(--VexColorMint);
}

.VexFooterCopyright {
    font-size: 12px;
    color: #444;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .VexHeroContentGrid, .VexAudienceItemRow, .VexBenefitsContentSplit {
        flex-direction: column;
    }
    
    .VexMainHeadingH1 {
        font-size: 36px;
    }
    
    .VexAudienceReverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .VexBurgerBtn {
        display: flex;
    }

    .VexNavigationMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--VexColorBg);
        padding: 20px;
        border-bottom: 2px solid var(--VexColorMint);
    }

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

    .VexMenuCheckbox:checked ~ .VexNavigationMenu {
        display: block;
    }
    
    .VexPricingGridContainer {
        flex-direction: column;
        align-items: center;
    }
    
    .VexPriceCardFeatured {
        transform: none;
    }
}