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

html {
    scroll-behavior: smooth;
}

body.zarni-cl-3145-body-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050A18;
    color: #E0E6ED;
    line-height: 1.6;
    overflow-x: hidden;
}

.zarni-cl-3145-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
.zarni-cl-3145-h1-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #6AA9FF;
    text-shadow: 0 0 15px rgba(106, 169, 255, 0.3);
}

.zarni-cl-3145-h2-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #6AA9FF;
    position: relative;
}

.zarni-cl-3145-h2-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #6AA9FF;
    margin: 15px auto 0;
    box-shadow: 0 0 10px #6AA9FF;
}

.zarni-cl-3145-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #A5B4FC;
}

/* BUTTONS */
.zarni-cl-3145-btn-primary {
    display: inline-block;
    background-color: #6AA9FF;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.zarni-cl-3145-btn-primary:hover {
    background-color: #050A18;
    color: #6AA9FF;
    outline: 2px solid #00F0FF;
    box-shadow: 0 0 15px #00F0FF;
}

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

.zarni-cl-3145-btn-secondary:hover {
    background-color: #6AA9FF;
    color: #ffffff;
    box-shadow: 0 0 10px #6AA9FF;
}

/* HEADER */
.zarni-cl-3145-header-main {
    background-color: rgba(5, 10, 24, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(106, 169, 255, 0.1);
}

.zarni-cl-3145-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zarni-cl-3145-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6AA9FF;
    letter-spacing: 1px;
}

.zarni-cl-3145-nav-list {
    display: flex;
    list-style: none;
}

.zarni-cl-3145-nav-link {
    color: #E0E6ED;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
}

.zarni-cl-3145-nav-link:hover {
    color: #6AA9FF;
}

/* BURGER MENU (No JS) */
.zarni-cl-3145-nav-toggle {
    display: none;
}

.zarni-cl-3145-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.zarni-cl-3145-burger span {
    width: 25px;
    height: 3px;
    background: #6AA9FF;
    margin: 2px 0;
    transition: 0.3s;
}

/* HERO */
.zarni-cl-3145-hero-section {
    padding: 100px 0 60px;
}

.zarni-cl-3145-hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.zarni-cl-3145-hero-image-side, .zarni-cl-3145-hero-text-side {
    flex: 1;
}

.zarni-cl-3145-hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(106, 169, 255, 0.2);
}

.zarni-cl-3145-hero-descr {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #CBD5E1;
}

.zarni-cl-3145-hero-extra-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.zarni-cl-3145-extra-card {
    flex: 1;
    background: #0A1530;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s ease;
}

.zarni-cl-3145-extra-card:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.zarni-cl-3145-extra-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.zarni-cl-3145-extra-card h3 {
    color: #6AA9FF;
    margin-bottom: 10px;
}

/* REVIEWS SLIDER (No JS) */
.zarni-cl-3145-reviews-section {
    padding: 80px 0;
    background: #070F22;
}

.zarni-cl-3145-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.zarni-cl-3145-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.zarni-cl-3145-slide-item {
    min-width: 100%;
    padding: 20px;
}

.zarni-cl-3145-review-card {
    background: #0A1530;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #6AA9FF;
    position: relative;
}

.zarni-cl-3145-review-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.zarni-cl-3145-review-author {
    font-weight: bold;
    color: #6AA9FF;
}

.zarni-cl-3145-radio-input {
    display: none;
}

#zarni-slide-1:checked ~ .zarni-cl-3145-slides { transform: translateX(0); }
#zarni-slide-2:checked ~ .zarni-cl-3145-slides { transform: translateX(-100%); }
#zarni-slide-3:checked ~ .zarni-cl-3145-slides { transform: translateX(-200%); }

.zarni-cl-3145-slider-controls {
    text-align: center;
    margin-top: 20px;
}

.zarni-cl-3145-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #1e2a4a;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#zarni-slide-1:checked ~ .zarni-cl-3145-slider-controls label:nth-child(1),
#zarni-slide-2:checked ~ .zarni-cl-3145-slider-controls label:nth-child(2),
#zarni-slide-3:checked ~ .zarni-cl-3145-slider-controls label:nth-child(3) {
    background: #6AA9FF;
    box-shadow: 0 0 10px #6AA9FF;
}

/* PRICE */
.zarni-cl-3145-price-section {
    padding: 80px 0;
}

.zarni-cl-3145-price-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.zarni-cl-3145-price-card {
    flex: 1;
    min-width: 250px;
    background: #0A1530;
    padding: 40px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(106, 169, 255, 0.1);
    position: relative;
}

.zarni-cl-3145-price-featured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
}

.zarni-cl-3145-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6AA9FF;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.zarni-cl-3145-price-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.zarni-cl-3145-price-val {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #6AA9FF;
    margin-bottom: 30px;
}

.zarni-cl-3145-price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.zarni-cl-3145-price-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.zarni-cl-3145-price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.zarni-cl-3145-quick-links {
    margin-top: auto;
}

/* FOR WHOM */
.zarni-cl-3145-for-whom-section {
    padding: 80px 0;
    background: #070F22;
}

.zarni-cl-3145-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.zarni-cl-3145-for-whom-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.zarni-cl-3145-target-item {
    flex: 1;
    min-width: 280px;
    background: #0A1530;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.zarni-cl-3145-neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6AA9FF, #00F0FF);
}

.zarni-cl-3145-discount-tag {
    display: inline-block;
    margin-top: 15px;
    color: #00F0FF;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* BENEFITS */
.zarni-cl-3145-benefits-section {
    padding: 80px 0;
}

.zarni-cl-3145-benefits-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.zarni-cl-3145-benefits-text, .zarni-cl-3145-benefits-image {
    flex: 1;
}

.zarni-cl-3145-check-list {
    list-style: none;
    margin-top: 30px;
}

.zarni-cl-3145-check-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.zarni-cl-3145-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236AA9FF' 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") no-repeat center;
}

.zarni-cl-3145-responsive-img {
    width: 100%;
    border-radius: 15px;
}

/* EXPERT WORD */
.zarni-cl-3145-expert-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0A1530 0%, #050A18 100%);
}

.zarni-cl-3145-expert-quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.zarni-cl-3145-blockquote {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #CBD5E1;
    position: relative;
    padding: 0 40px;
}

.zarni-cl-3145-blockquote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: #6AA9FF;
    opacity: 0.3;
}

.zarni-cl-3145-expert-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zarni-cl-3145-expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #6AA9FF;
    margin-bottom: 15px;
}

.zarni-cl-3145-expert-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #6AA9FF;
}

.zarni-cl-3145-expert-post {
    color: #A5B4FC;
}

/* FAQ */
.zarni-cl-3145-faq-section {
    padding: 80px 0;
}

.zarni-cl-3145-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.zarni-cl-3145-faq-item {
    background: #0A1530;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.zarni-cl-3145-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zarni-cl-3145-faq-summary::after {
    content: '+';
    color: #6AA9FF;
    font-size: 1.5rem;
}

.zarni-cl-3145-faq-item[open] .zarni-cl-3145-faq-summary::after {
    content: '-';
}

.zarni-cl-3145-faq-content {
    padding: 0 20px 20px;
    color: #CBD5E1;
    border-top: 1px solid rgba(106, 169, 255, 0.05);
}

/* FORM */
.zarni-cl-3145-form-section {
    padding: 80px 0;
    background: #070F22;
}

.zarni-cl-3145-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0A1530;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.zarni-cl-3145-form-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.zarni-cl-3145-form-group {
    margin-bottom: 20px;
}

.zarni-cl-3145-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.zarni-cl-3145-input:focus, .zarni-cl-3145-textarea:focus {
    border-color: #6AA9FF;
    box-shadow: 0 0 5px rgba(106, 169, 255, 0.5);
}

.zarni-cl-3145-checkbox-group {
    margin-bottom: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.zarni-cl-3145-checkbox-group a {
    color: #6AA9FF;
}

.zarni-cl-3145-btn-submit {
    width: 100%;
    background: #6AA9FF;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.zarni-cl-3145-btn-submit:hover {
    background: #4A90FF;
    box-shadow: 0 0 15px #6AA9FF;
}

/* TEXT SECTIONS */
.zarni-cl-3145-text-section {
    padding: 80px 0;
}

.zarni-cl-3145-bg-alt {
    background: #070F22;
}

.zarni-cl-3145-long-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.zarni-cl-3145-long-content ul {
    margin: 20px 0 30px 20px;
}

.zarni-cl-3145-long-content li {
    margin-bottom: 10px;
}

/* FOOTER */
.zarni-cl-3145-footer-main {
    background: #050A18;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    text-align: center;
}

.zarni-cl-3145-footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6AA9FF;
    margin-bottom: 20px;
}

.zarni-cl-3145-footer-link {
    color: #E0E6ED;
    text-decoration: none;
}

.zarni-cl-3145-footer-link:hover {
    color: #6AA9FF;
}

.zarni-cl-3145-footer-copy {
    margin: 30px 0;
    font-size: 0.9rem;
    color: #64748B;
}

.zarni-cl-3145-footer-policy-links a {
    color: #64748B;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
}

.zarni-cl-3145-footer-policy-links a:hover {
    color: #6AA9FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .zarni-cl-3145-hero-flex, .zarni-cl-3145-benefits-flex {
        flex-direction: column;
    }
    
    .zarni-cl-3145-h1-title {
        font-size: 2.5rem;
    }

    .zarni-cl-3145-hero-extra-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .zarni-cl-3145-burger {
        display: flex;
        z-index: 1100;
    }

    .zarni-cl-3145-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #0A1530;
        padding-top: 80px;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .zarni-cl-3145-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .zarni-cl-3145-nav-link {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .zarni-cl-3145-nav-toggle:checked ~ .zarni-cl-3145-nav-menu {
        right: 0;
    }

    .zarni-cl-3145-price-featured {
        transform: scale(1);
    }
}