:root {
    --vr-dark: #0b1825;
    --vr-dark-alt: rgba(11, 24, 37, 0.94);
    --vr-blue: rgba(0, 69, 132, 1);
    --vr-light: #ffffff;
    --vr-light-alt: #ffffffbd;
    --vr-light-secondary: #0b182594;
    --vr-bg-gradient: radial-gradient(at top right, rgba(0, 69, 132, 1) 0%, rgba(11, 24, 37, 1) 70%);
    --vr-gradient: linear-gradient(270deg, rgba(229, 217, 54, 1) 20%, rgba(27, 234, 205, 1) 100%);
    --vr-title-gradient: linear-gradient(150deg, rgba(19, 36, 49, 1) 55%, rgba(255, 255, 255, 0.08) 100%);
    --vr-white-block: rgba(243, 243, 243, 1);
    --vr-white-block-shadow: 0px 10px 30px 10px rgba(0, 69, 132, 0.08);
    --vr-radius: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Commissioner', sans-serif;
    color: var(--vr-light-alt);
    background: var(--vr-light) url('../imgs/bg-img.webp') right;
    overflow-x: hidden;
    line-height: 1.55;
}

h1,
h2,
h3,
h4 {
    line-height: 1.21;
    font-weight: 600;
}

.vr-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1300px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.vr-wrapper {
    background-color: var(--vr-light);

    overflow: hidden;
    position: relative;
    max-width: 1600px;
    width: 98%;
    margin: 0 auto;
}


.vr-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.vr-header.scrolled {
    background-color: rgba(11, 24, 37, 0.95);
    padding: 15px 0;
}

.vr-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vr-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.vr-logo img {
    height: 32px;
    width: auto;
    margin-top: -2px;
}

.vr-logo span {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 600;
    background: var(--vr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vr-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vr-menu-links {
    display: flex;
    gap: 35px;
}

.vr-menu-links a {
    color: var(--vr-light-alt);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.vr-menu-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--vr-gradient);
    transition: width 0.3s ease;
}

.vr-menu-links a:hover {
    color: var(--vr-light);
}

.vr-menu-links a:hover:after {
    width: 100%;
}

.vr-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 28px;
    background: var(--vr-gradient);
    color: var(--vr-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Commissioner', sans-serif;
}

.vr-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 234, 205, 0.3);
}

.vr-btn-shield {
    background: var(--vr-gradient);
    color: var(--vr-dark);
}

.vr-btn-shield i {
    font-size: 18px;
}

.vr-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--vr-light-alt);
    font-size: 24px;
    cursor: pointer;
}


.vr-banner {
    padding: 160px 0 70px;
    background: var(--vr-bg-gradient);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.vr-banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../imgs/bg-img.webp') center no-repeat;
    background-size: cover;
}

.vr-cta:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../imgs/bg-img.webp') center no-repeat;
    background-size: cover;
}

.vr-possibilities:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../imgs/bg-img.webp') center no-repeat;
    background-size: cover;
}

.vr-footer:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../imgs/bg-img.webp') center bottom no-repeat;
    background-size: cover;
}

.vr-banner .vr-text {
    font-size: 17px;
    font-weight: 400;
}

.vr-banner .vr-title {
    color: #fff !important;
    background: transparent;
    -webkit-background-clip: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.vr-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.vr-banner-text {
    animation: fadeInUp 1s ease;
}

.vr-subtitle {
    font-size: 18px;
    color: rgba(27, 234, 205, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.vr-title {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--vr-light);
    margin-bottom: 25px;
    background: var(--vr-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vr-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--vr-light-alt);
    margin-bottom: 40px;
}


.vr-banner-image img {
    max-width: 100%;
    height: auto;
}


.vr-about {
    padding: 120px 0 90px 0;
}

.vr-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.vr-about-text .vr-title {
    margin-bottom: 30px;
}

.vr-about-text p {
    color: var(--vr-light-secondary);
}

.vr-about-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.vr-about-block {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--vr-white-block-shadow);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.vr-about-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 69, 132, 0.15);
}

.vr-about-block img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
}

.vr-block-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-block-text p {
    color: var(--vr-light-secondary);
    line-height: 1.6;
}


.vr-possibilities {
    padding: 80px 0;
    border-radius: 50px;
    background: var(--vr-bg-gradient);
    position: relative;
}

.vr-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: var(--vr-light);
    margin-bottom: 70px;
    background: var(--vr-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vr-possibilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.vr-possibility-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vr-possibility-block:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 234, 205, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vr-possibility-block.large {
    grid-row: span 2;
}

.vr-possibility-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vr-possibility-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vr-possibility-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    color: var(--vr-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.vr-possibility-text {
    color: var(--vr-light-alt);
    line-height: 1.6;
    margin-bottom: 25px;
}

.vr-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.vr-learn-more:hover {
    gap: 12px;
    color: rgba(229, 217, 54, 0.9);
}


.vr-stats {
    padding: 100px 0;
}

.vr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vr-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--vr-white-block-shadow);
    transition: all 0.3s ease;
}

.vr-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 69, 132, 0.15);
}

.vr-stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: var(--vr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.vr-stat-text {
    font-size: 18px;
    color: var(--vr-light-secondary);
    font-weight: 600;
}


.vr-cta {
    padding: 60px 0;
    border-radius: 60px;
    background: var(--vr-bg-gradient);
    position: relative;
}

.vr-cta .vr-title {
    color: #fff !important;
    background: transparent;
    -webkit-background-clip: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.vr-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.vr-cta-text {
    animation: fadeInLeft 1s ease;
}

.vr-cta-image {
    text-align: center;
    animation: fadeInRight 1s ease;
}

.vr-cta-image img {
    max-width: 440px;
    width: 100%;
    height: auto;
}


.vr-faq {
    padding: 120px 0;
}

.vr-faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vr-faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--vr-white-block-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vr-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 69, 132, 0.12);
}

.vr-faq-question {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: var(--vr-dark);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vr-faq-question i {
    transition: transform 0.3s ease;
}

.vr-faq-item.active .vr-faq-question i {
    transform: rotate(180deg);
}

.vr-faq-answer {
    color: var(--vr-light-secondary);
    line-height: 1.6;

    margin-top: 15px;
    display: none;
    transition: max-height 0.4s ease;
}

.vr-faq-item.active .vr-faq-answer {
    display: block;
}

.vr-faq-image {
    text-align: center;
}

.vr-faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
}


.vr-footer {
    padding: 80px 0 30px;
    background: var(--vr-bg-gradient);
    border-radius: 50px 50px 0 0;
    position: relative;
}

.vr-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.vr-footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
}

.vr-footer-logo img {
    height: 32px;
    width: auto;
    margin-top: -2px;
}

.vr-footer-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vr-footer-logo span {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: var(--vr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vr-footer-description {
    color: var(--vr-light-alt);
    line-height: 1.6;
}

.vr-footer-links h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    color: var(--vr-light);
    margin-bottom: 25px;
    font-weight: 700;
}

.vr-footer-links ul {
    list-style: none;
}

.vr-footer-links li {
    margin-bottom: 15px;
}

.vr-footer-links a {
    color: var(--vr-light-alt);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vr-footer-links a:hover {
    color: rgba(27, 234, 205, 0.9);
    padding-left: 5px;
}

.vr-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vr-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--vr-light-alt);
}

.vr-contact-item i {
    color: rgba(27, 234, 205, 0.9);
    font-size: 16px;
    width: 24px;
}

.vr-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--vr-light-alt);
    font-size: 15px;
}


.vr-cookies-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: var(--vr-white-block);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transform: translateY(100px);
    display: none;
    transition: all 0.5s ease;
}

.vr-cookies-popup.show {
    transform: translateY(0);
    display: block;
}

.vr-cookies-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-cookies-text {
    color: var(--vr-light-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.vr-cookies-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.vr-cookies-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vr-cookies-option span {
    color: var(--vr-dark);
    font-weight: 500;
}

.vr-cookies-toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

.vr-cookies-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.vr-cookies-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.vr-cookies-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.vr-cookies-slider {
    background: var(--vr-gradient);
}

input:checked+.vr-cookies-slider:before {
    transform: translateX(30px);
}

.vr-cookies-buttons {
    display: flex;
    gap: 15px;
}

.vr-cookies-btn {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vr-cookies-btn.accept {
    background: var(--vr-gradient);
    color: var(--vr-dark);
}

.vr-cookies-btn.reject {
    background: rgba(11, 24, 37, 0.1);
    color: var(--vr-dark);
}

.vr-cookies-btn:hover {
    transform: translateY(-3px);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


.vr-breadcrumbs {
    padding: 100px 0 30px 0;
    background: #111;
}

.vr-breadcrumbs-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vr-light-secondary);
    font-size: 15px;
}

.vr-breadcrumbs-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vr-breadcrumbs-nav a:hover {
    color: var(--vr-blue);
}

.vr-breadcrumbs-nav i {
    font-size: 12px;
    opacity: 0.7;
    color: #fff;
}

.vr-breadcrumbs-nav span {
    color: #fff;
    font-weight: 600;
}


.vr-page-hero {
    padding: 70px 0;
    background: #111;
    text-align: center;
    border-radius: 0 0 50px 50px;
}

.vr-page-title {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--vr-light);
    margin-bottom: 20px;
    background: var(--vr-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
}

.vr-page-subtitle {
    font-size: 20px;
    color: var(--vr-light-alt);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.vr-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.vr-section-content.reversed .vr-section-text {
    order: 2;
}

.vr-section-content.reversed .vr-section-image {
    order: 1;
}

.vr-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--vr-dark);
    margin-bottom: 25px;
}

.vr-section-text .vr-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--vr-light-secondary);
}

.vr-section-text .vr-text p {
    margin-bottom: 25px;
}

.vr-section-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 69, 132, 0.1);
}


.vr-about-tech {
    padding: 100px 0;
    background: var(--vr-white-block);
    border-radius: 50px;
}

.vr-section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--vr-light-secondary);
    line-height: 1.6;
}

.vr-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vr-tech-card {
    background: var(--vr-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--vr-white-block-shadow);
    transition: all 0.3s ease;
}

.vr-tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 69, 132, 0.15);
}

.vr-tech-icon {
    width: 80px;
    height: 80px;
    background: var(--vr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vr-tech-icon i {
    font-size: 32px;
    color: var(--vr-dark);
}

.vr-tech-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-tech-card p {
    color: var(--vr-light-secondary);
    line-height: 1.6;
}


.vr-about-values {
    padding: 100px 0;
}

.vr-values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vr-value-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    color: var(--vr-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.vr-value-item h3 i {
    color: rgba(27, 234, 205, 0.9);
    font-size: 20px;
}

.vr-value-item p {
    color: var(--vr-light-secondary);
    line-height: 1.6;

}

@media (max-width: 1200px) {
    .vr-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vr-section-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .vr-section-content.reversed .vr-section-text,
    .vr-section-content.reversed .vr-section-image {
        order: unset;
    }

    .vr-values-list {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vr-page-title {
        font-size: 42px;
    }

    .vr-section-title {
        font-size: 36px;
    }

    .vr-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .vr-page-title {
        font-size: 36px;
    }

    .vr-section-title {
        font-size: 30px;
    }

    .vr-section-content {
        padding: 70px 0;
    }
}


.vr-possibilities-features {
    padding: 100px 0;
    margin-top: 50px;
    border-radius: 50px;
    background: var(--vr-white-block);
}

.vr-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vr-feature-card {
    background: var(--vr-light);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--vr-white-block-shadow);
    transition: all 0.3s ease;
}

.vr-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 69, 132, 0.15);
}

.vr-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--vr-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vr-feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.vr-feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-feature-card p {
    color: var(--vr-light-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.vr-feature-list {
    list-style: none;
}

.vr-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--vr-light-secondary);
}

.vr-feature-list i {
    color: rgba(27, 234, 205, 0.9);
    font-size: 14px;
}


.vr-advanced-capabilities {
    padding: 100px 0;
}

.vr-advanced-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.vr-advanced-item {
    display: flex;
    gap: 40px;
    background: var(--vr-white-block);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--vr-white-block-shadow);
    transition: all 0.3s ease;
}

.vr-advanced-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 69, 132, 0.12);
}

.vr-advanced-number {
    font-family: 'Sora', sans-serif;
    font-size: 60px;
    font-weight: 800;
    background: var(--vr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.vr-advanced-content {
    flex: 1;
}

.vr-advanced-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-advanced-content p {
    color: var(--vr-light-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.vr-advanced-stats {
    display: flex;
    gap: 40px;
}

.vr-stat {
    display: flex;
    flex-direction: column;
}

.vr-stat-value {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: var(--vr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.vr-stat-label {
    font-size: 14px;
    color: var(--vr-light-secondary);
    margin-top: 5px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .vr-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vr-advanced-item {
        flex-direction: column;
        gap: 20px;
    }

    .vr-advanced-number {
        font-size: 50px;
    }

    .vr-advanced-stats {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .vr-features-grid {
        grid-template-columns: 1fr;
    }

    .vr-advanced-item {
        padding: 30px;
    }

    .vr-advanced-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .vr-feature-card {
        padding: 30px 25px;
    }

    .vr-advanced-item {
        padding: 25px;
    }

    .vr-advanced-number {
        font-size: 42px;
    }

    .vr-advanced-content h3 {
        font-size: 24px;
    }
}



.vr-contact-form-section {
    padding: 100px 0;
}

.vr-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.vr-contact-form-container {
    background: var(--vr-white-block);
    border-radius: 20px;
    padding: 45px 50px;
}

.vr-contact-title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.vr-contact-description {
    color: var(--vr-light-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.vr-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.vr-form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--vr-dark);
    font-weight: 600;
    font-size: 15px;
}

.vr-form-group input,
.vr-form-group select,
.vr-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(11, 24, 37, 0.1);
    border-radius: 12px;
    font-family: 'Commissioner', sans-serif;
    font-size: 16px;
    color: var(--vr-dark);
    background: var(--vr-light);
    transition: all 0.3s ease;
}

.vr-form-group input:focus,
.vr-form-group select:focus,
.vr-form-group textarea:focus {
    outline: none;
    border-color: rgba(27, 234, 205, 0.5);
    box-shadow: 0 0 0 3px rgba(27, 234, 205, 0.1);
}

.vr-form-submit {
    align-self: flex-start;

}

.vr-contact-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 69, 132, 0.1);
}


.vr-thank-you-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: var(--vr-white-block);
    border-radius: 20px;
    box-shadow: var(--vr-white-block-shadow);
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}

.vr-thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--vr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vr-thank-you-icon i {
    font-size: 40px;
    color: var(--vr-dark);
}

.vr-thank-you-message h3 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    color: var(--vr-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-thank-you-message p {
    color: var(--vr-light-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}


.vr-contact-info-section {
    padding: 70px 0;
    border-radius: 50px;
    background: var(--vr-bg-gradient);
    margin-bottom: 50px;
}

.vr-contact-info-section .vr-section-title {
    color: var(--vr-light);
    text-align: center;
    background: var(--vr-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vr-contact-info-section .vr-section-description {
    color: var(--vr-light-alt);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.vr-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vr-contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vr-contact-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(27, 234, 205, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.vr-contact-icon {
    width: 70px;
    height: 70px;
    background: var(--vr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vr-contact-icon i {
    font-size: 28px;
    color: var(--vr-dark);
}

.vr-contact-info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    color: var(--vr-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.vr-contact-info-card p {
    color: var(--vr-light-alt);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.vr-contact-link {
    display: inline-block;
    color: rgba(27, 234, 205, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.vr-contact-link:hover {
    color: rgba(229, 217, 54, 0.9);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .vr-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vr-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vr-contact-image {
        order: -1;
    }

    .vr-contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .vr-form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vr-contact-form-container {
        padding: 30px;
    }

    .vr-contact-title {
        font-size: 30px;
    }

    .vr-contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .vr-contact-form-container {
        padding: 25px;
    }

    .vr-contact-icon {
        width: 60px;
        height: 60px;
    }

    .vr-contact-icon i {
        font-size: 24px;
    }

    .vr-contact-info-card {
        padding: 30px 25px;
    }
}







.vr-policy-hero {
    padding: 70px 0;
    background: #111;
    border-radius: 0 0 50px 50px;
}

.vr-policy-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vr-policy-title {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--vr-light);
    margin-bottom: 20px;
    background: var(--vr-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
}

.vr-policy-date {
    font-size: 18px;
    color: var(--vr-light-alt);
    font-weight: 500;
}


.vr-policy-content {
    border-radius: 50px;
    margin: 40px 0 50px 0;
    padding: 80px 0;
    background: var(--vr-white-block);
}

.vr-policy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.vr-policy-text {
    background: var(--vr-light);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--vr-white-block-shadow);
}

.vr-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--vr-light-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

.vr-policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(11, 24, 37, 0.1);
}

.vr-policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vr-policy-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    color: var(--vr-dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.vr-policy-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    color: var(--vr-dark);
    margin: 30px 0 15px;
    font-weight: 600;
}

.vr-policy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--vr-light-secondary);
    margin-bottom: 20px;
}

.vr-policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.vr-policy-section li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--vr-light-secondary);
    margin-bottom: 10px;
    padding-left: 10px;
}


.vr-table-container {
    overflow-x: auto;
    margin: 25px 0;
}

.vr-cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.vr-cookies-table th {
    background: rgba(27, 234, 205, 0.1);
    color: var(--vr-dark);
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(11, 24, 37, 0.1);
}

.vr-cookies-table td {
    padding: 15px;
    border: 1px solid rgba(11, 24, 37, 0.1);
    color: var(--vr-light-secondary);
}

.vr-cookies-table a {
    color: rgba(27, 234, 205, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vr-cookies-table a:hover {
    color: rgba(229, 217, 54, 0.9);
}


@media (max-width: 992px) {
    .vr-policy-text {
        padding: 50px 40px;
    }

    .vr-policy-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .vr-policy-hero {
        padding: 60px 0;
    }

    .vr-policy-title {
        font-size: 38px;
    }

    .vr-policy-text {
        padding: 40px 30px;
    }

    .vr-policy-section h2 {
        font-size: 28px;
    }

    .vr-policy-section h3 {
        font-size: 20px;
    }

    .vr-cookies-table th,
    .vr-cookies-table td {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .vr-policy-title {
        font-size: 32px;
    }

    .vr-policy-date {
        font-size: 16px;
    }

    .vr-policy-text {
        padding: 30px 20px;
    }

    .vr-policy-section h2 {
        font-size: 24px;
    }

    .vr-policy-section h3 {
        font-size: 18px;
    }

    .vr-policy-section p,
    .vr-policy-section li {
        font-size: 15px;
    }
}
























































@media (max-width: 1200px) {
    .vr-container {
        max-width: 100%;
        padding: 0 30px;
    }

    .vr-title {
        font-size: 46px;
    }

    .vr-banner-content,
    .vr-about-content,
    .vr-cta-content,
    .vr-faq-content {
        gap: 50px;
    }

    .vr-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .vr-menu-toggle {
        position: relative;
        z-index: 99999;
        display: block;
    }

    .vr-menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--vr-dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .vr-menu-links.active {
        right: 0;
    }

    .vr-banner-content,
    .vr-about-content,
    .vr-cta-content,
    .vr-faq-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vr-about-blocks {
        order: -1;
    }

    .vr-possibilities-grid {
        grid-template-columns: 1fr;
    }

    .vr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vr-footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vr-container {
        padding: 0 20px;
    }

    .vr-title {
        font-size: 38px;
    }

    .vr-section-title {
        font-size: 36px;
    }

    .vr-banner {
        padding: 150px 0 80px;
    }

    .vr-about,
    .vr-possibilities,
    .vr-stats,
    .vr-cta,
    .vr-faq {
        padding: 80px 0;
    }

    .vr-stat-number {
        font-size: 42px;
    }

    .vr-stats-grid {
        grid-template-columns: 1fr;
    }

    .vr-cookies-popup {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .vr-title {
        font-size: 32px;
    }

    .vr-section-title {
        font-size: 30px;
    }

    .vr-btn {
        padding: 12px 24px;
    }

    .vr-about-block {
        flex-direction: column;
        text-align: center;
    }

    .vr-about-block img {
        align-self: center;
    }

    .vr-footer {
        padding: 60px 0 20px;
    }

    .vr-menu .vr-btn {
        font-size: 14px;
        padding: 8px 14px;
        font-weight: 500;
        border-radius: 5px;
    }

    .vr-menu {
        gap: 15px;
    }

    .vr-banner {
        padding-bottom: 30px;
    }

    .vr-about {
        padding-bottom: 30px;
    }

    .vr-about,
    .vr-possibilities,
    .vr-stats,
    .vr-cta,
    .vr-faq {
        padding: 50px 0;
    }

    .vr-cta-image img {
        max-width: 240px;
    }

    .vr-cookies-btn {
        font-size: 14px;
        padding: 10px 14px;
    }

    .vr-section-content.reversed {
        padding: 30px 0;
    }

    .vr-possibilities-features {
        padding: 50px 0;
    }
}