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

html {
    scroll-behavior: smooth;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #04131A;
}
::-webkit-scrollbar-thumb {
    background: #5FF6FF;
    border-radius: 4px;
}

/* Header & Nav */
.HdrKlzmXpWqR {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 19, 26, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(95, 246, 255, 0.2);
}

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

.LgoTxtArctIc {
    font-size: 28px;
    font-weight: 800;
    color: #5FF6FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(95, 246, 255, 0.5);
}

.NavLnkQrstPw {
    display: flex;
    gap: 30px;
}

.AncLinkJklMn {
    text-decoration: none;
    color: #E2E8F0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.AncLinkJklMn:hover {
    color: #5FF6FF;
    text-shadow: 0 0 8px #5FF6FF;
}

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

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

.TglBtnMnUvW span {
    display: block;
    width: 25px;
    height: 2px;
    background: #5FF6FF;
    transition: 0.3s;
}

/* Decoration */
.DcrLineArctIc {
    height: 4px;
    background: linear-gradient(90deg, #04131A, #5FF6FF, #04131A);
    margin-top: 70px;
}

.DscBnrArctIc {
    background: rgba(95, 246, 255, 0.05);
    color: #5FF6FF;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(95, 246, 255, 0.1);
    font-style: italic;
}

/* Hero Section */
.HroSctVbnMlk {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.HroCntnrArIc {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.HroMainImgXyz {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(95, 246, 255, 0.2);
    filter: brightness(0.8) contrast(1.1);
    border: 1px solid rgba(95, 246, 255, 0.3);
}

.HroTxtColDef {
    flex: 1;
}

.HroMainTtlGlow {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(95, 246, 255, 0.3);
}

.HroSubTtlArIc {
    font-size: 20px;
    color: #5FF6FF;
    margin-bottom: 20px;
    font-weight: 500;
}

.HroPghTxtArIc {
    font-size: 16px;
    color: #94A3B8;
    margin-bottom: 20px;
}

/* Buttons */
.BtnMainArctIc {
    display: inline-block;
    padding: 16px 40px;
    background: #5FF6FF;
    color: #04131A;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(95, 246, 255, 0.4);
}

.BtnMainArctIc:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #5FF6FF;
}

.BtnScndArctIc {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: #5FF6FF;
    border: 1px solid #5FF6FF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.BtnScndArctIc:hover {
    background: rgba(95, 246, 255, 0.1);
    box-shadow: 0 0 15px rgba(95, 246, 255, 0.3);
}

/* Practice Section */
.PrctcSctXyzAb {
    padding: 100px 20px;
    background: rgba(95, 246, 255, 0.02);
}

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

.PrctcTxtColGh {
    flex: 1.2;
}

.PrctcImgColIj {
    flex: 0.8;
}

.PrctcImgArctIc {
    width: 100%;
    border-radius: 15px;
    border-left: 2px solid #5FF6FF;
    border-bottom: 2px solid #5FF6FF;
}

.SctTtlArctIc {
    font-size: 36px;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.SctTtlArctIc span {
    color: #5FF6FF;
    margin-right: 10px;
}

.BnftCrdWrpIc {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.BnftCrdArctIc {
    flex: 1 1 calc(50% - 10px);
    background: rgba(15, 23, 42, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(95, 246, 255, 0.1);
    transition: 0.3s;
}

.BnftCrdArctIc:hover {
    border-color: #5FF6FF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.BnftTtlArctIc {
    color: #5FF6FF;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Text Sections & Checklist */
.TxtSctVbnMlk {
    padding: 80px 20px;
}

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

.AltBkgArctIc {
    background: #061A23;
}

.ChckLstWrpIc {
    margin: 40px 0;
}

.ChckItmArctIc {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(95, 246, 255, 0.1);
}

.ChckMkrArctIc {
    font-size: 24px;
    font-weight: 900;
    color: #5FF6FF;
    font-family: monospace;
}

.ChckTxtArctIc {
    font-size: 16px;
    color: #CBD5E1;
}

.PghLrgArctIc {
    font-size: 18px;
    color: #5FF6FF;
    margin-top: 30px;
}

.PghRegArctIc {
    margin-bottom: 20px;
    color: #94A3B8;
}

.TxtLstArctIc {
    list-style: none;
    margin: 30px 0;
}

.TxtLstArctIc li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #E2E8F0;
}

.TxtLstArctIc li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #5FF6FF;
    font-weight: bold;
}

/* Packages */
.PckgSctArctIc {
    padding: 100px 20px;
}

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

.CenteredIc {
    text-align: center;
}

.PckgGrdArctIc {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.PckgCrdArctIc {
    flex: 1;
    background: rgba(15, 23, 42, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(95, 246, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.FeaturedIc {
    border: 2px solid #5FF6FF;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(95, 246, 255, 0.15);
    position: relative;
}

.FtrLblArctIc {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #5FF6FF;
    color: #04131A;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
}

.PckgTtlArctIc {
    font-size: 24px;
    margin-bottom: 20px;
}

.PckgPrcArctIc {
    font-size: 42px;
    font-weight: 800;
    color: #5FF6FF;
    margin-bottom: 30px;
}

.PckgLstArctIc {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.PckgLstArctIc li {
    padding: 10px 0;
    color: #94A3B8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Audience */
.AudSctVbnMlk {
    padding: 100px 20px;
    background: linear-gradient(180deg, #04131A, #08202b);
}

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

.AudColsArctIc {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.AudLstArctIc {
    flex: 1;
    list-style: none;
}

.AudLstArctIc li {
    padding: 15px;
    background: rgba(95, 246, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #5FF6FF;
}

/* FAQ Section */
.FaqSctArctIc {
    padding: 100px 20px;
}

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

.FaqColsArctIc {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.FaqColItmIc {
    flex: 1;
}

.DtlArctIc {
    margin-bottom: 15px;
    background: #0B1E26;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(95, 246, 255, 0.1);
}

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

.SumArctIc::after {
    content: '+';
    font-size: 20px;
}

.DtlArctIc[open] .SumArctIc::after {
    content: '−';
}

.DtlCntArctIc {
    padding: 0 20px 20px 20px;
    color: #94A3B8;
    font-size: 15px;
}

/* Quote Section */
.QotSctArctIc {
    padding: 120px 20px;
    text-align: center;
}

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

.QotMainArctIc {
    font-size: 32px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.4;
}

.QotLineArctIc {
    width: 60px;
    height: 2px;
    background: #5FF6FF;
    margin: 0 auto 20px;
}

.QotAuthArctIc {
    font-size: 18px;
    color: #5FF6FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Form Section */
.FrmSctArctIc {
    padding: 100px 20px;
    background: rgba(95, 246, 255, 0.03);
}

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

.FrmSubArctIc {
    text-align: center;
    color: #94A3B8;
    margin-bottom: 40px;
}

.InpGrpArctIc {
    margin-bottom: 20px;
}

.InpGrpArctIc label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #5FF6FF;
}

.InpFieldArIc, .TxtAreFieldIc {
    width: 100%;
    background: #0B1E26;
    border: 1px solid rgba(95, 246, 255, 0.2);
    padding: 15px;
    color: #FFF;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.InpFieldArIc:focus, .TxtAreFieldIc:focus {
    border-color: #5FF6FF;
    box-shadow: 0 0 10px rgba(95, 246, 255, 0.2);
}

.TxtAreFieldIc {
    height: 120px;
    resize: vertical;
}

.ChkGrpArctIc {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.ChkGrpArctIc a {
    color: #5FF6FF;
}

.BtnFormArctIc {
    width: 100%;
    padding: 18px;
    background: #5FF6FF;
    border: none;
    border-radius: 4px;
    color: #04131A;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.BtnFormArctIc:hover {
    box-shadow: 0 0 20px #5FF6FF;
    transform: translateY(-2px);
}

/* Footer */
.FtrSctArctIc {
    padding: 80px 20px;
    background: #020A0E;
    border-top: 1px solid rgba(95, 246, 255, 0.1);
    text-align: center;
}

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

.FtrMainTxtIc {
    font-size: 18px;
    color: #5FF6FF;
    margin-bottom: 10px;
}

.FtrEmlArctIc, .FtrLocIc {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 5px;
}

.FtrEmlArctIc a {
    color: #5FF6FF;
    text-decoration: none;
}

.FtrLnkRowIc {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.FtrLnkRowIc a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.FtrLnkRowIc a:hover {
    color: #5FF6FF;
}

.FtrDscArctIc {
    font-size: 11px;
    color: #475569;
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .HroCntnrArIc, .PrctcCntnrArIc {
        flex-direction: column;
    }
    .HroImgColAbc, .PrctcImgColIj {
        order: -1;
        width: 100%;
    }
    .HroMainTtlGlow {
        font-size: 40px;
    }
    .PckgGrdArctIc {
        flex-direction: column;
        align-items: center;
    }
    .PckgCrdArctIc {
        width: 100%;
        max-width: 450px;
    }
    .FeaturedIc {
        transform: scale(1);
        margin: 20px 0;
    }
    .FaqColsArctIc, .AudColsArctIc {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .TglBtnMnUvW {
        display: flex;
    }
    .NavLnkQrstPw {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #04131A;
        flex-direction: column;
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid #5FF6FF;
    }
    .TglInpAbcXyz:checked ~ .NavLnkQrstPw {
        display: flex;
    }
}