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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #020617;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Neon Glow Effect Classes */
.AbCdEfGhIjKl {
    position: relative;
}

/* Header & Nav */
.MnHdrSctnAa {
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid #38bdf8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
}

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

.LgoTxtDdEeFf {
    font-size: 1.8rem;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #38bdf8;
}

.NvgtnMnuNnOo {
    display: flex;
}

.NvlStPpQqRrS {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.NvLnkAaBbCcD {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.NvLnkAaBbCcD:hover {
    color: #38bdf8;
    text-shadow: 0 0 8px #38bdf8;
}

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

.BrgrBtnKkLlM {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.BrgrBtnKkLlM span {
    width: 30px;
    height: 3px;
    background: #38bdf8;
    transition: 0.3s;
}

/* Decorative Panel (Variant 8) */
.DcrtvPnlVvWw {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, #020617 0%, rgba(56, 189, 248, 0.1) 50%, #020617 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

/* Section Headings */
.SctnHdPpQqRrS, .SctnHdIiJjKkL, .SctnHdE1F1G1, .SctnHdO1P1Q1, .SctnHdY1Z1A2, .SctnHdK2L2M2, .SctnHdL3M3N3, .SctnHdS4T4U4 {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.SctnHdPpQqRrS::after, .SctnHdIiJjKkL::after, .SctnHdL3M3N3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

/* HERO Section (Variant 10) */
.HroSctnAaBbCc {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.HroCntnrDdEeF {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.HroTxtBlckGgH {
    flex: 1;
    min-width: 300px;
}

.HroH1TtUuVvW {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.HroPggRrSsTt {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.HroImgBlckDdEe {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.HroImgFfGgHhIi {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 1px solid #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
    border-radius: 8px;
    object-fit: cover;
}

.HroBtnWrpUuVv {
    margin-top: 2rem;
}

.BtnCtaZzAaBbCc {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.BtnCtaZzAaBbCc:hover {
    background: #38bdf8;
    color: #020617;
    box-shadow: 0 0 20px #38bdf8;
}

/* FAQ Section (Variant 13) */
.FaqSctnJjKkLl {
    padding: 100px 20px;
    background: rgba(56, 189, 248, 0.02);
}

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

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

.FaqItmXxYyZzA {
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-left: 5px solid #38bdf8; /* Variant 13: Accent line left */
    border-radius: 4px;
    overflow: hidden;
}

.FaqSmryBbCcDd {
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.3s;
}

.FaqSmryBbCcDd:hover {
    background: rgba(56, 189, 248, 0.1);
}

.FaqAnswEeFfGg {
    padding: 1rem 1.2rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

/* Practitioner Word (Variant 5) */
.ExpSctnHhIiJj {
    padding: 100px 20px;
    text-align: center;
    background: #020617;
}

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

.ExpQtNnOoPpQq {
    font-size: 1.8rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.ExpLneRrSsTtUu {
    width: 150px;
    height: 1px;
    background: #22c55e;
    margin: 2rem auto;
}

.ExpNmVvWwXxYy {
    font-size: 1.3rem;
    font-weight: bold;
    color: #22c55e;
    display: block;
}

/* Regular Practice (Variant 8) */
.BnftSctnZzAaB {
    padding: 100px 20px;
    background: rgba(34, 197, 94, 0.02);
}

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

.BnftTxtFfGgHh {
    flex: 1.2;
    min-width: 300px;
}

.BnftLstMmNnOo {
    list-style: none;
    counter-reset: my-counter;
}

.BnftItmPpQqRr {
    counter-increment: my-counter;
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;
    position: relative;
}

.BnftItmPpQqRr::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #22c55e;
    color: #020617;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 10px #22c55e;
}

.BnftImgSsTtUuV {
    flex: 0.8;
    min-width: 300px;
}

.BnftImgWwXxYyZ {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

/* Article Sections (Variant 13) */
.ArtclSctnA1B, .ArtclSctnK1L, .ArtclSctnU1V {
    padding: 80px 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

.ArtclCntnrC1D, .ArtclCntnrM1N, .ArtclCntnrW1X {
    max-width: 1000px;
    margin: 0 auto;
}

.ArtclTxtH1I1J1, .ArtclTxtR1S1T1, .ArtclTxtB2C2D2 {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.ArtclTxtH1I1J1 h3, .ArtclTxtR1S1T1 h3, .ArtclTxtB2C2D2 h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #38bdf8;
}

.ArtclTxtH1I1J1 p, .ArtclTxtR1S1T1 p, .ArtclTxtB2C2D2 p {
    margin-bottom: 1.2rem;
}

.ArtclTxtH1I1J1 ul {
    margin-left: 2rem;
    list-style: square;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

/* Who it fits (Variant 15) */
.WhoSctnE2F2G {
    padding: 100px 20px;
    background: #0f172a;
}

.WhoCntnrH2I2J {
    max-width: 1200px;
    margin: 0 auto;
}

.WhoIntrN2O2P {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #94a3b8;
}

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

.WhoItmT2U2V2 {
    width: calc(33.333% - 20px);
    min-width: 280px;
    background: #020617;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: transform 0.3s ease;
}

.WhoItmT2U2V2:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
}

.WhoIcnW2X2Y2 {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 1rem;
}

.WhoTtlZ2A3B3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.WhoDscC3D3E3 {
    font-size: 1rem;
    color: #94a3b8;
}

/* Pricing (Variant 13) */
.PrcSctnF3G3H {
    padding: 100px 20px;
    background: #020617;
}

.PrcCntnrI3J3K {
    max-width: 1200px;
    margin: 0 auto;
}

.PrcGrdO3P3Q3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 3rem;
}

.PrcCrdR3S3T3 {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #0f172a;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.PrcHghlG4H4I {
    border: 2px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
    transform: scale(1.05);
}

.PrcTtlU3V3W3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.PrcValX3Y3Z3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 2rem;
}

.PrcFeatA4B4C {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.PrcFeatA4B4C li {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
}

.PrcBtnD4E4F {
    padding: 0.8rem 1.5rem;
    background: #38bdf8;
    color: #020617;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.PrcBtnD4E4F:hover {
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e;
}

.PrcDsclJ4K4L {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 2rem;
}

/* Form Section */
.FrmSctnM4N4O {
    padding: 100px 20px;
    background: #0f172a;
}

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

.FrmSubV4W4X4 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #94a3b8;
}

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

.FrmInptE5F5G, .FrmTxtA5H5I {
    width: 100%;
    padding: 1rem;
    background: #020617;
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.FrmInptE5F5G:focus, .FrmTxtA5H5I:focus {
    border-color: #38bdf8;
}

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

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

.FrmChckJ5K5L a {
    color: #38bdf8;
}

.FrmBtnP5Q5R {
    padding: 1rem;
    background: #38bdf8;
    border: none;
    color: #020617;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.FrmBtnP5Q5R:hover {
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e;
}

/* Footer */
.FtrSctnS5T5U {
    padding: 60px 20px;
    background: #020617;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    text-align: center;
}

.FtrCntnrV5W5X {
    max-width: 1200px;
    margin: 0 auto;
}

.FtrCprghtY5Z5A {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #f8fafc;
}

.FtrMailB6C6D {
    margin-bottom: 2rem;
}

.FtrMailB6C6D a {
    color: #38bdf8;
    text-decoration: none;
}

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

.FtrLnksE6F6G a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
}

.FtrLnksE6F6G a:hover {
    color: #38bdf8;
}

.DsclmrBtmH6I6J {
    background: #000;
    padding: 10px;
    font-size: 0.75rem;
    text-align: center;
    color: #475569;
}

/* Responsiveness */
@media (max-width: 768px) {
    .HroH1TtUuVvW {
        font-size: 2.2rem;
    }
    .NvgtnMnuNnOo {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #020617;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: 0.4s;
    }
    .NvlStPpQqRrS {
        flex-direction: column;
        text-align: center;
    }
    .MnuChckbxJj:checked ~ .NvgtnMnuNnOo {
        left: 0;
    }
    .BrgrBtnKkLlM {
        display: flex;
    }
    .WhoItmT2U2V2 {
        width: 100%;
    }
    .PrcCrdR3S3T3 {
        max-width: 100%;
        transform: scale(1) !important;
    }
    .HroCntnrDdEeF, .BnftCntnrCcDdE {
        flex-direction: column;
    }
    .HroImgBlckDdEe, .BnftImgSsTtUuV {
        order: -1;
    }
}