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

html {
    scroll-behavior: smooth;
}

body.lunvexa-jointrest-9935-body-main {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0A0C10;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

.lunvexa-jointrest-9935-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* TYPOGRAPHY */
.lunvexa-jointrest-9935-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.lunvexa-jointrest-9935-h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #CFFF35;
    margin-bottom: 30px;
    text-align: center;
}

.lunvexa-jointrest-9935-h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.lunvexa-jointrest-9935-h4 {
    font-size: 1.3rem;
    color: #CFFF35;
    margin-bottom: 10px;
}

.lunvexa-jointrest-9935-p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #B0B0B0;
}

.lunvexa-jointrest-9935-subtitle {
    font-size: 1.4rem;
    color: #CFFF35;
    margin-bottom: 25px;
    font-weight: 300;
}

/* HEADER & NAV */
.lunvexa-jointrest-9935-header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(207, 255, 53, 0.1);
}

.lunvexa-jointrest-9935-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.lunvexa-jointrest-9935-header-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #CFFF35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lunvexa-jointrest-9935-nav-menu {
    display: flex;
    gap: 25px;
}

.lunvexa-jointrest-9935-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.lunvexa-jointrest-9935-nav-link:hover {
    color: #CFFF35;
}

/* Burger Menu */
.lunvexa-jointrest-9935-nav-toggle {
    display: none;
}

.lunvexa-jointrest-9935-nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.lunvexa-jointrest-9935-nav-burger span {
    width: 30px;
    height: 3px;
    background: #CFFF35;
    transition: 0.3s;
}

.lunvexa-jointrest-9935-pulsing-line {
    height: 2px;
    background: #CFFF35;
    width: 100%;
    animation: lunvexa-pulse 2s infinite ease-in-out;
}

@keyframes lunvexa-pulse {
    0% { opacity: 0.2; transform: scaleX(0.95); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.2; transform: scaleX(0.95); }
}

/* BUTTONS */
.lunvexa-jointrest-9935-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid #CFFF35;
}

.lunvexa-jointrest-9935-btn-primary:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    background-color: #FFFFFF;
}

.lunvexa-jointrest-9935-btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #CFFF35;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #CFFF35;
    transition: 0.3s;
}

.lunvexa-jointrest-9935-btn-secondary:hover {
    background-color: rgba(207, 255, 53, 0.1);
}

/* HERO SECTION */
.lunvexa-jointrest-9935-hero-section {
    padding: 80px 0;
}

.lunvexa-jointrest-9935-hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.lunvexa-jointrest-9935-hero-media {
    flex: 1;
    min-width: 300px;
}

.lunvexa-jointrest-9935-hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 20px 20px 0 rgba(207, 255, 53, 0.05);
}

.lunvexa-jointrest-9935-hero-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.lunvexa-jointrest-9935-gallery-item {
    width: calc(33.33% - 10px);
    border-radius: 8px;
    object-fit: cover;
}

.lunvexa-jointrest-9935-hero-text {
    flex: 1;
    min-width: 300px;
}

.lunvexa-jointrest-9935-cta-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.lunvexa-jointrest-9935-marker {
    font-size: 2rem;
    color: #CFFF35;
    animation: lunvexa-slide 1s infinite alternate;
}

@keyframes lunvexa-slide {
    from { transform: translateX(0); }
    to { transform: translateX(10px); }
}

/* PRICES */
.lunvexa-jointrest-9935-prices-section {
    padding: 100px 0;
    background: #0F1218;
}

.lunvexa-jointrest-9935-price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.lunvexa-jointrest-9935-price-card {
    flex: 1;
    min-width: 250px;
    background: #161A21;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.lunvexa-jointrest-9935-card-featured {
    border: 1px solid #CFFF35;
    transform: scale(1.05);
    background: #1A1E26;
}

.lunvexa-jointrest-9935-price-head {
    margin-bottom: 30px;
}

.lunvexa-jointrest-9935-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #CFFF35;
}

.lunvexa-jointrest-9935-price-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.lunvexa-jointrest-9935-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

/* QUOTE SECTION */
.lunvexa-jointrest-9935-word-section {
    padding: 100px 0;
}

.lunvexa-jointrest-9935-quote-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    background: #1A1E26;
    padding: 60px;
    border-radius: 20px;
}

.lunvexa-jointrest-9935-quote-text {
    flex: 2;
    min-width: 300px;
}

.lunvexa-jointrest-9935-blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid #CFFF35;
}

.lunvexa-jointrest-9935-author-info strong {
    display: block;
    font-size: 1.3rem;
    color: #CFFF35;
}

.lunvexa-jointrest-9935-quote-list {
    flex: 1;
    min-width: 250px;
}

.lunvexa-jointrest-9935-bullet-list {
    list-style: none;
}

.lunvexa-jointrest-9935-bullet-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.lunvexa-jointrest-9935-bullet-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
}

/* BENEFITS */
.lunvexa-jointrest-9935-benefits-section {
    padding: 100px 0;
}

.lunvexa-jointrest-9935-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.lunvexa-jointrest-9935-benefits-content {
    flex: 1;
    min-width: 300px;
}

.lunvexa-jointrest-9935-benefit-list {
    list-style: none;
    margin-top: 40px;
}

.lunvexa-jointrest-9935-benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.lunvexa-jointrest-9935-benefit-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(207, 255, 53, 0.2);
    line-height: 1;
}

.lunvexa-jointrest-9935-benefits-image {
    flex: 1;
    min-width: 300px;
}

.lunvexa-jointrest-9935-img-rounded {
    width: 100%;
    border-radius: 50% 20% 50% 20%;
    border: 8px solid #161A21;
}

/* AUDIENCE */
.lunvexa-jointrest-9935-audience-section {
    padding: 100px 0;
    background: #0A0C10;
    position: relative;
}

.lunvexa-jointrest-9935-audience-intro {
    text-align: center;
    margin-bottom: 60px;
}

.lunvexa-jointrest-9935-discount-badge {
    display: inline-block;
    background: #CFFF35;
    color: #0A0C10;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 20px;
    animation: lunvexa-pulse-glow 2s infinite;
}

@keyframes lunvexa-pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(207, 255, 53, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(207, 255, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(207, 255, 53, 0); }
}

.lunvexa-jointrest-9935-audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.lunvexa-jointrest-9935-audience-box {
    flex: 1;
    min-width: calc(25% - 15px);
    background: #161A21;
    padding: 30px;
    border-left: 3px solid #CFFF35;
    transition: 0.3s;
    font-weight: 500;
}

.lunvexa-jointrest-9935-audience-box:hover {
    background: #CFFF35;
    color: #0A0C10;
}

.lunvexa-jointrest-9935-line-decor {
    height: 1px;
    background: linear-gradient(90deg, transparent, #CFFF35, transparent);
    margin-top: 60px;
}

/* FAQ */
.lunvexa-jointrest-9935-faq-section {
    padding: 100px 0;
}

.lunvexa-jointrest-9935-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lunvexa-jointrest-9935-faq-item {
    background: #161A21;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.lunvexa-jointrest-9935-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lunvexa-jointrest-9935-faq-summary::after {
    content: '+';
    color: #CFFF35;
    font-size: 1.5rem;
}

.lunvexa-jointrest-9935-faq-item[open] .lunvexa-jointrest-9935-faq-summary::after {
    content: '-';
}

.lunvexa-jointrest-9935-faq-content {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* TEXT SECTIONS */
.lunvexa-jointrest-9935-text-section {
    padding: 80px 0;
}

.lunvexa-jointrest-bg-alt {
    background: #0F1218;
}

/* FORM */
.lunvexa-jointrest-9935-form-section {
    padding: 100px 0;
    background: #161A21;
}

.lunvexa-jointrest-9935-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lunvexa-jointrest-9935-main-form {
    text-align: left;
    margin-top: 40px;
}

.lunvexa-jointrest-9935-input-group {
    margin-bottom: 20px;
}

.lunvexa-jointrest-9935-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.lunvexa-jointrest-9935-input, 
.lunvexa-jointrest-9935-textarea {
    width: 100%;
    padding: 15px;
    background: #0A0C10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 4px;
}

.lunvexa-jointrest-9935-textarea {
    height: 120px;
    resize: vertical;
}

.lunvexa-jointrest-9935-checkbox-group {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
}

.lunvexa-jointrest-9935-checkbox-group a {
    color: #CFFF35;
}

.lunvexa-jointrest-9935-btn-submit {
    width: 100%;
    padding: 18px;
    background: #CFFF35;
    border: none;
    color: #0A0C10;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.lunvexa-jointrest-9935-btn-submit:hover {
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(207, 255, 53, 0.4);
}

/* FOOTER */
.lunvexa-jointrest-9935-footer {
    padding: 60px 0 30px;
    background: #050608;
    border-top: 1px solid rgba(207, 255, 53, 0.1);
}

.lunvexa-jointrest-9935-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.lunvexa-jointrest-9935-footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #CFFF35;
}

.lunvexa-jointrest-9935-footer-contacts a {
    color: #FFFFFF;
    text-decoration: none;
}

.lunvexa-jointrest-9935-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #666;
}

.lunvexa-jointrest-9935-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lunvexa-jointrest-9935-footer-links a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.lunvexa-jointrest-9935-footer-links a:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .lunvexa-jointrest-9935-price-card {
        transform: none !important;
    }
    .lunvexa-jointrest-9935-audience-box {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .lunvexa-jointrest-9935-nav-burger {
        display: flex;
    }
    .lunvexa-jointrest-9935-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A0C10;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 2px solid #CFFF35;
    }
    .lunvexa-jointrest-9935-nav-toggle:checked ~ .lunvexa-jointrest-9935-nav-menu {
        display: flex;
    }
    .lunvexa-jointrest-9935-hero-grid, 
    .lunvexa-jointrest-9935-benefits-grid, 
    .lunvexa-jointrest-9935-quote-container {
        flex-direction: column;
    }
    .lunvexa-jointrest-9935-audience-box {
        min-width: 100%;
    }
    .lunvexa-jointrest-9935-footer-top {
        flex-direction: column;
        text-align: center;
    }
}