/* RESET & BASIC STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.senarovimMainBodyWrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050A18;
    color: #E0E6ED;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HELPER CLASSES */
.senarCheckboxInputHide {
    display: none;
}

/* HEADER STYLE */
header.senarHeaderNavContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(5, 10, 24, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.15);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
}

.senarLogoTextBrand {
    font-size: 28px;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav.senarNavigationLinksList {
    display: flex;
    gap: 30px;
}

.senarNavLinkItem {
    text-decoration: none;
    color: #E0E6ED;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.senarNavLinkItem:hover {
    color: #6AA9FF;
}

/* BURGER MENU STYLES */
.senarBurgerButtonLabel {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.senarBurgerButtonLabel span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    transition: 0.3s;
}

/* SECTION TITLES */
.senarSectionHeadingContainer {
    text-align: center;
    margin-bottom: 60px;
}

.senarSectionTitleCommon {
    font-size: 42px;
    color: #6AA9FF;
    margin-bottom: 20px;
    font-weight: 700;
}

.senarSectionSubtitleCommon {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #A0B3CC;
}

/* HERO SECTION - RED OUTLINE REQUIRED */
section.senarHeroBlockSectionRedOutline {
    padding: 100px 5%;
    border: 3px solid #FF4136; /* Required red outline */
    margin: 40px 5%;
    border-radius: 20px;
}

.senarHeroContentFlexContainer {
    display: flex;
    align-items: center;
    gap: 60px;
}

.senarHeroImageColumnSide, .senarHeroTextColumnSide {
    flex: 1;
}

.senarHeroMainStaticImage {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.senarHeroPrimaryHeadingTitle {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.senarHeroSecondarySubheading {
    font-size: 22px;
    color: #6AA9FF;
    margin-bottom: 30px;
    font-weight: 600;
}

.senarHeroParagraphDescription {
    margin-bottom: 20px;
    font-size: 18px;
    color: #E0E6ED;
}

.senarHeroCallToActionButton {
    display: inline-block;
    padding: 18px 45px;
    background-color: #6AA9FF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.senarHeroCallToActionButton:hover {
    background-color: transparent;
    border-color: #6AA9FF;
    box-shadow: 0 0 15px #6AA9FF;
}

/* WHO IS IT FOR */
section.senarWhoIsBlockSectionLayout {
    padding: 80px 5%;
}

.senarWhoIsGridAndPrices {
    display: flex;
    gap: 60px;
    align-items: center;
}

.senarWhoIsListContentPoints {
    flex: 1;
    list-style: none;
}

.senarWhoIsListItemEntry {
    padding: 15px 0;
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
    position: relative;
    padding-left: 35px;
}

.senarWhoIsListItemEntry::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

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

.senarWhoIsDecorativeImage {
    width: 100%;
    border-radius: 15px;
}

.senarWhoIsPriceTagHighlight {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #6AA9FF;
    color: white;
    padding: 20px 30px;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* PRICING */
section.senarPricingBlockSectionLayout {
    padding: 80px 5%;
    background-color: rgba(10, 20, 40, 0.5);
}

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

.senarPriceCardItemBox {
    background-color: #0D162D;
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s ease;
}

.senarPriceCardItemBox:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.senarPriceCardItemBoxFeatured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
}

.senarPriceCardTitle {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.senarPriceCardValue {
    font-size: 36px;
    color: #6AA9FF;
    font-weight: 800;
    margin-bottom: 30px;
}

.senarPriceCardFeaturesList {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.senarPriceCardFeaturesList li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #A0B3CC;
}

.senarPriceCardOrderButton {
    display: block;
    padding: 12px 20px;
    border: 1px solid #6AA9FF;
    color: #6AA9FF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.senarPriceCardOrderButton:hover {
    background-color: #6AA9FF;
    color: #FFFFFF;
}

/* REVIEWS */
section.senarReviewsBlockSectionLayout {
    padding: 80px 5%;
}

.senarReviewsSliderContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.senarReviewCardItem {
    background-color: #0D162D;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #6AA9FF;
}

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

.senarReviewCardAuthor {
    color: #6AA9FF;
    font-weight: 700;
}

/* BENEFITS */
section.senarBenefitsBlockSectionLayout {
    padding: 80px 5%;
}

.senarBenefitsFlexContainer {
    display: flex;
    gap: 60px;
    align-items: center;
}

.senarBenefitsTextSide {
    flex: 1;
}

.senarBenefitsImageSide {
    flex: 1;
}

.senarBenefitsDecorativeImg {
    width: 100%;
    border-radius: 15px;
}

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

.senarBenefitsListStyled li {
    margin-bottom: 20px;
    font-size: 18px;
    padding-left: 30px;
    position: relative;
}

.senarBenefitsListStyled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: #6AA9FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #6AA9FF;
}

/* EXPERT QUOTE */
section.senarExpertQuoteBlockSectionLayout {
    padding: 100px 5%;
    background: radial-gradient(circle at center, #0D162D 0%, #050A18 100%);
}

.senarExpertQuoteContainer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.senarExpertQuoteTextContent {
    font-size: 32px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 40px;
    position: relative;
}

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

.senarExpertQuoteAuthorName {
    font-size: 24px;
    font-weight: 700;
    color: #6AA9FF;
}

.senarExpertQuoteAuthorTitle {
    color: #A0B3CC;
}

/* FAQ */
section.senarFaqBlockSectionLayout {
    padding: 80px 5%;
}

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

.senarFaqItemDetails {
    background-color: #0D162D;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.senarFaqSummaryTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    position: relative;
}

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

.senarFaqSummaryTitle::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #6AA9FF;
    font-size: 24px;
}

.senarFaqItemDetails[open] .senarFaqSummaryTitle::after {
    content: '-';
}

.senarFaqContentText {
    padding: 0 20px 20px 20px;
    color: #A0B3CC;
}

/* FORM */
section.senarContactFormBlockSectionLayout {
    padding: 80px 5%;
    background-color: #0D162D;
}

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

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

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

.senarFormInputLabel {
    color: #6AA9FF;
    font-weight: 600;
}

.senarFormInputField, .senarFormTextareaField {
    padding: 15px;
    background-color: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.senarFormInputField:focus, .senarFormTextareaField:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
}

.senarFormCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #A0B3CC;
}

.senarFormCheckboxGroup a {
    color: #6AA9FF;
    text-decoration: underline;
}

.senarFormSubmitButtonNow {
    background-color: #6AA9FF;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.senarFormSubmitButtonNow:hover {
    background-color: #5591E6;
    box-shadow: 0 0 20px #6AA9FF;
}

/* EXTRA TEXT SECTIONS */
section.senarExtraTextBlockSectionLayout {
    padding: 60px 5%;
}

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

.senarExtraTextContainer p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #A0B3CC;
}

.senarExtraListSimple {
    margin-bottom: 20px;
    list-style: square;
    padding-left: 40px;
}

.senarExtraListSimple li {
    margin-bottom: 10px;
    color: #6AA9FF;
}

/* FOOTER */
footer.senarFooterSectionMain {
    padding: 60px 5% 20px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    background-color: #050A18;
    text-align: center;
}

.senarFooterCopyrightText {
    margin-bottom: 10px;
    font-weight: 600;
}

.senarFooterContactEmail {
    margin-bottom: 30px;
}

.senarFooterContactEmail a {
    color: #6AA9FF;
    text-decoration: none;
}

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

.senarFooterLinkItem {
    font-size: 13px;
    color: #506680;
    text-decoration: none;
    transition: 0.3s;
}

.senarFooterLinkItem:hover {
    color: #6AA9FF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .senarHeroContentFlexContainer, .senarWhoIsGridAndPrices, .senarBenefitsFlexContainer {
        flex-direction: column;
        text-align: center;
    }

    .senarHeroPrimaryHeadingTitle {
        font-size: 42px;
    }

    .senarWhoIsListContentPoints {
        text-align: left;
    }
}

@media (max-width: 768px) {
    header.senarHeaderNavContainer {
        padding: 15px 5%;
    }

    .senarBurgerButtonLabel {
        display: flex;
    }

    nav.senarNavigationLinksList {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #050A18;
        flex-direction: column;
        padding: 40px 0;
        text-align: center;
        border-bottom: 1px solid #6AA9FF;
    }

    #senarMobileMenuToggle:checked ~ nav.senarNavigationLinksList {
        display: flex;
    }

    .senarSectionTitleCommon {
        font-size: 32px;
    }
}