*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

li {
    list-style: none;

}

a{
    text-decoration: none;
    color: inherit;
}
@font-face {
    font-family: Roboto-300;
    src: url("../fonts/Roboto-Light.ttf");
}
@font-face {
    font-family: Roboto-400;
    src: url("../fonts/Roboto-Regular.ttf");
}
@font-face {
    font-family: Roboto-500;
    src: url("../fonts/Roboto-Medium.ttf");
}
@font-face {
    font-family: Roboto-700;
    src: url("../fonts/Roboto-Bold.ttf");
}

:root {
    --main-color: #12b85b;
}

html{
    width: 100%;
    height: 100%;
}

body{
    width: 100%;
    height: 100%;
}

.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    background-color: #000;
    font-family: 'Roboto-500';
    color: #fff;
}

/* Базовые стили */
.header {
    width: 100%;
    height: 100px;
    font-family: 'Roboto', sans-serif;
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, height 0.4s ease;
}

.header.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header__shell {
    width: 100%;
    height: 100%;
}

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

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    z-index: 1001;
}

.logo-img {
    width: 150px;
    height: auto;
    transition: transform 0.3s;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    padding: 0;
}

.toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.toggle-line:nth-child(1) {
    top: 0;
}

.toggle-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.toggle-line:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Основное меню */
.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: Roboto-400;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
    left: 0;
}

.menu-link:hover {
    color: var(--main-color);
}

/* Кнопка */
.button__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    padding: 12px 30px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    border: none;
    cursor: pointer;
}

.button__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
}

.button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 184, 91, 0.4);
}

.button__link:hover::before {
    left: 100%;
}

.button-icon {
    transition: transform 0.3s;
}

.button__link:hover .button-icon {
    transform: translateX(3px);
}

.pulse-on-hover:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 184, 91, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(18, 184, 91, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(18, 184, 91, 0);
    }
}

/* Адаптивность */
@media (max-width: 992px) {
    .menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s ease;
        padding: 80px 30px 30px;
        z-index: 1000;
    }

    .menu-wrapper.active {
        right: 0;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .button__link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header {
        height: 70px;
    }

    .logo-img {
        width: 80px;
    }

    .menu-wrapper {
        width: 100%;
    }
    .hero__title-line{
        text-align: center;
    }
}


/* Main */
.container-main{
    max-width: 1180px;
    margin: 0 auto;
}

.main{
    width: 100%;
    height: 100%;
    background-color: inherit;
}
/* Базовые стили */
.hero.dark-theme {
    background-color: #000;
    color: #fff;
}


.hero.dark-theme .hero__title-line::after {
    display: none;
}

.hero.dark-theme .hero__stat-number {
    color: #fff; /* Белые цифры статистики */
}

.hero.dark-theme .hero__stat-label {
    color: rgba(255, 255, 255, 0.8); /* Слегка прозрачный белый */
}

.hero.dark-theme .hero__scroll-down {
    color: #fff; /* Белая стрелка скролла */
}

.hero.dark-theme .hero__bg-circle {
    background: rgba(255, 255, 255, 0.05); /* Светлые круги на фоне */
}

.hero.dark-theme .hero__bg-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
}

/* Остальные стили остаются без изменений */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__content {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 80px;
}

.hero__title {
    display: flex;
    flex-direction: column;
    font-family: "Roboto-500";
    font-size: clamp(30px, 6vw, 100px);
    line-height: 1.1;
    margin-bottom: 60px;
    align-items: flex-start;
}

.hero__title-line {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 15px;
}

.hero__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--main-color);
    color: white;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
    z-index: -1;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(18, 184, 91, 0.4);
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta-icon {
    transition: transform 0.3s;
}

.hero__cta:hover .hero__cta-icon {
    transform: translateX(5px);
}

.hero__stats {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 5px;
}

.hero__stat-label {
    font-size: clamp(14px, 1.5vw, 18px);
}

.hero__scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

.hero__scroll-down:hover {
    transform: translateX(-50%) scale(1.1);
}

.hero__scroll-icon {
    transition: transform 0.3s;
}

.hero__scroll-down:hover .hero__scroll-icon {
    transform: translateY(5px);
}

/* Анимированный фон */
.hero__bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.hero__bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 12s infinite ease-in-out;
}

.hero__bg-dots {
    position: absolute;
    width: 400px;
    height: 400px;
    background-size: 20px 20px;
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out reverse;
}

/* Анимации */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 184, 91, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(18, 184, 91, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(18, 184, 91, 0);
    }
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero__footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__title {
        margin-bottom: 40px;
    }

    .hero__stats {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
        padding-top: 80px;
    }

    .hero__title {
        margin-bottom: 30px;
        margin-top: 100px;
        align-items: center;
    }

    .hero__cta {
        padding: 16px 32px;
        font-size: 18px;
    }

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

    .hero__scroll-down {
        display: none;
    }
}

/* Основные стили */
.it-services {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.it-services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.it-services-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
    line-height: 1.3;
}

.title-line {
    display: block;
}

.highlight {
    color: #12b85b;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(18, 184, 91, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.it-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.it-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Gradient overlay — opacity-only transition (GPU composited) */
.it-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 184, 91, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

/* Hover shadow via ::after opacity trick — avoids box-shadow repaint */
.it-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
    pointer-events: none;
}

.it-service-card:hover {
    transform: translateY(-10px);
}

.it-service-card:hover::before {
    opacity: 1;
}

.it-service-card:hover::after {
    opacity: 1;
}

.card-category {
    font-family: Roboto-400;
    position: absolute;
    top: 20px;
    left: 30px;
    background: #12b85b;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon {
    width: 80%;
    margin: 20px auto 30px;
    position: relative;
}

.icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease;
    will-change: transform;
}

.it-service-card:hover .icon-svg {
    transform: scale(1.1);
}

.it-service-card:hover .icon-circle {
    transform: scale(1.15);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px 0;
    text-align: center;
    transition: color 0.3s;
}

.it-service-card:hover .card-title {
    color: #12b85b;
}

.card-description {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    text-align: center;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.card-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: #fff;
    border-top: 1px solid rgba(18, 184, 91, 0.15);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.it-service-card:hover .card-hover-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.service-features {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.service-features li {
    color: #334155;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #12b85b;
    border-radius: 50%;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.it-service-card {
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.it-service-card:nth-child(1) { animation-delay: 0.1s; }
.it-service-card:nth-child(2) { animation-delay: 0.2s; }
.it-service-card:nth-child(3) { animation-delay: 0.3s; }
.it-service-card:nth-child(4) { animation-delay: 0.4s; }
.it-service-card:nth-child(5) { animation-delay: 0.5s; }
.it-service-card:nth-child(6) { animation-delay: 0.6s; }

/* Адаптивность */
@media (max-width: 1200px) {
    .it-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .it-services {
        padding: 60px 0;
    }

    .it-services-title {
        margin-bottom: 40px;
    }

    .it-service-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin: 15px auto 25px;
    }
}

@media (max-width: 576px) {
    .it-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .it-service-card {
        max-width: 100%;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 15px;
    }
}
.form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 80px 0;
    justify-content: center;
}

.contact-form-background{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 550px;
    width: 100%;
}

.contact-form-side{
    display: flex;
    flex-direction: column;
    color: black;
    background: white;
    font-size: 32px;
    flex: 60%;
    height: 100%;
    border-radius: 12px 0 0 12px ;
    padding: 40px;
    width: 100%;
}

.contact-form-ul{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-form-ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-form-ul img{
    width: 64px;
}

.contact-form-ul li>p{
    font-size: 32px;
}


.contact-form-container {
    max-width: 500px;
    height: 100%;
    padding: 2rem;
    background: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex: 40%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;

}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.modern-it-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem; /* Увеличим промежуток между полями */
}

.form-group {
    position: relative;
    padding-top: 1.2rem; /* Добавим место для поднятого лейбла */
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 0.5rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group textarea {
    resize: none;
    min-height: 80px;
    padding-top: 0.5rem; /* Дополнительный отступ для textarea */
}

.form-group label {
    position: absolute;
    top: 1.8rem;
    left: 0.5rem;
    color: #999;
    pointer-events: none;
    transition: top 0.3s, font-size 0.3s, color 0.3s;
    background: white;
    padding: 0 0.3rem;
    margin-left: -0.3rem;
}

.form-group .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #000;
    transition: width 0.3s;
}

/* Floating label effect */
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: 0.5rem; /* Поднимем выше с учётом padding-top контейнера */
    font-size: 0.75rem; /* Чуть уменьшим размер */
    color: #000;
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
    width: 100%;
}

/* Submit button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
    overflow: hidden;
    position: relative;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.submit-btn .arrow {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s;
}

.submit-btn:hover .arrow {
    transform: translateX(5px);
}

.contact-form-container {
    animation: fadeInUp 0.6s ease-out;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading span {
    animation: fadeOut 0.3s forwards;
}

.submit-btn.loading .arrow {
    animation: arrowToCircle 0.5s forwards, rotate 1s linear infinite;
}
/**/
.modern-process {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.process-title {
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    font-size: 38px;
    font-weight: 600;
}

.steps-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.step-card {
    scroll-snap-align: start;
    min-width: 280px;
    padding: 30px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #12b85b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card h3 {
    margin: 0;
    font-size: 20px;
    color: #222;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 25px 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0; /* Начальное значение */
    background: linear-gradient(90deg, #12b85b, #0e9c4d);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-desc {
    margin: 0 0 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.step-button {
    width: 100%;
    padding: 12px;
    background: rgba(18, 184, 91, 0.1);
    color: #12b85b;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.step-button:hover {
    background: #12b85b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 91, 0.3);
}

/* Анимация при скролле */
@keyframes fillProgress {
    to { width: var(--main-color, 100%); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 30px;
    }

    .step-card {
        min-width: auto;
        padding: 25px;
    }

    .terminal-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .progress-bar {
        width: 100%;
    }
}

@keyframes arrowToCircle {
    to {
        transform: translateX(0);
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
        stroke-linecap: butt;
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-10px);
    }
}
/* Мобильная версия */
@media (max-width: 1680px) {
    .form {
        padding: 40px 0;
        gap: 0;
    }

    .contact-form-background {
        flex-direction: column;
        height: auto;
    }

    .contact-form-side {
        border-radius: 12px;
        padding: 30px 20px;
        width: auto;
        flex: none;
    }

    .contact-form-container {
        margin-top: 40px;
        border-radius: 12px;
        max-width: none;
        flex: none;
        padding: 30px 20px;

    }

    .process-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
        overflow-x: visible;
        padding: 0;
    }

    .step-card {
        min-width: auto;
        opacity: 1;
        transform: none;
        width: 100%;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .modern-it-form {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer__copyright{
        align-items: center;
    }
    .contact-form-side,
    .contact-form-container {
        padding: 25px 15px;
    }

    .process-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .step-header {
        gap: 12px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-desc {
        font-size: 14px;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}


/*foter*/
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

}

.footer__copyright {
    width: 80%;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    color: white;
    padding: 64px;
    font-size: 16px;
}

.footer__copyright p{
    width: fit-content;
    text-align: center;
}

/* Контакты */

.contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 64px;
    align-items: center;
    padding-top: 100px;
}

.contact__screen {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 48px;
}

.h1 {
    font-size: 64px;
    color: white;
}

.contact__row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact__title{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__ul a{
    color: inherit;
}

.contact__ul li{
    font-size: 24px;
}


/*Модальное окно*/
/* Стили модального окна */
.it-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.it-modal-overlay.it-active {
    display: flex;
    opacity: 1;
}

.it-modal-container {
    font-family: Roboto-500;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: 20px;
}

.it-modal-overlay.it-active .it-modal-container {
    transform: translateY(0);
}

.it-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.it-modal-close:hover {
    color: #12b85b;
}

.it-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.it-modal-header h2 {
    color: #222;
    margin: 15px 0 10px;
    font-size: 28px;
}

.it-modal-header p {
    color: #666;
    margin: 0;
}

.it-modal-icon {
    width: 50px;
    height: 50px;
}

.it-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.it-form-group {
    display: flex;
    flex-direction: column;
}

.it-form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.it-form-group input,
.it-form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.it-form-group input:focus,
.it-form-group textarea:focus {
    border-color: #12b85b;
    box-shadow: 0 0 0 3px rgba(18, 184, 91, 0.2);
    outline: none;
}

.it-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.it-submit-btn {
    background: #12b85b;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
}

.it-submit-btn:hover {
    background: #0e9c4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 91, 0.3);
}

.it-form-footer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

.it-form-footer a {
    color: #12b85b;
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 600px) {
    .it-modal-container {
        padding: 30px 20px;
    }

    .it-modal-header h2 {
        font-size: 24px;
    }
}
/*Модальное окно*/


/*Контакты*/
/* Стили контактной секции */
.it-contacts-section {
    background: #f9f9f9;
    padding: 140px 0;

}
[data-it-modal-open]{
    cursor: pointer;
}
.it-contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.it-contacts-title {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.it-contacts-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #12b85b;
    margin: 15px auto 0;
}

.it-contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

}

.it-contacts-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.it-contact-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.it-contact-card:hover {
    transform: translateY(-5px);
}

.it-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(18, 184, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.it-contact-icon img {
    width: 24px;
    height: 24px;
}

.it-contact-content h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 18px;
}

.it-contact-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    margin-bottom: 5px;
}

.it-contact-content a:hover {
    color: #12b85b;
}

.it-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.it-messengers {
    display: flex;
    gap: 15px;
}

.it-messenger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.it-messenger:hover {
    background: #12b85b;
    transform: scale(1.1);
}

.it-messenger img {
    width: 30px;
    height: 30px;
}

.it-callback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #12b85b;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.it-callback-btn:hover {
    background: #0e9c4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 91, 0.3);
}

.it-callback-btn img {
    width: 20px;
    height: 20px;
}

.it-contacts-map {
    height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Адаптивность */
@media (max-width: 900px) {
    .it-contacts-grid {
        grid-template-columns: 1fr;
    }

    .it-contacts-map {
        height: 400px;
    }

    .it-contacts-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .it-contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .it-messengers {
        justify-content: center;
    }
}
/*Контакты*/


/*Кейсы*/
/* Стили секции кейсов */
.it-cases-section {
    background: white;
    padding: 140px 0;
}

.it-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.it-section-title {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 15px;
}

.it-section-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.it-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.it-case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.it-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.it-case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.it-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.it-case-card:hover .it-case-image img {
    transform: scale(1.05);
}

.it-case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #12b85b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.it-case-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.it-case-content h3 {
    margin: 0 0 15px;
    color: #222;
    font-size: 20px;
}

.it-case-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.it-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.it-stat-item img {
    width: 16px;
    height: 16px;
}

.it-case-content p {
    color: #555;
    margin: 0 0 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.it-case-btn {
    background: rgba(18, 184, 91, 0.1);
    color: #12b85b;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    min-width: 120px;
    text-align: center;
}

.it-case-btn:hover {
    background: #12b85b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 91, 0.3);
}

.it-cases-footer {
    text-align: center;
}

.it-all-cases-btn {
    background: white;
    color: #12b85b;
    border: 2px solid #12b85b;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.it-all-cases-btn:hover {
    background: #12b85b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(18, 184, 91, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .it-cases-grid {
        grid-template-columns: 1fr;
    }

    .it-section-title {
        font-size: 30px;
    }

    .it-section-subtitle {
        font-size: 16px;
    }
}
/*Кейсы*/

/*Отзывы*/
.reviews{

}

/* Стили секции отзывов */
.client-feedback-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
}

.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feedback-title {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.feedback-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #f5f5f5;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}
.feedback-img{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.client-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.client-info h3 {
    margin: 0;
    color: #222;
    font-size: 18px;
}

.client-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.feedback-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.feedback-content p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feedback-footer {
    margin-top: auto;
    text-align: right;
}

.show-full-feedback {
    background: transparent;
    color: #12b85b;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.show-full-feedback:hover {
    background: rgba(18, 184, 91, 0.1);
}

.show-full-feedback svg {
    transition: transform 0.3s;
}

.show-full-feedback:hover svg {
    transform: translateX(3px);
}

/* Модальное окно */
.full-feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.full-feedback-modal.active {
    display: flex;
}

.feedback-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-feedback-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-feedback-modal:hover {
    color: #12b85b;
}

#fullFeedbackContent .feedback-header {
    margin-bottom: 30px;
}

#fullFeedbackContent .client-logo {
    width: 80px;
    height: 80px;
}

#fullFeedbackContent .client-info h3 {
    font-size: 22px;
}

#fullFeedbackContent .feedback-content p {
    -webkit-line-clamp: unset;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .feedback-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .feedback-card {
        padding: 25px;
    }
}
/*Отзывы*/


/*Модальное окно калькулятор*/
/* Стили модального окна */
/* Стили модального окна */
.outsource-modal-wrap {
    font-family: Roboto-400;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.outsource-modal-wrap.active {
    display: flex;
}

.benefit-modal-box {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    padding: 32px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    max-height: 90vh;
    overflow-y: auto;
}

.benefit-modal-head {
    text-align: center;
    margin-bottom: 30px;
}

.benefit-modal-head h2 {
    color: #222;
    margin: 20px 0 10px;
    font-size: 28px;
}

.benefit-modal-icon {
    width: 60px;
    height: 60px;
}

.benefit-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-criteria h3,
.price-example h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.benefit-criteria h3::before,
.price-example h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: #12b85b;
    border-radius: 2px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.benefit-item img {
    width: 24px;
    height: 24px;
}

.price-table {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.service-name {
    color: #444;
    /*font-size: 18px;*/
}

.service-price {
    font-weight: 600;
    color: #222;
}

.total-row {
    background: rgba(18, 184, 91, 0.05);
}

.total-row .service-price {
    color: #12b85b;
    font-size: 18px;
}

.savings-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(18, 184, 91, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.savings-box img {
    width: 30px;
    height: 30px;
}

.savings-box p {
    margin: 0;
    color: #333;
}

.savings-box strong {
    color: #12b85b;
}

.benefit-actions {
    text-align: center;
}

.benefit-actions p {
    color: #666;
    margin-bottom: 20px;
}

.benefit-request-btn {
    background: #12b85b;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.benefit-request-btn:hover {
    background: #0e9c4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 91, 0.3);
}

.benefit-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.benefit-modal-close:hover {
    color: #12b85b;
}

/* Кнопка вызова */
.outsource-benefit-btn {
    background: #12b85b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.outsource-benefit-btn:hover {
    background: #0e9c4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 91, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .benefit-modal-box {
        padding: 30px 20px;
    }

    .benefit-modal-head h2 {
        font-size: 24px;
    }

    .price-row {
        flex-direction: column;
        gap: 5px;
    }
}
/*Модальное окно калькулятор*/

/*О Компании*/

.padding-header{
    padding-top: 60px;
}

.itd-about-v2 {
    position: relative;
    padding: 120px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.itd-v2-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.itd-v2-bg-elements {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.itd-v2-bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(18, 184, 91, 0.05);
    top: -300px;
    right: -300px;
    animation: float 12s infinite ease-in-out;
}

.itd-v2-bg-square {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(18, 184, 91, 0.03);
    bottom: -200px;
    left: -200px;
    transform: rotate(45deg);
    animation: float 15s infinite ease-in-out reverse;
}

.itd-v2-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.itd-v2-text-block {
    flex: 1;
}

.itd-v2-visual-block {
    flex: 0 0 45%;
    position: relative;
}

.itd-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.itd-v2-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.itd-v2-highlight {
    color: #12b85b;
    display: inline-block;
    position: relative;
}

.itd-v2-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(18, 184, 91, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.itd-v2-experience {
    font-size: 72px;
    font-weight: 800;
    color: #12b85b;
    line-height: 1;
    position: relative;
    padding-left: 30px;
}

.itd-v2-experience::before {
    content: 'лет';
    position: absolute;
    bottom: 5px;
    left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.itd-v2-main-text {
    margin-bottom: 50px;
}

.itd-v2-typing-text {
    font-size: 20px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 40px;
    border-left: 4px solid #12b85b;
    padding-left: 20px;
    max-width: 90%;
}
@media (max-width: 768px) {
    .itd-v2-experience,
    .itd-v2-stat-number {
        will-change: transform; /* Улучшает производительность анимаций */
    }
}
.itd-v2-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.itd-v2-feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 20px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.itd-v2-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.itd-v2-feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background: rgba(18, 184, 91, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itd-v2-feature-icon img {
    width: 30px;
    height: 30px;
}

.itd-v2-feature-content h3 {
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.itd-v2-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.itd-v2-tag-list li {
    background: rgba(18, 184, 91, 0.1);
    color: #12b85b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.itd-v2-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.itd-v2-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.itd-v2-service-number {
    color: #12b85b;
    font-size: 14px;
    font-weight: 700;
}

.itd-v2-service-text {
    color: #334155;
    font-size: 15px;
}

.itd-v2-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.itd-v2-main-image {
    width: 100%;
    display: block;
    transition: transform 0.8s;
}

.itd-v2-image-wrapper:hover .itd-v2-main-image {
    transform: scale(1.05);
}

/* Терминал (замена фото) */
.itd-terminal {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
}

.itd-terminal__header {
    background: #21262d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #30363d;
}

.itd-terminal__dots {
    display: flex;
    gap: 7px;
}

.itd-terminal__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.itd-terminal__dot--red    { background: #ff5f57; }
.itd-terminal__dot--yellow { background: #febc2e; }
.itd-terminal__dot--green  { background: #28c840; }

.itd-terminal__title {
    color: #8b949e;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.itd-terminal__body {
    padding: 20px 24px 24px;
}

.itd-terminal__line {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.6;
}

.itd-terminal__line--mt {
    margin-top: 18px;
}

.itd-terminal__prompt {
    color: var(--main-color);
    font-weight: bold;
    white-space: nowrap;
}

.itd-terminal__cmd {
    color: #e6edf3;
}

.itd-terminal__block {
    margin: 8px 0 0 0;
    padding-left: 4px;
}

.itd-terminal__row {
    font-size: 14px;
    line-height: 1.9;
    color: #8b949e;
}

.itd-terminal__key {
    color: #79c0ff;
}

.itd-terminal__sep {
    color: #6e7681;
    margin: 0 4px;
}

.itd-terminal__val {
    color: #e6edf3;
}

.itd-terminal__row--ok .itd-terminal__status {
    color: var(--main-color);
    font-weight: bold;
}

.itd-terminal__row--ok {
    color: #e6edf3;
}

.itd-terminal__cursor {
    display: inline-block;
    width: 9px;
    height: 16px;
    background: var(--main-color);
    margin-left: 6px;
    vertical-align: middle;
    animation: blink 1.1s step-start infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.itd-v2-image-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#12b85b 2px, transparent 2px);
    background-size: 20px 20px;
    top: -30px;
    left: -30px;
    z-index: -1;
    opacity: 0.3;
}

.itd-v2-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.itd-v2-stat-item {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.itd-v2-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #12b85b;
    margin-bottom: 5px;
    line-height: 1;
}

.itd-v2-stat-label {
    color: #64748b;
    font-size: 14px;
}

.itd-v2-footer {
    text-align: center;
}

.itd-v2-cta {
    background: #12b85b;
    color: white;
    border: none;
    cursor: pointer;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(18, 184, 91, 0.3);
}

.itd-v2-cta:hover {
    cursor: pointer;
    background: #0e9c4d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 184, 91, 0.4);
}

.itd-v2-cta svg {
    transition: transform 0.3s;
}

.itd-v2-cta:hover svg {
    transform: translateX(5px);
}

/* Анимации */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 184, 91, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(18, 184, 91, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(18, 184, 91, 0);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .itd-v2-content {
        flex-direction: column;
    }

    .itd-v2-visual-block {
        order: -1;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .itd-v2-typing-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .itd-about-v2 {
        padding: 80px 0;
    }

    .itd-v2-title {
        font-size: 36px;
    }

    .itd-v2-experience {
        font-size: 54px;
    }

    .itd-v2-feature-card {
        flex-direction: column;
    }

    .itd-v2-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .itd-v2-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .itd-v2-title {
        font-size: 32px;
    }

    .itd-v2-typing-text {
        font-size: 18px;
    }

    .itd-v2-stats {
        flex-direction: column;
    }
}
/*О Компании*/


/*Футер*/

.site-footer {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Roboto-400';
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
    gap: 48px;
    padding: 70px 20px 56px;
}

/* Колонка бренда */
.site-footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.site-footer__logo-img {
    width: 130px;
    height: auto;
    filter: brightness(1.1);
}

.site-footer__about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.site-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.site-footer__contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__contact-link:hover {
    color: var(--main-color);
}

.site-footer__messengers {
    display: flex;
    gap: 12px;
}

.site-footer__messenger {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
}

.site-footer__messenger:hover {
    background: rgba(18, 184, 91, 0.2);
    transform: translateY(-3px);
}

.site-footer__messenger img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Навигационные колонки */
.site-footer__heading {
    font-family: 'Roboto-700';
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.site-footer__links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--main-color);
    transition: width 0.25s;
}

.site-footer__links a:hover {
    color: #fff;
}

.site-footer__links a:hover::before {
    width: 100%;
}

/* CTA колонка */
.site-footer__cta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 18px;
}

.site-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: 'Roboto-700';
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.site-footer__cta-btn:hover {
    background: #0ea84f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 184, 91, 0.35);
}

.site-footer__cta-btn svg {
    transition: transform 0.3s;
}

.site-footer__cta-btn:hover svg {
    transform: translateX(4px);
}

/* Нижняя полоса */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Адаптивность футера */
@media (max-width: 1024px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .site-footer__col--brand {
        grid-column: 1 / -1;
    }
    .site-footer__about {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        padding: 48px 20px 36px;
        gap: 32px;
    }
    .site-footer__col--brand {
        grid-column: auto;
    }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*Футер*/

/* ===== Блок "Работаем с любым бизнесом" ===== */
.industries {
    position: relative;
    padding: 100px 0;
    background: #fff;
    color: #0f172a;
    overflow: hidden;
}

.industries__bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.industries__bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 184, 91, 0.06) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.industries__bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(18, 184, 91, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.industries__header {
    text-align: center;
    margin-bottom: 60px;
}

.industries__title {
    font-family: 'Roboto-700';
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.industries__title .title-line {
    display: block;
}

.industries__title .highlight {
    color: var(--main-color);
}

.industries__subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.industry-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.35s ease;
    cursor: default;
}

.industry-card:hover {
    background: #fff;
    border-color: rgba(18, 184, 91, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(18, 184, 91, 0.12);
}

.industry-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(18, 184, 91, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s;
}

.industry-card:hover .industry-card__icon {
    background: rgba(18, 184, 91, 0.2);
}

.industry-card__title {
    font-family: 'Roboto-700';
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 10px;
}

.industry-card__desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.industries__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.industries__cta p {
    color: #64748b;
    font-size: 16px;
}

.industries__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Roboto-700';
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.industries__cta-btn:hover {
    background: #0ea84f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18, 184, 91, 0.35);
}

.industries__cta-btn svg {
    transition: transform 0.3s;
}

.industries__cta-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .industries__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .industries {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .industries__grid {
        grid-template-columns: 1fr;
    }
}

/* Карточки услуг как ссылки */
a.it-service-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.card-link-label {
    display: block;
    margin-top: 12px;
    color: var(--main-color);
    font-family: 'Roboto-700';
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: letter-spacing 0.3s;
}

.it-service-card:hover .card-link-label {
    letter-spacing: 1.5px;
}

/* Валидация форм */
.it-form-group input.it-error,
.it-form-group textarea.it-error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input.it-error ~ .underline {
    background: #e53e3e;
    width: 100%;
}

.it-field-error {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 6px;
    display: block;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Toast-уведомление */
.it-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    padding: 18px 20px;
    min-width: 300px;
    max-width: 380px;
    border-left: 4px solid #12b85b;
    z-index: 9999;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.it-toast.it-toast--show {
    transform: translateX(0);
    opacity: 1;
}

.it-toast__icon {
    flex-shrink: 0;
}

.it-toast__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.it-toast__title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.it-toast__sub {
    font-size: 13px;
    color: #666;
}

.it-toast__close {
    background: none;
    border: none;
    font-size: 20px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 6px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.it-toast__close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .it-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: unset;
        max-width: unset;
    }
}
