/* ./assets/style.css */

/* Основні стилі та скидання */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Контейнер */
.soft-navzo-6784-container-top,
.soft-navzo-6784-hero-container,
.soft-navzo-6784-benefits-container,
.soft-navzo-6784-footer-container,
.soft-navzo-6784-quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.soft-navzo-6784-header-nav {
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.3);
}

.soft-navzo-6784-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.soft-navzo-6784-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.soft-navzo-6784-nav-links {
    display: flex;
    gap: 20px;
}

.soft-navzo-6784-nav-item {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.soft-navzo-6784-nav-item:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

/* Бургер меню без JS */
.soft-navzo-6784-burger-checkbox {
    display: none;
}

.soft-navzo-6784-burger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.soft-navzo-6784-burger-label span {
    width: 25px;
    height: 3px;
    background-color: #B98CFF;
    display: block;
    transition: 0.3s;
}

/* Секція HERO */
.soft-navzo-6784-hero-section {
    padding: 100px 0;
    position: relative;
}

.soft-navzo-6784-hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.soft-navzo-6784-hero-image-side {
    flex: 1 1 450px;
}

.soft-navzo-6784-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    border: 1px solid #B98CFF;
    object-fit: cover;
}

.soft-navzo-6784-hero-text-side {
    flex: 1 1 550px;
}

.soft-navzo-6784-hero-h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #B98CFF;
}

.soft-navzo-6784-hero-sub {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.soft-navzo-6784-hero-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.soft-navzo-6784-hero-info-block {
    background: rgba(185, 140, 255, 0.05);
    border-left: 4px solid #B98CFF;
    padding: 15px 20px;
}

.soft-navzo-6784-info-title {
    color: #B98CFF;
    margin-bottom: 5px;
    font-size: 18px;
}

.soft-navzo-6784-hero-desc {
    margin-bottom: 30px;
    font-size: 16px;
}

/* Кнопки */
.soft-navzo-6784-btn-primary {
    display: inline-block;
    background-color: #B98CFF;
    color: #0B0020;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.soft-navzo-6784-btn-primary:hover {
    box-shadow: 0 0 20px #B98CFF;
    transform: translateY(-2px);
    background-color: #d1b3ff;
}

.soft-navzo-6784-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #B98CFF;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    border: 2px solid #B98CFF;
}

.soft-navzo-6784-btn-secondary:hover {
    background-color: rgba(185, 140, 255, 0.1);
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.3);
}

/* Секція Відгуки */
.soft-navzo-6784-reviews-section {
    padding: 80px 0;
    background-color: #110030;
}

.soft-navzo-6784-section-h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #B98CFF;
    text-transform: uppercase;
}

.soft-navzo-6784-reviews-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.soft-navzo-6784-reviews-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 30px;
}

.soft-navzo-6784-review-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(185, 140, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    scroll-snap-align: start;
}

.soft-navzo-6784-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.soft-navzo-6784-review-author {
    font-weight: 700;
    color: #B98CFF;
}

/* Секція Для кого підійде */
.soft-navzo-6784-audience-section {
    padding: 80px 20px;
}

.soft-navzo-6784-audience-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.soft-navzo-6784-audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.soft-navzo-6784-audience-item {
    flex: 1 1 280px;
    background: #110030;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(185, 140, 255, 0.1);
}

.soft-navzo-6784-decor-line {
    width: 40px;
    height: 4px;
    background: #B98CFF;
    margin-bottom: 15px;
    box-shadow: 0 0 10px #B98CFF;
}

/* Секція Цитата */
.soft-navzo-6784-quote-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0020 0%, #1A0040 100%);
}

.soft-navzo-6784-main-quote {
    font-size: 28px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
    position: relative;
}

.soft-navzo-6784-main-quote::before {
    content: "“";
    font-size: 80px;
    color: #B98CFF;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.soft-navzo-6784-quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soft-navzo-6784-author-avatar {
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #B98CFF;
}

.soft-navzo-6784-author-name {
    font-size: 20px;
    font-weight: 700;
}

.soft-navzo-6784-author-title {
    color: #B98CFF;
    font-size: 14px;
}

/* Переваги */
.soft-navzo-6784-benefits-section {
    padding: 80px 0;
}

.soft-navzo-6784-benefits-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.soft-navzo-6784-benefits-text {
    flex: 1 1 500px;
}

.soft-navzo-6784-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.soft-navzo-6784-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.soft-navzo-6784-benefits-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #B98CFF;
}

.soft-navzo-6784-benefits-image {
    flex: 1 1 450px;
}

.soft-navzo-6784-benefits-img {
    width: 100%;
    border-radius: 20px;
}

/* Ціни */
.soft-navzo-6784-price-section {
    padding: 80px 0;
    background-color: #110030;
}

.soft-navzo-6784-price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.soft-navzo-6784-price-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #0B0020;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(185, 140, 255, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

.soft-navzo-6784-price-featured {
    border: 2px solid #B98CFF;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(185, 140, 255, 0.2);
}

.soft-navzo-6784-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #B98CFF;
    color: #0B0020;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.soft-navzo-6784-plan-name {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.soft-navzo-6784-price-val {
    text-align: center;
    margin-bottom: 30px;
}

.soft-navzo-6784-old-price {
    text-decoration: line-through;
    opacity: 0.5;
    display: block;
    font-size: 18px;
}

.soft-navzo-6784-new-price {
    font-size: 36px;
    font-weight: 800;
    color: #B98CFF;
}

.soft-navzo-6784-plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.soft-navzo-6784-plan-features li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(185, 140, 255, 0.1);
}

.soft-navzo-6784-quick-links {
    text-align: center;
    margin-top: 40px;
}

.soft-navzo-6784-quick-links a {
    color: #B98CFF;
    text-decoration: none;
}

/* FAQ */
.soft-navzo-6784-faq-section {
    padding: 80px 0;
}

.soft-navzo-6784-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.soft-navzo-6784-faq-item {
    background: #110030;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(185, 140, 255, 0.1);
}

.soft-navzo-6784-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.soft-navzo-6784-faq-content {
    padding: 0 20px 20px;
}

/* Форма */
.soft-navzo-6784-form-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #110030 0%, #0B0020 100%);
}

.soft-navzo-6784-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.soft-navzo-6784-form-sub {
    text-align: center;
    margin-bottom: 40px;
}

.soft-navzo-6784-input-group {
    margin-bottom: 20px;
}

.soft-navzo-6784-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #B98CFF;
}

.soft-navzo-6784-input,
.soft-navzo-6784-textarea {
    width: 100%;
    padding: 15px;
    background: #0B0020;
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    outline: none;
}

.soft-navzo-6784-textarea {
    height: 120px;
    resize: vertical;
}

.soft-navzo-6784-input:focus,
.soft-navzo-6784-textarea:focus {
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.2);
}

.soft-navzo-6784-checkbox-group {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.soft-navzo-6784-checkbox-label {
    font-size: 14px;
}

.soft-navzo-6784-checkbox-label a {
    color: #B98CFF;
}

/* Текстові блоки */
.soft-navzo-6784-text-block-section {
    padding: 80px 20px;
}

.soft-navzo-6784-alt-bg {
    background-color: #110030;
}

.soft-navzo-6784-long-text {
    max-width: 900px;
    margin: 0 auto;
}

.soft-navzo-6784-long-text p {
    margin-bottom: 20px;
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
.soft-navzo-6784-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
    background-color: #050010;
}

.soft-navzo-6784-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.soft-navzo-6784-footer-main {
    text-align: center;
}

.soft-navzo-6784-footer-email a {
    color: #B98CFF;
    text-decoration: none;
}

.soft-navzo-6784-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.soft-navzo-6784-footer-links a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.7;
}

.soft-navzo-6784-footer-links a:hover {
    opacity: 1;
    color: #B98CFF;
}

/* Адаптивність */
@media (max-width: 768px) {
    .soft-navzo-6784-burger-label {
        display: flex;
    }

    .soft-navzo-6784-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0B0020;
        padding: 20px;
        border-bottom: 2px solid #B98CFF;
    }

    .soft-navzo-6784-burger-checkbox:checked ~ .soft-navzo-6784-nav-links {
        display: flex;
    }

    .soft-navzo-6784-hero-h1 {
        font-size: 32px;
    }

    .soft-navzo-6784-price-featured {
        transform: scale(1);
    }
}

/* privacy_policy.html */
/* [Basic Privacy Policy Template in Ukrainian] */

/* terms_of_service.html */
/* [Basic Terms Template in Ukrainian] */

/* cookies_policy.html */
/* [Basic Cookies Template in Ukrainian] */

/* refund_policy.html */
/* [Basic Refund Template in Ukrainian] */

/* send.php */
/* [Basic PHP Mailer code] */

/* thank.html */
/* [Simple Thank You Message in Ukrainian] */
```

Файли політик та допоміжні скрипти (короткий опис змісту):
1. **privacy_policy.html**: Документ, що описує збір, використання та захист персональних даних користувачів.
2. **terms_of_service.html**: Умови використання сайту, права та обов'язки сторін.
3. **cookies_policy.html**: Інформація про використання файлів cookies для покращення роботи ресурсу.
4. **refund_policy.html**: Правила повернення коштів за цифрові послуги та курси.
5. **send.php**: Серверний скрипт для обробки даних з контактної форми та відправки їх на email.
6. **thank.html**: Сторінка подяки, на яку перенаправляється користувач після успішного заповнення форми.