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

html {
    scroll-behavior: smooth;
}

body.BrlnBodyMainCls {
    background-color: #1a0b14;
    color: #ffe4e6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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%;
    display: block;
    height: auto;
}

/* Header & Nav */
.BrlnHdrSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(63, 29, 46, 0.9);
    backdrop-filter: blur(10px);
}

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

.BrlnLogoTextOnly {
    font-size: 28px;
    font-weight: 800;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: default;
}

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

.BrlnNavLinkItem {
    font-size: 15px;
    font-weight: 600;
    color: #f9a8d4;
    text-transform: uppercase;
}

.BrlnNavLinkItem:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.BrlnNeonLineGlow {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 15px #00ffff;
}

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

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

.BrlnBurgerLabel span {
    width: 25px;
    height: 3px;
    background-color: #00ffff;
    border-radius: 2px;
}

/* Hero Section */
.BrlnHeroMainBlock {
    padding: 150px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.BrlnHeroImgColumn {
    flex: 1;
}

.BrlnHeroImgWrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.BrlnHeroImageEl {
    width: 100%;
    object-fit: cover;
}

.BrlnHeroBadgeMtk {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00ffff;
    color: #1a0b14;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.BrlnHeroTextColumn {
    flex: 1.2;
}

.BrlnHeroTitleH1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffe4e6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.BrlnHeroSubtitleP {
    font-size: 20px;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 20px;
}

.BrlnHeroDescriptionP {
    margin-bottom: 15px;
    font-size: 17px;
    color: #f9a8d4;
}

.BrlnHeroCtaButton {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.BrlnHeroCtaButton:hover {
    background: #00ffff;
    color: #1a0b14;
    box-shadow: 0 0 25px #00ffff;
}

/* Practic Quote Section */
.BrlnPracticQuoteBlock {
    background: #3f1d2e;
    padding: 100px 20px;
    text-align: center;
}

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

.BrlnPracticQuoteTxt {
    font-size: 32px;
    font-style: italic;
    color: #ffe4e6;
    line-height: 1.4;
    margin-bottom: 40px;
    position: relative;
}

.BrlnPracticQuoteTxt::before {
    content: "“";
    font-size: 100px;
    color: #ec4899;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

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

.BrlnPracticAvatarImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #00ffff;
    margin-bottom: 15px;
    object-fit: cover;
}

.BrlnPracticExpertName {
    font-size: 22px;
    color: #ec4899;
    margin-bottom: 5px;
}

.BrlnPracticExpertRole {
    font-size: 14px;
    color: #f9a8d4;
    letter-spacing: 1px;
}

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

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

.BrlnSectionTitleH2 {
    font-size: 36px;
    color: #ec4899;
    margin-bottom: 20px;
}

.BrlnSectionIntroDesc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: #f9a8d4;
}

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

.BrlnTargetCardItem {
    background: #25131c;
    border: 1px solid #3f1d2e;
    padding: 40px 30px;
    border-radius: 15px;
    width: calc(33.333% - 20px);
    text-align: center;
    transition: transform 0.3s ease;
}

.BrlnTargetCardItem:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
}

.BrlnTargetCardIcon {
    margin: 0 auto 20px;
    border-radius: 50%;
}

.BrlnTargetCardTitle {
    font-size: 20px;
    color: #ffe4e6;
    margin-bottom: 15px;
}

.BrlnTargetCardText {
    font-size: 15px;
    color: #f9a8d4;
}

/* Regularity Section */
.BrlnRegularityMainBlk {
    padding: 100px 20px;
    background: #150910;
}

.BrlnRegularityFlexRow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.BrlnRegularityTextSide {
    flex: 1;
}

.BrlnRegularityIntro {
    margin-bottom: 30px;
    font-size: 18px;
    color: #f9a8d4;
}

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

.BrlnRegularityListItem {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.BrlnRegularityMarker {
    width: 12px;
    height: 12px;
    background: #00ffff;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 10px #00ffff;
    flex-shrink: 0;
}

.BrlnRegularityImageEl {
    width: 100%;
    border-radius: 20px;
}

.BrlnRegularityImgSide {
    flex: 1;
}

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

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

.BrlnPriceCardItem {
    background: #25131c;
    flex: 1;
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    border-top: 5px solid transparent;
}

.BrlnPriceBorderPink { border-top-color: #ec4899; }
.BrlnPriceBorderCyan { border-top-color: #00ffff; }
.BrlnPriceBorderBerry { border-top-color: #3f1d2e; }

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

.BrlnPriceTitle {
    font-size: 24px;
    color: #ffe4e6;
    margin-bottom: 10px;
}

.BrlnPriceValue {
    font-size: 36px;
    color: #ec4899;
    font-weight: 800;
}

.BrlnPriceFeatures {
    margin-bottom: 40px;
    flex-grow: 1;
}

.BrlnPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #3f1d2e;
    color: #f9a8d4;
    font-size: 15px;
}

.BrlnPriceCtaBtn {
    text-align: center;
    padding: 12px;
    background: #ec4899;
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
}

.BrlnPriceCtaBtn:hover {
    background: #d43781;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

/* 3 Extra Text Sections */
.BrlnTextContentBlock {
    padding: 100px 20px;
    background: #1a0b14;
}

.BrlnTextContainer {
    max-width: 850px;
    margin: 0 auto;
}

.BrlnTextSectionTitle {
    font-size: 28px;
    color: #ec4899;
    margin: 50px 0 20px;
}

.BrlnTextSectionTitle:first-child { margin-top: 0; }

.BrlnTextDividerLine {
    height: 1px;
    background: rgba(249, 168, 212, 0.2);
    margin-bottom: 25px;
}

.BrlnTextPara {
    margin-bottom: 20px;
    color: #f9a8d4;
    font-size: 17px;
}

/* FAQ Section */
.BrlnFaqMainBlock {
    padding: 100px 20px;
    background: #150910;
}

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

.BrlnFaqItem {
    background: #25131c;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3f1d2e;
}

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

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

.BrlnFaqArrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #00ffff;
    border-bottom: 2px solid #00ffff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

details[open] .BrlnFaqArrow {
    transform: rotate(-135deg);
}

.BrlnFaqContent {
    padding: 0 20px 20px;
    color: #f9a8d4;
    font-size: 15px;
}

/* Contact Form */
.BrlnContactFormBlock {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.BrlnFormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: #3f1d2e;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #ec4899;
}

.BrlnFormTitleH2 {
    text-align: center;
    font-size: 32px;
    color: #ffe4e6;
    margin-bottom: 10px;
}

.BrlnFormSubtitle {
    text-align: center;
    color: #f9a8d4;
    margin-bottom: 40px;
}

.BrlnFormGroup {
    margin-bottom: 20px;
}

.BrlnFormInput, .BrlnFormTextarea {
    width: 100%;
    padding: 15px;
    background: #1a0b14;
    border: 1px solid #ec4899;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.BrlnFormTextarea {
    height: 150px;
    resize: none;
}

.BrlnFormCheckboxRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.BrlnFormCheckLab {
    font-size: 14px;
    color: #f9a8d4;
}

.BrlnFormCheckLab a {
    color: #00ffff;
    text-decoration: underline;
}

.BrlnFormSubmitBtn {
    width: 100%;
    padding: 18px;
    background: #00ffff;
    color: #1a0b14;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.BrlnFormSubmitBtn:hover {
    box-shadow: 0 0 30px #00ffff;
    transform: translateY(-2px);
}

/* Footer */
.BrlnFooterMain {
    background: #150910;
    padding: 80px 20px 40px;
    border-top: 1px solid #3f1d2e;
}

.BrlnFooterContent {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.BrlnFooterCopyright {
    font-size: 18px;
    color: #ec4899;
    margin-bottom: 10px;
}

.BrlnFooterEmail {
    margin-bottom: 30px;
    color: #f9a8d4;
}

.BrlnFooterEmail a:hover {
    color: #00ffff;
}

.BrlnFooterDisclaimer {
    font-size: 13px;
    color: #6d4b5b;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

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

.BrlnFooterLinks a {
    font-size: 14px;
    color: #f9a8d4;
}

.BrlnFooterLinks a:hover {
    color: #00ffff;
}

/* Responsive */
@media (max-width: 992px) {
    .BrlnHeroInnerFlex, .BrlnRegularityFlexRow {
        flex-direction: column;
    }
    
    .BrlnHeroTitleH1 { font-size: 36px; }
    
    .BrlnTargetCardItem {
        width: calc(50% - 15px);
    }
    
    .BrlnPriceCardsFlex {
        flex-direction: column;
        align-items: center;
    }
    
    .BrlnPriceCardItem {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .BrlnBurgerLabel { display: flex; }
    
    .BrlnNavMenuLinks {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #3f1d2e;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
    }
    
    .BrlnMenuToggleInp:checked ~ .BrlnNavMenuLinks {
        left: 0;
    }
    
    .BrlnTargetCardItem {
        width: 100%;
    }
    
    .BrlnFormContainer {
        padding: 30px 20px;
    }
}