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

:root {
    --bg-dark: #1f2937;
    --accent-orange: #f97316;
    --accent-pink: #fb7185;
    --soft-yellow: #fde68a;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --aurora-glow: radial-gradient(circle, rgba(251, 113, 133, 0.2) 0%, rgba(31, 41, 55, 0) 70%);
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.HdrContainerCl {
    background: rgba(31, 41, 55, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.LogoTxtMainCl {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.NavLinkItemCl {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.NavLinkItemCl:hover {
    color: var(--accent-pink);
}

.MnuCheckHidden {
    display: none;
}

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

.MnuBrgerBtnCl span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Pattern Strip */
.PttnrStripSub {
    height: 40px;
    background-color: #1a222e;
    background-image: radial-gradient(#374151 1px, transparent 1px);
    background-size: 15px 15px;
    width: 100%;
}

/* Main Layout */
.MainContentWrp {
    width: 100%;
}

/* Hero Section */
.HeroSectionCls {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.HeroTextSideCl {
    flex: 1;
}

.HeroMainTtlCl {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.HeroSubdescrCl {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.HeroCtaWrapCl {
    margin: 2.5rem 0;
}

.HeroBtnActionCl {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-orange);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.HeroBtnActionCl:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.5);
}

.HeroStatsGridCl {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.StatNumBoldCl {
    font-size: 2rem;
    font-weight: 800;
    color: var(--soft-yellow);
}

.StatTxtDescCl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.HeroImageMainCl {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}

.AuroraGlowHro {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(31, 41, 55, 0) 70%);
    z-index: 1;
}

/* Expert Quote */
.ExprtQuoteSctCl {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #1a202c;
}

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

.MainQuoteTxtCl {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.ExprtDividerCl {
    width: 80px;
    height: 2px;
    background: var(--accent-pink);
    margin: 2rem auto;
}

.ExprtNameAuthCl {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.ExprtTitlePosCl {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Regular Practice Section */
.PracticeMainSct {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.PrctcFlexGridCl {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.PrctcTxtColumnCl {
    flex: 1.2;
}

.SctTitleMainCl {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--soft-yellow);
}

.CenteredTxt {
    text-align: center;
}

.SctParagrphDsc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

.AdvntgCardItmCl {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    transition: background 0.3s;
}

.AdvntgCardItmCl:hover {
    background: rgba(255, 255, 255, 0.07);
}

.AdvntgIconCl {
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.AdvntgTtlCl {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.AdvntgDscCl {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.PrctcImgColumnCl {
    flex: 0.8;
    position: relative;
}

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

.AuroraGlowPrctc {
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(253, 230, 138, 0.1) 0%, rgba(31, 41, 55, 0) 70%);
    z-index: -1;
}

/* For Whom Section */
.ForWhomSctCl {
    padding: 6rem 2rem;
    background-color: #1a202c;
}

.ForWhomHdrCl {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.ForWhomGridCl {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.AudienceCardCl {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.AudienceCardCl:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
}

.AudienceAvtrCl {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.AudienceTtlCl {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--soft-yellow);
}

.AudienceTxtCl {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ Section */
.FaqSectionMainCl {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.FaqDoubleColCl {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.FaqDetailBoxCl {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.FaqSummryTxtCl {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    color: var(--text-light);
}

.FaqSummryTxtCl::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    color: var(--accent-orange);
}

.FaqDetailBoxCl[open] .FaqSummryTxtCl::after {
    content: '-';
}

.FaqAnswerTxtCl {
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.PricingSctWrapCl {
    padding: 6rem 2rem;
    background-color: #1a202c;
}

.PrcGridClsCont {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.PrcCardItemCl {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.FeaturedCardCl {
    border: 2px solid var(--accent-pink);
    transform: scale(1.05);
    background: #242f3e;
}

.PrcTtlBoxCl {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.PrcValBoxCl {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 2rem;
}

.PrcListFeatCl {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    display: inline-block;
}

.PrcListFeatCl li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.PrcListFeatCl li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
}

.PrcBtnOrderCl {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.PrcBtnOrderCl:hover {
    background: var(--accent-orange);
    color: #fff;
}

/* Extra Text Sections */
.ExtraTxtSctnCl {
    padding: 6rem 2rem;
}

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

.BgAltColorCl {
    background-color: #1a202c;
}

.TipsNumberedWrpCl {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.TipDigitCl {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(251, 113, 133, 0.2);
    line-height: 1;
}

.TipContentCl {
    flex: 1;
}

.TipSmallTtlCl {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--soft-yellow);
}

.TipDescTextCl {
    color: var(--text-muted);
}

/* Form Section */
.FormSectionMainCl {
    padding: 8rem 2rem;
    background: radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.1), transparent 50%);
}

.FormContainerCl {
    max-width: 650px;
    margin: 0 auto;
    background: #242f3e;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.FormSubTtlCl {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

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

.FormInputRowCl label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.InptFieldStl, .TxtareaFieldStl {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-dark);
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.InptFieldStl:focus, .TxtareaFieldStl:focus {
    border-color: var(--accent-pink);
}

.FormCheckRowCl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.FormCheckRowCl a {
    color: var(--accent-orange);
    text-decoration: none;
}

.FormSubmitBtnCl {
    padding: 1.2rem;
    background: var(--accent-pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.FormSubmitBtnCl:hover {
    background: #e11d48;
    transform: translateY(-2px);
}

/* Footer */
.FooterMainContainer {
    padding: 5rem 2rem;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.FooterBrandingCl {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.FooterCopyrightCl, .FooterEmailCl, .FooterPhoneCl {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.FooterEmailCl a {
    color: var(--text-light);
    text-decoration: none;
}

.FooterLinksRowCl {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.FtrLinkCl {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.FtrLinkCl:hover {
    color: var(--accent-pink);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .HeroContentWrp, .PrctcFlexGridCl {
        flex-direction: column;
    }
    .HeroMainTtlCl {
        font-size: 2.8rem;
    }
    .FaqDoubleColCl {
        flex-direction: column;
    }
    .FeaturedCardCl {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .HdrInnerWrprL {
        padding: 1rem;
    }
    .NavMainLinksCl {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 1.5rem;
    }
    .MnuBrgerBtnCl {
        display: flex;
    }
    #MnuTggleCheck:checked ~ .NavMainLinksCl {
        display: flex;
    }
    .HeroStatsGridCl {
        flex-direction: column;
    }
    .FormContainerCl {
        padding: 2rem;
    }
    .HeroMainTtlCl {
        font-size: 2.2rem;
    }
}