/* ==========================================================================
   1. ГЛОБАЛЬНЫЕ СТИЛИ И СБРОСЫ
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Wix Madefor Display",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #212529;
}

body.modal-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.sp-hero,
.need-comparison,
.service-description,
.work-stages,
.pricing,
.other-services,
.advantages,
.portfolio,
.reviews,
.faq,
.connect,
.other-articles {
    padding-top: 45px;
    padding-bottom: 45px;
}

.section-title {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    color: #000000;
    position: relative;
    padding-left: 40px;
}

.section-subtitle {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.26;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 15px;
}

.other-color-title {
    color: #0475d2;
}

.section-title .other-color-title img {
    height: 0.6em;
    width: auto;
    position: absolute;
    left: 0;
    top: 0.3em;
}

.form-is-hidden {
    position: absolute;
    left: -9999px;
    display: none !important;
}

/* ==========================================================================
   2. КОМПОНЕНТЫ (КНОПКИ, ФОРМЫ, АККОРДЕОН)
   ========================================================================== */

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #0475d2;
    color: #ffffff;
    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.btn-primary:hover {
    background-color: #035e9b;
}

.btn-light {
    background-color: #ffffff;
    color: #0475d2;
    font-weight: bold;
}

.btn-light:hover {
    background-color: #f0f0f0;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    color: #0475d2;
    margin-bottom: 28px;
}

.form-checkbox-group input[type="checkbox"] {
    display: none;
}

.form-checkbox-group label {
    font-weight: 400;
    font-size: 14.4px;
    line-height: 21.6px;
    letter-spacing: 0%;
    position: relative;
    padding-left: 30px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    min-height: 20px;
}

.form-checkbox-group label a {
    pointer-events: auto;
    cursor: pointer;
    color: #0475d2;
    text-decoration: underline;
}

.form-checkbox-group label a:hover {
    text-decoration: none;
}

.form-checkbox-group label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #dee2eb;
    border-radius: 50%;
    background-color: #ffffff;
    transition:
        background-color 0.2s,
        border-color 0.2s;
    pointer-events: auto;
    box-sizing: border-box;
}

.form-checkbox-group input[type="checkbox"]:checked + label::before {
    background-color: #0475d2;
    border-color: #0475d2;
}

.form-checkbox-group input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
}

.form-disclaimer-small {
    color: #0475d2;
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    padding-top: 18px;
    padding-bottom: 40px;
}

.form-disclaimer-small a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.form-disclaimer-small a:hover {
    text-decoration: none;
}

.form-error-summary {
    background: #fee;
    border: 1px solid #f00;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
    color: #d00;
    font-size: 14px;
}

.accordion-item,
.faq-item {
    margin-bottom: 15px;
}

.accordion-item summary,
.faq-item summary {
    cursor: pointer;
    color: black;
    padding: 15px 0 0px 20px;
    position: relative;
    transition: color 0.3s ease;
    list-style: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
}

.accordion-item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::before,
.faq-item summary::before {
    content: "^";
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%) rotate(0deg);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

details[open] > summary {
    color: #0475d2;
}

details[open] > summary::before {
    transform: translateY(-50%) rotate(180deg);
    color: #0475d2;
}

.accordion-content,
.faq-content {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 30px;
    overflow: hidden;
    max-height: 0;
    padding-bottom: 0;
    transition:
        max-height 0.4s ease-out,
        padding-bottom 0.4s ease-out;
}

.breadcrumbs-container {
    width: 100%;
    flex-basis: 100%;
}

.breadcrumbs {
    list-style: none;
    padding: 30px 0 0 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs__item {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumbs__separator {
    margin: 0 10px;
    color: #adb5bd;
}

.breadcrumbs__link {
    color: #0475d2;
    text-decoration: none;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__current {
    font-weight: 500;
    color: #212529;
}

/* ==========================================================================
   3. АНИМАЦИИ (KEYFRAMES)
   ========================================================================== */

@keyframes flyOutTopLeft {
    0% {
        opacity: 0;
        transform: translate(350px, 200px) scale(0);
    }
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1) translateZ(0);
    }
}

@keyframes flyOutTopRight {
    0% {
        opacity: 0;
        transform: translate(-350px, 200px) scale(0);
    }
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1) translateZ(0);
    }
}

@keyframes flyOutMidLeft {
    0% {
        opacity: 0;
        transform: translate(350px, 0px) scale(0);
    }
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1) translateZ(0);
    }
}

@keyframes flyOutMidRight {
    0% {
        opacity: 0;
        transform: translate(-350px, 0px) scale(0);
    }
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1) translateZ(0);
    }
}

@keyframes flyOutBotLeft {
    0% {
        opacity: 0;
        transform: translate(350px, -200px) scale(0);
    }
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1) translateZ(0);
    }
}

@keyframes flyOutBotRight {
    0% {
        opacity: 0;
        transform: translate(-350px, -200px) scale(0);
    }
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1) translateZ(0);
    }
}

@keyframes float-1 {
    0%,
    100% {
        transform: translate(0, 0) translateZ(0);
    }
    33% {
        transform: translate(5px, -8px) translateZ(0);
    }
    66% {
        transform: translate(-4px, 6px) translateZ(0);
    }
}

@keyframes float-2 {
    0%,
    100% {
        transform: translate(0, 0) translateZ(0);
    }
    50% {
        transform: translate(-6px, -5px) translateZ(0);
    }
}

@keyframes float-3 {
    0%,
    100% {
        transform: translate(0, 0) translateZ(0);
    }
    25% {
        transform: translate(4px, 4px) translateZ(0);
    }
    50% {
        transform: translate(0, 8px) translateZ(0);
    }
    75% {
        transform: translate(-4px, 4px) translateZ(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================================================
   4. СТИЛИ СЕКЦИЙ (SECTIONS)
   ========================================================================== */

.sp-hero {
    padding-top: 0;
}

.sp-hero-container {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    align-items: center;
}

.sp-hero-content {
    flex: 1 1 auto;
    min-width: 300px;
}

.sp-hero-image {
    flex: 0 0 45%;
    text-align: right;
    position: relative;
    z-index: 1;
    max-width: 700px;
    min-width: auto;
    min-height: 200px;
}

.sp-hero-image img {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    min-width: 350px;
    max-width: 100%;
}

.sp-hero-subtitle {
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    padding-top: 15px;
    white-space: nowrap;
}

.sp-hero-title {
    font-weight: 800;
    font-size: 52px;
    line-height: 120%;
    padding-top: 35px;
}

.sp-hero-title .highlight {
    color: #0475d2;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sp-hero-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    padding-top: 10px;
}

.sp-hero-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin-top: 40px;
}

.sp-hero-form input[type="text"],
.sp-hero-form input[type="tel"],
.sp-hero-form input[type="email"] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    background-color: #f8f9fa;
    color: #212529;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.sp-hero-form input:focus {
    outline: none;
    border-color: #0475d2;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(4, 117, 210, 0.2);
}

.sp-hero-form input::placeholder {
    color: #6c757d;
}

.sp-hero-dots-separator {
    display: block;
    margin-top: 40px;
    height: auto;
    width: auto;
}

.sp-bubbles-container {
    position: relative;
    z-index: 10;
}

.sp-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.12));
    font-size: 12px;
    line-height: 1.4;
    color: #555;
    text-align: left;
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    scale: 1;
    transition:
        scale 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease,
        box-shadow 0.3s ease;
    overflow: visible;
    -webkit-line-clamp: 2;
    line-clamp: 10;
    -webkit-box-orient: vertical;
}

.sp-bubble-1,
.sp-bubble-3 {
    border-radius: 12px 12px 12px 0px;
}

.sp-bubble-2,
.sp-bubble-4 {
    border-radius: 12px 12px 0px 12px;
}

.sp-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    margin-top: -1px;
    width: 20px;
    height: 15px; 
    background: inherit;
    z-index: 1; 
}

.sp-bubble-1::after,
.sp-bubble-3::after {
    right: 100%;         
    margin-right: -1px;  
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.sp-bubble-2::after,
.sp-bubble-4::after {
    left: 100%;          
    margin-left: -1px;   
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.sp-bubble:hover {
    background: rgba(255, 255, 255, 1);
    animation-play-state: paused !important;
    scale: 1.1;
    opacity: 1 !important;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.15));
    z-index: 100;
    cursor: default;
}

.sp-bubble * {
    opacity: 0;
    animation: textFadeIn 0.8s ease forwards;
    animation-delay: 0.5s;
}

.sp-bubble-1 {
    top: -210px;
    left: -20px;
    width: 504px;
    animation:
        flyOutTopLeft 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
        float-1 7s ease-in-out infinite 1.5s;
    animation-delay: 0.1s, 1.5s;
}

.sp-bubble-2 {
    top: -81px;
    right: -560px;
    width: 266px;
    animation:
        flyOutTopRight 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
        float-2 8s ease-in-out infinite 1.6s;
    animation-delay: 0.2s, 1.6s;
}

.sp-bubble-3 {
    top: -20px;
    left: -45px;
    width: 310px;
    animation:
        flyOutMidLeft 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
        float-3 6.5s ease-in-out infinite 1.7s;
    animation-delay: 0.3s, 1.7s;
}

.sp-bubble-4 {
    top: 89px;
    right: -500px;
    width: 367px;
    animation:
        flyOutMidRight 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
        float-2 7.5s ease-in-out infinite 1.8s;
    animation-delay: 0.4s, 1.8s;
}

.need-comparison .section-title {
    color: #0475d2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.comparison-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0px 0px 15.8px 2px #0000001c;
    border: 1px solid #f0f2f5;
}

.comparison-card.no-image .card-left-column {
    display: none;
}

.comparison-card.no-image .features-list {
    padding-top: 0; 
    width: 100%; 
    flex-basis: 100%;
}

.card-left-column {
    flex-shrink: 0;
    width: 200px;
}

.card-left-column h3 {
    font-size: 21px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 20px;
    text-align: center;
}

.card-image {
    width: 205px;
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-list {
    list-style: none;
    padding: 46px 0 0 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.features-list li {
    position: relative;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding-left: 20px;
}

.features-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
}

.accordion-grid {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.accordion-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accordion-item[open] .accordion-content {
    padding-bottom: 10px;
}

.work-stages .section-title {
    margin-bottom: 35px;
}

.stages-field-main-page .slick-track {
    display: flex !important;
    gap: 0;
}

.stages-field-main-page .slick-slide {
    padding: 10px;
    height: inherit !important;
}

.stages-field-main-page .slick-slide > div,
.stage-page-many {
    height: 100%;
}

.stage-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0px 0px 15.8px 2px #0000001c;
}

.stage-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #0475d2;
}

.stage-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.stage-icon {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stage-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.stage-card h3 {
    font-weight: 600;
    min-height: 55px;
    font-size: 20px;
    line-height: 130%;
}

.stage-card p {
    flex-grow: 1;
    color: #6c757d;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.stage-dots-separator {
    display: block;
    margin-top: 25px;
    margin-bottom: 28px;
    width: 34px;
    height: auto;
    align-self: flex-start;
    opacity: 1;
}

.stage-card .stage-dots {
    display: none;
}

.pricing {
    padding-top: 70px;
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing-info {
    flex: 1;
    max-width: 700px;
}

.pricing-info .section-title {
    margin-bottom: 25px;
}

.pricing-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #212529;
    margin-bottom: 0;
}

.pricing-info p:nth-of-type(1) {
    margin-bottom: 25px;
}
.pricing-info p:nth-of-type(2) {
    margin-bottom: 12px;
}
.pricing-info p:nth-of-type(3) {
    margin-bottom: 12px;
}
.pricing-info p:nth-of-type(4) {
    margin-bottom: 25px;
}
.pricing-info p:last-of-type {
    margin-bottom: 0;
}

.price-card {
    flex-shrink: 0;
    width: 380px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(97, 108, 129, 0.08);
    border: 1px solid #f0f2f5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-top img {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 80px;
    height: 134px;
    object-fit: contain;
}

.price-card .stage-dots-separator {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 32px;
    height: 8px;
    object-fit: contain;
}

.price-details {
    flex-grow: 1;
}

.price-label {
    color: #0475d2;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: 0%;
}

.price-value {
    color: #0475d2;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 42px;
    line-height: 46.2px;
    letter-spacing: 0%;
}

.price-value:last-of-type {
    margin-bottom: 0;
}

.price-offer {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}

.price-offer-desc {
    color: #6c757d;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.other-services .section-title {
    margin-bottom: 40px;
}

.services-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    margin: -10px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-drag: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-tag {
    display: inline-block;
    padding: 12px 40px 12px 24px;
    border: 2px solid #0475d2;
    border-radius: 8px;
    color: #0475d2;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
}

.service-tag::after {
    content: "›";
    position: absolute;
    top: 49%;
    right: 24px;
    transform: translateY(-50%);
    font-size: 20px;
}

.service-tag:hover {
    background-color: #0475d2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 117, 210, 0.3);
}

.cta-banner {
    position: relative;
    z-index: 1;
    overflow: visible;
    width: auto;
    left: auto;
    margin-left: 0;
    padding: 0;
    background: transparent;
    margin-bottom: 120px;
    margin-top: 120px;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: linear-gradient(135deg, #0475d2 0%, #2196f3 100%);
    z-index: -1;
    top: -65px;
    bottom: -65px;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 80px;
}

.cta-image {
    flex-shrink: 0;
    width: 400px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-content {
    flex: 1;
    color: #ffffff;
}

.cta-title {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 130%;
    color: white;
    margin-bottom: 30px;
    margin-right: -102px;
}

.cta-content ol {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.cta-content li {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.cta-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.cta-container .btn-light {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.advantages-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0px 0px 15.8px 2px #0000001c;
}

.advantages .advantages-card {
    width: 100%;
    min-width: 0;
}

.advantages-field-main-page .slick-slide {
    padding: 0 15px;
    height: inherit !important;
}

.advantages-field-main-page .slick-list {
    margin: 0 -15px;
}

.advantages-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #0475d2;
}

.advantages-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.advantages-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.advantages-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.advantages-card h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}

.advantages-card p {
    flex-grow: 1;
    color: #6c757d;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.advantages-card .stage-dots {
    display: none;
}

.advantages-field-main-page .slick-track {
    display: flex !important;
}

.advantages-field-main-page .slick-slide {
    padding: 15px;
    height: inherit !important;
}

.advantages-field-main-page .slick-slide > div,
.advantages-page-many {
    height: 100%;
}

.portfolio .section-title {
    margin-bottom: 40px;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -10px;
    margin-right: -10px;
    justify-content: center;
}

.portfolio-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: visible;
    flex: 0 1 360px;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #0475d2;
}

.portfolio-image-wrapper {
    position: relative;
    height: 217px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 50%;
    display: inline-block;
    max-width: 90%;
    background-color: #0475d2;
    padding: 10px 20px;
    transition: all 0.2s ease;
    z-index: 10;
}

.portfolio-title-overlay h3 {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.portfolio-card:hover .portfolio-title-overlay {
    box-shadow: 0px 2px 14px 5px rgba(34, 60, 80, 0.23);
    background-color: white;
}

.portfolio-card:hover .portfolio-title-overlay h3 {
    color: #0475d2;
}

.portfolio-subtitle {
    margin-top: 55px;
    padding: 0 25px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    flex-grow: 1;
}

.portfolio-more-link {
    display: block;
    margin-top: 0px;
    color: #0475d2;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: underline;
    text-align: left;
}

.portfolio-more-link:hover {
    text-decoration: none;
}

.reviews {
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
}

.review-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.review-slider {
    flex-grow: 1;
    max-width: 750px;
    overflow: hidden;
}

.reviews-field-main-page .slick-list {
    margin: 0 -15px;
}

.reviews-field-main-page .slick-slide {
    padding: 10px 10px;
    height: auto;
}

.reviews-field-main-page .slick-slide > div {
    height: 100%;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    flex-shrink: 0;
    border: 1px solid #f0f2f5;
    box-shadow: 0 8px 32px rgba(97, 108, 129, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-text {
    flex-grow: 1;
}

.review-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-service {
    display: block;
    color: #0475d2;
    margin-bottom: 25px;
    text-decoration: none;
}

.review-service:hover {
    text-decoration: underline;
}

.review-dots {
    display: block;
    margin-top: 25px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #6c757d;
}

.slider-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background-color: transparent;
    color: #0475d2;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #0475d2;
    color: white;
    border-color: #0475d2;
}

.faq .section-title {
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.faq-image {
    flex: 1;
    max-width: 450px;
}

.faq-image img {
    width: 100%;
}

.faq-accordion-wrapper {
    flex: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
}

.faq-item[open] .faq-content {
    padding-bottom: 5px;
}

.connect-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 60px;
}

.connect-form-wrapper {
    flex: 1 1 auto;
    max-width: 600px;
    min-width: 320px;
}

.connect .section-title {
    margin-bottom: 10px;
}

.connect-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 15px;
    color: #000;
}

.connect-subtitle a {
    color: #0475d2;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.connect-subtitle a:hover {
    text-decoration: underline;
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connect-form .form-group input,
.connect-form .form-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    background-color: #f8f9fa;
    color: #212529;
}

.connect-form .form-group input:focus,
.connect-form .form-group textarea:focus {
    outline: none;
    border-color: #0475d2;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(4, 117, 210, 0.2);
}

.connect-form .form-group input::placeholder,
.connect-form .form-group textarea::placeholder {
    color: #6c757d;
}

.connect-form .form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-attachment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-upload-label {
    font-size: 14px;
    color: #6c757d;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.file-upload-label:hover {
    color: #0475d2;
}

.connect-disclaimer {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.26;
    color: #0475d2;
}

.connect-image-wrapper {
    flex: 0 0 40%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.connect-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    min-width: 200px;
    max-width: 100%;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}

.article-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
}

.article-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #0475d2;
}

.article-image-wrapper {
    position: relative;
}

.article-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.article-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    width: auto;
    max-width: 90%;
    background-color: #0475d2;
    padding: 10px 20px;
}

.article-title-overlay h3 {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
}

.article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-description {
    margin-top: 25px;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.27;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-date {
    font-size: 14px;
    color: #0475d2;
    margin-top: auto;
}

/* ==========================================================================
   5. МОДАЛЬНЫЕ ОКНА
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: baseline;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
    margin-top: auto;
    margin-bottom: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 3;
}

.modal-close-btn:hover {
    color: #000;
}

.modal-container .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 15px;
}

.modal-container .section-title img {
    position: static;
    height: 0.7em;
    width: auto;
    margin-top: 3px;
    transform: none;
}

.modal-container .connect-subtitle {
    margin-bottom: 5px;
}

.phone-list {
    font-size: 1rem;
}

.phone-list a {
    color: #0475d2;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

.phone-list a:hover {
    text-decoration: underline;
}

.success-modal-wrapper {
    text-align: left;
}

.success-modal-wrapper .section-title {
    font-size: 2rem;
    line-height: 1.2;
}

.success-subtitle,
.success-prompt {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.success-prompt {
    font-weight: 500;
    margin-top: 25px;
}

.success-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

.contact-person h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-person a {
    display: block;
    text-decoration: none;
    color: #0475d2;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-person a:hover {
    text-decoration: underline;
}

.demand-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.demand-modal-container {
    display: flex;
    width: 100%;
    max-width: 960px;
    background: #ffffff;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.demand-modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.demand-modal-close-btn:hover {
    color: #000;
}

.demand-modal-left {
    background-color: #0475d2;
    color: #ffffff;
    padding: 40px;
    flex-basis: 55%;
    display: flex;
    flex-direction: column;
}

.demand-title {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.demand-subtitle {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    max-width: 400px;
    margin-bottom: 30px;
}

.demand-form-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    margin-top: auto;
}

.demand-form-prompt {
    color: #212529;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.demand-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demand-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.demand-form-group input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    background-color: #f8f9fa;
    color: #212529;
}

.demand-form-group input::placeholder {
    color: #6c757d;
}

.demand-form-group input:focus {
    outline: none;
    border-color: #0475d2;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(4, 117, 210, 0.2);
}

.demand-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #0475d2;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
}

.demand-btn:hover {
    background-color: #035e9b;
}

.demand-disclaimer {
    font-size: 12px;
    line-height: 1.4;
    color: #0475d2;
}

.demand-modal-right {
    flex-basis: 45%;
    padding: 40px;
    position: relative;
}

.demand-motto {
    font-family: Wix Madefor Display;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 16px;
    line-height: 126%;
    letter-spacing: 0%;
    color: #0475d2;
}

.demand-image-wrapper {
    position: absolute;
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    width: 500px;
}

.demand-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   6. СЛАЙДЕРЫ (VENDOR OVERRIDES)
   ========================================================================== */

.slick-dots {
    display: none !important;
}

.stages-field-main-page .slick-dots,
.advantages-field-main-page .slick-dots,
.mp-reviews-slick-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none !important;
    padding: 0;
    margin: 20px 0 0 0;
    width: 100%;
}

.stages-field-main-page .slick-dots li,
.advantages-field-main-page .slick-dots li,
.mp-reviews-slick-slider .slick-dots li {
    margin: 0 5px;
    width: 10px;
    height: 10px;
    display: inline-block;
}

.stages-field-main-page .slick-dots li button,
.advantages-field-main-page .slick-dots li button,
.mp-reviews-slick-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 1px solid #0475d2;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    outline: none;
}

.stages-field-main-page .slick-dots li.slick-active button,
.advantages-field-main-page .slick-dots li.slick-active button,
.mp-reviews-slick-slider .slick-dots li.slick-active button {
    background: #0475d2;
}

/* ==========================================================================
   7. МЕДИА-ЗАПРОСЫ (ADAPTIVES)
   ========================================================================== */

@media (max-width: 1024px) {
    .container,
    .mp-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sp-hero-container {
        flex-wrap: nowrap;
        gap: 20px;
        align-items: center;
    }

    .sp-hero-content {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 10px;
    }

    .sp-hero-title {
        font-size: 40px;
    }

    .sp-hero-image {
        flex: 0 0 45%;
        max-width: 450px;
        min-width: auto;
        margin-bottom: 0;
    }

    .sp-hero-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        min-width: 0;
    }

    .comparison-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .comparison-card {
        padding: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-container {
        gap: 30px;
        justify-content: center;
    }

    .price-card {
        width: 100%;
        max-width: 380px;
    }

    .advantages-field-main-page {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .advantages-card::after {
        display: none !important;
    }

    .advantages-field-main-page .slick-slide {
        margin: 0 !important;
        height: auto !important;
    }

    .cta-container {
        padding: 50px 40px;
        gap: 40px;
    }

    .cta-title {
        font-size: 28px;
        margin-right: 0;
    }

    .cta-image {
        width: 320px;
    }

    .accordion-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .accordion-column {
        width: 100%;
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }

    .accordion-item {
        margin-bottom: 15px;
    }

    .connect-container {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        text-align: left;
        padding-bottom: 45px;
    }

    .connect-form-wrapper {
        flex: 1 1 60%;
        max-width: 60%;
        min-width: 0;
    }

    .connect-image-wrapper {
        flex: 0 1 40%;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .connect-image-wrapper img {
        width: 100%;
        height: auto;
        max-width: 100% !important;
        min-width: 0;
        object-fit: contain;
    }
}

@media (max-width: 820px) {
    .demand-modal-container {
        flex-direction: column;
        max-width: 480px;
        overflow: hidden;
    }

    .demand-modal-right {
        display: none;
    }

    .demand-modal-left {
        flex-basis: auto;
    }

    .articles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .demand-title {
        font-size: 32px;
    }

    .demand-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    @keyframes flyOutTopLeft {
        0% {
            opacity: 0;
            transform: translate(100px, 100px) scale(0);
        }
        100% {
            opacity: 0.9;
            transform: translate(0, 0) scale(1) translateZ(0);
        }
    }

    @keyframes flyOutTopRight {
        0% {
            opacity: 0;
            transform: translate(-100px, 100px) scale(0);
        }
        100% {
            opacity: 0.9;
            transform: translate(0, 0) scale(1) translateZ(0);
        }
    }

    @keyframes flyOutBotLeft {
        0% {
            opacity: 0;
            transform: translate(100px, -100px) scale(0);
        }
        100% {
            opacity: 0.9;
            transform: translate(0, 0) scale(1) translateZ(0);
        }
    }

    @keyframes flyOutBotRight {
        0% {
            opacity: 0;
            transform: translate(-100px, -100px) scale(0);
        }
        100% {
            opacity: 0.9;
            transform: translate(0, 0) scale(1) translateZ(0);
        }
    }

    .section-title {
        font-weight: 800 !important;
        font-size: 26px !important;
        line-height: 120% !important;
        padding-left: 30px;
    }

    .section-title .other-color-title img {
        height: 0.7em;
        width: auto;
        position: absolute;
        left: 0;
        top: 0.35em;
    }

    .section-subtitle {
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: 140% !important;
    }

    .sp-hero {
        padding-top: 60px;
        padding-bottom: 35px;
    }

    .sp-hero-container {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .sp-hero-image {
        min-width: 0 !important;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        order: -1;
        margin-bottom: 30px;
    }

    .sp-hero-image img {
        width: 80%;
        height: auto;
        max-width: 600px !important;
        min-width: 400px;
    }

    .sp-hero-subtitle {
        font-weight: 500;
        font-size: 18px;
        line-height: 130%;
        padding-top: 15px;
        white-space: normal !important;
        margin-bottom: 10px;
        width: 100%;
        word-wrap: break-word;
    }

    .sp-hero-title {
        padding-top: 12px !important;
        font-weight: 700;
        font-size: 34px;
        line-height: 120%;
        margin-bottom: 15px;
    }

    .sp-hero-description {
        padding-top: 12px !important;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        padding-top: 10px;
    }

    .sp-hero-form {
        margin-top: 20px;
        max-width: 100%;
    }

    .need-comparison {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .comparison-grid {
        gap: 16px;
    }

    .comparison-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-left-column {
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card-image img {
        max-width: 205px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .features-list {
        width: 100%;
        padding-top: 0;
        gap: 10px;
        text-align: left;
    }

    .articles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pricing-info {
        max-width: 100%;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .price-top {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 15px;
    }

    .price-top > img {
        width: 100px;
        height: auto;
        flex-shrink: 0;
    }

    .price-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .price-label {
        font-size: 14px;
        color: #2f80ed;
        margin: 0 0 5px 0;
        line-height: 1.2;
    }

    .price-value {
        color: #0475d2;
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 26px;
        line-height: 120%;
    }

    .price-value:last-child {
        margin-bottom: 0;
    }

    .stage-dots-separator {
        width: 30px;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .price-offer {
        font-weight: 600;
        font-size: 16px;
        line-height: 140%;
    }

    .price-offer-desc {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .price-card .btn-primary {
        width: 100%;
        display: block;
        text-align: center;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-image {
        margin: 0 auto 30px auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cta-title {
        margin-right: 0;
        text-align: center;
    }

    .cta-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-content ol {
        display: inline-block;
        text-align: left;
        margin: 0 auto 30px auto;
        padding-left: 20px;
    }

    .consultation {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .consultation .connect-container {
        display: flex;
        flex-direction: column-reverse !important;
        gap: 20px;
        padding: 0 20px;
        align-items: center;
        text-align: center;
    }

    .consultation .connect-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        flex: 0 0 auto;
    }

    .consultation .connect-image-wrapper img {
        max-width: 450px !important;
        width: 100%;
        height: auto;
        display: block;
        min-width: 250px;
    }

    .consultation .connect-form-wrapper {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
    }

    .stages-field-main-page .slick-arrow,
    .advantages-field-main-page .slick-arrow,
    .mp-reviews-slick-slider .slick-arrow {
        display: none !important;
    }

    .slick-dots {
        display: flex !important;
        list-style: none;
        padding: 0;
        margin-top: 30px;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .sp-bubble {
        line-clamp: 10;
        -webkit-line-clamp: 10;
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 12px;
    }

    .sp-bubble-1,
    .sp-bubble-2,
    .sp-bubble-3,
    .sp-bubble-4 {
      position: absolute;
      width: auto;
      opacity: 1; /* Добавляем, чтобы пузыри были видны */
    }

    .sp-bubble-1,
    .sp-bubble-3 {
        border-radius: 12px 12px 12px 0px;
    }

    .sp-bubble-2,
    .sp-bubble-4 {
        border-radius: 12px 12px 0px 12px;
    }

    .sp-bubble-1 {
        top: -960px;
        left: -230px;
        max-width: 225px;
    }

    .sp-bubble-2 {
        top: -870px;
        right: -210px;
        max-width: 200px;
    }

    .sp-bubble-3 {
        top: -820px;
        left: -230px;
        max-width: 220px;
        animation:
            flyOutMidLeft 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
            float-3 6.5s ease-in-out infinite 1.7s;
        animation-delay: 0.3s, 1.7s;
    }

    .sp-bubble-4 {
        bottom: -20px;
        right: -30px;
        max-width: 220px;
        animation:
            flyOutBotRight 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards,
            float-2 7.5s ease-in-out infinite 1.8s;
        animation-delay: 0.4s, 1.8s;
    }

    .connect-container {
        display: flex;
        flex-direction: column-reverse !important;
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
        padding-bottom: 40px;
    }

    .connect-form-wrapper {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .connect-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .connect-image-wrapper img {
        order: -1;
        max-width: 450px !important;
        min-width: 250px;
    }
}

@media (max-width: 600px) {
    .advantages {
        padding-bottom: 50px;
    }

    .comparison-card {
        flex-direction: column;
        align-items: center;
    }

    .card-left-column {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .articles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body,
    html {
        overflow-x: hidden;
    }

    .container,
    .mp-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-weight: 800 !important;
        font-size: 26px !important;
        line-height: 120% !important;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 140% !important;
    }

    .breadcrumbs {
        padding-top: 15px;
        padding-bottom: 10px;
        font-size: 11px;
        flex-wrap: wrap;
    }

    .sp-hero {
        width: 100%;
        overflow: hidden;
        padding-top: 60px;
    }

    .sp-hero-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .sp-hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .sp-hero-image img {
        max-width: 100% !important;
        width: 100%;
        min-width: 320px;
        display: block;
        margin: 0 auto;
    }

    .sp-hero-title {
        font-size: 34px !important;
        line-height: 120%;
        margin-bottom: 15px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .sp-hero-subtitle {
        font-size: 18px !important;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .sp-hero-description {
        font-size: 14px !important;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .sp-hero-form {
        width: 100%;
        margin-top: 10px;
    }

    .sp-hero-form input {
        width: 100%;
        height: 48px;
        padding: 0 15px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .sp-hero-form .btn-primary {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        margin-top: 5px;
        white-space: normal;
        min-height: 48px;
    }

    .form-disclaimer-small {
        padding-top: 10px;
        padding-bottom: 25px;
        font-weight: 400;
        font-size: 12px;
        line-height: 15.12px;
    }

    .sp-bubble {
        display: none !important;
    }

    .need-comparison .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .comparison-card {
        padding: 20px;
    }

    .features-list li {
        font-weight: 400;
        font-size: 14px;
        padding-left: 20px;
    }

    .accordion-item summary,
    .faq-item summary {
        font-weight: 600;
        font-size: 16px;
        line-height: 130%;
    }

    .accordion-item summary::before {
        top: 18px;
        font-size: 16px;
    }

    .service-description {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .service-description .section-subtitle,
    .service-description .section-subtitle p,
    .service-description .section-subtitle span {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .accordion-grid {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .accordion-column {
        width: 100%;
        margin-top: 0;
    }

    .accordion-item {
        margin-bottom: 15px;
        border-bottom: none;
    }

    .accordion-item summary {
        font-size: 16px;
        padding: 5px 0 5px 25px;
    }

    .accordion-item summary::before {
        top: 20px;
        font-size: 18px;
    }

    .accordion-content {
        padding-left: 25px;
        font-size: 14px;
    }

    .work-stages .section-title {
        margin-bottom: 20px;
    }

    .pricing {
        padding-top: 30px;
    }

    .pricing-info p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        font-weight: 400;
    }

    .pricing-info p:nth-of-type(1) {
        margin-bottom: 12px;
    }

    .pricing-info p:nth-of-type(2) {
        margin-bottom: 6px;
    }

    .pricing-info p:nth-of-type(3) {
        margin-bottom: 6px;
    }

    .pricing-info p:nth-of-type(4) {
        margin-bottom: 12px;
    }

    .price-card {
        padding: 20px;
    }

    .price-top > img {
        width: 80px;
    }

    .price-top {
        gap: 15px;
    }

    .price-value {
        font-weight: 600;
        font-size: 26px;
        line-height: 120%;
    }

    .price-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 19.6px;
    }

    .price-card .btn-primary {
        padding: 14px 0;
    }

    .cta-banner {
        margin-top: 40px;
    }

    .cta-container {
        padding: 40px 20px;
        gap: 20px;
    }

    .cta-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 10px auto;
    }

    .cta-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 130%;
        margin-bottom: 20px;
    }

    .cta-content li {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .cta-container .btn-light {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .work-stages {
        padding-bottom: 50px;
    }

    .slick-dots li {
        margin: 0 4px;
    }

    .other-articles {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .articles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .demand-modal-overlay {
        padding: 10px;
    }

    .demand-modal-left {
        padding: 20px;
    }

    .demand-title {
        font-size: 28px;
    }

    .demand-form-box {
        padding: 16px;
    }
}