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

body.zenqora-softpath-9302-body {
    background-color: #050607;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.zenqora-softpath-9302-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: 8px;
}

/* Typography */
.zenqora-softpath-9302-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #5AF3FF;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(90, 243, 255, 0.5);
}

.zenqora-softpath-9302-h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #5AF3FF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.zenqora-softpath-9302-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

.zenqora-softpath-9302-h3 {
    font-size: 1.5rem;
    color: #5AF3FF;
    margin-bottom: 15px;
}

.zenqora-softpath-9302-subtitle {
    font-size: 1.25rem;
    color: #5AF3FF;
    opacity: 0.9;
    margin-bottom: 25px;
}

.zenqora-softpath-9302-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cccccc;
}

/* Buttons */
.zenqora-softpath-9302-btn-primary {
    display: inline-block;
    background-color: #5AF3FF;
    color: #050607;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

.zenqora-softpath-9302-btn-primary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 25px #5AF3FF;
    filter: blur(0.2px);
    transform: translateY(-2px);
}

.zenqora-softpath-9302-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #5AF3FF;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #5AF3FF;
    cursor: pointer;
}

.zenqora-softpath-9302-btn-outline:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 15px #5AF3FF;
}

/* Header */
.zenqora-softpath-9302-header {
    background-color: rgba(5, 6, 7, 0.9);
    border-bottom: 1px solid #5AF3FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.zenqora-softpath-9302-header-inner {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zenqora-softpath-9302-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #5AF3FF;
    letter-spacing: 2px;
}

.zenqora-softpath-9302-nav-list {
    display: flex;
    gap: 25px;
}

.zenqora-softpath-9302-nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.zenqora-softpath-9302-nav-link:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px #5AF3FF;
}

.zenqora-softpath-9302-burger-checkbox, .zenqora-softpath-9302-burger-label {
    display: none;
}

/* Hero Section */
.zenqora-softpath-9302-hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zenqora-softpath-9302-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.zenqora-softpath-9302-hero-images, .zenqora-softpath-9302-hero-content {
    flex: 1;
    min-width: 320px;
}

.zenqora-softpath-9302-hero-img-stack {
    position: relative;
    height: 550px;
}

.zenqora-softpath-9302-hero-img-stack img {
    position: absolute;
    width: 250px;
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

.zenqora-softpath-9302-hero-img-1 { top: 0; left: 0; z-index: 3; }
.zenqora-softpath-9302-hero-img-2 { top: 80px; left: 120px; z-index: 2; opacity: 0.7; }
.zenqora-softpath-9302-hero-img-3 { top: 160px; left: 40px; z-index: 1; opacity: 0.5; }

.zenqora-softpath-9302-cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

/* Reviews Section */
.zenqora-softpath-9302-reviews-section {
    padding: 80px 0;
    background-color: rgba(90, 243, 255, 0.02);
}

.zenqora-softpath-9302-quote-box {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    border-left: 4px solid #5AF3FF;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
}

.zenqora-softpath-9302-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
}

.zenqora-softpath-9302-quote-author {
    color: #5AF3FF;
    font-weight: bold;
}

.zenqora-softpath-9302-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.zenqora-softpath-9302-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
}

.zenqora-softpath-9302-slider-container::-webkit-scrollbar {
    display: none;
}

.zenqora-softpath-9302-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    min-width: 300px;
}

.zenqora-softpath-9302-review-card {
    background: #0d1117;
    padding: 30px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zenqora-softpath-9302-review-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.zenqora-softpath-9302-review-user {
    color: #5AF3FF;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Price Section */
.zenqora-softpath-9302-price-section {
    padding: 100px 0;
}

.zenqora-softpath-9302-price-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.zenqora-softpath-9302-price-card {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background: #0a0c10;
    padding: 40px;
    border: 1px solid rgba(90, 243, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.zenqora-softpath-9302-price-card:hover {
    transform: translateY(-10px);
    border-color: #5AF3FF;
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.1);
}

.zenqora-softpath-9302-featured {
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.2);
    transform: scale(1.05);
}

.zenqora-softpath-9302-price-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 20px 0;
}

.zenqora-softpath-9302-price-list {
    margin-bottom: 30px;
    text-align: left;
}

.zenqora-softpath-9302-price-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.zenqora-softpath-9302-price-list li::before {
    content: '⚡';
    margin-right: 10px;
    color: #5AF3FF;
}

/* Benefits Section */
.zenqora-softpath-9302-benefits-section {
    padding: 100px 0;
    background: #050607;
}

.zenqora-softpath-9302-benefits-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap-reverse;
}

.zenqora-softpath-9302-benefits-content, .zenqora-softpath-9302-benefits-image {
    flex: 1;
    min-width: 320px;
}

.zenqora-softpath-9302-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.zenqora-softpath-9302-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #5AF3FF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Target Section */
.zenqora-softpath-9302-target-section {
    padding: 80px 0;
}

.zenqora-softpath-9302-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.zenqora-softpath-9302-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.zenqora-softpath-9302-target-card {
    background: rgba(90, 243, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed rgba(90, 243, 255, 0.2);
}

.zenqora-softpath-9302-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 5px #5AF3FF);
}

/* FAQ Section */
.zenqora-softpath-9302-faq-section {
    padding: 100px 0;
}

.zenqora-softpath-9302-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.zenqora-softpath-9302-faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.1);
    border-radius: 8px;
    background: #0a0c10;
}

.zenqora-softpath-9302-faq-title {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #5AF3FF;
    outline: none;
    list-style: none;
}

.zenqora-softpath-9302-faq-title::-webkit-details-marker {
    display: none;
}

.zenqora-softpath-9302-faq-content {
    padding: 0 20px 20px;
    color: #bbbbbb;
}

/* Form Section */
.zenqora-softpath-9302-form-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #050607, #0d1117);
}

.zenqora-softpath-9302-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background: #050607;
    border: 1px solid #5AF3FF;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.1);
}

.zenqora-softpath-9302-input-group {
    margin-bottom: 20px;
}

.zenqora-softpath-9302-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #5AF3FF;
}

.zenqora-softpath-9302-input, .zenqora-softpath-9302-textarea {
    width: 100%;
    background: #0d1117;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 12px 15px;
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
}

.zenqora-softpath-9302-textarea {
    height: 120px;
    resize: vertical;
}

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

.zenqora-softpath-9302-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.zenqora-softpath-9302-checkbox-label {
    font-size: 0.85rem;
}

.zenqora-softpath-9302-checkbox-label a {
    color: #5AF3FF;
    text-decoration: underline;
}

.zenqora-softpath-9302-btn-submit {
    width: 100%;
    background: #5AF3FF;
    color: #050607;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.zenqora-softpath-9302-btn-submit:hover {
    box-shadow: 0 0 20px #5AF3FF;
    transform: translateY(-2px);
}

/* Extra Text Sections */
.zenqora-softpath-9302-extra-section {
    padding: 80px 0;
}

.zenqora-softpath-9302-alt-bg {
    background: #0a0c10;
}

.zenqora-softpath-9302-rich-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cccccc;
}

.zenqora-softpath-9302-bullet-list, .zenqora-softpath-9302-ordered-list {
    margin: 25px 0 25px 20px;
}

.zenqora-softpath-9302-bullet-list li, .zenqora-softpath-9302-ordered-list li {
    margin-bottom: 12px;
}

.zenqora-softpath-9302-bullet-list li::before {
    content: '→';
    margin-right: 10px;
    color: #5AF3FF;
}

/* Footer */
.zenqora-softpath-9302-footer {
    padding: 60px 0 30px;
    background: #050607;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
    text-align: center;
}

.zenqora-softpath-9302-footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

.zenqora-softpath-9302-email a, .zenqora-softpath-9302-phone a {
    color: #5AF3FF;
}

.zenqora-softpath-9302-footer-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.zenqora-softpath-9302-footer-links a {
    font-size: 0.8rem;
    color: #666;
}

.zenqora-softpath-9302-footer-links a:hover {
    color: #5AF3FF;
}

/* Responsive */
@media (max-width: 992px) {
    .zenqora-softpath-9302-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .zenqora-softpath-9302-hero-img-stack {
        height: 400px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .zenqora-softpath-9302-hero-img-stack img { width: 180px; }
    .zenqora-softpath-9302-slide { flex: 0 0 calc(50% - 10px); }
    .zenqora-softpath-9302-price-card { transform: scale(1) !important; }
}

@media (max-width: 768px) {
    .zenqora-softpath-9302-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050607;
        transition: 0.4s;
        z-index: 999;
    }
    .zenqora-softpath-9302-nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .zenqora-softpath-9302-burger-label {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .zenqora-softpath-9302-burger-label span {
        display: block;
        width: 100%;
        height: 2px;
        background: #5AF3FF;
        position: absolute;
        transition: 0.3s;
    }
    .zenqora-softpath-9302-burger-label span:nth-child(2) { top: 9px; }
    .zenqora-softpath-9302-burger-label span:nth-child(3) { top: 18px; }
    
    #zenqora-softpath-9302-burger-toggle:checked ~ .zenqora-softpath-9302-nav {
        left: 0;
    }
    #zenqora-softpath-9302-burger-toggle:checked ~ .zenqora-softpath-9302-burger-label span:nth-child(1) { transform: rotate(45deg); top: 9px; }
    #zenqora-softpath-9302-burger-toggle:checked ~ .zenqora-softpath-9302-burger-label span:nth-child(2) { opacity: 0; }
    #zenqora-softpath-9302-burger-toggle:checked ~ .zenqora-softpath-9302-burger-label span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

    .zenqora-softpath-9302-slide { flex: 0 0 100%; }
    .zenqora-softpath-9302-form-wrapper { padding: 30px 20px; }
}