#preloader,
.preloader-logo {
    align-items: center;
    display: flex
}

.cookie-popup,
.header {
    position: fixed;
    transition: .3s
}

.btn,
body {
    font-family: 'Golos Text', sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    background-color: #07090f;
    color: #f6f8ff;
    line-height: 1.6;
    overflow-x: hidden
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #07090f;
    justify-content: center;
    z-index: 10000;
    transition: opacity .5s, visibility .5s
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-content {
    text-align: center
}

.preloader-logo {
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    color: #f6f8ff
}

.preloader-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 2s infinite pulse
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(19, 68, 246, .2);
    border-radius: 2px;
    overflow: hidden
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #1344f6, #0f2fd9);
    border-radius: 2px;
    animation: 2s ease-in-out infinite loading
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@keyframes loading {
    0% {
        width: 0%
    }

    50% {
        width: 70%
    }

    100% {
        width: 100%
    }
}

.cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(7, 9, 15, .95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(19, 68, 246, .2);
    border-radius: 18px;
    padding: 24px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    max-width: 500px;
    margin: 0 0 0 auto
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1
}

.cookie-popup.hide {
    transform: translateY(100px);
    opacity: 0
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.header-content,
.logo {
    display: flex;
    align-items: center
}

.cookie-text h4 {
    color: #f6f8ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px
}

.cookie-text p,
.feature-card p {
    color: #a9acb7;
    font-size: 14px;
    line-height: 1.5
}

.cookie-buttons,
.social-links {
    display: flex;
    gap: 12px
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s
}

.cookie-accept {
    background: #1344f6;
    color: #fff
}

.cookie-accept:hover {
    background: #0f2fd9;
    transform: translateY(-2px)
}

.cookie-decline {
    background: 0 0;
    color: #a9acb7;
    border: 1px solid rgba(169, 172, 183, .3)
}

.footer-column a:hover,
.language-selector:hover,
.logo,
.nav-link:hover {
    color: #f6f8ff
}

.cookie-decline:hover {
    background: rgba(169, 172, 183, .1);
    color: #f6f8ff
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000
}

.header-content {
    justify-content: space-between;
    padding: 16px 20px;
    margin-top: 10px;
    background: #07090f;
    border: 1px solid #ffffff47;
    border-radius: 200px
}

.logo {
    gap: 8px;
    text-decoration: none
}

.header-actions,
.nav {
    display: flex;
    align-items: center
}

.language-selector,
.nav-link {
    color: #a9acb7;
    transition: color .3s
}

.logo-icon {
    height: 28px;
    transition: transform .3s
}

.logo-icon img {
    height: 100%
}

.logo:hover .logo-icon {
    transform: scale(1.1)
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px
}

.btn,
.nav-link {
    font-weight: 500;
    text-decoration: none
}

.nav {
    gap: 32px
}

.nav-link {
    font-size: 16px;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1344f6;
    transition: width .3s
}

.nav-link:hover::after {
    width: 100%
}

.header-actions {
    gap: 16px
}

.language-dropdown {
    position: relative;
    display: inline-block
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ffffff47;
    padding: 9px 10px;
    border-radius: 8px
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #0f121b;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    width: 100%;
    z-index: 10
}

.btn,
.hero {
    position: relative;
    overflow: hidden
}

.btn,
.language-option {
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.btn.loading::after,
.flag {
    width: 16px;
    height: 16px
}

.language-option {
    display: flex;
    padding: 8px 12px;
    color: #a9acb7;
    transition: background .2s
}

.language-option:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff
}

.btn {
    display: inline-flex;
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    transition: .3s
}

.btn-primary {
    background: linear-gradient(135deg, #1344f6 0, #0f2fd9 100%);
    color: #fff
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 68, 246, .3)
}

.btn-secondary {
    background: 0 0;
    color: #fff;
    padding-left: 0;
    padding-right: 0
}

.btn-secondary:hover {
    color: #1344f6;
    border-color: #1344f6
}

.hero {
    padding: 120px 0 40px
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: url('/images/hero-bg.png') right center/auto 100% no-repeat, linear-gradient(90deg, #0f121b, #0f162f) right center/auto 100% no-repeat;
    padding: 50px 60px;
    border-radius: 30px
}

.feature-card,
.pricing-card {
    background: #0f121b;
    position: relative;
    overflow: hidden;
    transition: .3s
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

.hero-description {
    font-size: 18px;
    color: #a9acb7;
    line-height: 1.6;
    margin-bottom: 24px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-image {
    position: relative;
    animation: 6s ease-in-out infinite float
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.benefits,
.features,
.info {
    padding: 40px 0
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: #f6f8ff
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px
}

.feature-card {
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 68, 246, .1) 0, transparent 50%);
    opacity: 0;
    transition: opacity .3s
}

.feature-card:hover::before {
    opacity: 1
}

.feature-card:hover {
    transform: translateY(-8px)
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f6f8ff
}

.pricing {
    padding: 80px 0
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.pricing-card {
    border-radius: 18px;
    padding: 32px
}

.pricing-featured {
    background-image: url('/images/pricing-card-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.pricing-featured img {
    height: 64px;
    width: 64px
}

.pricing-featured h3 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.pricing-featured p {
    font-size: 1.2rem;
    opacity: .7
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #1344f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.btn.loading,
.cta {
    position: relative
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f6f8ff
}

.pricing-header p,
.pricing-price {
    margin-bottom: 12px
}

.pricing-header p {
    color: #a9acb7;
    font-size: 14px
}

.pricing-price .price {
    font-size: 32px;
    font-weight: 700;
    color: #f6f8ff
}

.pricing-price .period {
    font-size: 16px;
    color: #a9acb7
}

.pricing-specs {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.spec {
    color: #a9acb7;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(169, 172, 183, .1)
}

.spec span {
    color: #fff
}

.spec:last-child {
    border-bottom: none
}

.benefits-content {
    width: 100%;
    margin: 0 auto;
    background-image: url('/images/benefits-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 50px;
    border-radius: 30px
}

.benefits-content h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f6f8ff;
    text-align: left
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: flex-start;
    max-width: 1000px
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1c2131;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    font-size: 15px;
    white-space: nowrap;
    transition: .3s
}

.cta-content,
.info-content {
    text-align: center;
    border-radius: 30px;
    margin: 0 auto
}

.benefit-item img {
    height: 24px;
    width: 24px
}

.benefit-item span {
    color: #f6f8ff;
    font-size: 14px;
    font-weight: 500
}

.info-content {
    width: 100%;
    background-color: #0f121b;
    padding: 50px
}

.info-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f6f8ff
}

.info-content p {
    font-size: 18px;
    color: #a9acb7;
    line-height: 1.6
}

.cta {
    padding: 40px 0;
    overflow: hidden
}

.cta-content {
    background-image: url('/images/cta-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 50px
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f6f8ff
}

.cta-content p {
    font-size: 18px;
    color: #fff;
    opacity: .5;
    margin-bottom: 32px
}

.cta-note {
    font-size: 14px !important;
    color: #fff !important;
    opacity: .5;
    margin-top: 24px !important;
    margin-bottom: 0 !important
}

.footer {
    padding: 60px 0 0
}

.footer-block {
    padding: 40px;
    background-color: #0f121b;
    border-radius: 30px 30px 0 0
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 20px
}

.footer-brand p {
    color: #a9acb7;
    font-size: 14px;
    margin-top: 16px
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.footer-column h4 {
    color: #f6f8ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px
}

.footer-bottom p,
.footer-column a {
    color: #a9acb7;
    font-size: 14px
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .3s
}

.social-link {
    width: 40px;
    height: 40px;
    background: #ffffff1f;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.social-link:hover {
    background: #ffffff37;
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    text-align: left
}

@media (max-width:1024px) {
    .container {
        padding: 0 24px
    }

    .hero-content {
        gap: 40px
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 16px
    }

    .header-content {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
        border-radius: 0;
        margin-top: 0
    }

    .header .container {
        padding: 0
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 24px;
        padding-top: 16px;
        border-top: 1px solid rgba(19, 68, 246, .1)
    }

    .cta-icons,
    .header-actions {
        gap: 12px
    }

    .hero {
        padding: 120px 0 60px
    }

    .footer-content,
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .hero-title {
        font-size: 36px
    }

    .hero-description {
        font-size: 16px
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .feature-card,
    .pricing-card {
        padding: 28px
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }

    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px
    }

    .cookie-buttons {
        flex-direction: column
    }

    .benefits-content h2,
    .cta-content h2,
    .info-content h2,
    .section-title {
        font-size: 28px
    }

    .cta-icon {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 12px
    }

    .header-content {
        padding: 12px
    }

    .logo-text,
    .nav {
        display: none
    }

    .benefits-content {
        padding: 50px 25px
    }

    .hero-content {
        background: url('/images/mobile-hero-bg.png'), linear-gradient(90deg, #0f121b, #0f162f);
        min-height: 600px;
        padding: 50px 20px;
        align-items: start
    }

    .cta-content {
        background-image: url('/images/mobile-cta-bg.png');
        min-height: 470px
    }

    .hero-buttons .btn,
    .social-links {
        justify-content: center
    }

    .benefit-item span,
    .cookie-text p,
    .nav-link {
        font-size: 13px
    }

    .hero-title,
    .pricing-price .price {
        font-size: 28px
    }

    .hero {
        padding: 100px 0 50px
    }

    .hero-title {
        margin-bottom: 20px
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 28px
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px
    }

    .feature-card,
    .pricing-card {
        padding: 24px
    }

    .feature-card h3 {
        font-size: 18px
    }

    .pricing-header h3 {
        font-size: 20px
    }

    .benefits-content h2,
    .cta-content h2,
    .info-content h2 {
        font-size: 24px
    }

    .benefit-item {
        width: 100%;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        padding: 14px
    }

    .cta-content p,
    .info-content p {
        font-size: 16px
    }

    .cta-note {
        font-size: 13px !important
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left
    }

    .footer-column {
        text-align: center
    }

    .cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px
    }

    .cookie-text h4 {
        font-size: 15px
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px
    }
}

@media (max-width:360px) {
    .hero-title {
        font-size: 24px
    }

    .section-title {
        font-size: 22px
    }

    .feature-card,
    .pricing-card {
        padding: 20px
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px
    }

    .cta-icons {
        gap: 8px
    }

    .cta-icon {
        width: 36px;
        height: 36px;
        font-size: 14px
    }
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {

    .cta-icon,
    .feature-icon,
    .logo-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges
    }
}

@media (max-width:768px) and (orientation:landscape) {
    .hero {
        padding: 80px 0 40px
    }

    .hero-title {
        font-size: 32px
    }

    .section-title {
        font-size: 26px
    }
}

.feature-card,
.hero-image img,
.pricing-card {
    will-change: transform
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }

    .cta-icon,
    .hero-image,
    .loading-progress {
        animation: none !important
    }
}

.btn:focus-visible,
.cookie-btn:focus-visible,
.nav-link:focus-visible {
    outline: #1344F6 solid 2px;
    outline-offset: 2px
}

.btn.loading {
    color: transparent
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: 1s linear infinite spin
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    animation: .6s ease-in-out pulse
}

::selection {
    background: rgba(19, 68, 246, .3);
    color: #f6f8ff
}

::-moz-selection {
    background: rgba(19, 68, 246, .3);
    color: #f6f8ff
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #07090f
}

::-webkit-scrollbar-thumb {
    background: #1344f6;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #0f2fd9
}