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

html {
    scroll-behavior: smooth;
}

body.WxyPntBdyRoot {
    background-color: #020617;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.WxyPntCntnrTop, .WxyPntCntnrMid, .WxyPntCntnrFlex {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER STYLE */
.WxyPntHdrSctn {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(2, 6, 23, 0.95);
}

.WxyPntCntnrTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.WxyPntLgoTxt {
    font-size: 24px;
    font-weight: 800;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.WxyPntHdrBrdr {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

.WxyPntNavLst {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.WxyPntNavLnk:hover {
    color: #38bdf8;
}

/* MOBILE BURGER */
.WxyPntHdnTggle {
    display: none;
}

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

.WxyPntBrgrIcon span {
    width: 30px;
    height: 3px;
    background-color: #22c55e;
    transition: 0.3s;
}

/* HERO SECTION */
.WxyPntHroSctn {
    padding: 100px 0;
}

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

.WxyPntHroTxtCol {
    flex: 1;
}

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

.WxyPntHroTtl {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.WxyPntHroSub {
    font-size: 20px;
    color: #38bdf8;
    margin-bottom: 20px;
    font-weight: 600;
}

.WxyPntHroDsc {
    margin-bottom: 15px;
    color: #94a3b8;
}

.WxyPntCtaBtn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #22c55e;
    color: #020617;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    margin-top: 20px;
}

.WxyPntCtaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.WxyPntImgRel {
    position: relative;
    border: 2px solid #22c55e;
    padding: 10px;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

.WxyPntMnImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.WxyPntFltCrd {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #38bdf8;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.WxyPntFltCrd1 {
    top: 10%;
    left: -20px;
}

.WxyPntFltCrd2 {
    bottom: 15%;
    right: -20px;
}

.WxyPntFltVal {
    font-size: 24px;
    font-weight: 800;
    color: #38bdf8;
}

.WxyPntFltLbl {
    font-size: 12px;
    text-transform: uppercase;
}

/* SERVICES SECTION */
.WxyPntSrvSctn {
    padding: 80px 0;
    background: linear-gradient(180deg, #020617, #0f172a);
}

.WxyPntSctTtl {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}

.WxyPntSctTtl::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #22c55e;
    margin: 15px auto 0;
}

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

.WxyPntSrvCrd {
    background: #1e293b;
    border: 1px solid #334155;
    width: 350px;
    padding: 40px 30px;
    border-radius: 12px;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.WxyPntSrvCrdPop {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
    transform: scale(1.05);
}

.WxyPntSrvHdr {
    margin-bottom: 25px;
    text-align: center;
}

.WxyPntSrvTtl {
    font-size: 24px;
    margin-bottom: 10px;
}

.WxyPntSrvPrc {
    font-size: 32px;
    font-weight: 800;
    color: #22c55e;
}

.WxyPntSrvDet {
    margin-bottom: 30px;
}

.WxyPntSrvSum {
    cursor: pointer;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 10px;
    outline: none;
}

.WxyPntSrvLst {
    list-style: none;
    margin-top: 15px;
}

.WxyPntSrvLst li {
    padding: 5px 0;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.WxyPntSrvBtn {
    margin-top: auto;
    text-align: center;
    padding: 12px;
    border: 1px solid #22c55e;
    text-decoration: none;
    color: #22c55e;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.WxyPntSrvBtn:hover {
    background: #22c55e;
    color: #020617;
}

/* WHO SECTION */
.WxyPntWhmSctn {
    padding: 100px 0;
}

.WxyPntWhmIntr {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #94a3b8;
    font-size: 18px;
}

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

.WxyPntGlwItm {
    flex: 1 1 300px;
    background: #0f172a;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.05);
    transition: 0.3s;
}

.WxyPntGlwItm:hover {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
    transform: translateY(-5px);
}

.WxyPntGlwTtl {
    color: #38bdf8;
    font-size: 20px;
    margin-bottom: 15px;
}

/* FAQ SECTION */
.WxyPntFaqSctn {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

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

.WxyPntFaqItm {
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
}

.WxyPntFaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    background: #1e293b;
    border-bottom: 1px solid transparent;
}

.WxyPntFaqItm[open] .WxyPntFaqSum {
    border-bottom: 1px solid #334155;
    color: #22c55e;
}

.WxyPntFaqAns {
    padding: 20px;
    color: #cbd5e1;
}

/* PRACTICE SECTION (BENEFITS) */
.WxyPntPrctSctn {
    padding: 100px 0;
    background: #020617;
}

.WxyPntCntnrFlexRev {
    flex-direction: row-reverse;
}

.WxyPntPrctTxtCol {
    flex: 1.2;
}

.WxyPntPrctImgCol {
    flex: 0.8;
}

.WxyPntPrctTxt {
    margin-bottom: 25px;
    font-size: 18px;
}

.WxyPntPrctLst {
    list-style: none;
    margin-bottom: 30px;
}

.WxyPntPrctLst li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.WxyPntPrctLst li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.WxyPntSmryCrd {
    background: rgba(34, 197, 94, 0.1);
    border: 1px dashed #22c55e;
    padding: 20px;
    border-radius: 8px;
}

.WxyPntPrctImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
}

/* QUOTE SECTION */
.WxyPntQteSctn {
    padding: 120px 0;
    background: #0f172a;
    text-align: center;
}

.WxyPntMainQte {
    font-size: 32px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e2e8f0;
    line-height: 1.4;
}

.WxyPntQteSep {
    width: 100px;
    height: 1px;
    background: #38bdf8;
    margin: 0 auto 20px;
}

.WxyPntQteAuth {
    font-size: 18px;
    color: #38bdf8;
    font-weight: 700;
}

/* EXTRA TEXT SECTION */
.WxyPntXtraSctn {
    padding: 100px 0;
}

.WxyPntTxtCrdGrd {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.WxyPntTxtCrd {
    flex: 1 1 350px;
    background: #020617;
    border: 1px solid #1e293b;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.WxyPntTxtCrd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
}

.WxyPntTxtCrdTtl {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.WxyPntTxtCrdTxt {
    margin-bottom: 15px;
    color: #94a3b8;
}

.WxyPntTxtCrdLst {
    list-style: square;
    padding-left: 20px;
    color: #22c55e;
}

/* FORM SECTION */
.WxyPntFrmSctn {
    padding: 100px 0;
    background: #0f172a;
}

.WxyPntFrmBx {
    max-width: 600px;
    margin: 0 auto;
    background: #020617;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #334155;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.WxyPntFrmTtl {
    text-align: center;
    margin-bottom: 10px;
}

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

.WxyPntInpGrp {
    margin-bottom: 20px;
}

.WxyPntInpLbl {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.WxyPntInp, .WxyPntTxtAr {
    width: 100%;
    padding: 12px 15px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.WxyPntInp:focus, .WxyPntTxtAr:focus {
    border-color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

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

.WxyPntChkGrp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.WxyPntChk {
    margin-top: 4px;
}

.WxyPntChkLbl {
    font-size: 13px;
    color: #94a3b8;
}

.WxyPntChkLbl a {
    color: #38bdf8;
}

.WxyPntSbmBtn {
    width: 100%;
    padding: 15px;
    background: #22c55e;
    border: none;
    color: #020617;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.WxyPntSbmBtn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* FOOTER SECTION */
.WxyPntFtrSctn {
    padding: 60px 0;
    background: #020617;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.WxyPntFtrCpy {
    margin-bottom: 10px;
}

.WxyPntFtrEml, .WxyPntFtrPhn {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 5px;
}

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

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

.WxyPntFtrLnk {
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.WxyPntFtrLnk:hover {
    color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .WxyPntCntnrFlex {
        flex-direction: column;
        text-align: center;
    }
    .WxyPntCntnrFlexRev {
        flex-direction: column;
    }
    .WxyPntHroTtl {
        font-size: 36px;
    }
    .WxyPntFltCrd {
        display: none;
    }
    .WxyPntSrvCrdPop {
        transform: none;
    }
}

@media (max-width: 768px) {
    .WxyPntBrgrIcon {
        display: flex;
    }
    .WxyPntNavMn {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #020617;
        padding: 40px 20px;
        border-bottom: 2px solid #22c55e;
    }
    .WxyPntNavLst {
        flex-direction: column;
        align-items: center;
    }
    .WxyPntHdnTggle:checked ~ .WxyPntNavMn {
        display: block;
    }
    .WxyPntHdnTggle:checked ~ .WxyPntBrgrIcon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .WxyPntHdnTggle:checked ~ .WxyPntBrgrIcon span:nth-child(2) {
        opacity: 0;
    }
    .WxyPntHdnTggle:checked ~ .WxyPntBrgrIcon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .WxyPntFrmBx {
        padding: 30px 20px;
    }
    .WxyPntMainQte {
        font-size: 24px;
    }
}

/* Додаткові стилі для "світлових рамок" */
.WxyPntSrvCrd, .WxyPntGlwItm, .WxyPntTxtCrd, .WxyPntFrmBx {
    position: relative;
}

.WxyPntSrvCrd::after, .WxyPntGlwItm::after, .WxyPntTxtCrd::after, .WxyPntFrmBx::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    pointer-events: none;
    transition: 0.3s;
}

.WxyPntSrvCrd:hover::after, .WxyPntGlwItm:hover::after, .WxyPntTxtCrd:hover::after {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: inset 0 0 10px rgba(34, 197, 94, 0.2);
}