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

body.motion-qerpa-3590-body {
    background-color: #050607;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img.motion-qerpa-3590-img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

/* Header & Nav */
.motion-qerpa-3590-header {
    background: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.motion-qerpa-3590-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
}

.motion-qerpa-3590-nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.motion-qerpa-3590-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.motion-qerpa-3590-nav-link:hover {
    color: #5AF3FF;
}

/* Burger Menu (No JS) */
.motion-qerpa-3590-menu-checkbox {
    display: none;
}

.motion-qerpa-3590-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.motion-qerpa-3590-burger span {
    width: 25px;
    height: 3px;
    background-color: #5AF3FF;
    transition: 0.3s;
}

/* Hero Section */
.motion-qerpa-3590-hero {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

.motion-qerpa-3590-quick-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.motion-qerpa-3590-btn-small {
    padding: 8px 16px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.motion-qerpa-3590-btn-small:hover {
    background: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

.motion-qerpa-3590-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.motion-qerpa-3590-hero-img-wrap {
    flex: 1;
    position: relative;
}

.motion-qerpa-3590-hero-img-wrap::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #5AF3FF;
    z-index: -1;
}

.motion-qerpa-3590-hero-content {
    flex: 1.2;
}

.motion-qerpa-3590-h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.motion-qerpa-3590-subtitle {
    font-size: 1.25rem;
    color: #5AF3FF;
    margin-bottom: 25px;
    font-weight: 500;
}

.motion-qerpa-3590-text {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
}

.motion-qerpa-3590-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.motion-qerpa-3590-btn-primary:hover {
    box-shadow: 0 0 25px #5AF3FF;
    filter: brightness(1.1);
}

/* Reviews Slider (No JS) */
.motion-qerpa-3590-reviews {
    padding: 80px 0;
    background: #0a0b0d;
}

.motion-qerpa-3590-h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.motion-qerpa-3590-h2::before {
    content: '>>';
    color: #5AF3FF;
    margin-right: 15px;
}

.motion-qerpa-3590-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.motion-qerpa-3590-radio-hidden {
    display: none;
}

.motion-qerpa-3590-slides {
    display: flex;
    transition: transform 0.6s ease;
    width: 300%;
}

.motion-qerpa-3590-slide {
    width: 33.333%;
    padding: 20px;
}

.motion-qerpa-3590-review-card {
    background: #111;
    border: 1px solid #333;
    padding: 40px;
    text-align: center;
    border-top: 4px solid #5AF3FF;
}

.motion-qerpa-3590-quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.motion-qerpa-3590-author {
    color: #5AF3FF;
    font-weight: bold;
}

.motion-qerpa-3590-slider-nav {
    text-align: center;
    margin-top: 20px;
}

.motion-qerpa-3590-slider-nav label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #333;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
}

#rev-1:checked ~ .motion-qerpa-3590-slides { transform: translateX(0); }
#rev-2:checked ~ .motion-qerpa-3590-slides { transform: translateX(-33.333%); }
#rev-3:checked ~ .motion-qerpa-3590-slides { transform: translateX(-66.666%); }

#rev-1:checked ~ .motion-qerpa-3590-slider-nav label:nth-child(1),
#rev-2:checked ~ .motion-qerpa-3590-slider-nav label:nth-child(2),
#rev-3:checked ~ .motion-qerpa-3590-slider-nav label:nth-child(3) {
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* Audience Section */
.motion-qerpa-3590-audience {
    padding: 80px 0;
}

.motion-qerpa-3590-intro-box {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.motion-qerpa-3590-grid-3 {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.motion-qerpa-3590-feature-item {
    flex: 1;
    background: #0a0b0d;
    padding: 30px;
    border: 1px solid #222;
    text-align: center;
    transition: border-color 0.3s;
}

.motion-qerpa-3590-feature-item:hover {
    border-color: #5AF3FF;
}

.motion-qerpa-3590-img-round {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.motion-qerpa-3590-h3 {
    color: #5AF3FF;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.motion-qerpa-3590-list-detailed {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.motion-qerpa-3590-list-detailed li {
    padding-left: 30px;
    position: relative;
}

.motion-qerpa-3590-list-detailed li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

/* Pricing */
.motion-qerpa-3590-pricing {
    padding: 80px 0;
}

.motion-qerpa-3590-pricing-border {
    border: 2px solid #1a1a1a;
    padding: 60px 40px;
    position: relative;
}

.motion-qerpa-3590-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.motion-qerpa-3590-price-card {
    flex: 1;
    min-width: 250px;
    background: #070809;
    padding: 30px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.motion-qerpa-3590-price-card.highlighted {
    border: 2px solid #5AF3FF;
    box-shadow: inset 0 0 15px rgba(90, 243, 255, 0.1);
    transform: scale(1.05);
}

.motion-qerpa-3590-price-tag {
    font-size: 2rem;
    color: #5AF3FF;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Quote Section */
.motion-qerpa-3590-quote-section {
    padding: 100px 0;
    background: #050607;
}

.motion-qerpa-3590-quote-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-left: 4px solid #5AF3FF;
    padding: 40px;
    background: rgba(90, 243, 255, 0.05);
}

.motion-qerpa-3590-avatar {
    border-radius: 50%;
    margin-bottom: 25px;
    border: 3px solid #5AF3FF;
}

.motion-qerpa-3590-main-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.motion-qerpa-3590-cite {
    display: block;
    color: #5AF3FF;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Section */
.motion-qerpa-3590-benefits {
    padding: 80px 0;
}

.motion-qerpa-3590-flex-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.motion-qerpa-3590-side-content {
    flex: 1.5;
}

.motion-qerpa-3590-side-img {
    flex: 1;
}

.motion-qerpa-3590-img-glow {
    width: 100%;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    border: 1px solid #5AF3FF;
}

.motion-qerpa-3590-list-neon {
    list-style: none;
    margin-top: 30px;
}

.motion-qerpa-3590-list-neon li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.motion-qerpa-3590-list-neon li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 2px;
    background: #5AF3FF;
    box-shadow: 0 0 8px #5AF3FF;
}

/* FAQ */
.motion-qerpa-3590-faq {
    padding: 80px 0;
    background: #0a0b0d;
}

.motion-qerpa-3590-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.motion-qerpa-3590-faq-item {
    background: #111;
    margin-bottom: 15px;
    border: 1px solid #222;
}

.motion-qerpa-3590-faq-title {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.motion-qerpa-3590-faq-title::after {
    content: '+';
    color: #5AF3FF;
    font-size: 1.5rem;
}

.motion-qerpa-3590-faq-item[open] .motion-qerpa-3590-faq-title::after {
    content: '-';
}

.motion-qerpa-3590-faq-content {
    padding: 0 20px 20px;
    color: #bbb;
}

/* Extra text sections */
.motion-qerpa-3590-extra-text {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.motion-qerpa-3590-extra-text.alt-bg {
    background: rgba(90, 243, 255, 0.02);
    padding: 100px 40px;
    border-radius: 10px;
}

.motion-qerpa-3590-simple-list {
    margin: 30px 0;
    padding-left: 20px;
}

.motion-qerpa-3590-simple-list li {
    margin-bottom: 10px;
    color: #5AF3FF;
}

/* Form Section */
.motion-qerpa-3590-form-section {
    padding: 100px 0;
    border-top: 1px solid #5AF3FF;
}

.motion-qerpa-3590-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0b0d;
    padding: 50px;
    border: 1px solid #222;
}

.motion-qerpa-3590-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.motion-qerpa-3590-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.motion-qerpa-3590-form-group label {
    font-size: 0.9rem;
    color: #5AF3FF;
}

.motion-qerpa-3590-form-group input,
.motion-qerpa-3590-form-group textarea {
    background: #050607;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.motion-qerpa-3590-form-group input:focus,
.motion-qerpa-3590-form-group textarea:focus {
    border-color: #5AF3FF;
}

.motion-qerpa-3590-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.motion-qerpa-3590-checkbox-group a {
    color: #5AF3FF;
}

.motion-qerpa-3590-btn-submit {
    background: #5AF3FF;
    color: #050607;
    border: none;
    padding: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.motion-qerpa-3590-btn-submit:hover {
    box-shadow: 0 0 20px #5AF3FF;
}

/* Footer */
.motion-qerpa-3590-footer {
    padding: 60px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.motion-qerpa-3590-copy {
    margin-bottom: 10px;
    color: #5AF3FF;
}

.motion-qerpa-3590-contact-info {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.motion-qerpa-3590-contact-info a {
    color: #fff;
    text-decoration: none;
}

.motion-qerpa-3590-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.motion-qerpa-3590-footer-links a {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
}

.motion-qerpa-3590-footer-links a:hover {
    color: #5AF3FF;
}

/* Responsive */
@media (max-width: 992px) {
    .motion-qerpa-3590-hero-grid { flex-direction: column; }
    .motion-qerpa-3590-flex-reverse { flex-direction: column-reverse; }
    .motion-qerpa-3590-grid-3 { flex-direction: column; }
    .motion-qerpa-3590-h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .motion-qerpa-3590-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #050607;
        padding: 20px;
        border-bottom: 1px solid #5AF3FF;
    }
    .motion-qerpa-3590-nav-list { flex-direction: column; align-items: center; }
    .motion-qerpa-3590-burger { display: flex; }
    .motion-qerpa-3590-menu-checkbox:checked ~ .motion-qerpa-3590-nav { display: block; }
    .motion-qerpa-3590-list-detailed { grid-template-columns: 1fr; }
}