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

html {
    scroll-behavior: smooth;
}

body.qirel-softflow-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0C10;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

.qirel-softflow-container-9110 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* HEADER */
.qirel-softflow-header-9110 {
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(207, 255, 53, 0.1);
}

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

.qirel-softflow-logo-9110 {
    font-size: 28px;
    font-weight: 800;
    color: #CFFF35;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.qirel-softflow-navigation-9110 .qirel-softflow-nav-list {
    display: flex;
    gap: 25px;
}

.qirel-softflow-nav-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}

.qirel-softflow-nav-link:hover {
    color: #CFFF35;
}

.qirel-softflow-pulse-line {
    height: 2px;
    background: #CFFF35;
    width: 100%;
    box-shadow: 0 0 10px #CFFF35;
    animation: qirelPulse9110 3s infinite;
}

@keyframes qirelPulse9110 {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* BURGER MENU (NO JS) */
.qirel-softflow-toggle-input {
    display: none;
}

.qirel-softflow-burger-9110 {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.qirel-softflow-burger-9110 span {
    width: 30px;
    height: 3px;
    background-color: #CFFF35;
    border-radius: 2px;
}

/* HERO SECTION */
.qirel-softflow-hero-block-9110 {
    padding: 160px 0 100px;
}

.qirel-softflow-hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.qirel-softflow-hero-images {
    flex: 1;
    position: relative;
}

.qirel-softflow-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.qirel-softflow-mini-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.qirel-softflow-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #1A1D23;
}

.qirel-softflow-hero-content {
    flex: 1;
}

.qirel-softflow-h1-main {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.qirel-softflow-hero-sub {
    font-size: 20px;
    color: #CFFF35;
    margin-bottom: 20px;
    font-weight: 600;
}

.qirel-softflow-hero-text {
    margin-bottom: 15px;
    font-size: 17px;
    color: #B0B0B0;
}

.qirel-softflow-cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #CFFF35;
    color: #0A0C10;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 30px;
    text-transform: uppercase;
    box-shadow: 0 0 0 rgba(207, 255, 53, 0);
}

.qirel-softflow-cta-btn:hover {
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.6);
    transform: translateY(-3px);
}

/* REVIEWS */
.qirel-softflow-reviews-block-9110 {
    padding: 100px 0;
    background-color: #0F1218;
}

.qirel-softflow-h2-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.qirel-softflow-reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.qirel-softflow-review-card {
    flex: 1;
    min-width: 300px;
    background: #161A21;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid #CFFF35;
}

.qirel-softflow-review-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 17px;
}

.qirel-softflow-review-author {
    color: #CFFF35;
    font-weight: 600;
}

/* PRICES */
.qirel-softflow-price-block-9110 {
    padding: 100px 0;
}

.qirel-softflow-price-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.qirel-softflow-price-links a {
    color: #CFFF35;
    text-decoration: underline;
    font-size: 14px;
}

.qirel-softflow-price-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.qirel-softflow-price-card {
    background: #161A21;
    padding: 50px 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 380px;
    position: relative;
    border: 1px solid #1A1D23;
    display: flex;
    flex-direction: column;
}

.qirel-softflow-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #CFFF35;
    color: #0A0C10;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
}

.qirel-softflow-price-name {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.qirel-softflow-price-value {
    font-size: 42px;
    font-weight: 800;
    color: #CFFF35;
    margin-bottom: 30px;
}

.qirel-softflow-old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #666;
    margin-left: 10px;
}

.qirel-softflow-price-list {
    margin-bottom: 40px;
    flex-grow: 1;
}

.qirel-softflow-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid #1A1D23;
    font-size: 15px;
}

.qirel-softflow-price-btn {
    padding: 15px;
    text-align: center;
    border: 2px solid #CFFF35;
    color: #CFFF35;
    border-radius: 10px;
    font-weight: 700;
}

.qirel-softflow-btn-lime {
    background-color: #CFFF35;
    color: #0A0C10;
}

.qirel-softflow-featured {
    transform: scale(1.05);
    border: 1px solid #CFFF35;
    z-index: 2;
}

/* TARGET AUDIENCE */
.qirel-softflow-target-block-9110 {
    padding: 100px 0;
    background-color: #0F1218;
}

.qirel-softflow-target-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.qirel-softflow-target-item {
    background: #161A21;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.qirel-softflow-line-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #CFFF35, transparent);
}

.qirel-softflow-target-item h4 {
    color: #CFFF35;
    font-size: 20px;
    margin-bottom: 15px;
}

/* EXPERT */
.qirel-softflow-expert-block-9110 {
    padding: 100px 0;
}

.qirel-softflow-expert-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.qirel-softflow-expert-content {
    flex: 1.2;
}

.qirel-softflow-quote {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    color: #E0E0E0;
    line-height: 1.4;
}

.qirel-softflow-expert-name {
    color: #CFFF35;
    font-weight: 700;
    margin-bottom: 40px;
}

.qirel-softflow-expert-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qirel-softflow-expert-det {
    background: #161A21;
    padding: 15px 20px;
    border-radius: 10px;
}

.qirel-softflow-expert-det summary {
    font-weight: 600;
    cursor: pointer;
    color: #CFFF35;
}

.qirel-softflow-expert-det p {
    margin-top: 10px;
    color: #B0B0B0;
}

.qirel-softflow-expert-photo {
    flex: 0.8;
}

.qirel-softflow-exp-img {
    border-radius: 20px;
    border: 5px solid #161A21;
}

/* BENEFITS */
.qirel-softflow-benefits-block-9110 {
    padding: 100px 0;
    background-color: #0F1218;
}

.qirel-softflow-benefits-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.qirel-softflow-benefits-img-side {
    flex: 1;
}

.qirel-softflow-benefit-pic {
    border-radius: 20px;
}

.qirel-softflow-benefits-text-side {
    flex: 1;
}

.qirel-softflow-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.qirel-softflow-benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: bold;
}

/* TEXT SECTIONS */
.qirel-softflow-text-section-9110 {
    padding: 100px 0;
}

.qirel-softflow-alt-bg {
    background-color: #0F1218;
}

.qirel-softflow-text-section-9110 p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #CCCCCC;
    max-width: 900px;
}

.qirel-softflow-content-list {
    margin-top: 30px;
}

.qirel-softflow-content-list li {
    padding: 10px 0;
    color: #CFFF35;
    font-weight: 500;
}

.qirel-softflow-tips-box {
    background: #1A1D23;
    padding: 40px;
    border-radius: 20px;
    border: 1px dashed #CFFF35;
    margin-top: 40px;
}

/* FAQ */
.qirel-softflow-faq-block-9110 {
    padding: 100px 0;
}

.qirel-softflow-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.qirel-softflow-faq-item {
    margin-bottom: 15px;
    background: #161A21;
    border-radius: 10px;
    padding: 10px;
}

.qirel-softflow-faq-item summary {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.qirel-softflow-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #CFFF35;
}

.qirel-softflow-faq-item[open] summary::after {
    content: '-';
}

.qirel-softflow-faq-item p {
    padding: 15px;
    border-top: 1px solid #1A1D23;
    color: #B0B0B0;
}

/* FORM */
.qirel-softflow-form-block-9110 {
    padding: 100px 0;
    background-color: #0F1218;
}

.qirel-softflow-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #0A0C10;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #1A1D23;
}

.qirel-softflow-form-sub {
    text-align: center;
    margin-bottom: 40px;
}

.qirel-softflow-form-group {
    margin-bottom: 25px;
}

.qirel-softflow-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.qirel-softflow-form-group input,
.qirel-softflow-form-group textarea {
    width: 100%;
    padding: 15px;
    background: #161A21;
    border: 1px solid #1A1D23;
    color: #FFF;
    border-radius: 10px;
}

.qirel-softflow-form-group input:focus,
.qirel-softflow-form-group textarea:focus {
    outline: none;
    border-color: #CFFF35;
}

.qirel-softflow-form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qirel-softflow-form-checkbox a {
    color: #CFFF35;
    text-decoration: underline;
}

.qirel-softflow-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #CFFF35;
    color: #0A0C10;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.qirel-softflow-submit-btn:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.4);
}

/* FOOTER */
.qirel-softflow-footer-9110 {
    background: #0A0C10;
    padding: 80px 0 40px;
    border-top: 1px solid #1A1D23;
}

.qirel-softflow-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.qirel-softflow-footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: #CFFF35;
    display: block;
    margin-bottom: 15px;
}

.qirel-softflow-footer-bottom {
    border-top: 1px solid #1A1D23;
    padding-top: 40px;
    text-align: center;
}

.qirel-softflow-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.qirel-softflow-footer-links a {
    font-size: 13px;
    color: #666;
}

.qirel-softflow-footer-links a:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .qirel-softflow-hero-flex,
    .qirel-softflow-expert-flex,
    .qirel-softflow-benefits-flex {
        flex-direction: column;
        text-align: center;
    }

    .qirel-softflow-hero-images,
    .qirel-softflow-expert-photo,
    .qirel-softflow-benefits-img-side {
        order: 2;
    }

    .qirel-softflow-hero-content,
    .qirel-softflow-expert-content,
    .qirel-softflow-benefits-text-side {
        order: 1;
    }

    .qirel-softflow-price-grid {
        flex-direction: column;
        align-items: center;
    }

    .qirel-softflow-price-card {
        width: 100%;
        transform: none !important;
    }

    .qirel-softflow-h1-main {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .qirel-softflow-burger-9110 {
        display: flex;
    }

    .qirel-softflow-navigation-9110 {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0A0C10;
        transition: 0.4s;
        padding-top: 50px;
    }

    .qirel-softflow-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    #qirel-softflow-menu-toggle:checked ~ .qirel-softflow-navigation-9110 {
        left: 0;
    }

    .qirel-softflow-footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}