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

html {
    scroll-behavior: smooth;
}

body.restore-qimlu-6905-body {
    background-color: #07090C;
    color: #E0E0E0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* HEADER & NAV */
.restore-qimlu-6905-header {
    background-color: #0B0E14;
    border-bottom: 2px solid #4FF7FF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.restore-qimlu-6905-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.restore-qimlu-6905-logo {
    font-size: 24px;
    font-weight: 800;
    color: #4FF7FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.restore-qimlu-6905-nav-toggle {
    display: none;
}

.restore-qimlu-6905-nav-list {
    display: flex;
    list-style: none;
}

.restore-qimlu-6905-nav-link {
    color: #E0E0E0;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.restore-qimlu-6905-nav-link:hover {
    color: #4FF7FF;
}

/* BURGER MENU */
.restore-qimlu-6905-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.restore-qimlu-6905-burger span {
    width: 25px;
    height: 3px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

/* HERO SECTION */
.restore-qimlu-6905-hero-section {
    padding: 100px 0;
    border-bottom: 1px solid #1A212B;
}

.restore-qimlu-6905-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.restore-qimlu-6905-hero-image-box {
    flex: 1;
}

.restore-qimlu-6905-img-hero {
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.1);
}

.restore-qimlu-6905-hero-text-box {
    flex: 1;
}

.restore-qimlu-6905-h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.restore-qimlu-6905-hero-subtitle {
    font-size: 20px;
    color: #4FF7FF;
    margin-bottom: 30px;
}

.restore-qimlu-6905-hero-description p {
    margin-bottom: 15px;
    color: #A0A5AD;
}

.restore-qimlu-6905-btn-main {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4FF7FF;
    color: #07090C;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.3);
}

.restore-qimlu-6905-btn-main:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.6);
    transform: translateY(-2px);
}

/* REVIEWS */
.restore-qimlu-6905-reviews-section {
    padding: 80px 0;
    background-color: #0B0E14;
}

.restore-qimlu-6905-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.restore-qimlu-6905-reviews-grid {
    display: flex;
    gap: 30px;
}

.restore-qimlu-6905-review-card {
    flex: 1;
    background: #12171F;
    padding: 40px;
    border-left: 4px solid #4FF7FF;
    border-radius: 4px;
}

.restore-qimlu-6905-review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.restore-qimlu-6905-review-author {
    color: #4FF7FF;
    font-weight: 700;
    font-size: 14px;
}

/* PRICING */
.restore-qimlu-6905-pricing-section {
    padding: 80px 0;
}

.restore-qimlu-6905-price-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.restore-qimlu-6905-price-card {
    flex: 1;
    min-width: 250px;
    background: #12171F;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #1A212B;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.restore-qimlu-6905-price-card:hover {
    transform: scale(1.02);
}

.restore-qimlu-6905-price-featured {
    border: 1px solid #4FF7FF;
    position: relative;
}

.restore-qimlu-6905-price-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.restore-qimlu-6905-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 20px;
}

.restore-qimlu-6905-old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #606873;
    margin-left: 10px;
}

.restore-qimlu-6905-price-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.restore-qimlu-6905-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid #1A212B;
    font-size: 14px;
    color: #A0A5AD;
}

.restore-qimlu-6905-btn-alt {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.restore-qimlu-6905-btn-alt:hover {
    background: #4FF7FF;
    color: #07090C;
}

/* AUDIENCE */
.restore-qimlu-6905-audience-section {
    padding: 80px 0;
    background-color: #0B0E14;
}

.restore-qimlu-6905-audience-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.restore-qimlu-6905-audience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
}

.restore-qimlu-6905-audience-item {
    background: #12171F;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #1A212B;
    position: relative;
    padding-left: 50px;
}

.restore-qimlu-6905-audience-item::before {
    content: "→";
    position: absolute;
    left: 20px;
    color: #4FF7FF;
    font-weight: bold;
}

/* EXPERT */
.restore-qimlu-6905-expert-section {
    padding: 100px 0;
    text-align: center;
}

.restore-qimlu-6905-expert-quote-box {
    max-width: 900px;
    margin: 0 auto;
}

.restore-qimlu-6905-blockquote {
    font-size: 28px;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}

.restore-qimlu-6905-expert-name {
    color: #4FF7FF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BENEFITS */
.restore-qimlu-6905-benefits-section {
    padding: 80px 0;
}

.restore-qimlu-6905-benefits-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.restore-qimlu-6905-benefits-text {
    flex: 1;
}

.restore-qimlu-6905-benefits-ul {
    list-style: none;
    margin-top: 30px;
}

.restore-qimlu-6905-benefits-ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.restore-qimlu-6905-benefits-ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background-color: #4FF7FF;
}

.restore-qimlu-6905-benefits-image {
    flex: 1;
}

/* FAQ */
.restore-qimlu-6905-faq-section {
    padding: 80px 0;
    background-color: #0B0E14;
}

.restore-qimlu-6905-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.restore-qimlu-6905-details {
    background: #12171F;
    margin-bottom: 10px;
    border-radius: 4px;
}

.restore-qimlu-6905-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.restore-qimlu-6905-summary::after {
    content: "+";
    color: #4FF7FF;
}

.restore-qimlu-6905-details[open] .restore-qimlu-6905-summary::after {
    content: "-";
}

.restore-qimlu-6905-faq-content {
    padding: 0 20px 20px;
    color: #A0A5AD;
}

/* CONTACT FORM */
.restore-qimlu-6905-contact-section {
    padding: 80px 0;
}

.restore-qimlu-6905-p-center {
    text-align: center;
    margin-bottom: 40px;
}

.restore-qimlu-6905-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #12171F;
    padding: 40px;
    border-radius: 8px;
    border-top: 3px solid #4FF7FF;
}

.restore-qimlu-6905-form-group {
    margin-bottom: 20px;
}

.restore-qimlu-6905-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.restore-qimlu-6905-input,
.restore-qimlu-6905-textarea {
    width: 100%;
    padding: 12px;
    background: #07090C;
    border: 1px solid #1A212B;
    color: #FFF;
    border-radius: 4px;
}

.restore-qimlu-6905-textarea {
    height: 120px;
    resize: none;
}

.restore-qimlu-6905-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.restore-qimlu-6905-checkbox-group a {
    color: #4FF7FF;
}

.restore-qimlu-6905-btn-submit {
    width: 100%;
    padding: 15px;
    background: #4FF7FF;
    border: none;
    color: #07090C;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.restore-qimlu-6905-btn-submit:hover {
    background: #FFFFFF;
}

/* EXTRA TEXT SECTIONS */
.restore-qimlu-6905-extra-section {
    padding: 80px 0;
}

.restore-qimlu-6905-bg-alt {
    background-color: #0B0E14;
}

.restore-qimlu-6905-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.restore-qimlu-6905-p {
    margin-bottom: 20px;
    color: #A0A5AD;
}

.restore-qimlu-6905-p-list {
    margin: 20px 0 20px 40px;
    color: #A0A5AD;
}

/* FOOTER */
.restore-qimlu-6905-footer {
    padding: 60px 0;
    border-top: 1px solid #1A212B;
    background: #0B0E14;
    text-align: center;
}

.restore-qimlu-6905-footer-content p {
    margin-bottom: 10px;
    font-size: 14px;
}

.restore-qimlu-6905-footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.restore-qimlu-6905-footer-links a {
    color: #606873;
    text-decoration: none;
    font-size: 12px;
}

.restore-qimlu-6905-footer-links a:hover {
    color: #4FF7FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .restore-qimlu-6905-hero-grid,
    .restore-qimlu-6905-benefits-grid {
        flex-direction: column;
        text-align: center;
    }
    .restore-qimlu-6905-hero-text-box, 
    .restore-qimlu-6905-benefits-text {
        order: 1;
    }
    .restore-qimlu-6905-hero-image-box,
    .restore-qimlu-6905-benefits-image {
        order: 2;
    }
    .restore-qimlu-6905-reviews-grid {
        flex-direction: column;
    }
    .restore-qimlu-6905-h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .restore-qimlu-6905-burger {
        display: flex;
    }
    .restore-qimlu-6905-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0B0E14;
        padding: 20px;
        border-bottom: 2px solid #4FF7FF;
    }
    .restore-qimlu-6905-nav-list {
        flex-direction: column;
        align-items: center;
    }
    .restore-qimlu-6905-nav-toggle:checked ~ .restore-qimlu-6905-nav {
        display: block;
    }
    .restore-qimlu-6905-audience-list {
        grid-template-columns: 1fr;
    }
}