/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Header */
.HdrKlsMnoPqr {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #1f2937;
}

.LgoTxtKlsAbc {
    font-size: 1.8rem;
    font-weight: 800;
    color: #bef264;
    letter-spacing: -1px;
}

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

.AncIteKlsPqr {
    text-decoration: none;
    color: #f7fee7;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.AncIteKlsPqr:hover {
    color: #00ffff;
}

.GlwLinKlsNop {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #00ffff;
    transition: width 0.4s ease, left 0.4s ease;
    pointer-events: none;
}

/* Header hover glow line logic (CSS only approximation) */
.AncIteKlsPqr:nth-child(1):hover ~ .GlwLinKlsNop { width: 12.5%; left: 0; }

/* Burger Menu */
.TglInpKlsDef {
    display: none;
}

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

.BrgBtnKlsGhi span {
    width: 30px;
    height: 3px;
    background: #bef264;
    transition: 0.3s;
}

/* Hero Section */
.HroSctKlsMno {
    padding: 100px 5% 60px;
}

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

.HroTxtKlsTuv {
    flex: 1;
}

.HroTitKlsWxy {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.IcoSmtKlsZab {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.HroDscKlsCde {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.HroImgKlsIjk {
    flex: 1;
}

.ImgElmKlsLmn {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* Buttons */
.CtaBtnKlsFgh {
    display: inline-block;
    padding: 16px 36px;
    background-color: #00ffff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.CtaBtnKlsFgh:hover {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Section Common */
h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #bef264;
    text-align: center;
}

/* For Whom Section */
.WhmSctKlsStu {
    padding: 80px 5%;
    background: #1e293b;
}

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

.WhmSubKlsBcd {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

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

.WhmCrdKlsHij {
    flex: 1 1 300px;
    background: #0f172a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: 0.3s;
}

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

.CrdIcoKlsKlm {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.CrdTitKlsNop {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Extra Text Sections */
.TxtSctKlsVwx, .TxtSctKlsAbc, .TxtSctKlsStu {
    padding: 80px 5%;
}

.TxtCntKlsYza, .TxtCntKlsDef {
    max-width: 900px;
    margin: 0 auto;
}

.TxtDscKlsEfg, .TxtDscKlsJkl, .TxtDscKlsBcd {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.StpGrdKlsHij {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.StpIteKlsKlm {
    flex: 1;
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
}

.StpNumKlsNop {
    font-size: 2rem;
    font-weight: 800;
    color: #84cc16;
    display: block;
    margin-bottom: 10px;
}

.TxtLstKlsMno {
    list-style: none;
    margin-top: 30px;
}

.TxtIteKlsPqr {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.TxtIteKlsPqr::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* Regular Practice Section */
.RglSctKlsYza {
    padding: 80px 5%;
    background: #0f172a;
}

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

.RglTxtKlsEfg {
    flex: 1;
}

.RglTitKlsHij {
    text-align: left;
}

.RglLstKlsNop {
    margin-top: 30px;
    list-style: none;
    counter-reset: practice-counter;
}

.RglIteKlsQrs {
    counter-increment: practice-counter;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.RglIteKlsQrs::before {
    content: counter(practice-counter);
    width: 40px;
    height: 40px;
    background: #84cc16;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.RglImgKlsStu {
    flex: 1;
}

/* Expert Section */
.ExpSctKlsBcd {
    padding: 100px 5%;
    background: #1e293b;
    text-align: center;
}

.ExpCntKlsEfg {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ExpImgWrapKls {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #00ffff;
    margin-bottom: 30px;
}

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

.ExpQotKlsNop {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #f7fee7;
}

.ExpNamKlsQrs {
    font-size: 1.4rem;
    font-weight: 700;
    color: #bef264;
}

/* FAQ Section */
.FaqSctKlsEfg {
    padding: 80px 5%;
}

.FaqCntKlsHij {
    max-width: 1000px;
    margin: 0 auto;
}

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

.FaqCrdKlsQrs {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.FaqCrdKlsQrs:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

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

.FaqSumKlsStu::after {
    content: "+";
    color: #00ffff;
    font-size: 1.5rem;
}

.FaqAnsKlsVwx {
    padding: 0 20px 20px;
    color: #cbd5e1;
}

/* Pricing Section */
.PrcSctKlsHij {
    padding: 80px 5%;
    background: #0f172a;
}

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

.PrcGrdKlsQrs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.PrcCrdKlsStu {
    flex: 1 1 300px;
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
}

.PrcBstKls {
    border-color: #84cc16;
    transform: scale(1.05);
    background: #1e293b;
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.1);
}

.PrcNamKlsVwx {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.PrcValKlsYza {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 25px;
}

.PrcLstKlsBcd {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.PrcLstKlsBcd li {
    margin-bottom: 12px;
    color: #cbd5e1;
}

.PrcInfKlsCde {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* Form Section */
.FrmSctKlsKlm {
    padding: 100px 5%;
    background: #1e293b;
}

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

.FrmSubKlsStu {
    text-align: center;
    margin-bottom: 40px;
}

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

.InpGrpKlsYza {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.LblKlsBcd {
    font-weight: 500;
}

.InpKlsEfg, .TxtArKlsHij {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #fff;
    font-size: 1rem;
}

.InpKlsEfg:focus, .TxtArKlsHij:focus {
    border-color: #00ffff;
    outline: none;
}

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

.ChkKlsNop {
    width: 20px;
    height: 20px;
    accent-color: #00ffff;
}

.SubBtnKls {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.FtrKlsAbc {
    padding: 60px 5%;
    background: #0f172a;
    border-top: 1px solid #1f2937;
    text-align: center;
}

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

.FtrCpyKlsGhi {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.FtrEmaKlsJkl {
    margin-bottom: 5px;
    color: #cbd5e1;
}

.FtrDscKlsMno {
    margin: 20px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.FtrLnkKlsPqr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.FtrLnkKlsPqr a {
    color: #84cc16;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .HroCntKlsQrs, .RglCntKlsBcd {
        flex-direction: column;
        text-align: center;
    }
    
    .HroTitKlsWxy {
        font-size: 2.5rem;
    }
    
    .StpGrdKlsHij {
        flex-direction: column;
    }

    .RglTitKlsHij {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .BrgBtnKlsGhi {
        display: flex;
    }

    .NavLnkKlsJkl {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        padding: 40px;
        text-align: center;
        border-bottom: 2px solid #00ffff;
    }

    .TglInpKlsDef:checked ~ .NavLnkKlsJkl {
        display: flex;
    }

    .PrcBstKls {
        transform: scale(1);
    }
}