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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- VARIABLES --- */
:root {
    --primary-cyan: #22d3ee;
    --glow-cyan: rgba(34, 211, 238, 0.4);
    --soft-mint: #a7f3d0;
    --dark-bg: #0f172a;
    --light-slate: #e2e8f0;
    --card-bg: rgba(30, 41, 59, 0.7);
}

/* --- HEADER --- */
.NpClsHdrWrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-cyan);
}

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

.NpClsHdrLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow-cyan);
}

.NpClsHdrNavU {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.NpClsHdrNavA {
    color: var(--light-slate);
    font-weight: 500;
    font-size: 1rem;
}

.NpClsHdrNavA:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--glow-cyan);
}

.NpClsHdrTogI, .NpClsHdrTogL {
    display: none;
}

.NpClsHdrWave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(100%);
}

.NpClsHdrWave svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* --- HERO SECTION --- */
.NpClsHeroSec {
    padding: 10rem 1rem 5rem;
    display: flex;
    justify-content: center;
}

.NpClsHeroCont {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.NpClsHeroLCol {
    flex: 1;
}

.NpClsHeroImgC {
    border-radius: 20px;
    box-shadow: 0 0 30px var(--glow-cyan);
    border: 1px solid var(--primary-cyan);
}

.NpClsHeroRCol {
    flex: 1;
}

.NpClsHeroH1Tl {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 15px var(--glow-cyan);
}

.NpClsHeroDesc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-slate);
}

.NpClsHeroExpt {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-cyan);
}

.NpClsHeroExAv {
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
}

.NpClsHeroExNm {
    display: block;
    font-weight: bold;
    color: var(--primary-cyan);
}

.NpClsHeroExPs {
    font-size: 0.9rem;
    color: var(--soft-mint);
}

.NpClsHeroCtaB {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary-cyan);
    color: #0f172a;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--glow-cyan);
    margin-top: 1rem;
}

.NpClsHeroCtaB:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--primary-cyan);
}

/* --- QUOTE SECTION --- */
.NpClsQuoteSec {
    padding: 5rem 1rem;
    background: rgba(34, 211, 238, 0.05);
}

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

.NpClsQuoteBox {
    position: relative;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 30px;
}

.NpClsQuoteBox::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 8rem;
    color: var(--primary-cyan);
    opacity: 0.3;
}

.NpClsQuoteTxt {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.NpClsQuoteAut {
    text-align: right;
    color: var(--primary-cyan);
    font-weight: bold;
}

/* --- BENEFITS SECTION --- */
.NpClsBeneftSec {
    padding: 7rem 1rem;
}

.NpClsBeneftCnt {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.NpClsBeneftL {
    flex: 1.2;
}

.NpClsBeneftR {
    flex: 0.8;
}

.NpClsSectH2Tl {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.NpClsSectPtxt {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.NpClsBeneftLi {
    list-style: none;
    counter-reset: benefit-counter;
}

.NpClsBeneftIt {
    margin-bottom: 1.5rem;
    padding-left: 4rem;
    position: relative;
}

.NpClsBeneftIt::before {
    counter-increment: benefit-counter;
    content: counter(benefit-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-cyan);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 10px var(--glow-cyan);
}

.NpClsBeneftIm {
    border-radius: 20px;
    border: 1px solid var(--soft-mint);
}

/* --- TEXT BLOCK SECTIONS --- */
.NpClsTextB1Sec {
    padding: 5rem 1rem;
    background: #111b2e;
}

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

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

.NpClsTextB1Crd {
    flex: 1;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.NpClsTextB1Crd:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

.NpClsTextB1H3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.NpClsTextB2Sec {
    padding: 7rem 1rem;
}

.NpClsTextB2Cnt {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.NpClsTextB2Int {
    font-size: 1.4rem;
    color: var(--soft-mint);
    margin-bottom: 3rem;
}

.NpClsTextB2Bod {
    text-align: left;
    background: rgba(30, 41, 59, 0.4);
    padding: 3rem;
    border-radius: 20px;
    columns: 2;
    column-gap: 3rem;
}

.NpClsTextB2Bod p {
    margin-bottom: 1.5rem;
}

.NpClsTextB2Lis {
    list-style: none;
    margin-top: 2rem;
}

.NpClsTextB2Lis li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--primary-cyan);
}

.NpClsTextB2Lis li::before {
    content: "⚡";
    position: absolute;
    left: 0;
}

.NpClsTextB3Sec {
    padding: 5rem 1rem;
}

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

.NpClsTextB3Row {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem;
    border-radius: 40px;
    border-right: 5px solid var(--primary-cyan);
}

/* --- FAQ --- */
.NpClsFaqSectn {
    padding: 7rem 1rem;
}

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

.NpClsFaqDet {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.NpClsFaqSumm {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--soft-mint);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NpClsFaqSumm::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.NpClsFaqAns {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-slate);
}

/* --- PRICES --- */
.NpClsPriceSec {
    padding: 7rem 1rem;
    background: #0d1425;
}

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

.NpClsPriceGrd {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

.NpClsPriceCrd {
    flex: 1;
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.NpClsPricePop {
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
    transform: scale(1.05);
}

.NpClsPriceTit {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.NpClsPriceSub {
    color: var(--soft-mint);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.NpClsPriceVal {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
}

.NpClsPriceLi {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.NpClsPriceLi li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.NpClsPriceLi li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

.NpClsPriceBtn {
    padding: 1rem;
    background: var(--primary-cyan);
    color: #0f172a;
    font-weight: bold;
    border-radius: 10px;
}

/* --- TARGET AUDIENCE --- */
.NpClsTargetSec {
    padding: 7rem 1rem;
}

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

.NpClsTargetInt {
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.NpClsTargetGrd {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.NpClsTargetCrd {
    flex: 1 1 300px;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.NpClsTargetAv {
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

/* --- FORM SECTION --- */
.NpClsFormSectn {
    padding: 7rem 1rem;
    background: linear-gradient(0deg, #0f172a 0%, #16213e 100%);
}

.NpClsFormContnr {
    max-width: 700px;
    margin: 0 auto;
}

.NpClsFormSub {
    text-align: center;
    margin-bottom: 3rem;
}

.NpClsFormMain {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--primary-cyan);
}

.NpClsFormRow {
    margin-bottom: 1.5rem;
}

.NpClsFormLbl {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.NpClsFormInp, .NpClsFormTxt {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
}

.NpClsFormTxt {
    height: 120px;
    resize: none;
}

.NpClsFormChk {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.NpClsFormChk a {
    color: var(--primary-cyan);
}

.NpClsFormBtn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-cyan);
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--glow-cyan);
}

.NpClsFormDisc {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* --- FOOTER --- */
.NpClsFootWrap {
    padding: 5rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

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

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

.NpClsFootLinks a {
    color: var(--light-slate);
    font-size: 0.9rem;
}

.NpClsFootLinks a:hover {
    color: var(--primary-cyan);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .NpClsHeroCont, .NpClsBeneftCnt, .NpClsTextB1Grd, .NpClsPriceGrd {
        flex-direction: column;
    }
    .NpClsHeroSec { padding-top: 7rem; }
    .NpClsHeroH1Tl { font-size: 2.2rem; }
    .NpClsTextB2Bod { columns: 1; }
    .NpClsPricePop { transform: scale(1); margin: 1rem 0; }
}

@media (max-width: 768px) {
    .NpClsHdrNavM {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        padding: 2rem;
        border-bottom: 1px solid var(--primary-cyan);
    }
    .NpClsHdrTogL {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .NpClsHdrTogL span {
        width: 25px;
        height: 3px;
        background: var(--primary-cyan);
    }
    #NpMenuToggle:checked ~ .NpClsHdrNavM {
        display: block;
    }
    .NpClsHdrNavU {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}