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

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

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

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

ul {
    list-style: none;
}

/* HEADER */
header.MnOpQrStUvWx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 15px rgba(90, 243, 255, 0.2);
}

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

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

nav.UvWxYzAbCdEf ul {
    display: flex;
    gap: 25px;
}

nav.UvWxYzAbCdEf ul li a {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

nav.UvWxYzAbCdEf ul li a:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px #5AF3FF;
}

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

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

.IjKlMnOpQrSt span {
    display: block;
    width: 30px;
    height: 3px;
    background: #5AF3FF;
}

/* HERO */
.HeroSectionBox {
    padding-top: 140px;
    position: relative;
}

.HeroSectionBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px), 
                      linear-gradient(90, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

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

.HeroImageCol {
    flex: 1;
    min-width: 300px;
}

.HeroMainImg {
    width: 100%;
    border: 3px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.3);
    border-radius: 10px;
}

.HeroTextCol {
    flex: 1.2;
    min-width: 300px;
}

.HeroTextCol h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #5AF3FF;
}

.HeroSubTitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.HeroTextBlock {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-left: 4px solid #5AF3FF;
}

.MainNeonBtn {
    display: inline-block;
    padding: 15px 40px;
    background: #5AF3FF;
    color: #050607;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

.MainNeonBtn:hover {
    background: #ffffff;
    box-shadow: 0 0 40px #5AF3FF;
    transform: translateY(-3px);
}

/* MARKERS */
.NeonMarker {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.NeonMarker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 80%;
    background: #5AF3FF;
    box-shadow: 0 0 15px #5AF3FF;
}

/* WHO NEEDS */
.WhoNeedsHeaderImg .TopImg {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #5AF3FF;
}

.IntroText {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.TargetList li {
    background: rgba(90, 243, 255, 0.05);
    padding: 20px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 8px;
    position: relative;
}

.TargetList li::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5AF3FF;
    opacity: 0.5;
}

/* PRICES */
.PriceGrid5 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.PriceCard {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    border: 1px solid #5AF3FF;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
}

.PriceCard:hover {
    background: rgba(90, 243, 255, 0.05);
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.2);
    transform: scale(1.03);
}

.PriceCard.Recommended {
    border-width: 3px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.3);
}

.PriceVal {
    font-size: 2rem;
    font-weight: 800;
    color: #5AF3FF;
    margin: 20px 0;
}

.CardFeat {
    margin-bottom: 30px;
    text-align: left;
    font-size: 0.9rem;
}

.CardFeat li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

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

.CardBtn {
    display: block;
    padding: 10px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    font-weight: 600;
    border-radius: 4px;
}

.CardBtn:hover {
    background: #5AF3FF;
    color: #050607;
}

/* BENEFITS */
.BenefitFlex {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.BenefitTextSide {
    flex: 1;
}

.BenefitImgSide {
    flex: 1;
}

.SideImage {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #5AF3FF;
}

.BenefitList li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 5px;
}

/* REVIEWS SLIDER NO JS */
.SliderWrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.HiddenRadio {
    display: none;
}

.SliderSlides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 300%;
}

.SlideItem {
    width: 33.333%;
    padding: 40px;
    text-align: center;
}

.SlideItem blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #5AF3FF;
}

.SlideItem cite {
    display: block;
    color: #aaaaaa;
    font-size: 1.1rem;
}

.SliderDots {
    text-align: center;
    margin-top: 20px;
}

.SliderDots label {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#rev-1:checked ~ .SliderSlides { transform: translateX(0); }
#rev-2:checked ~ .SliderSlides { transform: translateX(-33.333%); }
#rev-3:checked ~ .SliderSlides { transform: translateX(-66.666%); }

#rev-1:checked ~ .SliderDots label[for="rev-1"],
#rev-2:checked ~ .SliderDots label[for="rev-2"],
#rev-3:checked ~ .SliderDots label[for="rev-3"] {
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* FAQ */
.FaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 5px;
}

.FaqItem summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #5AF3FF;
    outline: none;
    list-style: none;
}

.FaqItem summary::-webkit-details-marker {
    display: none;
}

.FaqItem div {
    padding: 0 20px 20px;
    color: #dddddd;
}

/* FORM */
.FormSection {
    background: #0a0c0e;
}

.FormFlex {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.FormTitleSide {
    flex: 1;
}

.FormActualSide {
    flex: 1.5;
}

.FormField {
    margin-bottom: 20px;
}

.FormField label {
    display: block;
    margin-bottom: 8px;
    color: #5AF3FF;
}

.FormField input, 
.FormField textarea {
    width: 100%;
    padding: 12px;
    background: #050607;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

.FormField input:focus {
    border-color: #5AF3FF;
    outline: none;
}

.FormCheck {
    margin-bottom: 20px;
}

.FormSubmitBtn {
    width: 100%;
    padding: 15px;
    background: #5AF3FF;
    color: #050607;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.2);
}

.FormSubmitBtn:hover {
    box-shadow: 0 0 30px #5AF3FF;
    transform: scale(1.01);
}

/* LONG TEXT SECTIONS */
.LongTextSection {
    background: #050607;
}

.LongTextSection.AltBg {
    background: #0a0c0e;
}

.LongTextSection p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #bbbbbb;
}

.LongTextSection ul {
    margin-bottom: 30px;
    padding-left: 40px;
}

.LongTextSection ul li {
    margin-bottom: 10px;
    color: #5AF3FF;
    list-style: square;
}

/* FOOTER */
footer.GhIjKlMnOpQr {
    background: #000;
    border-top: 2px solid #5AF3FF;
    padding: 50px 0;
    text-align: center;
}

.FooterTop {
    margin-bottom: 30px;
}

.FooterBrand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5AF3FF;
    margin-bottom: 10px;
}

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

.FooterLinks a {
    color: #888;
    font-size: 0.85rem;
}

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

.FooterAddress {
    font-size: 0.8rem;
    color: #555;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .HeroTextCol h1 { font-size: 2.2rem; }
    .PriceCard { flex: 0 0 45%; }
}

@media (max-width: 768px) {
    .IjKlMnOpQrSt { display: flex; }
    nav.UvWxYzAbCdEf {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050607;
        padding: 20px;
        border-bottom: 2px solid #5AF3FF;
    }
    nav.UvWxYzAbCdEf ul { flex-direction: column; text-align: center; }
    #burger-toggle:checked ~ nav.UvWxYzAbCdEf { display: block; }
    .HeroContentFlex, .BenefitFlex, .FormFlex { flex-direction: column; }
    .PriceCard { flex: 0 0 100%; }
}