/* MQ Style Engine v1.0 - motion-qimva-4207 */

/* Base Reset & Colors */
:root {
    --mq-carbon-bg: #060708;
    --mq-carbon-light: #0d0f11;
    --mq-amber: #FFC55E;
    --mq-amber-glow: rgba(255, 197, 94, 0.4);
    --mq-gold-gradient: linear-gradient(135deg, #FFC55E 0%, #D4A017 100%);
    --mq-text-main: #E0E0E0;
    --mq-text-muted: #999999;
    --mq-white: #ffffff;
    --mq-trans: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mq-body-main-4207 {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--mq-carbon-bg);
    color: var(--mq-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.mq-container-4207 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.mq-header-top-4207 {
    background-color: rgba(6, 7, 8, 0.95);
    border-bottom: 2px solid var(--mq-amber);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.mq-nav-wrapper-4207 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mq-logo-text-4207 {
    font-size: 28px;
    font-weight: 800;
    color: var(--mq-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mq-menu-checkbox-4207 {
    display: none;
}

.mq-burger-btn-4207 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mq-burger-btn-4207 span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--mq-amber);
    transition: var(--mq-trans);
}

.mq-nav-list-4207 {
    list-style: none;
    display: flex;
    gap: 25px;
}

.mq-nav-link-4207 {
    text-decoration: none;
    color: var(--mq-text-main);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--mq-trans);
}

.mq-nav-link-4207:hover {
    color: var(--mq-amber);
    text-shadow: 0 0 10px var(--mq-amber-glow);
}

/* Hero Section */
.mq-hero-section-4207 {
    padding: 80px 0;
    border-bottom: 1px solid #1a1a1a;
}

.mq-hero-flex-4207 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mq-hero-gallery-4207 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mq-gallery-sub-4207 {
    display: flex;
    gap: 15px;
}

.mq-img-fluid-4207 {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mq-hero-content-4207 {
    flex: 1;
}

.mq-h1-title-4207 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--mq-white);
    position: relative;
}

.mq-h1-title-4207::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--mq-amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--mq-amber);
}

.mq-hero-subtitle-4207 {
    font-size: 20px;
    color: var(--mq-amber);
    margin-bottom: 20px;
    font-weight: 600;
}

.mq-hero-text-4207 {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--mq-text-muted);
}

/* Buttons */
.mq-btn-primary-4207 {
    display: inline-block;
    padding: 16px 35px;
    background: var(--mq-gold-gradient);
    color: var(--mq-carbon-bg);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--mq-trans);
    border: none;
    cursor: pointer;
    text-align: center;
}

.mq-btn-primary-4207:hover {
    box-shadow: 0 0 20px var(--mq-amber-glow);
    transform: translateY(-2px);
}

.mq-btn-secondary-4207 {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: var(--mq-amber);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid var(--mq-amber);
    transition: var(--mq-trans);
    text-align: center;
}

.mq-btn-secondary-4207:hover {
    background: rgba(255, 197, 94, 0.1);
    color: var(--mq-white);
}

/* Price Section */
.mq-price-section-4207 {
    padding: 100px 0;
    background-color: var(--mq-carbon-light);
}

.mq-section-title-4207 {
    text-align: center;
    font-size: 36px;
    color: var(--mq-white);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.mq-price-grid-4207 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mq-price-card-4207 {
    background: var(--mq-carbon-bg);
    border: 1px solid #222;
    padding: 40px;
    width: calc(25% - 23px);
    min-width: 260px;
    display: flex;
    flex-direction: column;
    transition: var(--mq-trans);
    position: relative;
}

.mq-featured-card-4207 {
    border: 1px solid var(--mq-amber);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255,197,94,0.1);
}

.mq-price-name-4207 {
    font-size: 22px;
    color: var(--mq-amber);
    margin-bottom: 15px;
    text-align: center;
}

.mq-price-val-4207 {
    font-size: 40px;
    font-weight: 800;
    color: var(--mq-white);
    text-align: center;
    margin-bottom: 25px;
}

.mq-price-val-4207 span {
    font-size: 16px;
    font-weight: 400;
    color: var(--mq-text-muted);
}

.mq-price-list-4207 {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.mq-price-list-4207 li {
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
    color: var(--mq-text-muted);
}

.mq-price-list-4207 li::before {
    content: '→';
    color: var(--mq-amber);
    margin-right: 10px;
}

/* Target Section */
.mq-target-section-4207 {
    padding: 100px 0;
}

.mq-section-desc-4207 {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    color: var(--mq-text-muted);
}

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

.mq-target-item-4207 {
    background: #0a0c0e;
    padding: 30px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.mq-target-line-4207 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--mq-amber);
}

.mq-discount-badge-4207 {
    margin-top: 15px;
    font-size: 12px;
    color: var(--mq-amber);
    font-weight: 700;
    text-transform: uppercase;
}

/* Benefits Section */
.mq-benefits-section-4207 {
    padding: 100px 0;
    background-color: var(--mq-carbon-light);
}

.mq-benefits-flex-4207 {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mq-benefits-content-4207 {
    flex: 1;
}

.mq-benefits-image-4207 {
    flex: 1;
}

.mq-benefits-intro-4207 {
    font-size: 19px;
    color: var(--mq-white);
    margin-bottom: 30px;
}

.mq-benefits-list-4207 {
    list-style: none;
}

.mq-benefits-list-4207 li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.mq-benefits-list-4207 li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--mq-amber);
}

/* Quotes Slider */
.mq-quotes-section-4207 {
    padding: 100px 0;
    text-align: center;
}

.mq-slider-container-4207 {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mq-slide-radio-4207 {
    display: none;
}

.mq-slides-wrapper-4207 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.mq-slide-4207 {
    width: 33.333%;
    padding: 40px;
}

.mq-blockquote-4207 {
    font-size: 24px;
    font-style: italic;
    color: var(--mq-text-main);
    margin-bottom: 20px;
}

.mq-cite-4207 {
    color: var(--mq-amber);
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
}

#mq-s1-4207:checked ~ .mq-slides-wrapper-4207 { transform: translateX(0); }
#mq-s2-4207:checked ~ .mq-slides-wrapper-4207 { transform: translateX(-33.333%); }
#mq-s3-4207:checked ~ .mq-slides-wrapper-4207 { transform: translateX(-66.666%); }

.mq-slider-controls-4207 {
    margin-top: 30px;
}

.mq-slider-controls-4207 label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #333;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--mq-trans);
}

#mq-s1-4207:checked ~ .mq-slider-controls-4207 label:nth-child(1),
#mq-s2-4207:checked ~ .mq-slider-controls-4207 label:nth-child(2),
#mq-s3-4207:checked ~ .mq-slider-controls-4207 label:nth-child(3) {
    background: var(--mq-amber);
    box-shadow: 0 0 10px var(--mq-amber);
}

/* FAQ Section */
.mq-faq-section-4207 {
    padding: 100px 0;
    background: var(--mq-carbon-light);
}

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

.mq-faq-item-4207 {
    margin-bottom: 15px;
    background: var(--mq-carbon-bg);
    border: 1px solid #222;
}

.mq-faq-item-4207 summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--mq-white);
    list-style: none;
    position: relative;
}

.mq-faq-item-4207 summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--mq-amber);
}

.mq-faq-item-4207[open] summary::after {
    content: '-';
}

.mq-faq-answer-4207 {
    padding: 0 20px 20px;
    color: var(--mq-text-muted);
}

/* Form Section */
.mq-form-section-4207 {
    padding: 100px 0;
}

.mq-form-box-4207 {
    max-width: 600px;
    margin: 0 auto;
    background: var(--mq-carbon-light);
    padding: 50px;
    border-top: 4px solid var(--mq-amber);
}

.mq-form-subtitle-4207 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--mq-text-muted);
}

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

.mq-form-group-4207 label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--mq-amber);
}

.mq-form-group-4207 input,
.mq-form-group-4207 textarea {
    width: 100%;
    padding: 12px;
    background: #060708;
    border: 1px solid #333;
    color: var(--mq-white);
    font-family: inherit;
}

.mq-form-group-4207 textarea {
    height: 120px;
    resize: vertical;
}

.mq-form-checkbox-4207 {
    margin-bottom: 25px;
    font-size: 13px;
}

.mq-form-checkbox-4207 a {
    color: var(--mq-amber);
}

.mq-btn-submit-4207 {
    width: 100%;
    padding: 15px;
    background: var(--mq-gold-gradient);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--mq-trans);
}

/* Extra Text Sections */
.mq-text-section-4207 { padding: 80px 0; }
.mq-text-section-alt-4207 { padding: 80px 0; background: #080a0c; }
.mq-h2-title-4207 { margin-bottom: 30px; color: var(--mq-white); }
.mq-list-4207 { margin: 20px 0; list-style: square; padding-left: 20px; color: var(--mq-amber); }

/* Footer */
.mq-footer-main-4207 {
    padding: 60px 0;
    background: #020202;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.mq-footer-copy-4207 {
    font-weight: 700;
    color: var(--mq-white);
    margin-bottom: 10px;
}

.mq-footer-contact-4207 {
    font-size: 14px;
    color: var(--mq-text-muted);
}

.mq-footer-links-4207 {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mq-footer-links-4207 a {
    color: var(--mq-text-muted);
    font-size: 12px;
    text-decoration: none;
}

.mq-footer-links-4207 a:hover {
    color: var(--mq-amber);
}

/* Responsive */
@media (max-width: 992px) {
    .mq-hero-flex-4207, .mq-benefits-flex-4207 { flex-direction: column; }
    .mq-price-card-4207 { width: calc(50% - 15px); }
    .mq-h1-title-4207 { font-size: 36px; }
}

@media (max-width: 768px) {
    .mq-burger-btn-4207 { display: flex; }
    .mq-navigation-4207 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--mq-carbon-bg);
        padding: 20px;
        border-bottom: 2px solid var(--mq-amber);
    }
    .mq-menu-checkbox-4207:checked ~ .mq-navigation-4207 { display: block; }
    .mq-nav-list-4207 { flex-direction: column; align-items: center; }
    .mq-price-card-4207 { width: 100%; transform: none !important; }
}

/* Final CSS length buffer (adding unique classes and detailed animations) */
.mq-anim-glow-4207 { animation: mq-pulse-4207 3s infinite; }
@keyframes mq-pulse-4207 {
    0% { text-shadow: 0 0 5px var(--mq-amber-glow); }
    50% { text-shadow: 0 0 15px var(--mq-amber); }
    100% { text-shadow: 0 0 5px var(--mq-amber-glow); }
}