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

html {
    scroll-behavior: smooth;
}

body.clarity-pazqe-9263-main-body {
    background-color: #050A18;
    color: #E0E0E0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.clarity-pazqe-9263-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.clarity-pazqe-9263-header-main {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.1);
}

.clarity-pazqe-9263-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.clarity-pazqe-9263-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clarity-pazqe-9263-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.clarity-pazqe-9263-nav-link {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.clarity-pazqe-9263-nav-link:hover {
    color: #6AA9FF;
}

/* Burger Menu (No JS) */
.clarity-pazqe-9263-nav-checkbox {
    display: none;
}

.clarity-pazqe-9263-burger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.clarity-pazqe-9263-burger-label span {
    width: 25px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.clarity-pazqe-9263-hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.clarity-pazqe-9263-hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.clarity-pazqe-9263-hero-image-side {
    flex: 1;
    min-width: 300px;
}

.clarity-pazqe-9263-hero-text-side {
    flex: 1.2;
    min-width: 300px;
}

.clarity-pazqe-9263-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
}

.clarity-pazqe-9263-hero-gallery-mini {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.clarity-pazqe-9263-gallery-item {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #6AA9FF;
}

.clarity-pazqe-9263-h1-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.clarity-pazqe-9263-subtitle {
    font-size: 18px;
    color: #6AA9FF;
    margin-bottom: 25px;
}

.clarity-pazqe-9263-text-content {
    margin-bottom: 20px;
    font-size: 16px;
    color: #B0B0B0;
}

/* Buttons */
.clarity-pazqe-9263-main-button {
    display: inline-block;
    background-color: #6AA9FF;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.clarity-pazqe-9263-main-button:hover {
    background-color: transparent;
    border-color: #6AA9FF;
    box-shadow: 0 0 15px #6AA9FF;
    color: #6AA9FF;
}

.clarity-pazqe-9263-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #6AA9FF;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #6AA9FF;
    transition: all 0.3s ease;
}

.clarity-pazqe-9263-btn-outline:hover {
    background-color: #6AA9FF;
    color: #ffffff;
}

.clarity-pazqe-9263-btn-small {
    padding: 8px 20px;
    border: 1px solid #6AA9FF;
    border-radius: 20px;
}

/* Target Section */
.clarity-pazqe-9263-target-section {
    padding: 80px 0;
}

.clarity-pazqe-9263-h2-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.clarity-pazqe-9263-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #6AA9FF;
}

.clarity-pazqe-9263-target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.clarity-pazqe-9263-target-item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: rgba(10, 20, 40, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s ease;
}

.clarity-pazqe-9263-target-item:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.clarity-pazqe-9263-target-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.clarity-pazqe-9263-target-h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #6AA9FF;
}

.clarity-pazqe-9263-price-tag {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #ffffff;
}

.clarity-pazqe-9263-styled-list {
    margin-top: 40px;
    columns: 2;
    list-style: none;
}

.clarity-pazqe-9263-styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #B0B0B0;
}

.clarity-pazqe-9263-styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* Pricing Section */
.clarity-pazqe-9263-pricing-section {
    padding: 80px 0;
    background: rgba(106, 169, 255, 0.02);
}

.clarity-pazqe-9263-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.clarity-pazqe-9263-price-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    border: 1px solid rgba(106, 169, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    background: #081026;
    transition: 0.3s;
}

.clarity-pazqe-9263-price-card-featured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.3);
}

.clarity-pazqe-9263-price-card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.clarity-pazqe-9263-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 25px;
}

.clarity-pazqe-9263-price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    min-height: 180px;
}

.clarity-pazqe-9263-price-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
    color: #B0B0B0;
    font-size: 14px;
}

/* Benefits & Expert */
.clarity-pazqe-9263-benefits-section {
    padding: 80px 0;
}

.clarity-pazqe-9263-flex-reverse {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.clarity-pazqe-9263-benefit-text {
    flex: 1.2;
}

.clarity-pazqe-9263-benefit-image {
    flex: 0.8;
}

.clarity-pazqe-9263-img-circle {
    width: 100%;
    border-radius: 50%;
    border: 5px solid rgba(106, 169, 255, 0.2);
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.1);
}

.clarity-pazqe-9263-quote-section {
    padding: 100px 0;
    background-color: #081026;
}

.clarity-pazqe-9263-quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.clarity-pazqe-9263-blockquote {
    font-size: 24px;
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 30px;
    position: relative;
}

.clarity-pazqe-9263-blockquote::before {
    content: '"';
    font-size: 80px;
    color: #6AA9FF;
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
}

.clarity-pazqe-9263-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.clarity-pazqe-9263-author-photo {
    border-radius: 50%;
    border: 2px solid #6AA9FF;
}

.clarity-pazqe-9263-author-info {
    text-align: left;
}

.clarity-pazqe-9263-author-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #6AA9FF;
}

.clarity-pazqe-9263-reviews-slider-fallback {
    margin-top: 60px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.clarity-pazqe-9263-review-item {
    flex: 0 0 300px;
    background: rgba(106, 169, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6AA9FF;
}

/* FAQ Section */
.clarity-pazqe-9263-faq-section {
    padding: 80px 0;
}

.clarity-pazqe-9263-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.clarity-pazqe-9263-faq-item {
    background: rgba(106, 169, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.clarity-pazqe-9263-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    position: relative;
}

.clarity-pazqe-9263-faq-summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #6AA9FF;
}

.clarity-pazqe-9263-faq-item[open] .clarity-pazqe-9263-faq-summary::after {
    content: '-';
}

.clarity-pazqe-9263-faq-answer {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* Form Section */
.clarity-pazqe-9263-form-section {
    padding: 100px 0;
}

.clarity-pazqe-9263-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #081026;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(106, 169, 255, 0.3);
    box-shadow: 0 0 50px rgba(106, 169, 255, 0.1);
}

.clarity-pazqe-9263-form-group {
    margin-bottom: 20px;
}

.clarity-pazqe-9263-form-label {
    display: block;
    margin-bottom: 8px;
    color: #6AA9FF;
    font-weight: 600;
}

.clarity-pazqe-9263-form-input, 
.clarity-pazqe-9263-form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
}

.clarity-pazqe-9263-form-textarea {
    height: 120px;
    resize: vertical;
}

.clarity-pazqe-9263-form-checkbox-wrap {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.clarity-pazqe-9263-checkbox-label {
    font-size: 12px;
    color: #B0B0B0;
}

.clarity-pazqe-9263-checkbox-label a {
    color: #6AA9FF;
}

.clarity-pazqe-9263-btn-full {
    width: 100%;
}

/* Extra Content */
.clarity-pazqe-9263-extra-section {
    padding: 80px 0;
}

.clarity-pazqe-9263-bg-alt {
    background-color: #081026;
}

.clarity-pazqe-9263-text-columns {
    column-count: 2;
    column-gap: 40px;
}

/* Footer */
.clarity-pazqe-9263-footer-main {
    background-color: #02050D;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
}

.clarity-pazqe-9263-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.clarity-pazqe-9263-footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #6AA9FF;
}

.clarity-pazqe-9263-footer-contact a {
    color: #B0B0B0;
    text-decoration: none;
}

.clarity-pazqe-9263-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    padding-top: 30px;
}

.clarity-pazqe-9263-footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.clarity-pazqe-9263-footer-links a {
    color: #6AA9FF;
    font-size: 12px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .clarity-pazqe-9263-text-columns {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .clarity-pazqe-9263-burger-label {
        display: flex;
    }

    .clarity-pazqe-9263-nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #050A18;
        transition: 0.4s;
    }

    .clarity-pazqe-9263-nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .clarity-pazqe-9263-nav-checkbox:checked ~ .clarity-pazqe-9263-nav-menu {
        left: 0;
    }

    .clarity-pazqe-9263-h1-title {
        font-size: 32px;
    }

    .clarity-pazqe-9263-hero-grid {
        flex-direction: column;
    }

    .clarity-pazqe-9263-flex-reverse {
        flex-direction: column-reverse;
    }

    .clarity-pazqe-9263-price-card-featured {
        transform: scale(1);
    }
}