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

body {
    background-color: #0A0C10;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* HEADER */
.MnOpQrStUvWx {
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.KlMnOpQrStUv {
    font-size: 24px;
    font-weight: 800;
    color: #CFFF35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.UvWxYzAbCdEf {
    display: flex;
}

.GhIjKlMnOpQr {
    display: flex;
    gap: 25px;
}

.StUvWxYzAbCd, .EfGhIjKlMnOp, .QrStUvWxYzAb, .CdEfGhIjKlMn, .OpQrStUvWxYz, .AbCdEfGhIjKl {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.GhIjKlMnOpQr a:hover {
    color: #CFFF35;
}

/* PULSATING LIME LINE */
.PulsatingLimeLine {
    height: 2px;
    background-color: #CFFF35;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.PulsatingLimeLine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FFFFFF, transparent);
    animation: pulseLine 3s infinite;
}

@keyframes pulseLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* BURGER MENU (No JS) */
.WxYzAbCdEfGh {
    display: none;
}

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

.IjKlMnOpQrSt span {
    width: 25px;
    height: 3px;
    background-color: #CFFF35;
    transition: 0.3s;
}

/* HERO SECTION */
.MnOpQrStUvWx_Hero {
    padding: 80px 0;
}

.HeroGridWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.HeroImageColumn, .HeroTextColumn {
    flex: 1;
    min-width: 320px;
}

.HeroMainImage {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(207, 255, 53, 0.1);
}

.HeroMainTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.HeroSubTitle {
    font-size: 20px;
    color: #CFFF35;
    margin-bottom: 25px;
    font-weight: 600;
}

.HeroDescription {
    margin-bottom: 20px;
    color: #A0A0A0;
}

.MainCtaButton {
    display: inline-block;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 18px 35px;
    font-weight: 800;
    border-radius: 5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.MainCtaButton:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

.EnergyMarker {
    margin-left: 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #0A0C10;
    clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 70% 50%);
}

.HeroTriplePhotoBlock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.TripleItem img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
}

.TripleItem p {
    font-size: 14px;
    color: #CCC;
}

/* PRICING */
.PricingSection {
    padding: 100px 0;
    background-color: #0E1116;
}

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

.FastLinksContainer {
    text-align: center;
    margin-bottom: 40px;
}

.FastLinksContainer span {
    margin-right: 15px;
    color: #666;
}

.FastLinksContainer a {
    color: #CFFF35;
    margin: 0 10px;
    text-decoration: underline;
}

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

.PriceCard {
    background-color: #161A21;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.PriceCard.Featured {
    border-color: #CFFF35;
    transform: scale(1.05);
}

.PriceHeader {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #CFFF35;
}

.PriceAmount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

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

.PriceFeatures {
    margin-bottom: 40px;
    flex-grow: 1;
}

.PriceFeatures li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #CCC;
}

.PriceFeatures li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
}

.SecondaryButton {
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid #CFFF35;
    color: #CFFF35;
    font-weight: 700;
    border-radius: 5px;
}

.SecondaryButton:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

/* REVIEWS */
.ReviewsSection {
    padding: 100px 0;
}

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

.ReviewCard {
    background-color: #1a1e26;
    padding: 30px;
    border-left: 4px solid #CFFF35;
}

.ReviewText {
    font-style: italic;
    margin-bottom: 20px;
}

.ReviewAuthor {
    font-weight: 700;
    color: #CFFF35;
}

/* TARGET AUDIENCE */
.TargetAudience {
    padding: 100px 0;
    position: relative;
}

.SectionIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #A0A0A0;
}

.TargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.TargetItem {
    position: relative;
    padding: 30px;
    background: #0A0C10;
    border: 1px solid #333;
}

.TargetIconLine {
    width: 50px;
    height: 4px;
    background-color: #CFFF35;
    margin-bottom: 20px;
}

.DiscountBadge {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 12px;
    background-color: #CFFF35;
    color: #0A0C10;
    font-size: 12px;
    font-weight: 800;
    border-radius: 3px;
}

/* EXPERT SECTION */
.ExpertSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0C10 0%, #161A21 100%);
}

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

.ExpertQuote {
    flex: 1;
    min-width: 320px;
}

.MainQuote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
    border-left: 5px solid #CFFF35;
    padding-left: 30px;
}

.ExpertSignature {
    font-size: 18px;
    color: #CFFF35;
    font-weight: 600;
}

.ExpertDetails {
    flex: 1;
    min-width: 320px;
}

.ExpertDetails h3 {
    margin-bottom: 30px;
    font-size: 24px;
}

.DetailsList {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.DetailsList summary {
    font-weight: 700;
    cursor: pointer;
    color: #CFFF35;
    list-style: none;
}

.DetailsList summary::before {
    content: '+ ';
}

.DetailsList[open] summary::before {
    content: '- ';
}

.DetailsList p {
    margin-top: 10px;
    color: #A0A0A0;
}

/* BENEFITS SECTION */
.BenefitsSection {
    padding: 100px 0;
}

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

.BenefitsGridMirror > div {
    flex: 1;
    min-width: 320px;
}

.BenefitsList li {
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
}

.BenefitsList li::before {
    content: '⚡';
    margin-right: 15px;
    color: #CFFF35;
}

.ImageRounded {
    border-radius: 30px;
}

/* FULL TEXT SECTIONS */
.FullTextSection {
    padding: 100px 0;
}

.FullTextSection.DarkBg {
    background-color: #0E1116;
}

.FullTextSection p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #B0B0B0;
    max-width: 900px;
}

.FullTextSection h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #CFFF35;
}

.FullTextSection ul {
    margin-bottom: 30px;
}

.FullTextSection ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.FullTextSection ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
}

/* FAQ */
.FaqSection {
    padding: 100px 0;
}

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

.FaqItem {
    background-color: #161A21;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.FaqItem summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    background-color: #1a1e26;
}

.FaqItem p {
    padding: 20px;
    color: #A0A0A0;
    border-top: 1px solid #333;
}

/* FORM */
.ContactFormSection {
    padding: 100px 0;
    background-color: #0E1116;
}

.FormSubTitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.MainForm {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.FormField label {
    font-weight: 600;
}

.FormField input, .FormField textarea {
    background-color: #1a1e26;
    border: 1px solid #333;
    padding: 15px;
    color: #FFF;
    border-radius: 5px;
}

.FormField input:focus, .FormField textarea:focus {
    outline: none;
    border-color: #CFFF35;
}

.CheckboxField {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.CheckboxField a {
    color: #CFFF35;
    text-decoration: underline;
}

.SubmitButton {
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 20px;
    font-weight: 800;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.SubmitButton:hover {
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.4);
}

/* FOOTER */
.FooterSection {
    padding: 60px 0;
    border-top: 1px solid #333;
}

.FooterTop {
    text-align: center;
    margin-bottom: 40px;
}

.FooterTop p {
    margin-bottom: 10px;
    color: #666;
}

.FooterBottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}

.FooterBottom a {
    color: #666;
}

.FooterBottom a:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .HeroMainTitle { font-size: 36px; }
    .PricingGrid { grid-template-columns: 1fr; }
    .PriceCard.Featured { transform: scale(1); }
    .HeroTriplePhotoBlock { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .IjKlMnOpQrSt { display: flex; }
    .UvWxYzAbCdEf {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0A0C10;
        padding: 40px 20px;
        border-bottom: 1px solid #CFFF35;
    }
    .GhIjKlMnOpQr {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .WxYzAbCdEfGh:checked ~ .UvWxYzAbCdEf {
        display: flex;
    }
    .WxYzAbCdEfGh:checked ~ .IjKlMnOpQrSt span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .WxYzAbCdEfGh:checked ~ .IjKlMnOpQrSt span:nth-child(2) {
        opacity: 0;
    }
    .WxYzAbCdEfGh:checked ~ .IjKlMnOpQrSt span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    .HeroGridWrapper { flex-direction: column; }
    .HeroTextColumn { text-align: center; }
}