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

html {
    scroll-behavior: smooth;
}

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

/* HEADER & NAV */
.HdrMainSectB {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid #19E8FF;
    z-index: 1000;
}

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

.HdrLogoTxtD {
    font-size: 28px;
    font-weight: 800;
    color: #19E8FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(25, 232, 255, 0.5);
}

.NavUlItemsI {
    list-style: none;
    display: flex;
    gap: 20px;
}

.NavAncLnkLM {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.NavAncLnkLM:hover {
    color: #19E8FF;
    text-shadow: 0 0 8px rgba(25, 232, 255, 0.8);
}

/* BURGER MENU (NO JS) */
.BrgMnuTglE {
    display: none;
}

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

.BrgLinItmG {
    width: 25px;
    height: 3px;
    background-color: #19E8FF;
    border-radius: 2px;
}

/* PROGRESS BAR */
.HdrPrgBarIn {
    height: 3px;
    background: linear-gradient(90deg, #19E8FF, #008fa0);
    width: 0%;
    animation: progressLine linear;
    animation-timeline: scroll();
}

@keyframes progressLine {
    to { width: 100%; }
}

/* HERO SECTION */
.HroSectWrpO {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.HroCntInnrP {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.HroImgSideQ {
    flex: 1 1 450px;
    position: relative;
}

.HroMainImgS {
    width: 100%;
    height: auto;
    border: 1px solid #19E8FF;
    box-shadow: 0 0 20px rgba(25, 232, 255, 0.2);
    border-radius: 4px;
    object-fit: cover;
}

.HroBdgMtkR {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #19E8FF;
    color: #121212;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(25, 232, 255, 0.5);
}

.HroTxtSideT {
    flex: 1 1 450px;
}

.HroMainTtlU {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 800;
}

.HroSubTtlV {
    font-size: 20px;
    color: #19E8FF;
    margin-bottom: 20px;
    font-weight: 600;
}

.HroDscTxtW {
    font-size: 16px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.HroCtaLnkY {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #19E8FF;
    color: #19E8FF;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 0 5px rgba(25, 232, 255, 0.3);
}

.HroCtaLnkY:hover {
    background-color: #19E8FF;
    color: #121212;
    box-shadow: 0 0 20px rgba(25, 232, 255, 0.6);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(25, 232, 255, 0.6); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(25, 232, 255, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(25, 232, 255, 0.6); }
}

/* SERVICES SECTION */
.SrvSectWrpZ {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.SrvMainTtlAA {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.SrvGridWrpBB {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.SrvCrdItmCC {
    background-color: #121212;
    border: 1px solid #333;
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.SrvCrdItmCC:hover {
    border-color: #19E8FF;
    transform: translateY(-10px);
}

.SrvCrdTtlDD {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
}

.SrvCrdPrcEE {
    font-size: 32px;
    color: #19E8FF;
    font-weight: 800;
    margin-bottom: 25px;
}

.SrvCrdLstFF {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
}

.SrvCrdLiGG {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
    color: #999;
    text-align: center;
}

.SrvCrdLiGG:last-child {
    border-bottom: none;
}

.SrvCrdBtnHH {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: #19E8FF;
    color: #121212;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.SrvCrdBtnHH:hover {
    background-color: #ffffff;
}

/* TEXT SECTIONS */
.TxtSectWrpII {
    padding: 60px 20px;
}

.TxtSectInnrJJ {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1e1e1e;
    padding: 50px;
    border-left: 4px solid #19E8FF;
}

.TxtSectHdrKK {
    font-size: 28px;
    margin-bottom: 30px;
    color: #19E8FF;
}

.TxtSectSepLL {
    height: 1px;
    background-color: #333;
    margin: 25px 0;
}

.TxtSectPphMM {
    font-size: 17px;
    color: #cccccc;
    margin-bottom: 0;
}

/* WHO IS IT FOR */
.WhoSectWrpNN {
    padding: 80px 20px;
    background-color: #121212;
}

.WhoIntrTxtOO {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.WhoMainTtlPP {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.WhoSubTxtQQ {
    color: #888;
}

.WhoGridLytRR {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.WhoCrdItmSS {
    background-color: #1e1e1e;
    padding: 30px;
    border: 1px solid #2a2a2a;
    transition: background 0.3s ease;
}

.WhoCrdItmSS:hover {
    background-color: #252525;
}

.WhoCrdTtlTT {
    color: #19E8FF;
    font-size: 20px;
    margin-bottom: 15px;
}

.WhoCrdDscUU {
    font-size: 15px;
    color: #aaa;
}

/* BENEFITS SECTION */
.RegSectWrpVV {
    padding: 100px 20px;
    background-color: #1a1a1a;
}

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

.RegTxtSideXX {
    flex: 1 1 500px;
}

.RegImgSideIJ {
    flex: 1 1 400px;
}

.RegMainTtlYY {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.RegDscTxtZZ {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.RegLstWrpAB {
    list-style: none;
    margin-bottom: 40px;
}

.RegLiItmCD {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #b0b0b0;
}

.RegLiItmCD::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #19E8FF;
    font-weight: bold;
}

.RegHghBoxEF {
    padding: 25px;
    background-color: #121212;
    border-right: 3px solid #19E8FF;
}

.RegHghTxtGH {
    font-style: italic;
    color: #19E8FF;
    font-size: 18px;
}

.RegMainImgKL {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #19E8FF;
    padding: 10px;
}

/* FAQ SECTION */
.FaqSectWrpMN {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.FaqMainTtlOP {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.FaqDetItmST {
    background-color: #1e1e1e;
    border: 1px solid #333;
    padding: 0;
}

.FaqSumTtlUV {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.FaqSumTtlUV:hover {
    color: #19E8FF;
}

.FaqSumTtlUV::after {
    content: "+";
    font-size: 20px;
    color: #19E8FF;
}

.FaqDetItmST[open] .FaqSumTtlUV::after {
    content: "−";
}

.FaqAnsCntWX {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #2a2a2a;
}

.FaqAnsTxtYZ {
    padding-top: 15px;
    color: #aaa;
    font-size: 15px;
}

/* EXPERT SECTION */
.ExpSectWrpAB {
    padding: 80px 20px;
    background-color: #121212;
}

.ExpCntInnrCD {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ExpImgWrpEF {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.ExpImgItmGH {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #19E8FF;
    padding: 5px;
}

.ExpQuotTxtKL {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    color: #ffffff;
}

.ExpCiteNmMN {
    font-size: 16px;
    color: #19E8FF;
    font-style: normal;
    font-weight: 700;
}

/* FORM SECTION */
.FrmSectWrpOP {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

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

.FrmMainTtlST {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.FrmSubTtlUV {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
}

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

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

.FrmLblEltCD {
    font-size: 14px;
    color: #19E8FF;
    text-transform: uppercase;
    font-weight: 600;
}

.FrmInpEltEF, .FrmAreaEltKL {
    padding: 15px;
    background-color: #121212;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.FrmInpEltEF:focus, .FrmAreaEltKL:focus {
    outline: none;
    border-color: #19E8FF;
}

.FrmChkBoxMN {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.FrmChkInpQR {
    margin-top: 5px;
}

.FrmChkLblST {
    font-size: 13px;
    color: #888;
}

.FrmPolAncUV {
    color: #19E8FF;
    text-decoration: none;
}

.FrmSubBtnWX {
    padding: 18px;
    background-color: #19E8FF;
    color: #121212;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.FrmSubBtnWX:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(25, 232, 255, 0.5);
}

/* FOOTER */
.FtrMainSectYZ {
    padding: 60px 20px;
    background-color: #0a0a0a;
    border-top: 1px solid #19E8FF;
    text-align: center;
}

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

.FtrCpyrTxtCD {
    margin-bottom: 10px;
    font-weight: 600;
}

.FtrMailTxtEF {
    margin-bottom: 25px;
    color: #888;
}

.FtrMailLnkGH {
    color: #19E8FF;
    text-decoration: none;
}

.FtrLnkRowIJ {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.FtrBtmLnkKL {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.FtrBtmLnkKL:hover {
    color: #19E8FF;
}

.FtrPhnTxtMN {
    color: #444;
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .HroMainTtlU { font-size: 36px; }
    .HroCntInnrP { flex-direction: column-reverse; }
}

@media (max-width: 768px) {
    .NavLnkListH {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #121212;
        padding: 20px;
        border-bottom: 1px solid #19E8FF;
    }
    
    .NavUlItemsI {
        flex-direction: column;
        align-items: center;
    }
    
    .BrgBtnIconF {
        display: flex;
    }
    
    .BrgMnuTglE:checked ~ .NavLnkListH {
        display: block;
    }

    .HroTxtSideT { text-align: center; }
    .TxtSectInnrJJ { padding: 30px 20px; }
    .RegCntInnrWW { flex-direction: column; }
}