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

html {
    scroll-behavior: smooth;
}

body.start-zelvu-7705-body-main {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #050A18; /* Нічний індиго стиль */
}

/* TYPOGRAPHY */
.start-zelvu-7705-h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #6AA9FF;
}

.start-zelvu-7705-h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #6AA9FF;
    position: relative;
}

.start-zelvu-7705-h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #6AA9FF;
    margin: 15px auto 0;
}

.start-zelvu-7705-h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #6AA9FF;
}

.start-zelvu-7705-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.start-zelvu-7705-description {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #d1d5db;
}

/* HEADER & NAVIGATION */
.start-zelvu-7705-header-wrap {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.15); /* Холодна синя підсвітка */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.start-zelvu-7705-logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #6AA9FF;
    letter-spacing: 1px;
}

.start-zelvu-7705-nav-checkbox {
    display: none;
}

.start-zelvu-7705-main-nav .start-zelvu-7705-nav-list {
    display: flex;
    list-style: none;
}

.start-zelvu-7705-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.start-zelvu-7705-nav-link:hover {
    color: #6AA9FF;
}

/* BURGER MENU NO JS */
.start-zelvu-7705-burger-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.start-zelvu-7705-burger-btn span {
    width: 25px;
    height: 3px;
    background: #6AA9FF;
    margin: 2px 0;
    transition: 0.4s;
}

/* HERO SECTION */
.start-zelvu-7705-hero-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.start-zelvu-7705-content-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.start-zelvu-7705-hero-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.start-zelvu-7705-img-card:nth-child(1) {
    grid-row: span 2;
}

.start-zelvu-7705-img-card {
    background: #101827;
    border: 1px solid rgba(106, 169, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.start-zelvu-7705-img-card:hover {
    transform: translateY(-5px);
}

.start-zelvu-7705-responsive-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.start-zelvu-7705-img-desc {
    font-size: 0.85rem;
    margin-top: 10px;
    text-align: center;
    color: #6AA9FF;
}

.start-zelvu-7705-hero-text {
    flex: 1;
}

/* BUTTONS */
.start-zelvu-7705-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #6AA9FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #6AA9FF;
}

.start-zelvu-7705-btn-primary:hover {
    background-color: transparent;
    box-shadow: 0 0 15px #6AA9FF; /* Неоновий контур */
    color: #6AA9FF;
}

.start-zelvu-7705-btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #6AA9FF;
    text-decoration: none;
    border: 2px solid #6AA9FF;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.start-zelvu-7705-btn-secondary:hover {
    background-color: #6AA9FF;
    color: #ffffff;
}

/* REVIEWS SLIDER NO JS */
.start-zelvu-7705-reviews-section {
    padding: 80px 20px;
    background: rgba(106, 169, 255, 0.03);
}

.start-zelvu-7705-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.start-zelvu-7705-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 30px;
}

.start-zelvu-7705-slider-container::-webkit-scrollbar {
    height: 6px;
}

.start-zelvu-7705-slider-container::-webkit-scrollbar-thumb {
    background: #6AA9FF;
    border-radius: 10px;
}

.start-zelvu-7705-review-card {
    min-width: 100%;
    scroll-snap-align: start;
    background: #101827;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #6AA9FF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.start-zelvu-7705-quote-icon {
    font-size: 4rem;
    color: #6AA9FF;
    line-height: 1;
    opacity: 0.3;
}

.start-zelvu-7705-review-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.start-zelvu-7705-review-author {
    text-align: right;
    font-weight: bold;
    color: #6AA9FF;
}

.start-zelvu-7705-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.start-zelvu-7705-dot {
    width: 12px;
    height: 12px;
    background: rgba(106, 169, 255, 0.3);
    border-radius: 50%;
    text-decoration: none;
}

/* TARGET SECTION */
.start-zelvu-7705-target-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.start-zelvu-7705-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #d1d5db;
}

.start-zelvu-7705-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.start-zelvu-7705-target-item {
    background: #101827;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.start-zelvu-7705-line-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #6AA9FF, transparent);
}

.start-zelvu-7705-discount-label {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 12px;
    background: rgba(106, 169, 255, 0.1);
    border: 1px dashed #6AA9FF;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #6AA9FF;
}

/* PRICING SECTION */
.start-zelvu-7705-pricing-section {
    padding: 80px 20px;
    background: #080F21;
}

.start-zelvu-7705-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.start-zelvu-7705-price-card {
    border: 1px solid rgba(106, 169, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    background: #050A18;
}

.start-zelvu-7705-price-card:hover {
    border-color: #6AA9FF;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.1);
}

.start-zelvu-7705-price-featured {
    transform: scale(1.05);
    border-color: #6AA9FF;
    background: #101827;
}

.start-zelvu-7705-price-val {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    color: #6AA9FF;
}

.start-zelvu-7705-price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.start-zelvu-7705-price-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* BENEFIT SECTION */
.start-zelvu-7705-benefit-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.start-zelvu-7705-flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.start-zelvu-7705-benefit-text {
    flex: 1;
}

.start-zelvu-7705-benefit-list {
    list-style: none;
    margin-top: 30px;
}

.start-zelvu-7705-benefit-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.start-zelvu-7705-benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

.start-zelvu-7705-benefit-img {
    flex: 1;
}

/* EXPERT SECTION */
.start-zelvu-7705-expert-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #050A18 0%, #0d1a3d 100%);
    text-align: center;
}

.start-zelvu-7705-quote-box {
    max-width: 900px;
    margin: 0 auto;
}

.start-zelvu-7705-blockquote {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
    color: #ffffff;
}

.start-zelvu-7705-expert-name {
    font-weight: bold;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* TEXT CONTENT SECTIONS */
.start-zelvu-7705-text-content-section {
    padding: 100px 20px;
}

.start-zelvu-7705-bg-alt {
    background: #080F21;
}

.start-zelvu-7705-inner-container {
    max-width: 800px;
    margin: 0 auto;
}

.start-zelvu-7705-inner-container p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #bdc3c7;
}

.start-zelvu-7705-inner-container h3 {
    margin-top: 40px;
}

.start-zelvu-7705-inner-container ul {
    margin-bottom: 25px;
    list-style: none;
}

.start-zelvu-7705-inner-container li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
}

/* FAQ SECTION */
.start-zelvu-7705-faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.start-zelvu-7705-faq-container {
    margin-top: 40px;
}

.start-zelvu-7705-faq-item {
    background: #101827;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.start-zelvu-7705-faq-title {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #6AA9FF;
    outline: none;
    list-style: none;
    position: relative;
}

.start-zelvu-7705-faq-title::-webkit-details-marker {
    display: none;
}

.start-zelvu-7705-faq-title::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.start-zelvu-7705-faq-item[open] .start-zelvu-7705-faq-title::after {
    content: '-';
}

.start-zelvu-7705-faq-content {
    padding: 0 20px 20px;
    color: #d1d5db;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 10px;
}

/* FORM SECTION */
.start-zelvu-7705-form-section {
    padding: 80px 20px;
    background: #080F21;
}

.start-zelvu-7705-form-container {
    max-width: 600px;
    margin: 50px auto 0;
    background: #101827;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(106, 169, 255, 0.2);
}

.start-zelvu-7705-form-group {
    margin-bottom: 25px;
}

.start-zelvu-7705-label {
    display: block;
    margin-bottom: 8px;
    color: #6AA9FF;
    font-weight: 500;
}

.start-zelvu-7705-input,
.start-zelvu-7705-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.start-zelvu-7705-input:focus,
.start-zelvu-7705-textarea:focus {
    border-color: #6AA9FF;
}

.start-zelvu-7705-textarea {
    height: 120px;
    resize: vertical;
}

.start-zelvu-7705-form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.start-zelvu-7705-form-checkbox a {
    color: #6AA9FF;
}

.start-zelvu-7705-btn-submit {
    width: 100%;
    padding: 15px;
    background: #6AA9FF;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.start-zelvu-7705-btn-submit:hover {
    box-shadow: 0 0 20px #6AA9FF;
}

/* FOOTER */
.start-zelvu-7705-footer-wrap {
    padding: 60px 20px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    text-align: center;
}

.start-zelvu-7705-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.start-zelvu-7705-copyright {
    margin-bottom: 15px;
}

.start-zelvu-7705-contact-info {
    margin-bottom: 25px;
}

.start-zelvu-7705-contact-info a {
    color: #6AA9FF;
    text-decoration: none;
}

.start-zelvu-7705-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.start-zelvu-7705-footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.start-zelvu-7705-footer-links a:hover {
    color: #6AA9FF;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .start-zelvu-7705-content-grid,
    .start-zelvu-7705-flex-container {
        flex-direction: column;
    }

    .start-zelvu-7705-h1 {
        font-size: 2.2rem;
    }

    .start-zelvu-7705-price-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .start-zelvu-7705-burger-btn {
        display: flex;
    }

    .start-zelvu-7705-main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #050A18;
        padding: 20px;
        border-bottom: 1px solid #6AA9FF;
    }

    .start-zelvu-7705-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .start-zelvu-7705-nav-checkbox:checked ~ .start-zelvu-7705-main-nav {
        display: block;
    }

    .start-zelvu-7705-nav-checkbox:checked ~ .start-zelvu-7705-burger-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .start-zelvu-7705-nav-checkbox:checked ~ .start-zelvu-7705-burger-btn span:nth-child(2) {
        opacity: 0;
    }

    .start-zelvu-7705-nav-checkbox:checked ~ .start-zelvu-7705-burger-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}