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

html {
    scroll-behavior: smooth;
}

body.StilmirMainBodyContainer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #07090C;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* HEADER & NAVIGATION */
.StilmirHeaderWrapperClass {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(7, 9, 12, 0.95);
    border-bottom: 1px solid rgba(79, 247, 255, 0.1);
}

.StilmirTopDisclaimerBar {
    background-color: #1a1e24;
    color: #4FF7FF;
    font-size: 0.75rem;
    text-align: center;
    padding: 5px 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.StilmirTextLogoBrandName {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    user-select: none;
}

.StilmirNavLinksListItems {
    display: flex;
    gap: 2rem;
}

.StilmirNavLinkElement a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.StilmirNavLinkElement a:hover {
    color: #4FF7FF;
}

.StilmirCyanGlowRailEffect {
    height: 2px;
    width: 0;
    background-color: #4FF7FF;
    box-shadow: 0 0 10px #4FF7FF;
    transition: width 0.4s ease;
    margin: 0 auto;
}

.StilmirHeaderWrapperClass:hover .StilmirCyanGlowRailEffect {
    width: 100%;
}

/* BURGER MENU HACK (No JS) */
.StilmirMenuInputCheckbox {
    display: none;
}

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

.StilmirBurgerIconLabel span {
    width: 25px;
    height: 2px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

/* HERO SECTION */
.StilmirHeroSectionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.StilmirHeroTextColumnSide {
    flex: 1;
}

.StilmirHeroImageColumnSide {
    flex: 1;
}

.StilmirHeroMainHeadline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 900;
}

.StilmirHeroSubHeadlineParagraph {
    font-size: 1.25rem;
    color: #4FF7FF;
    margin-bottom: 1rem;
    font-weight: 600;
}

.StilmirHeroDescriptionText {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #A0A0A0;
}

.StilmirPrimaryActionButton {
    display: inline-block;
    background-color: #4FF7FF;
    color: #07090C;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.3);
}

.StilmirPrimaryActionButton:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.6);
    transform: translateY(-2px);
}

.StilmirStatsGridContainer {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

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

.StilmirStatValueNumber {
    font-size: 2rem;
    font-weight: 800;
    color: #4FF7FF;
}

.StilmirStatLabelText {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
}

.StilmirHeroMainVisualImage {
    border: 1px solid rgba(79, 247, 255, 0.2);
    box-shadow: 20px 20px 0px rgba(79, 247, 255, 0.05);
}

/* TEXT CONTENT BLOCKS */
.StilmirLargeTextContentBlock {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: #0d1117;
    border-left: 4px solid #4FF7FF;
}

.StilmirSectionMainHeading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.StilmirTextAndThoughtsWrapper {
    display: flex;
    gap: 3rem;
}

.StilmirMainParagraphsArea {
    flex: 2;
}

.StilmirMainParagraphsArea p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.StilmirKeyThoughtsCalloutBox {
    flex: 1;
    background-color: rgba(79, 247, 255, 0.03);
    padding: 2rem;
    border: 1px dashed rgba(79, 247, 255, 0.3);
}

.StilmirKeyThoughtsTitle {
    color: #4FF7FF;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.StilmirKeyThoughtsListItems li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.StilmirKeyThoughtsListItems li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

/* FAQ SECTION */
.StilmirFaqSectionContainer {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.StilmirSectionCenterHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.StilmirFaqAccordionWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.StilmirFaqDetailsItem {
    background-color: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.StilmirFaqDetailsItem:hover {
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.1);
    border-color: rgba(79, 247, 255, 0.3);
}

.StilmirFaqSummaryTitle {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.StilmirFaqAnswerContent {
    padding: 0 1.5rem 1.5rem;
    color: #A0A0A0;
    border-top: 1px solid rgba(79, 247, 255, 0.1);
    padding-top: 1rem;
}

/* PRICING SECTION */
.StilmirPricingSectionArea {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.StilmirPricingCardsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.StilmirPricingPackageCard {
    background-color: #0d1117;
    padding: 3rem 2rem;
    border: 1px solid rgba(79, 247, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.StilmirFeaturedPackageCard {
    border: 2px solid #4FF7FF;
    transform: scale(1.05);
    background-color: #161b22;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.StilmirPackageName {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4FF7FF;
}

.StilmirPackagePriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.StilmirPackageAccordionDetails {
    text-align: left;
    margin-bottom: 2rem;
}

.StilmirAccordionSummaryLabel {
    cursor: pointer;
    color: #4FF7FF;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.StilmirPackageFeatureList li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #999;
    padding-left: 1.2rem;
    position: relative;
}

.StilmirPackageFeatureList li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

.StilmirPackageOrderBtn {
    margin-top: auto;
    background-color: transparent;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    padding: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
}

.StilmirPackageOrderBtn:hover {
    background-color: #4FF7FF;
    color: #07090C;
}

/* EXPERT QUOTE */
.StilmirExpertQuoteContainer {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.StilmirExpertQuoteCardFrame {
    background-color: #161b22;
    padding: 4rem;
    border: 1px solid rgba(79, 247, 255, 0.1);
    position: relative;
    text-align: center;
}

.StilmirExpertQuoteCardFrame::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 8rem;
    color: rgba(79, 247, 255, 0.05);
    font-family: serif;
}

.StilmirMainQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.StilmirExpertNameText {
    font-weight: 700;
    font-size: 1.2rem;
    color: #4FF7FF;
}

.StilmirExpertTitleRole {
    font-size: 0.9rem;
    color: #777;
}

/* AUDIENCE SECTION */
.StilmirAudienceSectionArea {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.StilmirAudienceIntroParagraph {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #CCC;
}

.StilmirAudienceTwoColGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.StilmirAudienceListItems li {
    padding: 1rem;
    border-bottom: 1px solid rgba(79, 247, 255, 0.1);
    display: flex;
    align-items: center;
}

.StilmirAudienceListItems li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4FF7FF;
    margin-right: 15px;
    border-radius: 50%;
}

/* REGULAR PRACTICE */
.StilmirPracticeSectionBlock {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.StilmirPracticeTextColumn {
    flex: 1.2;
}

.StilmirPracticeImageColumn {
    flex: 0.8;
}

.StilmirPracticeDescriptionPara {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.StilmirPracticeBenefitsTwoCols {
    display: flex;
    gap: 2rem;
}

.StilmirBenefitChecklist li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.StilmirBenefitChecklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

/* CONTACT FORM */
.StilmirContactFormWrapper {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #0d1117;
    border-radius: 8px;
    border: 1px solid rgba(79, 247, 255, 0.1);
}

.StilmirFormSubText {
    text-align: center;
    margin-bottom: 3rem;
    color: #A0A0A0;
}

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

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

.StilmirInputLabelField {
    font-size: 0.9rem;
    color: #4FF7FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.StilmirTextInputControl, 
.StilmirTextAreaControl {
    background-color: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #FFF;
    font-family: inherit;
    transition: 0.3s;
}

.StilmirTextInputControl:focus, 
.StilmirTextAreaControl:focus {
    outline: none;
    border-color: #4FF7FF;
    box-shadow: 0 0 10px rgba(79, 247, 255, 0.2);
}

.StilmirCheckboxLabelContainer {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.StilmirHiddenCheckboxInput {
    display: none;
}

.StilmirCustomCheckboxVisual {
    width: 20px;
    height: 20px;
    border: 1px solid #4FF7FF;
    display: inline-block;
    position: relative;
}

.StilmirHiddenCheckboxInput:checked + .StilmirCustomCheckboxVisual::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #4FF7FF;
    top: 4px;
    left: 4px;
}

.StilmirSubmitFormBtn {
    background-color: #4FF7FF;
    color: #07090C;
    border: none;
    padding: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.StilmirSubmitFormBtn:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px #4FF7FF;
}

/* FOOTER */
.StilmirFooterMainContainer {
    background-color: #050709;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(79, 247, 255, 0.1);
    text-align: center;
}

.StilmirFooterContentTop {
    margin-bottom: 3rem;
}

.StilmirFooterProjectBranding {
    font-size: 1.5rem;
    color: #4FF7FF;
    font-weight: 800;
    margin-bottom: 1rem;
}

.StilmirFooterLegalLinksRow {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.StilmirLegalDocLink {
    font-size: 0.85rem;
    color: #777;
}

.StilmirLegalDocLink:hover {
    color: #4FF7FF;
}

.StilmirMedicalDisclaimerFooter {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .StilmirHeroFlexWrapper, 
    .StilmirTextAndThoughtsWrapper, 
    .StilmirPricingCardsGrid, 
    .StilmirAudienceTwoColGrid, 
    .StilmirPracticeFlexWrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .StilmirHeroMainHeadline {
        font-size: 2.5rem;
    }

    .StilmirPricingPackageCard {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .StilmirFeaturedPackageCard {
        transform: none;
    }

    .StilmirHeroImageColumnSide {
        order: -1;
    }

    .StilmirBurgerIconLabel {
        display: flex;
    }

    .StilmirNavLinksListItems {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #07090C;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid #4FF7FF;
    }

    .StilmirMenuInputCheckbox:checked ~ .StilmirNavLinksListItems {
        display: flex;
    }
}

@media (max-width: 600px) {
    .StilmirPracticeBenefitsTwoCols {
        flex-direction: column;
    }
    
    .StilmirHeroMainHeadline {
        font-size: 2rem;
    }
}