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

body.st-bexnu-7420-body-root {
    background-color: #0B0020;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.st-bexnu-7420-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.st-bexnu-7420-header-main {
    background: #0B0020;
    border-bottom: 2px solid #B98CFF;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.st-bexnu-7420-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.st-bexnu-7420-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.st-bexnu-7420-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.st-bexnu-7420-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.st-bexnu-7420-nav-link:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

/* BURGER MENU (No JS) */
.st-bexnu-7420-menu-checkbox {
    display: none;
}

.st-bexnu-7420-burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.st-bexnu-7420-burger-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #B98CFF;
    transition: 0.3s;
}

/* HERO SECTION */
.st-bexnu-7420-hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.st-bexnu-7420-hero-red-frame {
    border: 3px solid #FF0000;
    padding: 40px;
    margin: 0 auto;
    position: relative;
}

.st-bexnu-7420-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.st-bexnu-7420-hero-image-box {
    flex: 1;
}

.st-bexnu-7420-hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    object-fit: cover;
}

.st-bexnu-7420-hero-content {
    flex: 1.2;
}

.st-bexnu-7420-hero-h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #B98CFF;
}

.st-bexnu-7420-hero-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
    color: #E0E0E0;
    font-weight: 300;
}

.st-bexnu-7420-hero-desc {
    margin-bottom: 20px;
    color: #CCCCCC;
}

/* BUTTONS */
.st-bexnu-7420-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #B98CFF;
    color: #0B0020;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

.st-bexnu-7420-btn-primary:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px #B98CFF;
}

.st-bexnu-7420-btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #B98CFF;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #B98CFF;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.st-bexnu-7420-btn-secondary:hover {
    background-color: rgba(185, 140, 255, 0.1);
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.5);
}

/* PRICE SECTION */
.st-bexnu-7420-price-section {
    padding: 80px 0;
    background-color: #0e002a;
}

.st-bexnu-7420-section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #B98CFF;
    text-transform: uppercase;
}

.st-bexnu-7420-price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.st-bexnu-7420-price-card {
    background: #150035;
    border: 1px solid #332255;
    padding: 40px 30px;
    border-radius: 15px;
    width: calc(25% - 30px);
    min-width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.st-bexnu-7420-price-card:hover {
    transform: translateY(-10px);
    border-color: #B98CFF;
}

.st-bexnu-7420-price-featured {
    border: 2px solid #B98CFF;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.2);
    position: relative;
    z-index: 1;
}

.st-bexnu-7420-price-name {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.st-bexnu-7420-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #B98CFF;
    margin-bottom: 25px;
}

.st-bexnu-7420-price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.st-bexnu-7420-price-features li {
    padding: 8px 0;
    border-bottom: 1px solid #2a1a4a;
    font-size: 14px;
}

.st-bexnu-7420-price-description {
    font-size: 13px;
    color: #AAAAAA;
    margin-bottom: 30px;
}

/* REVIEWS SECTION */
.st-bexnu-7420-reviews-section {
    padding: 80px 0;
}

.st-bexnu-7420-reviews-flex {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.st-bexnu-7420-review-item {
    background: #1a0040;
    padding: 30px;
    border-radius: 10px;
    min-width: 350px;
    flex: 1;
}

.st-bexnu-7420-review-stars {
    color: #B98CFF;
    margin-bottom: 15px;
}

.st-bexnu-7420-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.st-bexnu-7420-review-author {
    font-weight: 700;
    color: #B98CFF;
}

/* AUDIENCE SECTION */
.st-bexnu-7420-audience-section {
    padding: 80px 0;
    background-color: #0B0020;
}

.st-bexnu-7420-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.st-bexnu-7420-audience-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.st-bexnu-7420-audience-list-box {
    flex: 1;
}

.st-bexnu-7420-audience-list {
    list-style: none;
}

.st-bexnu-7420-audience-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.st-bexnu-7420-audience-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #B98CFF;
}

.st-bexnu-7420-audience-image-box {
    flex: 1;
    position: relative;
}

.st-bexnu-7420-audience-img {
    width: 100%;
    border-radius: 50% 20% 50% 20%;
    border: 5px solid #B98CFF;
}

.st-bexnu-7420-audience-price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #FF0000;
    padding: 10px 20px;
    font-weight: 800;
    border-radius: 5px;
    transform: rotate(5deg);
}

/* PRACTITIONER BLOCK */
.st-bexnu-7420-practitioner-section {
    padding: 80px 0;
}

.st-bexnu-7420-practitioner-card {
    background: #150035;
    padding: 60px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.st-bexnu-7420-practitioner-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.st-bexnu-7420-practitioner-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #B98CFF;
}

.st-bexnu-7420-practitioner-quote {
    font-size: 24px;
    line-height: 1.4;
    color: #B98CFF;
    margin-bottom: 30px;
    border-left: 4px solid #B98CFF;
    padding-left: 20px;
}

.st-bexnu-7420-practitioner-details {
    cursor: pointer;
}

.st-bexnu-7420-practitioner-summary {
    font-weight: 700;
    margin-bottom: 15px;
    outline: none;
}

.st-bexnu-7420-practitioner-list {
    margin-top: 15px;
    padding-left: 20px;
}

.st-bexnu-7420-practitioner-list li {
    margin-bottom: 10px;
}

/* BENEFITS */
.st-bexnu-7420-benefits-section {
    padding: 80px 0;
    background-color: #0e002a;
}

.st-bexnu-7420-benefits-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.st-bexnu-7420-benefits-content {
    flex: 1;
}

.st-bexnu-7420-benefits-ul {
    list-style: none;
}

.st-bexnu-7420-benefits-ul li {
    margin-bottom: 25px;
    padding: 20px;
    background: #1a0040;
    border-radius: 10px;
    border-right: 4px solid #B98CFF;
}

.st-bexnu-7420-benefits-image {
    flex: 1;
}

.st-bexnu-7420-benefits-img {
    width: 100%;
    border-radius: 20px;
}

/* FAQ SECTION */
.st-bexnu-7420-faq-section {
    padding: 80px 0;
}

.st-bexnu-7420-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.st-bexnu-7420-faq-item {
    background: #150035;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.st-bexnu-7420-faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #B98CFF;
}

.st-bexnu-7420-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.st-bexnu-7420-faq-answer {
    padding: 0 20px 20px;
    color: #CCCCCC;
}

/* TEXT SECTIONS */
.st-bexnu-7420-text-section {
    padding: 100px 0;
}

.st-bexnu-7420-bg-alt {
    background-color: #050010;
}

.st-bexnu-7420-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.st-bexnu-7420-text-content p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #DDDDDD;
}

/* CONTACT FORM */
.st-bexnu-7420-contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0020 0%, #150035 100%);
}

.st-bexnu-7420-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0B0020;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.1);
}

.st-bexnu-7420-form-group {
    margin-bottom: 20px;
}

.st-bexnu-7420-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #B98CFF;
}

.st-bexnu-7420-form-input, .st-bexnu-7420-form-textarea {
    width: 100%;
    padding: 12px;
    background: #1a0040;
    border: 1px solid #332255;
    color: #FFFFFF;
    border-radius: 5px;
    outline: none;
}

.st-bexnu-7420-form-input:focus, .st-bexnu-7420-form-textarea:focus {
    border-color: #B98CFF;
}

.st-bexnu-7420-form-textarea {
    height: 120px;
    resize: vertical;
}

.st-bexnu-7420-form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.st-bexnu-7420-btn-submit {
    width: 100%;
    padding: 15px;
    background: #B98CFF;
    color: #0B0020;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.st-bexnu-7420-btn-submit:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px #B98CFF;
}

/* FOOTER */
.st-bexnu-7420-footer-main {
    padding: 60px 0;
    background: #050010;
    border-top: 1px solid #332255;
    text-align: center;
}

.st-bexnu-7420-footer-brand {
    font-size: 20px;
    margin-bottom: 20px;
    color: #B98CFF;
}

.st-bexnu-7420-footer-info {
    font-size: 14px;
    color: #999999;
    margin-bottom: 30px;
}

.st-bexnu-7420-footer-info a {
    color: #FFFFFF;
    text-decoration: none;
}

.st-bexnu-7420-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.st-bexnu-7420-footer-links a {
    color: #777777;
    text-decoration: none;
    font-size: 12px;
}

.st-bexnu-7420-footer-links a:hover {
    color: #B98CFF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .st-bexnu-7420-hero-grid, .st-bexnu-7420-audience-layout, .st-bexnu-7420-benefits-layout {
        flex-direction: column;
    }
    .st-bexnu-7420-price-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .st-bexnu-7420-nav-container {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0B0020;
        padding: 20px;
        border-bottom: 2px solid #B98CFF;
    }
    
    .st-bexnu-7420-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .st-bexnu-7420-menu-checkbox:checked ~ .st-bexnu-7420-nav-container {
        display: block;
    }

    .st-bexnu-7420-burger-btn {
        display: flex;
    }

    .st-bexnu-7420-price-card {
        width: 100%;
    }

    .st-bexnu-7420-hero-h1 {
        font-size: 32px;
    }
}