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

body.core-qunda-1493-body {
    background-color: #0B0020;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.core-qunda-1493-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.core-qunda-1493-header {
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(185, 140, 255, 0.2);
}

.core-qunda-1493-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.core-qunda-1493-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #B98CFF;
    text-transform: uppercase;
}

.core-qunda-1493-menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.core-qunda-1493-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.core-qunda-1493-nav-link:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

/* BURGER */
.core-qunda-1493-menu-checkbox {
    display: none;
}

.core-qunda-1493-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.core-qunda-1493-burger span {
    width: 30px;
    height: 3px;
    background-color: #B98CFF;
    transition: 0.3s;
}

/* HERO SECTION */
.core-qunda-1493-hero-section {
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.core-qunda-1493-quick-links {
    padding: 20px 0;
    background: linear-gradient(90deg, #0B0020 0%, #1e0030 50%, #0B0020 100%);
    border-bottom: 1px solid rgba(185, 140, 255, 0.3);
    margin-bottom: 40px;
}

.core-qunda-1493-links-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.core-qunda-1493-quick-btn {
    padding: 8px 18px;
    border: 1px solid #B98CFF;
    color: #B98CFF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s;
}

.core-qunda-1493-quick-btn:hover {
    background-color: #B98CFF;
    color: #0B0020;
    box-shadow: 0 0 15px #B98CFF;
}

.core-qunda-1493-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.core-qunda-1493-hero-image-col {
    flex: 1;
}

.core-qunda-1493-hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 20px 20px 0px #B98CFF;
}

.core-qunda-1493-hero-content-col {
    flex: 1.2;
}

.core-qunda-1493-h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #B98CFF;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.core-qunda-1493-sub-h1 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-weight: 300;
}

.core-qunda-1493-hero-p {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 17px;
}

.core-qunda-1493-cta-btn {
    display: inline-block;
    padding: 18px 35px;
    background-color: #B98CFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
}

.core-qunda-1493-cta-btn:hover {
    background-color: #FFFFFF;
    color: #0B0020;
    box-shadow: 0 0 30px #B98CFF;
    transform: translateY(-3px);
}

/* TITLES */
.core-qunda-1493-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #B98CFF;
    position: relative;
    padding-bottom: 15px;
}

.core-qunda-1493-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #B98CFF;
}

/* REVIEWS */
.core-qunda-1493-reviews-section {
    padding: 100px 0;
    background-color: rgba(30, 0, 48, 0.4);
}

.core-qunda-1493-reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.core-qunda-1493-review-card {
    flex: 1;
    min-width: 300px;
    background: #150035;
    padding: 40px;
    border-left: 5px solid #B98CFF;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.core-qunda-1493-review-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}

.core-qunda-1493-review-author {
    font-weight: bold;
    color: #B98CFF;
}

/* PRICES */
.core-qunda-1493-price-section {
    padding: 100px 0;
}

.core-qunda-1493-price-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.core-qunda-1493-price-card {
    flex: 1;
    background-color: #1e0030;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(185, 140, 255, 0.2);
    transition: transform 0.3s;
}

.core-qunda-1493-price-featured {
    transform: scale(1.05);
    border: 2px solid #B98CFF;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.15);
    position: relative;
}

.core-qunda-1493-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #B98CFF;
    color: #0B0020;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.core-qunda-1493-price-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.core-qunda-1493-price-val {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #B98CFF;
}

.core-qunda-1493-old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.core-qunda-1493-price-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.core-qunda-1493-price-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
}

.core-qunda-1493-price-list li::before {
    content: '⚡';
    margin-right: 10px;
    color: #B98CFF;
}

.core-qunda-1493-price-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: 2px solid #B98CFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.core-qunda-1493-price-btn:hover {
    background-color: #B98CFF;
    color: #0B0020;
}

.core-qunda-1493-price-footer-links {
    margin-top: 40px;
    text-align: center;
    color: #888;
}

.core-qunda-1493-price-footer-links a {
    color: #B98CFF;
    text-decoration: none;
}

/* FOR WHOM */
.core-qunda-1493-who-section {
    padding: 100px 0;
    background-color: #0B0020;
}

.core-qunda-1493-who-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.core-qunda-1493-who-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.core-qunda-1493-who-item {
    background: #150035;
    padding: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.core-qunda-1493-who-decor-line {
    width: 4px;
    height: 40px;
    background-color: #B98CFF;
    box-shadow: 0 0 10px #B98CFF;
}

.core-qunda-1493-promo-box {
    margin-top: 60px;
    padding: 30px;
    border: 2px dashed #B98CFF;
    text-align: center;
    font-size: 22px;
    border-radius: 10px;
}

/* EXPERT */
.core-qunda-1493-expert-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0020 0%, #1e0030 100%);
}

.core-qunda-1493-expert-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #150035;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.core-qunda-1493-quote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.core-qunda-1493-expert-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-qunda-1493-expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #B98CFF;
    object-fit: cover;
}

.core-qunda-1493-expert-name {
    font-size: 20px;
    font-weight: bold;
    color: #B98CFF;
}

.core-qunda-1493-expert-title {
    font-size: 14px;
    color: #888;
}

/* BENEFITS */
.core-qunda-1493-benefits-section {
    padding: 100px 0;
}

.core-qunda-1493-benefits-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.core-qunda-1493-benefits-text {
    flex: 1;
}

.core-qunda-1493-benefits-text .core-qunda-1493-h2 {
    text-align: left;
}

.core-qunda-1493-benefits-text .core-qunda-1493-h2::after {
    left: 0;
    transform: none;
}

.core-qunda-1493-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.core-qunda-1493-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.core-qunda-1493-benefits-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #B98CFF;
}

.core-qunda-1493-benefits-image {
    flex: 1;
}

.core-qunda-1493-benefits-img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 0 20px rgba(185, 140, 255, 0.3));
}

/* FAQ */
.core-qunda-1493-faq-section {
    padding: 100px 0;
    background-color: #1e0030;
}

.core-qunda-1493-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.core-qunda-1493-faq-item {
    margin-bottom: 15px;
    background: #0B0020;
    border-radius: 5px;
    overflow: hidden;
}

.core-qunda-1493-faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.core-qunda-1493-faq-question:hover {
    background: rgba(185, 140, 255, 0.1);
}

.core-qunda-1493-faq-question::after {
    content: '+';
    font-size: 24px;
    color: #B98CFF;
}

.core-qunda-1493-faq-item[open] .core-qunda-1493-faq-question::after {
    content: '-';
}

.core-qunda-1493-faq-answer {
    padding: 20px;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
    color: #ccc;
}

/* TEXT LARGE SECTIONS */
.core-qunda-1493-text-large {
    padding: 80px 0;
}

.core-qunda-1493-alt-bg {
    background-color: #150035;
}

.core-qunda-1493-text-large p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #e0e0e0;
    max-width: 1000px;
}

.core-qunda-1493-habits-points {
    list-style: none;
    margin-top: 20px;
}

.core-qunda-1493-habits-points li {
    padding: 15px 20px;
    background: rgba(185, 140, 255, 0.05);
    border-left: 3px solid #B98CFF;
    margin-bottom: 10px;
}

/* FORM */
.core-qunda-1493-form-section {
    padding: 100px 0;
}

.core-qunda-1493-form-box {
    max-width: 700px;
    margin: 0 auto;
    background: #1e0030;
    padding: 60px;
    border-radius: 15px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 50px rgba(185, 140, 255, 0.1);
}

.core-qunda-1493-sub-h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #bbb;
}

.core-qunda-1493-field-group {
    margin-bottom: 25px;
}

.core-qunda-1493-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.core-qunda-1493-input, .core-qunda-1493-textarea {
    width: 100%;
    padding: 15px;
    background: #0B0020;
    border: 1px solid rgba(185, 140, 255, 0.3);
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
}

.core-qunda-1493-input:focus, .core-qunda-1493-textarea:focus {
    outline: none;
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.4);
}

.core-qunda-1493-checkbox-group {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.core-qunda-1493-checkbox-group a {
    color: #B98CFF;
}

.core-qunda-1493-submit-btn {
    width: 100%;
    padding: 20px;
    background: #B98CFF;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.core-qunda-1493-submit-btn:hover {
    box-shadow: 0 0 30px #B98CFF;
    transform: scale(1.02);
}

/* FOOTER */
.core-qunda-1493-footer {
    background-color: #050010;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
}

.core-qunda-1493-footer-main {
    text-align: center;
    margin-bottom: 50px;
}

.core-qunda-1493-footer-brand {
    font-size: 24px;
    font-weight: bold;
    color: #B98CFF;
    margin-bottom: 20px;
}

.core-qunda-1493-footer-main p {
    margin-bottom: 10px;
    color: #888;
}

.core-qunda-1493-footer-main a {
    color: #FFFFFF;
    text-decoration: none;
}

.core-qunda-1493-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #666;
}

.core-qunda-1493-footer-nav {
    display: flex;
    gap: 20px;
}

.core-qunda-1493-footer-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.core-qunda-1493-footer-nav a:hover {
    color: #B98CFF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .core-qunda-1493-hero-grid {
        flex-direction: column;
    }
    .core-qunda-1493-price-grid {
        flex-direction: column;
        align-items: center;
    }
    .core-qunda-1493-price-card {
        width: 100%;
        max-width: 500px;
    }
    .core-qunda-1493-benefits-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .core-qunda-1493-burger {
        display: flex;
        z-index: 1001;
    }
    .core-qunda-1493-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0B0020;
        padding: 100px 40px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .core-qunda-1493-menu-checkbox:checked ~ .core-qunda-1493-nav {
        right: 0;
    }
    .core-qunda-1493-menu-list {
        flex-direction: column;
        gap: 30px;
    }
    .core-qunda-1493-h1 {
        font-size: 32px;
    }
    .core-qunda-1493-who-list {
        grid-template-columns: 1fr;
    }
    .core-qunda-1493-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .core-qunda-1493-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}