* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000 url('../images/heroes.svg') center top / 100% auto no-repeat;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.vl-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


.vl-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.vl-title span {
    color: #DA7014;
}

.vl-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vl-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.vl-section-header .vl-title {
    margin-bottom: 16px;
}


.vl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #DA7014;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
    text-align: center;
}

.vl-btn--outline {
    background: transparent;
    border: 1px solid #DA7014;
    color: #DA7014;
}

.vl-btn--outline:hover {
    background: #DA7014;
    color: #fff;
}

.vl-btn:hover {
    background-color: #b85e0e;
    transform: translateY(-2px);
}


.vl-card,
.vl-feature-card,
.vl-format-card {
    background: #161616;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.2s;
}

h1,
h2,
h3,
h4 {
    font-weight: 500 !important;
}


.vl-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
}

.vl-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vl-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.vl-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.vl-brand {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.3px;
}


.vl-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vl-nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.vl-nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    transition: 0.2s;
    font-size: 16px;
}

.vl-nav-list a:hover {
    color: #DA7014;
}

.vl-nav .vl-btn {
    padding: 12px 24px;
}


.vl-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.vl-mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}


.vl-banner {
    padding: 180px 0 120px;
    text-align: center;
}

.vl-banner-content {
    max-width: 1100px;
    margin: 0 auto;
}

.vl-banner-title {
    font-size: 80px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.vl-banner-title span {
    color: #DA7014;
}

.vl-banner-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vl-banner-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.vl-stats {
    background: rgba(22, 22, 22, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 40px 20px;
    margin: 40px 0 60px;
}

.vl-stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vl-stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.vl-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #DA7014;
    line-height: 1;
    margin-bottom: 8px;
}

.vl-stat-label {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.vl-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}


.vl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 20px;
}

.vl-feature-card {
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.vl-feature-card:hover {
    transform: translateY(-6px);
    background: #1f1f1f;
}

.vl-feature-icon {
    margin-bottom: 24px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vl-feature-icon img {
    max-height: 58px;
    width: auto;
}

.vl-feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.vl-feature-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}


.vl-about {
    margin: 80px 0;
}

.vl-about-img {
    margin: 40px 0 32px;
    text-align: center;
}

.vl-about-img img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}

.vl-about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}


.vl-formats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
}

.vl-format-card {
    padding: 30px 20px;
    text-align: center;
    background: #161616;
}

.vl-format-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #DA7014;
}

.vl-format-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


.vl-cta {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/cta_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 56px 48px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.vl-cta-content {
    flex: 2;
}

.vl-cta-content .vl-title {
    margin-bottom: 20px;
    font-size: 30px;
}

.vl-cta-content p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
}

.vl-cta-btn {
    flex-shrink: 0;
}


.vl-footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.vl-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.vl-footer-col {
    flex: 1;
    min-width: 180px;
}

.vl-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.vl-footer-logo img {
    height: 40px;
}

.vl-footer-logo span {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.vl-footer-desc {
    font-size: 14px;
    opacity: 0.8;
    max-width: 260px;
}

.vl-footer-menu h4,
.vl-footer-contacts h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.vl-footer-contacts {
    max-width: 280px;
}

.vl-footer-menu ul {
    list-style: none;
}

.vl-footer-menu li {
    margin-bottom: 12px;
}

.vl-footer-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.2s;
}

.vl-footer-menu a:hover {
    color: #DA7014;
}

.vl-footer-contacts p {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.vl-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.vl-footer-links {
    display: flex;
    gap: 24px;
}

.vl-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.vl-footer-links a:hover {
    color: #DA7014;
}


.vl-check-list {
    list-style: none;
    margin-top: 20px;
}

.vl-check-list li {
    padding-left: 28px;
    background: url('../images/check_ico.png') left center no-repeat;
    background-size: 18px;
    margin-bottom: 14px;
}

.vl-page-header {
    padding: 140px 0 80px;
    text-align: center;
}

.vl-page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}


.vl-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -40px;
    margin-bottom: 70px;
}

.vl-contact-card {
    background: #161616;
    padding: 40px 24px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.vl-contact-card:hover {
    transform: translateY(-4px);
}

.vl-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(218, 112, 20, 0.15);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vl-contact-icon svg {
    width: 30px;
    height: 30px;
}

.vl-contact-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.vl-contact-card p {
    color: rgba(255, 255, 255, 0.8);
}

.vl-contact-card a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.vl-contact-card a:hover {
    color: #DA7014;
}

.vl-contact-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 8px;
}


.vl-form-wrapper {
    background: #161616;
    border-radius: 24px;
    padding: 50px 48px;
    max-width: 900px;
    margin: 0 auto 100px;
}

.vl-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.vl-form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.vl-form-header p {
    color: rgba(255, 255, 255, 0.8);
}

.vl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vl-form-group {
    margin-bottom: 20px;
}

.vl-form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.vl-form-group input,
.vl-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

.vl-form-group input:focus,
.vl-form-group textarea:focus {
    outline: none;
    border-color: #DA7014;
}

.vl-form-group textarea {
    resize: vertical;
}

.vl-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 28px;
}

.vl-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #DA7014;
    cursor: pointer;
}

.vl-checkbox span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.vl-checkbox a {
    color: #DA7014;
    text-decoration: none;
}

.vl-checkbox a:hover {
    text-decoration: underline;
}

.vl-form-submit {
    text-align: center;
}

.vl-thankyou-message {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(218, 112, 20, 0.15);
    border-radius: 12px;
    color: #DA7014;
    font-weight: 500;
    display: none;
}


@media (max-width: 992px) {
    .vl-contacts-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .vl-contacts-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .vl-form-wrapper {
        padding: 30px 24px;
    }

    .vl-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .vl-page-header {
        padding: 120px 0 60px;
    }

    .vl-title {
        font-size: 32px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.vl-page-header {
    padding: 120px 0 60px;
    text-align: center;
}

.vl-page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.vl-legal-content {
    background: #161616;
    border-radius: 24px;
    padding: 50px 48px;
    margin: 0px auto 100px;
}

.vl-legal-section {
    margin-bottom: 40px;
}

.vl-legal-section:last-child {
    margin-bottom: 0;
}

.vl-legal-section h2 {
    color: #DA7014;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(218, 112, 20, 0.3);
}

.vl-legal-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.vl-legal-section p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.vl-legal-section ul,
.vl-legal-section ol {
    margin: 16px 0 20px 24px;
    color: rgba(255, 255, 255, 0.85);
}

.vl-legal-section li {
    margin-bottom: 10px;
}

.vl-legal-section a {
    color: #DA7014;
    text-decoration: none;
}

.vl-legal-section a:hover {
    text-decoration: underline;
}

.vl-updated {
    background: rgba(218, 112, 20, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.vl-contacts-block {
    background: #0a0a0a;
    padding: 24px;
    border-radius: 12px;
    margin: 30px 0 20px;
}

.vl-contacts-block p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .vl-title {
        font-size: 32px;
    }

    .vl-legal-content {
        padding: 30px 24px;
    }

    .vl-legal-section h2 {
        font-size: 22px;
    }

    .vl-page-header {
        padding: 120px 0 50px;
    }
}



.vl-about-header {
    padding: 120px 0 60px;
    text-align: center;
}

.vl-about-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.vl-about-header h1 span {
    color: #DA7014;
}

.vl-about-header p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.vl-about-content {
    max-width: 1000px;
    margin: 40px auto;
    background: #161616;
    border-radius: 24px;
    padding: 48px;
}

.vl-about-section {
    margin-bottom: 32px;
}

.vl-about-section:last-child {
    margin-bottom: 0;
}

.vl-about-section h2 {
    color: #DA7014;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(218, 112, 20, 0.3);
}

.vl-about-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 12px;
}

.vl-about-section ul {
    margin: 12px 0 0 20px;
    color: rgba(255, 255, 255, 0.85);
}

.vl-about-section li {
    margin-bottom: 8px;
}

.vl-stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: #161616;
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 100px;
}

.vl-stat-block {
    flex: 1;
    text-align: center;
    min-width: 140px;
}

.vl-stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #DA7014;
    line-height: 1.2;
    margin-bottom: 8px;
}

.vl-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.vl-divider-vertical {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 10px;
}

@media (max-width: 768px) {
    .vl-about-header {
        padding: 100px 0 50px;
    }

    .vl-about-header h1 {
        font-size: 36px;
    }

    .vl-about-content {
        padding: 28px 20px;
        margin: 40px auto;
    }

    .vl-about-section h2 {
        font-size: 20px;
    }

    .vl-stats-row {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }

    .vl-divider-vertical {
        display: none;
    }
}



.vl-services-header {
    padding: 120px 0 60px;
    text-align: center;
}

.vl-services-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.vl-services-header h1 span {
    color: #DA7014;
}

.vl-services-header p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.vl-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 20px auto 100px;
}

.vl-service-card {
    background: #161616;
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vl-service-card:hover {
    background: #1c1c1c;
}

.vl-service-icon {
    margin-bottom: 24px;
}

.vl-service-icon img {
    width: 56px;
    height: auto;
}

.vl-service-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.vl-service-title span {
    color: #DA7014;
}

.vl-service-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.vl-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vl-service-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.4;
}

.vl-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    background: url('../images/check_ico.png') center center / contain no-repeat;
}

@media (max-width: 768px) {
    .vl-services-header {
        padding: 100px 0 50px;
    }

    .vl-services-header h1 {
        font-size: 36px;
    }

    .vl-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto 60px;
      
    }

    .vl-service-card {
        padding: 28px 20px;
    }

    .vl-service-title {
        font-size: 20px;
    }
}


















@media (max-width: 992px) {
    .vl-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vl-formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vl-banner-title {
        font-size: 44px;
    }

    .vl-title {
        font-size: 34px;
    }

    .vl-stat-item:not(:last-child)::after {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .vl-mobile-toggle {
        display: flex;
    }

    .vl-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #0c0c0c;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 32px 40px;
        transition: left 0.3s ease;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.8);
        gap: 32px;
        z-index: 200;
    }

    .vl-nav.open {
        left: 0;
    }

    .vl-nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .vl-nav-list a {
        font-size: 18px;
    }

    .vl-nav .vl-btn {
        margin-top: 10px;
    }

    .vl-header-inner {
        position: relative;
    }

    .vl-stats-grid {
        flex-direction: column;
        gap: 32px;
    }

    .vl-stat-item:not(:last-child)::after {
        display: none;
    }

    .vl-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .vl-stat-item:last-child {
        border-bottom: none;
    }

    .vl-features-grid,
    .vl-formats-grid {
        grid-template-columns: 1fr;
    }

    .vl-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .vl-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .vl-footer-inner {
        flex-direction: column;
    }

    .vl-footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .vl-banner-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .vl-banner-title {
        font-size: 32px;
    }

    .vl-container {
        padding: 0 16px;
    }
}