/* Variables */
:root {
    --bg-color: #050607;
    --neon-cyan: #5AF3FF;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --neon-glow: 0 0 10px rgba(90, 243, 255, 0.5);
    --neon-glow-strong: 0 0 20px rgba(90, 243, 255, 0.8);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.melarovinGentlePivotFieldBody {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.melarovinGentlePivotFieldHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 6, 7, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-cyan);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(90, 243, 255, 0.2);
}

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

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

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

.melarovinGentlePivotFieldNavLink {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
}

.melarovinGentlePivotFieldNavLink:hover {
    color: var(--neon-cyan);
    text-shadow: var(--neon-glow);
}

/* Burger Menu */
.melarovinGentlePivotFieldNavToggle {
    display: none;
}

.melarovinGentlePivotFieldNavBtn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.melarovinGentlePivotFieldNavBtn span, 
.melarovinGentlePivotFieldNavBtn span::before, 
.melarovinGentlePivotFieldNavBtn span::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    position: absolute;
    transition: var(--transition);
}

.melarovinGentlePivotFieldNavBtn span::before { content: ""; top: -8px; }
.melarovinGentlePivotFieldNavBtn span::after { content: ""; bottom: -8px; }

/* Hero Section */
.melarovinGentlePivotFieldHero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.melarovinGentlePivotFieldHeroImg {
    flex: 1;
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--neon-glow);
    position: relative;
}

.melarovinGentlePivotFieldHeroContent {
    flex: 1.2;
}

.melarovinGentlePivotFieldTitleMain {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
}

.melarovinGentlePivotFieldTitleMain::before {
    content: "⚡";
    color: var(--neon-cyan);
    margin-right: 15px;
}

.melarovinGentlePivotFieldSubtitle {
    font-size: 1.4rem;
    color: var(--neon-cyan);
    margin-bottom: 40px;
}

.melarovinGentlePivotFieldHeroInfo {
    margin-bottom: 40px;
}

.melarovinGentlePivotFieldHeroText {
    margin-bottom: 20px;
    color: var(--text-gray);
    border-left: 2px solid var(--neon-cyan);
    padding-left: 20px;
}

.melarovinGentlePivotFieldBtnCta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--neon-cyan);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: var(--neon-glow);
    border: 2px solid var(--neon-cyan);
}

.melarovinGentlePivotFieldBtnCta:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: var(--neon-glow-strong);
    filter: blur(0.5px);
}

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

/* Common Section Titles */
.melarovinGentlePivotFieldSectionTitle {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.melarovinGentlePivotFieldSectionTitle::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--neon-cyan);
    margin: 20px auto 0;
    box-shadow: var(--neon-glow);
}

/* Reviews */
.melarovinGentlePivotFieldReviews {
    padding: 100px 0;
    background: rgba(90, 243, 255, 0.02);
}

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

.melarovinGentlePivotFieldReviewCard {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #0d0f11;
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 8px;
    position: relative;
}

.melarovinGentlePivotFieldReviewText {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
}

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

/* Price Section */
.melarovinGentlePivotFieldPrice {
    padding: 100px 0;
}

.melarovinGentlePivotFieldPriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.melarovinGentlePivotFieldPriceItem {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    border: 2px solid rgba(90, 243, 255, 0.2);
    background: #0d0f11;
    text-align: center;
    transition: var(--transition);
}

.melarovinGentlePivotFieldPriceItem:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--neon-glow);
    transform: translateY(-10px);
}

.melarovinGentlePivotFieldPriceFeatured {
    border-color: var(--neon-cyan);
    box-shadow: var(--neon-glow);
    transform: scale(1.05);
}

.melarovinGentlePivotFieldPriceTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.melarovinGentlePivotFieldPriceVal {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.melarovinGentlePivotFieldPriceList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.melarovinGentlePivotFieldPriceList li {
    padding: 10px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.melarovinGentlePivotFieldPriceList li::before {
    content: "» ";
    color: var(--neon-cyan);
}

.melarovinGentlePivotFieldBtnSecondary {
    display: block;
    padding: 12px;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-weight: bold;
}

.melarovinGentlePivotFieldBtnSecondary:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: var(--neon-glow);
}

/* Target Audience */
.melarovinGentlePivotFieldTarget {
    padding: 100px 0;
}

.melarovinGentlePivotFieldTargetHeader {
    margin-bottom: 50px;
    border: 1px solid var(--neon-cyan);
}

.melarovinGentlePivotFieldIntro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--neon-cyan);
}

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

.melarovinGentlePivotFieldTargetList li {
    background: rgba(90, 243, 255, 0.05);
    padding: 20px;
    border-left: 4px solid var(--neon-cyan);
}

/* Benefits */
.melarovinGentlePivotFieldBenefits {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.melarovinGentlePivotFieldBenefitsText {
    flex: 1;
}

.melarovinGentlePivotFieldBenefitsUl {
    list-style: none;
}

.melarovinGentlePivotFieldBenefitsUl li {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.melarovinGentlePivotFieldBenefitsUl li strong {
    color: var(--neon-cyan);
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.melarovinGentlePivotFieldBenefitsImg {
    flex: 1;
    border: 1px solid var(--neon-cyan);
    padding: 10px;
}

/* Expert Word */
.melarovinGentlePivotFieldExpert {
    padding: 100px 0;
}

.melarovinGentlePivotFieldExpertBox {
    background: #0d0f11;
    padding: 60px;
    border: 1px solid var(--neon-cyan);
    position: relative;
}

.melarovinGentlePivotFieldQuote {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 30px;
    position: relative;
}

.melarovinGentlePivotFieldCite {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    font-style: normal;
}

.melarovinGentlePivotFieldExpertList {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(90, 243, 255, 0.3);
}

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

.melarovinGentlePivotFieldExpertList li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.melarovinGentlePivotFieldExpertList li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* Extra Text Sections */
.melarovinGentlePivotFieldExtra {
    padding: 80px 0;
}

.melarovinGentlePivotFieldExtraText p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: justify;
}

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

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

.melarovinGentlePivotFieldFaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--neon-cyan);
    list-style: none;
}

.melarovinGentlePivotFieldFaqSum::-webkit-details-marker {
    display: none;
}

.melarovinGentlePivotFieldFaqContent {
    padding: 0 20px 20px;
    color: var(--text-gray);
}

/* Form Section */
.melarovinGentlePivotFieldForm {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0d0f11 100%);
}

.melarovinGentlePivotFieldFormWrap {
    max-width: 700px;
    margin: 0 auto;
    background: #050607;
    padding: 50px;
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--neon-glow);
}

.melarovinGentlePivotFieldFormElem {
    margin-top: 40px;
}

.melarovinGentlePivotFieldFormGroup {
    margin-bottom: 25px;
}

.melarovinGentlePivotFieldFormGroup label {
    display: block;
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.melarovinGentlePivotFieldInput, 
.melarovinGentlePivotFieldTextarea {
    width: 100%;
    background: #0d0f11;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 15px;
    color: #fff;
    outline: none;
}

.melarovinGentlePivotFieldInput:focus, 
.melarovinGentlePivotFieldTextarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

.melarovinGentlePivotFieldFormCheck {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.melarovinGentlePivotFieldFormCheck a {
    color: var(--neon-cyan);
    text-decoration: underline;
}

.melarovinGentlePivotFieldBtnSubmit {
    width: 100%;
    padding: 20px;
    background: var(--neon-cyan);
    color: #000;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--neon-glow);
}

.melarovinGentlePivotFieldBtnSubmit:hover {
    box-shadow: var(--neon-glow-strong);
}

/* Footer */
.melarovinGentlePivotFieldFooter {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(90, 243, 255, 0.3);
    background: #020304;
}

.melarovinGentlePivotFieldFootGrid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.melarovinGentlePivotFieldFootInfo {
    flex: 1.5;
}

.melarovinGentlePivotFieldFootContacts {
    flex: 1;
}

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

.melarovinGentlePivotFieldFootContacts a:hover {
    color: var(--neon-cyan);
}

.melarovinGentlePivotFieldFootCopy {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.melarovinGentlePivotFieldFootLinks a {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.melarovinGentlePivotFieldFootLinks a:hover {
    color: var(--neon-cyan);
}

/* Responsive */
@media (max-width: 992px) {
    .melarovinGentlePivotFieldHeroGrid, 
    .melarovinGentlePivotFieldBenefitsGrid {
        flex-direction: column;
    }
    
    .melarovinGentlePivotFieldHeroImg {
        order: 2;
    }
    
    .melarovinGentlePivotFieldHeroContent {
        order: 1;
        text-align: center;
    }
    
    .melarovinGentlePivotFieldTitleMain {
        font-size: 2.5rem;
    }
    
    .melarovinGentlePivotFieldHeroText {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .melarovinGentlePivotFieldNav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: var(--bg-color);
        transition: var(--transition);
        padding: 50px 0;
    }
    
    .melarovinGentlePivotFieldNavList {
        flex-direction: column;
        align-items: center;
    }
    
    .melarovinGentlePivotFieldNavBtn {
        display: block;
    }
    
    .melarovinGentlePivotFieldNavToggle:checked ~ .melarovinGentlePivotFieldNav {
        left: 0;
    }
    
    .melarovinGentlePivotFieldNavToggle:checked + .melarovinGentlePivotFieldNavBtn span {
        background: transparent;
    }
    
    .melarovinGentlePivotFieldNavToggle:checked + .melarovinGentlePivotFieldNavBtn span::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .melarovinGentlePivotFieldNavToggle:checked + .melarovinGentlePivotFieldNavBtn span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .melarovinGentlePivotFieldSectionTitle {
        font-size: 2rem;
    }
    
    .melarovinGentlePivotFieldExpertBox {
        padding: 30px;
    }
    
    .melarovinGentlePivotFieldQuote {
        font-size: 1.3rem;
    }
}