/* Variables */
:root {
    --bg-color: #050607;
    --accent-color: #5AF3FF;
    --text-color: #E0E0E0;
    --text-muted: #A0A0A0;
    --card-bg: #0C0E10;
    --border-color: rgba(90, 243, 255, 0.3);
    --glow-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

/* Header */
.mf8111-main-header {
    background: rgba(5, 6, 7, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

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

.mf8111-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: var(--glow-shadow);
}

.mf8111-nav-list {
    display: flex;
    gap: 30px;
}

.mf8111-nav-link {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mf8111-nav-link:hover {
    color: var(--accent-color);
    text-shadow: var(--glow-shadow);
}

/* Burger Menu */
.mf8111-nav-checkbox {
    display: none;
}

.mf8111-burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mf8111-burger-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

/* Hero Section */
.mf8111-hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mf8111-cyber-grid-overlay {
    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(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.mf8111-hero-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mf8111-hero-image-block {
    flex: 1;
}

.mf8111-hero-main-img {
    border: 1px solid var(--accent-color);
    box-shadow: var(--glow-shadow);
    border-radius: 4px;
}

.mf8111-hero-mini-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mf8111-gallery-item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.mf8111-hero-text-block {
    flex: 1.2;
}

.mf8111-hero-h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(90, 243, 255, 0.3);
}

.mf8111-hero-subtitle {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.mf8111-hero-p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 17px;
}

/* Buttons */
.mf8111-btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #050607;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
}

.mf8111-btn-primary:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 25px var(--accent-color);
}

.mf8111-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--accent-color);
    cursor: pointer;
}

.mf8111-btn-secondary:hover {
    background-color: var(--accent-color);
    color: #050607;
}

/* Section Titles */
.mf8111-section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
}

.mf8111-section-title::before {
    content: '>';
    color: var(--accent-color);
    margin-right: 15px;
}

/* Reviews Slider */
.mf8111-reviews-section {
    padding: 100px 0;
    background: #080a0c;
}

.mf8111-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
    overflow: hidden;
}

.mf8111-rev-radio {
    display: none;
}

.mf8111-slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.mf8111-review-card {
    width: 33.333%;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    text-align: center;
}

#rev1:checked ~ .mf8111-slides-container { transform: translateX(0); }
#rev2:checked ~ .mf8111-slides-container { transform: translateX(-33.333%); }
#rev3:checked ~ .mf8111-slides-container { transform: translateX(-66.666%); }

.mf8111-review-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.mf8111-review-author {
    color: var(--accent-color);
    font-weight: bold;
}

.mf8111-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.mf8111-nav-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--accent-color);
    cursor: pointer;
}

#rev1:checked ~ .mf8111-slider-nav label[for="rev1"],
#rev2:checked ~ .mf8111-slider-nav label[for="rev2"],
#rev3:checked ~ .mf8111-slider-nav label[for="rev3"] {
    background: var(--accent-color);
    box-shadow: var(--glow-shadow);
}

.mf8111-quote-block {
    margin-top: 60px;
    padding: 40px;
    border-left: 4px solid var(--accent-color);
    background: rgba(90, 243, 255, 0.03);
}

.mf8111-main-quote {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
}

.mf8111-quote-sign {
    font-weight: bold;
    color: var(--accent-color);
}

/* Pricing */
.mf8111-pricing-section {
    padding: 100px 0;
}

.mf8111-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.mf8111-price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
}

.mf8111-price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--glow-shadow);
}

.mf8111-price-featured {
    border: 2px solid var(--accent-color);
    background: #0d1216;
}

.mf8111-price-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.mf8111-price-val {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.mf8111-old-price {
    display: block;
    font-size: 16px;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: normal;
}

.mf8111-price-list {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.mf8111-price-list li {
    margin-bottom: 12px;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.mf8111-price-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Benefits Section */
.mf8111-benefits-section {
    padding: 100px 0;
    background: #050607;
}

.mf8111-benefits-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mf8111-benefits-text {
    flex: 1;
}

.mf8111-benefits-image {
    flex: 1;
}

.mf8111-img-responsive {
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.mf8111-benefits-list {
    margin-top: 30px;
}

.mf8111-benefit-item {
    margin-bottom: 25px;
    font-size: 18px;
}

.mf8111-benefit-item strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

/* Target Section */
.mf8111-target-section {
    padding: 100px 0;
    background: #080a0c;
}

.mf8111-target-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 19px;
    color: var(--text-muted);
}

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

.mf8111-target-item {
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-color);
    font-weight: 500;
}

/* Text Blocks */
.mf8111-text-block-section {
    padding: 100px 0;
}

.mf8111-alt-bg {
    background: #0c0e10;
}

.mf8111-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.mf8111-text-content p {
    margin-bottom: 25px;
    font-size: 18px;
}

.mf8111-text-content ul, .mf8111-text-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.mf8111-text-content li {
    margin-bottom: 10px;
    font-size: 17px;
}

/* FAQ */
.mf8111-faq-section {
    padding: 100px 0;
}

.mf8111-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.mf8111-faq-item {
    margin-bottom: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.mf8111-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--accent-color);
    outline: none;
    list-style: none;
}

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

.mf8111-faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Form */
.mf8111-form-section {
    padding: 100px 0;
    background: #050607;
}

.mf8111-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--accent-color);
    box-shadow: var(--glow-shadow);
}

.mf8111-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.mf8111-form-group {
    margin-bottom: 20px;
}

.mf8111-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
}

.mf8111-form-input, .mf8111-form-textarea {
    width: 100%;
    padding: 12px;
    background: #050607;
    border: 1px solid var(--border-color);
    color: #fff;
    outline: none;
}

.mf8111-form-input:focus, .mf8111-form-textarea:focus {
    border-color: var(--accent-color);
}

.mf8111-form-textarea {
    height: 120px;
    resize: vertical;
}

.mf8111-form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.mf8111-checkbox-label {
    font-size: 13px;
    color: var(--text-muted);
}

.mf8111-checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.mf8111-form-submit {
    width: 100%;
}

/* Footer */
.mf8111-main-footer {
    padding: 60px 0 30px;
    background: #020202;
    border-top: 1px solid var(--accent-color);
    text-align: center;
}

.mf8111-footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mf8111-copyright, .mf8111-footer-contact {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.mf8111-footer-contact a:hover {
    color: var(--accent-color);
}

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

.mf8111-footer-links a {
    font-size: 12px;
    color: var(--text-muted);
}

.mf8111-footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .mf8111-hero-grid, .mf8111-benefits-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .mf8111-hero-h1 {
        font-size: 40px;
    }

    .mf8111-benefits-image {
        order: -1;
    }

    .mf8111-hero-mini-gallery {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mf8111-burger-btn {
        display: flex;
        z-index: 1001;
    }

    .mf8111-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        padding: 100px 30px;
        transition: 0.4s ease;
        border-left: 1px solid var(--accent-color);
    }

    .mf8111-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .mf8111-nav-checkbox:checked ~ .mf8111-nav-menu {
        right: 0;
    }

    .mf8111-nav-checkbox:checked ~ .mf8111-burger-btn span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .mf8111-nav-checkbox:checked ~ .mf8111-burger-btn span:nth-child(2) {
        opacity: 0;
    }
    .mf8111-nav-checkbox:checked ~ .mf8111-burger-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mf8111-hero-section {
        padding-top: 120px;
    }

    .mf8111-form-card {
        padding: 30px 20px;
    }
}