:root {
    --primary-color: #5b3af3;
    --secondary-color: #3e54f1;
    --background-color: #F9FAFC;
    --text-color: #333;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    margin-left: 2rem;
    flex-grow: 1;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
}

.nav-links li {
    margin-right: 1.5rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5b3af3;
}

.user-menu {
    position: relative;
    width: 18%;
}

#userMenuBtn {
    background-color: #5b3af3;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

#userMenuBtn:hover {
    background-color: #3e54f1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: #F9FAFC;
}

.btn {
    font-family: 'Open Sans', sans-serif;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.section {
    padding: 4rem 0;
}

/*.section:nth-child(even) {
    background-color: var(--background-color);
}*/

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(to bottom, #fff, #F9FAFC);
    color: var(--primary-color);
    padding: 120px 0 80px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 20px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #333;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;  /* Добавляем отсуп снизу */
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.btn-secondary::after {
    content: '→';
    margin-left: 8px;
    font-size: 1.2em;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
    }
    #userMenuBtn {
        background-color: #5b3af3;
        color: #ffffff;
        border: none;
        padding: 0.7rem 1rem;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        font-size: 0.875rem;
    }
}

.how-it-works {
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 30px;
}

.how-it-works-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.steps-left-column, .steps-right-column {
    width: 48%;
}

.steps-right-column {
    text-align: center;
}
.steps-left-column {
    padding-top: 4rem;
}

.steps-right-column img {
    width: 90%;
}
.steps-left-column h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.show-more-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
}

.show-more-content {
    display: none;
    margin-top: 1rem;
}

.steps-wrapper {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.steps-container {
    position: relative;
    padding: 2rem 0;
    width: 80%;
    margin: 0 auto;
}

.steps-line {
    position: relative;
    height: 6px;
    background-color: #e0e0e0;
    margin-bottom: 1rem;
}

.step-point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-point:nth-child(1) { left: 0; }
.step-point:nth-child(2) { left: 33.33%; }
.step-point:nth-child(3) { left: 66.66%; }
.step-point:nth-child(4) { left: 100%; transform: translate(-100%, -50%); }

.step-point:hover, .step-point.active {
    background-color: var(--primary-color);
}

.step-tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 275px;
    text-align: left;
}

.step-tooltip h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.step-tooltip p {
    font-size: 0.8rem;
    color: var(--text-color);
}

.step-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border: 10px solid transparent;
    border-top-color: #fff;
    transform: translateX(-50%);
}

.step-point:hover .step-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 160%;
}

.steps-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.steps-labels span {
    text-align: center;
    font-size: 0.8rem;
    width: 5%;
    font-weight: bold;
    color: var(--primary-color);
    box-sizing: border-box;
}

.label-span1 {
    left: -18px;
    position: relative;
}

.label-span2 {
    left: -4px;
    position: relative;
}

.label-span3 {
    left: 8px;
    position: relative;
}

.label-span4 {
    left: -7px;
    position: relative;
}

.show-more-container {
    margin-top: 2rem;
}

.show-more-link {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.show-more-link:hover {
    text-decoration: none;
}

.show-more-content {
    display: none;
    position: relative;
    font-size: 0.8rem;
    padding: 1rem 0.5rem 1rem 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
}

.pricing-section h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.legal-support {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.free-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.free-widget img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.free-widget a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.btn {
    margin: 0 1rem;
}

.free-widget {
    margin-top: 3rem;
    text-align: center;
}

.company-info {
    background-color: #f0f4ff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.company-details {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
}

.company-details li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.company-details strong {
    color: var(--primary-color);
    margin-right: 5px;
}

address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

a.contact-link {
    color: #555;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.50rem;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature img {
    width: 24px;  /* Увеличиваем размер галочки */
    height: 24px;  /* Увеличиваем размер галочки */
}

.clients {
    background-color: #ffffff;
    padding: 4rem 0;
}

.clients h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.client-logos {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.logo-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-row img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.features {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 30px 30px 30px 30px;
}

.features h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.features h3 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-description {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 0.5rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--primary-color);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    height: 40px;
}

.feature-item img {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

.feature-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.feature-item p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

.privacy-section, .lets-do-this-section, .cta-section, .solution-section {
    padding: 4rem 0;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.privacy-section, .solution-section {
    background-color: #fff;
    text-align: center;
}

.privacy-section .lock-icon, .solution-section .lock-icon {
    width: 60px;
    margin-bottom: 1rem;
}

.privacy-section h2, .solution-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.privacy-section .highlight, .solution-section .highlight {
    color: var(--primary-color);
}

.privacy-section p, .solution-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.lets-do-this-section {
    background-color: #0d1117;
    color: #fff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.lets-do-this-section .content-wrapper {
    display: flex;
    gap: 2rem;
}

.lets-do-this-section .text-content {
    flex: 1;
}

.lets-do-this-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lets-do-this-section p {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.lets-do-this-section .image-content {
    flex: 1;
}

.lets-do-this-section .team-photo {
    width: 100%;
    border-radius: 15px;
}

.cta-section {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: #fff;
    overflow: hidden;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.cta-section .container {
    display: flex;
    align-items: center;
}

.cta-section .cta-content {
    flex: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .cta-image {
    flex: 1;
    text-align: center;
}

.cta-section .cta-person {
    width: 50%;
    border-radius: 50%;
}

.btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-column .company-info {
    margin-bottom: 20px;
}

.footer-column .company-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-column .company-details {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
}

.footer-column .company-details li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-column .company-details a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-column .company-details a:hover {
    text-decoration: underline;
}


.main-dropdown {
    position: relative;
}

.main-dropdown-toggle {
    cursor: pointer;
}

.arrow-icon {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
    margin-top: 25px;
}

.main-dropdown-menu li {
    display: block;
    width: 100%;
}

.main-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.main-dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.main-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

@media (min-width: 769px) {
    .burger-menu, .mobile-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .desktop-user-menu {
        display: none;
    }

    .burger-menu {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .burger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px 0;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        padding: 20px;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu .nav-links {
        flex-direction: column;
        padding: 20px 0;
    }

    .mobile-menu .nav-links li {
        margin: 10px 0;
    }

    .mobile-user-menu {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .mobile-user-menu button {
        width: 80%;
        padding: 10px;
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .close-menu {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--text-color);
        font-weight: 600;
    }
    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-direction: column;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .logo-row {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 2rem;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: space-around;
    }
    .clients {
        padding: 3rem 0;
    }

    .clients h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .logo-row {
        gap: 1.5rem;
    }

    .logo-row img {
        max-width: 80%;
        max-height: 80px;
    }
    .features h2 {
        margin-bottom: 1rem;
        font-size: 2.2rem;
    }
    
    .features h3 {
        margin-bottom: 2rem;
    }
    .features-description {
        max-width: 100%;
        margin: 0 auto 1rem;
    }
    .features {
        border-radius: 0px;
    }
    .privacy-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .how-it-works-content {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
        flex-direction: column;
        align-content: space-around;
        flex-wrap: wrap;
    }
    .steps-left-column, .steps-right-column {
        width: 100%;
    }
    .steps-left-column {
        padding-top: 1rem;
    }
    .lets-do-this-section .content-wrapper {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }
    .cta-section .container {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
}

.steps-wrapper-mobile {
    display: none;
}

@media (max-width: 768px) {
    .steps-wrapper {
        display: none;
    }

    .steps-wrapper-mobile {
        display: block;
        position: relative;
        padding: 20px 0;
    }

    .steps-container-mobile {
        position: relative;
        padding-left: 30px;
    }

    .steps-line-mobile {
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: #e0e0e0;
    }

    .steps-line-mobile::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        background-color: var(--primary-color);
        transition: height 0.5s ease;
    }

    .step-point-mobile {
        position: relative;
        margin-bottom: 30px;
        padding-left: 1rem;
    }

    .step-point-mobile::before {
        content: '';
        position: absolute;
        left: -23px;
        top: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #fff;
        border: 2px solid var(--primary-color);
        z-index: 1;
    }

    .step-label-mobile {
        font-weight: bold;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 5px;
    }

    .step-tooltip-mobile p {
        font-size: 0.9rem;
        color: #666;
    }
    .main-dropdown-menu {
        position: static;
        box-shadow: none;
        min-width: 170px;
        margin-top: 0px;
    }

    .mobile-menu .main-dropdown-menu {
        display: none;
        padding-left: 0px;
    }

    .main-dropdown.active + li {
        margin-top: 10px;
    }
    
    .mobile-menu .main-dropdown.active .main-dropdown-menu {
        display: block;
    }
    .main-nav{
        margin-left: 0.5rem;
    }
}

.adapts-section {
    background: linear-gradient(135deg, #1e0b4d 0%, #380e7f 100%);
    color: #fff;
    padding: 80px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.adapts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.animated-text {
    font-size: 2.5rem;
    color: #ff00ff;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.dots {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff00ff;
    animation: dots-animation 2s infinite;
}

@keyframes dots-animation {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

.adapts-content {
    display: flex;
    margin-top: 40px;
    align-items: center;
}

.profile-image {
    flex: 1;
    margin-right: 40px;
}

.profile-image img {
    width: 100%;
    border-radius: 20px;
}

.profile-info {
    flex: 1;
}

.profile-info h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.profile-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.profile-btn {
    display: flex;
    align-items: center;
    background-color: #0f1c2e;
    border: 1px solid #2a3b55;
    color: #fff;
    padding: 15px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 1rem;
    text-align: left;
}

.profile-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.profile-btn:hover, .profile-btn.active {
    background-color: #1e3a8a;
    border-color: #3b82f6;
}

.profile-btn.active {
    background-color: #3b82f6;
}

.profile-cta-buttons {
    margin-top: 30px;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
}

.profile-cta-buttons .btn {
    margin-right: 15px;
}

.widget-section-demo {
    background-color: #f4f4f4;
    padding: 40px 0;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
}

.text-block {
    max-width: 45%;
    margin-bottom: 20px;
}

.animated-text-demo {
    color: var(--primary-color);
    animation: textAnimation 3s infinite;
}

@keyframes textAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.widget-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.widget-demo {
    max-width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.widget-container h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.widget-container p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    padding-right: 30px;
    margin-bottom: 2rem;
}

.widget-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.widget-item {
    width: 100%;
    height: 150px;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.widget-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}

.language-switcher {
    display: flex;
    overflow-x: auto;
    margin-bottom: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.language-item {
    padding: 15px 30px 15px 30px;
    margin-right: 25px;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transition: background-color 0.3s;
    flex-direction: column;
    align-content: space-around;
    align-items: center;
}

.flag-icon {
    width: 50%;
    margin-right: 0px;
    margin-bottom: 10px;
    height: 25px;
}

.language-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

.language-item:hover {
    background-color: #e0e0e0;
}

.language-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.language-controls button {
    padding: 12px 32px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1.5rem;
}

.language-controls button:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.pricing-section {
    padding: 4rem 0;
    background-color: #fff;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.pricing-plan {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    margin-top: 30px;
    z-index: 1;
    flex: 1;
    padding-bottom: 3rem;
}

.pricing-plan:not(:first-child) {
    margin-left: -35px;
}

.pricing-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #e0e0e0;
    z-index: -1;
}

.pricing-plan .btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    padding: 15px 30px 15px 30px;
}

.plan-header {
    background: #F3F2FB;
    padding: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #333;
    height: 30%;
}

.pricing-plan.ultimate .plan-header {
    background: #C4C3DC;
}

.pricing-plan.recommended .plan-header {
    background: #DEDEF0;
}

.plan-header h2 {
    margin: 0;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.plan-header p {
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-icon {
    position: absolute;
    right: 35px;
    top: 45px;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #d71d1d;
    font-size: 1.3rem;
    font-weight: 600;
    padding-left: 2rem;
    margin-top: 3rem;
}

.price {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: bold;
    padding-left: 2rem;
}

.price span {
    font-size: 1.3rem;
    font-weight: normal;
    color: #333;
}

.page-views {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 2rem;
    font-weight: 600;
}

.page-views span {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.btn-secondary {
    background-color: #6c757d;
}

.price-features {
    list-style: none;
    padding: 0 2rem 2rem 2rem;
    margin-top: 3rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-features li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.price-features .feature-disabled {
    color: #666;
    opacity: 0.7;
}

.price-features .feature-disabled::before {
    content: "×";
    color: #ff4d4d;
    font-size: 1rem;
    font-weight: bold;
}

.recommended .badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.text-block-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
}

.text-block-price h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 30px;
    height: 100%;
}

.faq-description {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
}

.faq-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
}

.faq-answer ul {
    padding-left: 3%;
    padding-top: 2%;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-page-section {
    background-color: #fff;
    padding: 4rem 0;
}

.faq-page-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-column {
    flex: 1;
    min-width: calc(50% - 1.33rem);
}

@media (max-width: 768px) {
    .faq-column {
        min-width: 100%;
    }

    .adapts-content {
        flex-direction: column;
    }
    .profile-buttons {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .profile-cta-buttons {
        flex-direction: column;
    }
    .pricing-grid {
        display: flex;
        justify-content: space-evenly;
        gap: 1rem;
        position: relative;
        flex-direction: column;
        align-items: stretch;
    }
    .pricing-plan:not(:first-child) {
        margin-left: 0px;
    }
    .widget-container {
        display: flex;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0px 20px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .widget-container .text-block {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .widget-demo {
        max-width: 100%;
    }
    .widget-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .language-switcher {
        width: 100%;
    }
}

/* Contacts */
.contact-section {
    background-color: #fff;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info, .contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info a {
    display: block;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.contact-info p {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 10px;
}

button[type="submit"] {
    margin-top: 1rem;
}

.cms-logos-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.cms-logos-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

.cms-logos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cms-logos-section .highlight {
    color: #0066FF;
}

.cms-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.inline-link {
    color: #0066FF;
    text-decoration: none;
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--primary-color);
}

.logos-container {
    position: relative;
    padding: 20px 0;
}

.logos-track {
    margin: 30px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-wrapper {
    display: inline-block;
    animation: 30s linear infinite;
    padding: 20px 0;
}

.track-1 .logos-wrapper {
    animation-name: scroll-left;
}

.track-2 .logos-wrapper {
    animation-name: scroll-right;
}

.logo-item {
    display: inline-block;
    padding: 0 25px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    height: 100px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.privacy-policy {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.privacy-content h2 {
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .cms-logos-section h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .cms-logos-section .cms-description {
        padding: 0 20px;
    }
    
    .logo-item {
        padding: 0 20px;
    }
    
    .logo-item img {
        height: 30px;
    }
}

.privacy-policy-section {
    padding: 60px 0;
    background-color: #fff;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    border-bottom: 2px solid #eee;
}

.policy-approved {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.policy-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-content ul {
    margin: 15px 0 25px 0;
    padding-left: 20px;
}

.privacy-content ol {
    margin: 15px 0 25px 0;
    padding-left: 20px;
}

.privacy-content li {
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 30px 0;
    }
    
    .policy-header h1 {
        font-size: 1.5rem;
    }
    
    .privacy-content {
        padding: 15px;
    }
}

.manual-download-section {
    padding: 4rem 0;
    background-color: #fff;
}

.manual-download-wrapper {
    background-color: #f8f9fa;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    background-image: url('../images/user-manual.svg');
    background-position-x: 180px;
    background-position-y: -100px;
    background-repeat: no-repeat;
    background-size: 130% auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.manual-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.manual-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.manual-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.download-btn i {
    font-size: 1.25rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .manual-download-wrapper {
        padding: 2rem;
        background-size: 60% auto;
    }

    .manual-content {
        max-width: 100%;
    }

    .manual-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .manual-download-wrapper {
        padding: 1.5rem;
        background-image: none;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Стили модального окна */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999; /* Увеличим z-index */
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex; /* Используем flex для центрирования */
}

.modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0); /* Начальная позиция */
    transition: transform 0.3s ease;
}

/* Анимация появления */
.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(91, 58, 243, 0.1);
    outline: none;
}

/* Стилизация select */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-4-4h8l-4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Стили для чекбокса */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: -2px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Стили для кнопки отправки */
form .btn-primary {
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 58, 243, 0.3);
    background: linear-gradient(265deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Адаптивность */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 20px;
        margin-top: 70% !important;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Модальное окно */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: var(--white);
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.modal-content > p {
    color: #666;
    margin-bottom: 2rem;
}

/* Добавляем новые стили для bento grid, сохраняя существующие */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(91, 58, 243, 0.08);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
}

.bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bento-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bento-item h4 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-color);
}

.bento-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.bento-soon {
    background: linear-gradient(135deg, rgba(91, 58, 243, 0.05) 0%, rgba(62, 84, 241, 0.1) 100%);
}

.soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(91, 58, 243, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.12);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large, .bento-medium {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Добавляем новые стили, сохраняя существующие */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F3FF 100%);
}

.how-it-works-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.steps-left-column {
    flex: 1;
}

.steps-left-column h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.main-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-preview {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-preview-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 58, 243, 0.08);
}

.feature-preview-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-preview-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.show-more-container {
    position: relative;
}

.show-more-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
}

.show-more-link i {
    transition: transform 0.3s ease;
}

.show-more-link.active i {
    transform: rotate(180deg);
}

.show-more-content {
    display: none;
    margin-top: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(91, 58, 243, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(91, 58, 243, 0.12);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.steps-right-column {
    flex: 1;
}

.steps-right-column img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .how-it-works-content {
        flex-direction: column;
    }

    .features-preview {
        flex-wrap: wrap;
    }

    .feature-preview-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 4rem 0;
    }

    .steps-left-column h2 {
        font-size: 2rem;
    }

    .feature-preview-item {
        width: 100%;
    }
}

/* How It Works Section */
.hiw-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F3FF 100%);
}

.hiw-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.hiw-info {
    flex: 1;
}

.hiw-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hiw-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hiw-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.hiw-feature {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(91, 58, 243, 0.08);
}

.hiw-feature--large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(91, 58, 243, 0.05) 0%, rgba(62, 84, 241, 0.1) 100%);
}

.hiw-feature--medium {
    grid-column: span 2;
}

.hiw-feature--wide {
    grid-column: span 4;
    grid-row: span 1;
}

.hiw-feature--full {
    grid-column: span 6;
    grid-row: span 1;
}

.hiw-feature__icon {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.hiw-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.12);
}

.hiw-feature:hover .hiw-feature__icon {
    transform: translateX(10px);
}

.hiw-feature__title {
    font-size: 1.125rem;
    color: var(--text-color);
    margin: 0 0 0.5rem;
}

.hiw-feature__text {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.hiw-image {
    flex: 1;
    position: sticky;
    top: 120px; /* 120px = header height (90px) + небольшой отступ */
    height: fit-content;
    align-self: flex-start;
}

.hiw-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hiw-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hiw-content {
        flex-direction: column;
    }

    .hiw-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hiw-image {
        position: static;
    }
}

@media (max-width: 576px) {
    .hiw-section {
        padding: 4rem 0;
    }

    .hiw-title {
        font-size: 2rem;
    }

    .hiw-features-grid {
        grid-template-columns: 1fr;
    }
    
    .hiw-feature--large,
    .hiw-feature--medium,
    .hiw-feature--wide{
        grid-column: span 6;
        grid-row: span 1;
    }
}

.security-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    color: var(--white);
    padding: 6rem 0;
    display: flex;
    align-items: center;
    border-radius: 30px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-main {
    grid-column: span 2;
    text-align: center;
}

.security-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.security-main h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.security-main .highlight {
    color: var(--primary-color);
    position: relative;
}

.security-description {
    font-size: 1.25rem;
    color: #a8b3cf;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.security-certificates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    grid-column: span 2;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.certificate-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.security-features {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.security-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.security-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.security-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.security-feature p {
    color: #a8b3cf;
    font-size: 0.875rem;
}

.security-cta {
    grid-column: span 2;
    text-align: center;
    margin-top: 2rem;
}

.security-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.security-cta .btn:hover {
    transform: translateY(-5px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .security-main h2 {
        font-size: 2.5rem;
    }

    .security-certificates {
        flex-direction: column;
        align-items: center;
    }

    .security-features {
        grid-template-columns: 1fr;
    }
}

.business-benefits {
    background-color: #fff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.business-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 58, 243, 0.2), transparent);
}

.business-benefits .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.business-benefits h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.business-benefits .section-description {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(91, 58, 243, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(91, 58, 243, 0.2), rgba(62, 84, 241, 0.2));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(91, 58, 243, 0.1),
        0 0 120px rgba(91, 58, 243, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.card-icon i {
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.main-description {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.card-details {
    margin-bottom: 2.5rem;
}

.card-details ul {
    list-style: none;
    padding: 0;
}

.card-details li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.card-details li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235b3af3'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.card-stats {
    border-top: 1px solid rgba(91, 58, 243, 0.1);
    padding-top: 2rem;
    margin-top: auto;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .benefits-grid {
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .business-benefits {
        padding: 6rem 0;
    }

    .business-benefits h2 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
}

.mission-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(91, 58, 243, 0.1);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.mission-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-feature {
    display: flex;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mission-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 58, 243, 0.1);
    background: #fff;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

.mission-cta {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: #666;
    font-size: 0.875rem;
}

.mission-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 24px;
}

.experience-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.875rem;
    color: #666;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.mission-cta-btn {
    text-align: center;
    padding: 2rem 2rem;
}

@media (max-width: 992px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .mission-content h2 {
        font-size: 2.5rem;
    }

    .mission-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 4rem 0;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1728 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.cta-badge i {
    color: #fff;
    font-size: 1rem;
}

.cta-badge span {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.cta-feature span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.or-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.cta-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s infinite ease-in-out;
}

.element i {
    font-size: 2rem;
    color: #fff;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .adapts-section {
        width: 100%;
        padding: 80px 20px
    }
    
    .security-icon {
        animation: none;
    }
    
    .cta-section {
        padding: 4rem 1rem;
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 90%;
    }

    .or-separator {
        margin: 0.5rem 0;
    }
    
    .plan-icon {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .price {
        font-size: 2rem;
    }
    
    .container {
        width: 95%;
        padding: 0;
    }
    
    .contact-grid {
        grid-template-columns: inherit;
    }
    
    .policy-header h2 {
        font-size: 1.5rem;
    }
}