@import url(https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);



* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #1f1f2e;
    font-family: 'Rubik', sans-serif;
    font-size: var(--font-size);
}
body {
    line-height: 1;
    scrollbar-gutter: stable;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
}
input,
textarea {
    width: 100%;
}
label {
    display: inline-block;
}
button,
select,
option {
    cursor: pointer;
}
a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

main {
    overflow-x: hidden;
}





.header {
    background-color: #1f1f2e;
    box-shadow: 0 2px 4px 0 1px 2px rgba(255, 255, 255, 0.04);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #f3f4f6;
    text-decoration: none;
}

.header__logo i {
    color: #a78bfa;
    font-size: 26px;
}

.nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav__list a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 150ms ease-in-out;
}

.nav__list a:hover {
    color: #a78bfa;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #f3f4f6;
    cursor: pointer;
    position: relative;
    z-index: 6;
}




.footer {
    background-color: #2c2c3c;
    padding: 48px 0;
    border-top: 1px solid #3a3a4f;
}

.footer-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3f4f6;
    font-weight: 600;
    font-size: 26px;
}

.footer-logo i {
    color: #a78bfa;
    font-size: 34px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
}

.footer-contact-icon {
    color: #a78bfa;
    width: 20px;
    text-align: center;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #3a3a4f;
}

.footer-section-title {
    color: #f3f4f6;
    font-weight: 600;
    font-size: 19px;
}

.footer-section-toggle {
    color: #a78bfa;
    transition: transform 300ms ease-in-out;
    display: none;
}

.footer-section-content {
    padding: 20px 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

.footer-section-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section-link {
    color: #d1d5db;
    transition: all 150ms ease-in-out;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.footer-section-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #a78bfa;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 150ms ease-in-out;
}

.footer-section-link:hover {
    color: #a78bfa;
    padding-left: 30px;
}

.footer-section-link:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter-text {
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-input {
    background-color: #1f1f2e;
    border: 1px solid #3a3a4f;
    padding: 20px;
    border-radius: 5px;
    color: #f3f4f6;
    transition: border-color 150ms ease-in-out;
}

.footer-input:focus {
    outline: none;
    border-color: #a78bfa;
}

.footer-input::placeholder {
    color: #9ca3af;
}

.footer-button {
    background-color: #a78bfa;
    color: #111827;
    padding: 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 150ms ease-in-out;
}

.footer-button:hover {
    background-color: #f472b6;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #3a3a4f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-policy-links {
    display: flex;
    gap: 30px;
}

.footer-policy-link {
    color: #9ca3af;
    font-size: 14px;
    transition: color 150ms ease-in-out;
}

.footer-policy-link:hover {
    color: #a78bfa;
}






.contacts-v5 {
    min-height: 100vh;
    background: #2c2c3c;
    padding: 48px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contacts-v5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, #a78bfa 0%, transparent 50%), radial-gradient(circle at 80% 20%, #f472b6 0%, transparent 50%);
    opacity: 0.03;
    pointer-events: none;
}

.contacts-v5__container {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contacts-v5__header {
    text-align: center;
    margin-bottom: 64px;
    background: #1f1f2e;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 20px 0 1px 2px rgba(255, 255, 255, 0.04);
    border: 1px solid #3a3a4f;
}

.contacts-v5__title {
    font-size: 34px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 20px;
    position: relative;
}

.contacts-v5__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a78bfa 0%, #f472b6 100%);
    border-radius: 5px;
}

.contacts-v5__subtitle {
    font-size: 19px;
    color: #d1d5db;
    line-height: 1.6;
}

.contacts-v5__form-wrapper {
    background: #1f1f2e;
    border-radius: 24px;
    box-shadow: 0 8px 30px 0 3px 6px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border: 1px solid #3a3a4f;
}

.contacts-v5__progress {
    background: #2c2c3c;
    padding: 30px;
    border-bottom: 1px solid #3a3a4f;
}

.contacts-v5__progress-bar {
    width: 100%;
    height: 6px;
    background: #3a3a4f;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.contacts-v5__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #a78bfa 0%, #f472b6 100%);
    border-radius: 5px;
    transition: width 500ms ease;
    width: 33.33%;
}

.contacts-v5__steps {
    display: flex;
    justify-content: space-between;
}

.contacts-v5__step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9ca3af;
    transition: all 300ms ease-in-out;
}

.contacts-v5__step--active {
    color: #a78bfa;
    font-weight: 500;
}

.contacts-v5__step--completed {
    color: #10b981;
    font-weight: 500;
}

.contacts-v5__step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3a3a4f;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 300ms ease-in-out;
}

.contacts-v5__step--active .contacts-v5__step-number {
    background: #a78bfa;
    color: #111827;
}

.contacts-v5__step--completed .contacts-v5__step-number {
    background: #10b981;
    color: #111827;
}

.contacts-v5__form {
    position: relative;
    overflow: hidden;
}

.contacts-v5__slider {
    display: flex;
    transition: transform 500ms ease;
    width: 300%;
}

.contacts-v5__slide {
    width: 33.33%;
    flex-shrink: 0;
    padding: 30px;
}

.contacts-v5__section-title {
    font-size: 26px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacts-v5__section-icon {
    width: 28px;
    height: 28px;
    background: #a78bfa;
    color: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.contacts-v5__section-subtitle {
    font-size: var(--font-size);
    color: #d1d5db;
    margin-bottom: 48px;
    line-height: 1.5;
}

.contacts-v5__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contacts-v5__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-v5__field:not(:last-child) {
    margin-bottom: 32px;
}

.contacts-v5__field--full {
    grid-column: 1 / -1;
}

.contacts-v5__label {
    font-size: 14px;
    font-weight: 500;
    color: #f3f4f6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contacts-v5__required {
    color: #dc2626;
    font-size: 12px;
}

.contacts-v5__input,
.contacts-v5__textarea {
    padding: 20px;
    border: 2px solid #3a3a4f;
    border-radius: 10px;
    font-size: var(--font-size);
    color: #f3f4f6;
    background: #1f1f2e;
    transition: all 300ms ease-in-out;
    outline: none;
}

.contacts-v5__input:focus,
.contacts-v5__textarea:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px var(--accent-primary-light);
    transform: scale(1.02);
}

.contacts-v5__input.error {
    border-color: #dc2626;
    background: var(--error-light);
    animation: contactsV5Shake 0.5s ease-in-out;
}

@keyframes contactsV5Shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.contacts-v5__textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.contacts-v5__phone-field {
    position: relative;
}

.contacts-v5__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding: 30px;
    border-top: 1px solid #3a3a4f;
}

.contacts-v5__nav-button {
    padding: 20px 48px;
    border: 2px solid #a78bfa;
    border-radius: 10px;
    font-size: var(--font-size);
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    background: transparent;
    color: #a78bfa;
}

.contacts-v5__nav-button:hover {
    background: #a78bfa;
    color: #111827;
    transform: translateY(-2px);
}

.contacts-v5__nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.contacts-v5__nav-button--primary {
    background: #a78bfa;
    color: #111827;
    border: 1px solid #a78bfa;
}

.contacts-v5__nav-button--primary:hover {
    background: var(--accent-primary-hover);
    color: #a78bfa;
}

.contacts-v5__submit-button {
    width: 100%;
    padding: 30px 48px;
    background: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
    color: #f3f4f6;
    border: none;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contacts-v5__submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 500ms ease;
}

.contacts-v5__submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.contacts-v5__submit-button:hover::before {
    left: 100%;
}


.contacts-v5 .iti {
    width: 100%;
}

.contacts-v5 .iti__flag-container {
    border-right: 2px solid #3a3a4f;
}

.contacts-v5 .iti__selected-flag {
    padding: 0 20px;
}

.contacts-v5 .iti__country-list {
    border-radius: 10px;
    box-shadow: 0 15px 40px 0 6px 10px rgba(255, 255, 255, 0.1);
    border: 1px solid #3a3a4f;
}



#phone {
    padding-left: 64px;
}

.contacts__disclaimer {
    color: #9ca3af;
    opacity: 0.8;
    line-height: 1.4;
}

.cta-particles-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.cta-particles-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    color: #f3f4f6;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: cta-glow-pulse 3s ease-in-out infinite alternate;
    line-height: 1;
}

.cta-particles-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #f3f4f6;
    margin-bottom: 64px;
    opacity: 0.8;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-particles-button {
    display: inline-block;
    background: transparent;
    color: #f3f4f6;
    padding: 30px 48px;
    border: 2px solid #a78bfa;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-particles-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #a78bfa;
    transition: left 300ms ease-in-out;
    z-index: -1;
}

.cta-particles-button:hover::before {
    left: 0;
}

.cta-particles-button:hover {
    color: #f3f4f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    transform: translateY(-3px);
}

@keyframes cta-glow-pulse {
    0% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 40px rgba(139, 92, 246, 0.3);
    }
}

.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
    padding: 30px;
}

.policy-modal.policy-modal--visible {
    opacity: 1;
    visibility: visible;
}

.policy-modal__content {
    background: #1f1f2e;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px 0 6px 10px rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: transform 300ms ease-in-out;
    position: relative;
}

.policy-modal.policy-modal--visible .policy-modal__content {
    transform: scale(1) translateY(0);
}

.policy-modal__header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-modal__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.policy-modal__title {
    font-size: 26px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.policy-modal__subtitle {
    color: #d1d5db;
    font-size: var(--font-size);
}

.policy-modal__text {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 48px;
    text-align: center;
}

.policy-modal__policies {
    background: #2c2c3c;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 48px;
}

.policy-modal__policies-title {
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 20px;
    text-align: center;
}

.policy-modal__links {
    display: grid;
    gap: 20px;
}

.policy-modal__link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #1f1f2e;
    border-radius: 10px;
    color: #f3f4f6;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    border: 2px solid transparent;
}

.policy-modal__link:hover {
    border-color: #a78bfa;
    transform: translateX(4px);
}

.policy-modal__link-icon {
    width: 24px;
    height: 24px;
    background: #a78bfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #111827;
    font-size: 12px;
}

.policy-modal__link-text {
    flex: 1;
}

.policy-modal__link-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.policy-modal__link-desc {
    font-size: 14px;
    color: #9ca3af;
}

.policy-modal__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.policy-modal__button {
    padding: 20px 48px;
    border-radius: 10px;
    font-size: var(--font-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    border: 2px solid transparent;
    min-width: 140px;
}

.policy-modal__button--primary {
    background: #a78bfa;
    color: #111827;
}

.policy-modal__button--primary:hover {
    background: #f472b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 3px 6px rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1f1f2e;
        box-shadow: -2px 0 8px 0 3px 6px rgba(255, 255, 255, 0.08);
        transition: right 300ms ease-in-out;
        padding: 48px;
        z-index: 5;
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        margin-top: 64px;
    }
}
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }

    .footer-section-toggle {
        display: block;
    }

    .footer-section-content {
        max-height: 0;
        padding: 0;
    }

    .footer-section.footer-section-active .footer-section-content {
        max-height: 300px;
        padding: 20px 0;
    }

    .footer-section.footer-section-active .footer-section-toggle {
        transform: rotate(180deg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (min-width: 769px) {
    .footer-section-content {
        max-height: none !important;
        padding: 20px 0 !important;
    }
}
@media (max-width: 768px) {
    .contacts-v5__row {
        grid-template-columns: 1fr;
    }

    .contacts-v5__steps {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contacts-v5__header,
    .contacts-v5__form {
        padding: 30px;
    }

    .contacts-v5__navigation {
        flex-direction: column;
        gap: 20px;
    }

    .contacts-v5__nav-button {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .policy-modal__content {
        padding: 30px;
        margin: 20px;
    }

    .policy-modal__actions {
        flex-direction: column;
    }
}