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

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

.smrzcontmain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.smrzcontwide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.smrzheadmain {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #5AF3FF;
    padding: 15px 0;
}

.smrzheadflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smrzlogotext {
    font-size: 24px;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
}

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

.smrznaviteml {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.smrznaviteml:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px #5AF3FF;
}

/* BURGER */
.smrzburgerchk {
    display: none;
}

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

.smrzburgerbtn span {
    width: 25px;
    height: 3px;
    background: #5AF3FF;
    transition: 0.3s;
}

/* HERO SECTION */
.smrzherosect {
    padding: 100px 0;
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

.smrzherogrid {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.smrzheroprim {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
}

.smrzherogall {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.smrzherogall img {
    width: calc(33.333% - 10px);
    border: 1px solid rgba(90, 243, 255, 0.4);
    border-radius: 4px;
    transition: 0.3s;
}

.smrzherogall img:hover {
    border-color: #5AF3FF;
    transform: scale(1.05);
}

.smrzherotext {
    flex: 1.2;
}

.smrzmaintitl {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.smrzsubtitl {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 20px;
    font-weight: 600;
}

.smrzherodesc {
    margin-bottom: 15px;
    font-size: 17px;
    color: #bbb;
}

.smrzctabtnon {
    display: inline-block;
    padding: 18px 40px;
    background: #5AF3FF;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 0;
    text-transform: uppercase;
    margin-top: 20px;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.3);
}

.smrzctabtnon:hover {
    box-shadow: 0 0 30px #5AF3FF;
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* PRICE SECTION */
.smrzpricesec {
    padding: 100px 0;
    background: #0a0c0e;
}

.smrzsecttitl {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.smrzsecttitl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #5AF3FF;
}

.smrzpricegrd {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.smrzpricecrd {
    flex: 1;
    min-width: 220px;
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.smrzpricecrd:hover {
    border-color: #5AF3FF;
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.smrzspecial {
    border: 2px solid #5AF3FF;
    transform: scale(1.05);
}

.smrzpricetag {
    font-size: 22px;
    font-weight: 700;
    color: #5AF3FF;
    margin-bottom: 15px;
}

.smrzpriceval {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.smrzoldprice {
    font-size: 16px;
    text-decoration: line-through;
    color: #666;
    margin-left: 10px;
}

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

.smrzpricelis li {
    margin-bottom: 12px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.smrzpricelis li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

.smrzpricebtn {
    text-align: center;
    padding: 12px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.smrzpricebtn:hover {
    background: #5AF3FF;
    color: #000;
}

/* WHO FOR SECTION */
.smrzwhofosec {
    padding: 100px 0;
    background: #050607;
}

.smrzwhointro {
    text-align: center;
    max-width: 800px;
    margin: -40px auto 50px;
    color: #aaa;
}

.smrzwhogrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.smrzwhoitem {
    background: rgba(90, 243, 255, 0.05);
    padding: 30px;
    border-left: 4px solid #5AF3FF;
    transition: 0.3s;
}

.smrzwhoitem:hover {
    background: rgba(90, 243, 255, 0.1);
}

.smrzwhonum {
    font-size: 32px;
    font-weight: 900;
    color: rgba(90, 243, 255, 0.3);
    margin-bottom: 10px;
}

/* BENEFITS SECTION */
.smrzbenefitsc {
    padding: 100px 0;
    background: #0a0c0e;
}

.smrzbenegrid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.smrzbenetext {
    flex: 1;
}

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

.smrzbenelist li {
    margin-bottom: 20px;
    font-size: 18px;
    padding-left: 30px;
    position: relative;
}

.smrzbenelist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background: #5AF3FF;
    box-shadow: 0 0 5px #5AF3FF;
}

.smrzbeneimg {
    flex: 1;
}

.smrzimground {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.5);
    transition: 0.5s;
    border: 1px solid #5AF3FF;
}

.smrzimground:hover {
    filter: grayscale(0);
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
}

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

.smrzquotebox {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #5AF3FF;
    padding: 60px 40px;
    position: relative;
}

.smrzquotetxt {
    font-size: 24px;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
}

.smrzquoteauth {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #5AF3FF;
    text-transform: uppercase;
}

/* INFO SECTIONS */
.smrzinfosect {
    padding: 100px 0;
}

.smrzdarker {
    background: #0a0c0e;
}

.smrzinfoflex {
    display: flex;
    gap: 40px;
}

.smrzinfocol {
    flex: 1;
}

.smrzinfocol p {
    margin-bottom: 20px;
    color: #bbb;
}

.smrzpauzelis {
    list-style: none;
    margin-top: 20px;
}

.smrzpauzelis li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
    color: #5AF3FF;
}

.smrzstepgrd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.smrzstepit {
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.smrzstepit h3 {
    color: #5AF3FF;
    margin-bottom: 15px;
}

.smrzworkgrd {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.smrzworkimg {
    flex: 1;
    max-width: 500px;
    border: 5px solid #0a0c0e;
}

.smrzworktxt {
    flex: 1.5;
}

.smrzworktxt h3 {
    margin-bottom: 20px;
    color: #5AF3FF;
}

.smrzworktxt ul {
    list-style: square;
    margin-left: 20px;
    color: #bbb;
}

/* FAQ SECTION */
.smrzfaqsect {
    padding: 100px 0;
    background: #050607;
}

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

.smrzfaqit {
    margin-bottom: 15px;
    background: #0a0c0e;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

.smrzfaqsum {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #5AF3FF;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.smrzfaqsum::after {
    content: '+';
}

.smrzfaqit[open] .smrzfaqsum::after {
    content: '-';
}

.smrzfaqans {
    padding: 0 20px 20px;
    color: #aaa;
}

/* FORM SECTION */
.smrzformsec {
    padding: 100px 0;
    background: #0a0c0e;
}

.smrzformbox {
    max-width: 600px;
    margin: 0 auto;
    background: #050607;
    padding: 50px;
    border: 1px solid #5AF3FF;
}

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

.smrzformgrp {
    margin-bottom: 20px;
}

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

.smrzinptxt, .smrzareatxt {
    width: 100%;
    background: #0a0c0e;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.smrzinptxt:focus, .smrzareatxt:focus {
    border-color: #5AF3FF;
}

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

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

.smrzchkgrp a {
    color: #5AF3FF;
}

.smrzsubmitbtn {
    width: 100%;
    padding: 15px;
    background: #5AF3FF;
    border: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.smrzsubmitbtn:hover {
    box-shadow: 0 0 20px #5AF3FF;
}

/* FOOTER */
.smrzfootmain {
    background: #050607;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

.smrzfootflex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.smrzfootinfo p {
    color: #666;
    margin-top: 10px;
}

.smrzfootcont p {
    margin-bottom: 10px;
}

.smrzfootcont a {
    color: #5AF3FF;
    text-decoration: none;
}

.smrzfootcopy {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: #555;
    font-size: 14px;
}

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

.smrzfootlinks a {
    color: #777;
    text-decoration: none;
    font-size: 12px;
}

.smrzfootlinks a:hover {
    color: #5AF3FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .smrzherogrid, .smrzbenegrid, .smrzworkgrd {
        flex-direction: column;
    }
    .smrzmaintitl {
        font-size: 36px;
    }
    .smrzstepgrd {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .smrznavlinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050607;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 2px solid #5AF3FF;
    }
    .smrzburgerbtn {
        display: flex;
    }
    .smrzburgerchk:checked ~ .smrznavlinks {
        display: flex;
    }
    .smrzfootflex {
        flex-direction: column;
        gap: 30px;
    }
}