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

body.power-mavqi-5720-body {
    background-color: #050607;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.power-mavqi-5720-header {
    background-color: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 15px rgba(90, 243, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.power-mavqi-5720-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.power-mavqi-5720-logo {
    font-size: 28px;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.8);
}

/* NAV */
.power-mavqi-5720-nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.power-mavqi-5720-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.power-mavqi-5720-nav-link:hover {
    color: #5AF3FF;
    text-shadow: 0 0 5px #5AF3FF;
}

/* BURGER MENU */
.power-mavqi-5720-menu-toggle {
    display: none;
}

.power-mavqi-5720-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.power-mavqi-5720-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #5AF3FF;
    box-shadow: 0 0 5px #5AF3FF;
}

/* HERO SECTION */
.power-mavqi-5720-hero-section {
    padding: 80px 0;
    position: relative;
    /* Cyber grid effect simulation using patterns isn't possible with background-image restriction, 
       so we use solid sections and glows */
}

.power-mavqi-5720-hero-fast-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.power-mavqi-5720-fast-btn {
    padding: 8px 15px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.power-mavqi-5720-fast-btn:hover {
    background: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

.power-mavqi-5720-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.power-mavqi-5720-hero-image, .power-mavqi-5720-hero-text {
    flex: 1;
    min-width: 300px;
}

.power-mavqi-5720-img-responsive {
    width: 100%;
    height: auto;
    border: 2px solid #5AF3FF;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
    object-fit: cover;
}

.power-mavqi-5720-h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    border-left: 5px solid #5AF3FF;
    padding-left: 20px;
}

.power-mavqi-5720-subtitle {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 25px;
    font-weight: bold;
}

.power-mavqi-5720-p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #e0e0e0;
}

/* BUTTONS */
.power-mavqi-5720-btn-primary {
    display: inline-block;
    background-color: #5AF3FF;
    color: #050607;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.power-mavqi-5720-btn-primary:hover {
    box-shadow: 0 0 25px #5AF3FF;
    filter: brightness(1.1) blur(0.2px);
}

.power-mavqi-5720-btn-secondary {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #5AF3FF;
    color: #5AF3FF;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.power-mavqi-5720-btn-secondary:hover {
    background: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 15px #5AF3FF;
}

/* REVIEWS */
.power-mavqi-5720-reviews-section {
    padding: 80px 0;
    background-color: #0a0c0e;
}

.power-mavqi-5720-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
}

.power-mavqi-5720-h2::after {
    content: '▶';
    color: #5AF3FF;
    font-size: 20px;
    margin-left: 10px;
    text-shadow: 0 0 10px #5AF3FF;
}

.power-mavqi-5720-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.power-mavqi-5720-review-card {
    flex: 1;
    min-width: 250px;
    background: #050607;
    padding: 30px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 10px;
    transition: border 0.3s ease;
}

.power-mavqi-5720-review-card:hover {
    border-color: #5AF3FF;
}

.power-mavqi-5720-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.power-mavqi-5720-review-author {
    color: #5AF3FF;
    font-weight: bold;
}

/* AUDIENCE SECTION (WHO IT'S FOR) */
.power-mavqi-5720-audience-section {
    padding: 80px 0;
}

.power-mavqi-5720-intro-text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.power-mavqi-5720-audience-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.power-mavqi-5720-audience-item {
    padding: 20px;
    background: #0a0c0e;
    position: relative;
    border-left: 3px solid #5AF3FF;
}

.power-mavqi-5720-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
    transition: width 0.5s ease;
}

.power-mavqi-5720-audience-item:hover .power-mavqi-5720-glow-line {
    width: 100%;
}

/* PRICE SECTION */
.power-mavqi-5720-price-section {
    padding: 80px 0;
    background-color: #050607;
}

.power-mavqi-5720-price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.power-mavqi-5720-price-card {
    background: #0a0c0e;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    text-align: center;
    width: 350px;
    transition: transform 0.3s ease;
}

.power-mavqi-5720-price-card:hover {
    transform: translateY(-10px);
}

.power-mavqi-5720-featured {
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    transform: scale(1.05);
}

.power-mavqi-5720-h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #5AF3FF;
}

.power-mavqi-5720-cost {
    margin-bottom: 30px;
}

.power-mavqi-5720-old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.power-mavqi-5720-new-price {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.power-mavqi-5720-price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.power-mavqi-5720-price-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.power-mavqi-5720-price-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

.power-mavqi-5720-quick-links {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
}

.power-mavqi-5720-quick-links a {
    color: #5AF3FF;
    text-decoration: none;
    margin: 0 5px;
}

/* EXPERT SECTION */
.power-mavqi-5720-expert-section {
    padding: 80px 0;
    background-color: #0a0c0e;
}

.power-mavqi-5720-expert-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: #050607;
    border: 1px solid #5AF3FF;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(90, 243, 255, 0.1);
}

.power-mavqi-5720-quote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.power-mavqi-5720-expert-name {
    text-align: right;
    font-weight: bold;
    color: #5AF3FF;
    font-size: 18px;
    margin-bottom: 40px;
}

.power-mavqi-5720-details {
    border-top: 1px solid rgba(90, 243, 255, 0.3);
    padding-top: 20px;
}

.power-mavqi-5720-summary {
    cursor: pointer;
    font-weight: bold;
    color: #5AF3FF;
    padding: 10px;
}

.power-mavqi-5720-ul-details {
    list-style: circle;
    padding: 20px 40px;
}

/* BENEFITS SECTION */
.power-mavqi-5720-benefits-section {
    padding: 80px 0;
}

.power-mavqi-5720-benefits-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.power-mavqi-5720-benefits-text, .power-mavqi-5720-benefits-image {
    flex: 1;
    min-width: 300px;
}

.power-mavqi-5720-ul {
    list-style: none;
    margin-top: 20px;
}

.power-mavqi-5720-ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.power-mavqi-5720-ul li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

/* FAQ SECTION */
.power-mavqi-5720-faq-section {
    padding: 80px 0;
    background-color: #0a0c0e;
}

.power-mavqi-5720-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.power-mavqi-5720-faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.power-mavqi-5720-faq-summary {
    padding: 20px;
    background: #050607;
    cursor: pointer;
    font-weight: 700;
    color: #ffffff;
    transition: background 0.3s ease;
}

.power-mavqi-5720-faq-summary:hover {
    background: rgba(90, 243, 255, 0.05);
}

.power-mavqi-5720-faq-content {
    padding: 20px;
    background: #0a0c0e;
    border-top: 1px solid rgba(90, 243, 255, 0.1);
}

/* FORM SECTION */
.power-mavqi-5720-form-section {
    padding: 80px 0;
}

.power-mavqi-5720-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0a0c0e;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.1);
}

.power-mavqi-5720-form-group {
    margin-bottom: 20px;
}

.power-mavqi-5720-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #5AF3FF;
    font-weight: 600;
}

.power-mavqi-5720-input, .power-mavqi-5720-textarea {
    width: 100%;
    padding: 12px;
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    color: #ffffff;
    border-radius: 4px;
}

.power-mavqi-5720-input:focus, .power-mavqi-5720-textarea:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

.power-mavqi-5720-textarea {
    height: 120px;
    resize: vertical;
}

.power-mavqi-5720-checkbox-group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.power-mavqi-5720-checkbox-group a {
    color: #5AF3FF;
}

.power-mavqi-5720-btn-submit {
    width: 100%;
    background-color: #5AF3FF;
    color: #050607;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.power-mavqi-5720-btn-submit:hover {
    box-shadow: 0 0 20px #5AF3FF;
}

/* EXTRA TEXT BLOCKS */
.power-mavqi-5720-text-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
}

/* FOOTER */
.power-mavqi-5720-footer {
    padding: 60px 0 20px;
    background-color: #050607;
    border-top: 1px solid #5AF3FF;
    text-align: center;
    font-size: 14px;
}

.power-mavqi-5720-footer-content p {
    margin-bottom: 10px;
}

.power-mavqi-5720-footer-content a {
    color: #5AF3FF;
    text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .power-mavqi-5720-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050607;
        border-bottom: 2px solid #5AF3FF;
    }

    .power-mavqi-5720-nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .power-mavqi-5720-burger {
        display: flex;
    }

    .power-mavqi-5720-menu-toggle:checked ~ .power-mavqi-5720-nav {
        display: block;
    }

    .power-mavqi-5720-h1 {
        font-size: 32px;
    }

    .power-mavqi-5720-hero-grid {
        flex-direction: column-reverse;
    }
    
    .power-mavqi-5720-price-card.power-mavqi-5720-featured {
        transform: scale(1);
    }
}