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

body.YeberogMainBodyWrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    color: #22d3ee;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

/* Header & Pattern Strip */
.YeberogHeaderNavigationContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.YeberogHeaderPatternStrip {
    height: 6px;
    background-image: radial-gradient(#22d3ee 1px, transparent 1px);
    background-size: 10px 10px;
    background-color: #0f172a;
    border-bottom: 1px solid #22d3ee;
}

.YeberogHeaderContentInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.YeberogLogoTextBrand {
    font-size: 28px;
    font-weight: 900;
    color: #22d3ee;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.YeberogNavMenuListItems {
    display: flex;
    gap: 25px;
}

.YeberogNavLinkItemSingle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

.YeberogNavLinkItemSingle:hover {
    color: #22d3ee;
}

/* Mobile Menu Toggle (No JS) */
.YeberogMobileMenuInputCheckbox {
    display: none;
}

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

.YeberogMobileMenuIconLabel span {
    width: 25px;
    height: 3px;
    background-color: #22d3ee;
    border-radius: 2px;
}

/* Hero Section */
.YeberogHeroSectionOuterLayout {
    position: relative;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.YeberogHeroSectionInnerGrid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

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

.YeberogHeroImageBlurBackdrop {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.1), transparent);
}

.YeberogHeroMainVisualImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.2));
    object-fit: cover;
}

.YeberogHeroTextColumnRight {
    flex: 1.2;
}

.YeberogHeroMainHeadlineH1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.YeberogHeroSubheadlineText {
    font-size: 20px;
    color: #a7f3d0;
    margin-bottom: 20px;
}

.YeberogHeroDescriptionParagraph {
    margin-bottom: 15px;
    color: #94a3b8;
}

.YeberogHeroDescriptionParagraphTwo {
    margin-bottom: 35px;
    color: #94a3b8;
}

.YeberogCyanGlowButtonAction {
    display: inline-block;
    padding: 18px 40px;
    background-color: transparent;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    transition: all 0.4s ease;
}

.YeberogCyanGlowButtonAction:hover {
    background-color: #22d3ee;
    color: #0f172a;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.8);
    transform: translateY(-3px);
}

/* Reactor Rings Decoration */
.YeberogReactorRingDecorationOne,
.YeberogReactorRingDecorationTwo,
.YeberogReactorRingDecorationThree {
    position: absolute;
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.YeberogReactorRingDecorationOne {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
}

/* Audience Section */
.YeberogAudienceSectionWrapper {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.YeberogAudienceContentHeader {
    text-align: center;
    margin-bottom: 60px;
}

.YeberogAudienceMainTitleH2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.YeberogAudienceIntroDescription {
    max-width: 800px;
    margin: 0 auto;
    color: #94a3b8;
}

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

.YeberogAudienceCardItemHighlight {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.1);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.YeberogAudienceCardItemHighlight:hover {
    border-color: #22d3ee;
    transform: translateY(-5px);
    background-color: rgba(34, 211, 238, 0.05);
}

.YeberogAudienceCardTitleH3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.YeberogAudienceCardTextP {
    color: #94a3b8;
}

/* Practitioner Quote Section */
.YeberogPractitionerSectionLayout {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.YeberogPractitionerCardGradientBg {
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 58, 138, 0.2) 100%);
    border: 1px solid rgba(167, 243, 208, 0.2);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.YeberogPractitionerQuoteIcon {
    font-size: 80px;
    color: #a7f3d0;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.3;
}

.YeberogPractitionerMainQuoteText {
    font-size: 24px;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.5;
}

.YeberogPractitionerSignatureLine {
    width: 60px;
    height: 3px;
    background-color: #22d3ee;
    margin: 0 auto 20px;
}

.YeberogPractitionerAuthorName {
    font-size: 20px;
    font-weight: 700;
    color: #22d3ee;
}

.YeberogPractitionerAuthorTitle {
    color: #94a3b8;
    font-size: 14px;
}

.YeberogReactorRingDecorationTwo {
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -100px;
}

/* Benefits Section */
.YeberogBenefitsSectionWrapper {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.YeberogBenefitsTextSideLeft {
    flex: 1.2;
}

.YeberogBenefitsTitleH2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.YeberogBenefitsDetailedListItems {
    margin-bottom: 40px;
}

.YeberogBenefitsListItemPoint {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.YeberogBenefitsListItemPoint::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

.YeberogBenefitsInfoPanelBox {
    background-color: rgba(167, 243, 208, 0.05);
    border-left: 4px solid #a7f3d0;
    padding: 25px;
    border-radius: 0 10px 10px 0;
}

.YeberogBenefitsInfoPanelTitle {
    color: #a7f3d0;
    margin-bottom: 10px;
}

.YeberogBenefitsImageSideRight {
    flex: 0.8;
}

.YeberogBenefitsFeatureVisualImage {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(34, 211, 238, 0.1);
}

/* Extra Articles & Checklists */
.YeberogExtraSectionArticleOne,
.YeberogExtraSectionArticleTwo,
.YeberogExtraSectionArticleThree {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.YeberogExtraSectionTitleH2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.YeberogExtraSectionTextColumns {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.YeberogExtraSectionParagraphMain {
    flex: 1;
    color: #94a3b8;
}

.YeberogChecklistLayoutWrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.YeberogChecklistItemElement {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: rgba(30, 41, 59, 0.4);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.05);
}

.YeberogChecklistNumberBox {
    background-color: #22d3ee;
    color: #0f172a;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    border-radius: 5px;
    flex-shrink: 0;
}

.YeberogChecklistSubheadingH4 {
    margin-bottom: 5px;
    color: #e2e8f0;
}

.YeberogChecklistTextSmallP {
    font-size: 14px;
    color: #94a3b8;
}

.YeberogSimpleListContent {
    list-style: disc;
    padding-left: 40px;
}

.YeberogSimpleListItemDetailed {
    margin-bottom: 15px;
    color: #a7f3d0;
}

.YeberogImagePlaceholderFullWidth {
    margin-top: 50px;
}

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

.YeberogReactorRingDecorationThree {
    width: 500px;
    height: 500px;
    left: 40%;
    top: 50%;
}

/* Pricing Section */
.YeberogPricingSectionOuterContainer {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.YeberogPricingHeaderContent {
    text-align: center;
    margin-bottom: 60px;
}

.YeberogPricingTitleH2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.YeberogPricingSubtitleText {
    color: #94a3b8;
}

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

.YeberogPricingCardItemMinimal {
    background-color: #1e293b;
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 15px;
    padding: 40px;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.YeberogPricingCardItemMinimal:hover {
    border-color: #22d3ee;
    transform: scale(1.02);
}

.YeberogPricingCardFeaturedActive {
    border: 2px solid #22d3ee;
    background-color: rgba(34, 211, 238, 0.05);
    position: relative;
}

.YeberogPricingCardHeader {
    text-align: center;
    margin-bottom: 30px;
}

.YeberogPricingCardPlanName {
    font-size: 18px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.YeberogPricingCardPriceValue {
    font-size: 42px;
    font-weight: 800;
    color: #22d3ee;
}

.YeberogPricingCardFeaturesList {
    flex-grow: 1;
    margin-bottom: 30px;
}

.YeberogPricingCardFeaturesList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.05);
    font-size: 15px;
    text-align: center;
}

.YeberogPricingCardButtonCTA {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #22d3ee;
    color: #22d3ee;
    font-weight: 700;
    border-radius: 5px;
}

.YeberogPricingCardButtonCTA:hover {
    background-color: #22d3ee;
    color: #0f172a;
}

/* FAQ Section */
.YeberogFAQSectionWrapper {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.YeberogFAQTitleH2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.YeberogFAQSingleDetailItem {
    background-color: rgba(30, 41, 59, 0.6);
    border-left: 4px solid #22d3ee;
    border-radius: 0 5px 5px 0;
}

.YeberogFAQSummaryHeading {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.YeberogFAQSummaryHeading::after {
    content: '+';
    color: #22d3ee;
    font-size: 24px;
}

.YeberogFAQSingleDetailItem[open] .YeberogFAQSummaryHeading::after {
    content: '-';
}

.YeberogFAQContentBodyText {
    padding: 0 20px 20px;
    color: #94a3b8;
}

/* Form Section */
.YeberogFormSectionWrapper {
    padding: 100px 20px;
    background-color: rgba(15, 23, 42, 0.7);
}

.YeberogFormHeaderGroup {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.YeberogFormFieldWrapper {
    margin-bottom: 20px;
}

.YeberogFormFieldLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #94a3b8;
}

.YeberogFormFieldInput,
.YeberogFormFieldTextarea {
    width: 100%;
    padding: 15px;
    background-color: #1e293b;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.YeberogFormFieldInput:focus,
.YeberogFormFieldTextarea:focus {
    outline: none;
    border-color: #22d3ee;
}

.YeberogFormCheckboxWrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.YeberogFormCheckboxLabel a {
    color: #22d3ee;
    text-decoration: underline;
}

.YeberogFormSubmitButtonCyan {
    width: 100%;
    padding: 18px;
    background-color: #22d3ee;
    border: none;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.YeberogFormSubmitButtonCyan:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.7);
    transform: translateY(-2px);
}

/* Footer Styles */
.YeberogFooterMainLayout {
    padding: 80px 20px 40px;
    background-color: #020617;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.YeberogFooterTopRow {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.YeberogFooterLogoText {
    font-size: 24px;
    font-weight: 900;
    color: #22d3ee;
    margin-bottom: 10px;
}

.YeberogFooterSloganText {
    color: #94a3b8;
    font-size: 14px;
}

.YeberogFooterContactItem {
    margin-bottom: 5px;
    font-size: 14px;
}

.YeberogFooterDividerLine {
    max-width: 1200px;
    margin: 0 auto 30px;
    height: 1px;
    background-color: rgba(226, 232, 240, 0.05);
}

.YeberogFooterBottomRow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.YeberogFooterLegalLinks {
    display: flex;
    gap: 20px;
}

.YeberogFooterNavLinkItem:hover {
    color: #22d3ee;
}

/* Responsive Design */
@media (max-width: 992px) {
    .YeberogHeroSectionInnerGrid {
        flex-direction: column;
    }
    .YeberogHeroMainHeadlineH1 {
        font-size: 36px;
    }
    .YeberogAudienceGridContainerCards {
        grid-template-columns: repeat(2, 1fr);
    }
    .YeberogBenefitsContentGridRow {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .YeberogHeaderContentInner {
        padding: 10px 20px;
    }
    .YeberogNavMenuLinksWrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        padding: 20px;
        border-bottom: 1px solid #22d3ee;
    }
    .YeberogMobileMenuInputCheckbox:checked ~ .YeberogNavMenuLinksWrapper {
        display: block;
    }
    .YeberogNavMenuListItems {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .YeberogMobileMenuIconLabel {
        display: flex;
    }
    .YeberogExtraSectionTextColumns {
        flex-direction: column;
        gap: 20px;
    }
    .YeberogAudienceGridContainerCards {
        grid-template-columns: 1fr;
    }
    .YeberogFooterTopRow {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    .YeberogFooterBottomRow {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .YeberogFooterLegalLinks {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Ensure no elements overflow */
img, video, canvas, svg {
    max-width: 100%;
}