* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(7,15,43);
    color: white;
    font-family: Manrope, sans-serif;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(7,15,43);
    z-index: 1;
    height: 62px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    img {
        width: 130px;
    }

    p {
        width: 153px;
        font-size: 12px;
        color: rgb(86, 204, 242);
        margin-right: 42px;
        text-align: right;
    }

    i {
        display: none;
    }
}

main {
    margin-top: 50px;
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    height: fit-content !important;
}

main>* {
    flex-grow: 1;
}

.left {
    position: relative;
    width: 100%;
    height: 460px;
    flex: 2;
}

.left--ya {
    height: 410px !important;
    margin-bottom: -40px;
}

.comparison {
    outline: none;
    width: 100%;
    height: 100%;
}

.comparison.hide {
    display: none;
}

.comparison img {
    object-fit: cover;
    height: 460px;
    width: 100%;
}

.handle {
    position: absolute;
    top: 50%;
    pointer-events: none;
    box-sizing: border-box;
    margin-left: 1px;
    transform: translate(calc(-50% - 0.5px), -50%);
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    background-color: #00000052;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    border: 1px solid white;
    border-radius: 50% !important;
}

.handle span+span {
    margin-left: 12px;
}

img-comparison-slider {
    visibility: hidden;
}

img-comparison-slider [slot='second'] {
    display: none;
}

img-comparison-slider.rendered {
    visibility: inherit;
}

img-comparison-slider.rendered [slot='second'] {
    display: unset;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
}

.slider__image {
    min-width: 94px;
    max-width: 94px;
    min-height: 94px;
    max-height: 94px;
    object-fit: cover;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    pointer-events: auto;
}

.slider__image:first-of-type {
    border-radius: 10px 0 0 10px;
}

.slider__image:last-of-type {
    border-radius: 0 10px 10px 0;
}

.slider__image.active {
    border: 4px solid rgb(86, 204, 242);
}

.uploader {
    padding: 20px;
}

.label {
    height: 94px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 1px dashed rgb(86, 204, 242);
    padding: 10px 10px 30px;
    text-align: center;
    cursor: pointer;
}

.description {
    position: absolute;
    top: 62px;
    left: 50%;
    transform: translate(-50%);
    max-width: 229px;
    width: 100%;
    font-size: 18px;
    font-weight: 200;
}

.or {
    text-align: center;
    margin: 32px 0 16px;
    color: rgb(22, 138, 152);
    letter-spacing: 7px;
    font-size: 10px;
    line-height: 15px;
    font-weight: 200;
}

.more {
    text-align: center;
    font-weight: 200;
}
.bg-desk {
    display: none;
}
@media (min-width: 1024px) {
    header {
        background-color: transparent;
        height: auto;
        padding: 32px 10px 20px;
        max-width: 1296px;
        margin: 0 auto;

        img {
            width: 260px;
        }

        p {
            width: 223px;
            height: 81px;
            color: white;
            text-align: left;
            margin: 2px 0 0;
            font-size: 30px;

            span {
                font-size: 24px;
                display: block;
                margin-top: 3px;
            }
        }

        i {
            display: block;
            width: 203px;
        }
    }

    main {
        max-width: 1296px;
        margin: 180px auto 0;
        display: grid;
        grid-template-columns: 1fr 424px;
        grid-gap: 0;
    }

    .left {
        max-width: 848px;
        border-radius: 10px;
        overflow: hidden;
    }

    .right {
        height: 460px !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .uploader {
        padding: 0 20px 20px 30px;
    }

    .label {
        height: 214px;
        padding: 52px 0;
    }

    .description {
        top: 104px;
        font-size: 22px;
    }

    .or {
        display: none;
    }

    .more {
        margin-top: 16px;
    }

    .slider {
        flex-wrap: wrap;
        padding-right: 0;
    }

    .slider__image:first-of-type {
        border-radius: 10px 0 0;
    }
    .slider__image:nth-of-type(4) {
        border-radius: 0 10px 0 0;
    }
    .slider__image:nth-of-type(5) {
        border-radius: 0 0 0 10px;
    }
    .slider__image:last-of-type {
        border-radius: 0 0 10px;
    }
    .bg-desk {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        object-fit: cover;
        z-index: -2;
        pointer-events: none;
    }
    .bg-desk img {
        width: 100%;
    }
    .bg-desk::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(7,15,43);
        opacity: .6;
    }
}

/* Container and Section Styles */
.container {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(86, 204, 242), rgb(22, 138, 152));
    border-radius: 2px;
}

/* About Section */
.section-about {
    background: linear-gradient(135deg, rgba(86, 204, 242, 0.1), rgba(22, 138, 152, 0.1));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(86, 204, 242, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(86, 204, 242);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.section-services {
    background: rgba(7, 15, 43, 0.8);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(86, 204, 242, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 204, 242, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgb(86, 204, 242);
    box-shadow: 0 20px 40px rgba(86, 204, 242, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(86, 204, 242), rgb(22, 138, 152));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Benefits Section */
.section-benefits {
    background: linear-gradient(135deg, rgba(22, 138, 152, 0.1), rgba(86, 204, 242, 0.1));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(86, 204, 242, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgb(86, 204, 242);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Team Section */
.section-team {
    background: rgba(7, 15, 43, 0.9);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(86, 204, 242, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgb(86, 204, 242);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(86, 204, 242);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.member-role {
    color: rgb(86, 204, 242);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Reviews Section */
.section-reviews {
    background: linear-gradient(135deg, rgba(86, 204, 242, 0.1), rgba(22, 138, 152, 0.1));
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(86, 204, 242, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    opacity: 0.7;
}

.review-card:first-child {
    position: relative;
    opacity: 1;
}

.review-stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.reviewer span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* FAQ Section */
.section-faq {
    background: rgba(7, 15, 43, 0.8);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(86, 204, 242, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgb(86, 204, 242);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(86, 204, 242, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: rgb(86, 204, 242);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.section-contact {
    background: linear-gradient(135deg, rgba(22, 138, 152, 0.1), rgba(86, 204, 242, 0.1));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(86, 204, 242, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(86, 204, 242, 0.2);
    border-radius: 15px;
    padding: 40px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(86, 204, 242, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(86, 204, 242);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: rgb(7, 15, 43);
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgb(86, 204, 242), rgb(22, 138, 152));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(86, 204, 242, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(86, 204, 242, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(86, 204, 242, 0.2);
    border: 1px solid rgba(86, 204, 242, 0.3);
    border-radius: 50%;
    color: rgb(86, 204, 242);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgb(86, 204, 242);
    color: white;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(86, 204, 242);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(7, 15, 43, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(86, 204, 242, 0.3);
    padding: 20px;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1296px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn.accept {
    background: rgb(86, 204, 242);
    color: white;
}

.cookie-btn.accept:hover {
    background: rgb(22, 138, 152);
    transform: translateY(-1px);
}

.cookie-btn.learn-more {
    background: transparent;
    color: rgb(86, 204, 242);
    border: 1px solid rgba(86, 204, 242, 0.5);
}

.cookie-btn.learn-more:hover {
    background: rgba(86, 204, 242, 0.1);
    border-color: rgb(86, 204, 242);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .description {
        background-color: rgb(7, 15, 43);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .benefit-item,
    .team-member {
        padding: 30px 20px;
    }
    
    .reviewer {
        flex-direction: column;
        gap: 10px;
    }
}