/*
Theme Name: Cloudbox Theme
Theme URI: https://t.me/balsas2908
Author: Alexander Balaban
Author URI: https://t.me/balsas2908
Description: A custom WordPress theme using Bootstrap
Version: 1.0
Text Domain: cloudbox-theme
*/
/* Base fonts */
html body {
    font-family: 'Montserrat';
    font-size: 13px;
    color: #1F1F1F;
}

h1, h2, h3, h4, .display-4 {
    font-family: 'Montserrat', 'Inter', sans-serif
}


/* Header styles */
.navbar-dark {
    background-color: #3E3E3E !important;
}

.navbar-brand img {
    max-height: 30px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover {
    color: #DB5252 !important;
}

.btn-outline-light {
    border-color: #DB5252;
    color: #DB5252;
}

.btn-outline-light:hover {
    background-color: #DB5252;
    color: #ffffff;
}

/* Hero section styles */
.hero-section {
    background-image: url('assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 200px;

}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {

    height: 22px;
    top: 181px;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */
    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: #DB5252 !important;


}

/* Hero heading sizing to match design */
.hero-section h1 {
    font-weight: 800;
    font-size: clamp(34px, 3.8vw + 16px, 72px);
    line-height: 1.05;
    letter-spacing: 0.01em;

    /* Внедрим Битрикс24 в любую отрасль бизнеса */

    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 100%;
    text-align: center;

    color: #3E3E3E !important;

    /* sm shaw dark */
    text-shadow: 0px 1px 1px rgba(107, 107, 107, 0.5);

}

@media (min-width: 1200px) {
    .hero-section h1 {
        font-size: 72px;
    }
}

/* Hero CTA overlay */
.hero-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index: 1;
}

.hero-cta .container-fluid {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: rgba(246, 246, 246, 0.9);
}


.hero-cta__inner {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1.2fr 0.9fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.hero-cta__text {
    color: #1F1F1F;
    line-height: 1.45;
}

.hero-cta__link {
    color: #DB5252;
    font-weight: 700;
    text-decoration: none;
}

.hero-cta__form {
    display: contents;
}

.hero-cta__input {
    height: 54px;
    padding: 18px 29px;
    font-size: 16px;
    color: #333;
    text-align: center;
    border: 1px solid #1F1F1F;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

/* Отключаем браузерные стили валидации */
.hero-cta__input:invalid {
    box-shadow: none;
    outline: none;
}

.hero-cta__input.error {
    border-color: #DB5252 !important;
    border-width: 2px;
}

.hero-cta__input::placeholder {
    color: #999;
}

.hero-cta__button {
    height: 54px;
    background: #ffffff;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    border: 1px solid #1F1F1F;
    border-radius: 6px;
    padding: 18px 53px;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.hero-cta__button:hover {
    background: #DB5252;
    color: #fff;
    border-color: #DB5252;
}

.hero-phone-error {
    color: #DB5252;
    font-size: 14px;
    margin-top: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    white-space: nowrap;
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 992px) {
    .hero-cta__inner {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .hero-cta__form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.hero-section .btn-danger {
    background-color: #DB5252;
    border-color: #DB5252;
}

.hero-section .btn-danger:hover {
    background-color: #ff3c3c;
    border-color: #ff3c3c;
}

/* What You Need Section */

.what-you-need h2 {
    color: #DB5252;
    font-weight: 700;
}

.what-you-need .card {
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.what-you-need .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.what-you-need .card-title {
    color: #333;
    font-weight: 600;
}

.what-you-need .card-subtitle {
    color: #DB5252;
    font-weight: 700;
}

.what-you-need .btn-outline-primary {
    color: #DB5252;
    border-color: #DB5252;
}

.what-you-need .btn-outline-primary:hover {
    background-color: #DB5252;
    color: #fff;
}

.what-you-need .btn-danger {
    background-color: #DB5252;
    border-color: #DB5252;
}

.what-you-need .btn-danger:hover {
    background-color: #ff3c3c;
    border-color: #ff3c3c;
}

/* How We Can Help Section */
.how-we-can-help {
    background-color: #ffffff;
    padding: 60px 0
}

.how-we-can-help h2 {
    color: #DB5252;
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 18px
}

.how-we-can-help > p {
    color: #6d7580;
    font-size: 16px;
    margin-bottom: 36px
}

#helpCarousel .help-item {
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 5px;

    width: 280px;
    height: 150px;

    border-radius: 10px;
    flex: none;
    order: 1;
    flex-grow: 0;

}

#helpCarousel .help-item:hover h5,
.work-steps__item:hover h6 {
    color: #DB5252;
    cursor: pointer;
}

#helpCarousel .help-content h5 {
    margin: 0 0 8px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    color: #1F1F1F;
}

#helpCarousel .help-content p {
    color: #1F1F1F;
    font-size: 14px;
    line-height: 1.5;
    margin: 0
}

/* Slider controls (arrows + dots) */
#helpCarousel .slick-dots {
    position: unset;
    margin-top: 18px
}

#helpCarousel .slick-dots li button:before,
#clientsCarousel .slick-dots li button:before {
    font-size: 40px !important;
    color: #1F1F1F;
    opacity: 1
}

#helpCarousel .slick-dots li.slick-active button:before {
    color: #DB5252;
    opacity: 1
}

#helpCarousel .slick-prev, #helpCarousel .slick-next, #clientsCarousel .slick-prev, #clientsCarousel .slick-next {
    width: 28px;
    height: 28px;
    background: #ffffff !important;
    border: 1px solid #1F1F1F !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    margin-top: -20px;
}

#helpCarousel .slick-prev {
    left: 5px;
    margin-top: -20px;

}

#helpCarousel .slick-next, #clientsCarousel .slick-next {
    right: 5px;
    margin-top: -20px;
}

#helpCarousel .slick-prev::before, #helpCarousel .slick-next::before,
#clientsCarousel .slick-prev::before, #clientsCarousel .slick-next::before {
    display: none;
}

#helpCarousel .slick-prev svg path, #helpCarousel .slick-next svg path,
#clientsCarousel .slick-prev svg path, #clientsCarousel .slick-next svg path {
    stroke: #1F1F1F;
    transition: stroke .15s ease
}

#helpCarousel .slick-prev:hover svg path, #helpCarousel .slick-next:hover svg path,
#clientsCarousel .slick-prev:hover svg path, #clientsCarousel .slick-next:hover svg path {
    stroke: #fff;
}

#helpCarousel .slick-prev:hover, #helpCarousel .slick-next:hover,
#clientsCarousel .slick-prev:hover, #clientsCarousel .slick-next:hover {
    border-color: #DB5252 !important;
    background-color: #DB5252 !important;
}

/* Slick Carousel Customization */
.slick-slide {
    margin: 0 15px;
}

.slick-list {
    margin: 0 -15px;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    z-index: 1;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #f0f0f0;
}

#helpCarousel .slick-dots {
    position: unset;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #d1d1d1;
}

.slick-dots li.slick-active button:before {
    color: #DB5252;
}


/* Pricing section */
.pricing-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.container .pricing-section {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.pricing-cards-row {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .pricing-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.pricing-notice {
    background-color: #fff1f1;
    border: 1px solid #ffcccb;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 30px;
}

.pricing-notice p {
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
}

.pricing-notice a {
    color: #DB5252;
    text-decoration: none;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-toggle {
    display: flex;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #DB5252;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-toggle .toggle-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #DB5252;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    flex: 1;
    text-align: center;
}

.pricing-toggle .toggle-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.pricing-toggle .toggle-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.pricing-toggle .toggle-btn.active {
    background-color: #DB5252;
    color: #ffffff;
}

.pricing-card {
    background-color: #FAFAFA;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px 16px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    height: 100%;
}

.pricing-card.free-plan {
    border: 2px dashed #007bff;
}

.pricing-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-header {
    margin-bottom: 10px;
    text-align: center;
    background: none;
    height: 65px;
    padding: 0;
    border: none;
}

.pricing-card .users-section {
    text-align: center;
}

.pricing-card .users-section .h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 17px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #1F1F1F;
    display: block;
}

.pricing-card .card-main {
    text-align: center;
    height: 80px;
    align-content: center;
}

.pricing-card .card-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.divider-with-dot {
    position: relative;
    height: 1px;
    background: #eee;
    margin: 18px 0;
}

.divider-with-dot:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 50%;
}

.pricing-card .card-footer {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.badge-crm {
    background: #DB5252;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: auto;
}

.badge-new {
    background: #DB5252;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 8px;
}

.pricing-card.enterprise .enterprise-banner {
    background: #DB5252;
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 18px 12px;
    display: block;
    align-items: center;
    justify-content: space-between;
    margin: -26px -16px 26px -16px;
    text-align: center;
    font-weight: 600;
    font-size: 10px;
}

.pricing-card.enterprise .enterprise-banner .enterprise-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
}

.pricing-card.enterprise .enterprise-why {
    color: #fff;
    text-decoration: underline;
    font-size: 10px;
}

.pricing-card.enterprise .enterprise-check {
    font-weight: 700;
}

.pricing-card h3 {
    color: #1F1F1F;
    font-size: 15px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 800 !important;
    font-style: ExtraBold;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

}

.pricing-card .tariff-description {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 10px;
    leading-trim: NONE;
    line-height: 125%;
    letter-spacing: 2%;
    text-align: center;
}

.pricing-card .users-section {
    height: 60px;
    margin-bottom: 10px;
}

.pricing-card .users-with-icon {
    display: block;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.pricing-card .flame-icon {
    font-size: 16px;
}

.pricing-card .users-text {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
}

.pricing-card .learn-more-link {
    font-size: 12px;
    color: #DB5252;
    text-decoration: none;
}

.pricing-card .learn-more-link:hover {
    text-decoration: underline;
}

.pricing-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #DB5252;
    margin-bottom: 5px;
    line-height: 1.2;
}

.pricing-card .price-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.pricing-card .original-price {
    color: #a0a0a0;
    font-size: 12px;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.pricing-card .price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-card .discount-badge {
    background: #1F1F1F;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    padding: 2px 6px;
    border-bottom: 3px solid #DB5252;
}

.pricing-card .storage .unit {
    margin-left: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

.pricing-card .storage {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-card .btn-create,
.pricing-card .btn-buy {
    width: 100%;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #DB5252;
    background-color: #fff;
    color: #DB5252;
    border-radius: 6px;
    margin-top: auto;
    margin-bottom: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .btn-create:hover,
.pricing-card .btn-buy:hover {
    background-color: #DB5252;
    color: #fff;
}

.pricing-card .features-section {
    flex-grow: 1;
}

.pricing-card .feature-category {
    margin-bottom: 20px;
}

.pricing-card .feature-category h4 {
    font-weight: 600;
    color: #000;
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.pricing-card .feature-category h4 svg {
    margin-left: auto;
    margin-right: -22px;
}

.pricing-card .dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pricing-card .dot {
    width: 8px;
    height: 8px;
    border-radius: 34%;
    background-color: #ddd;
    border: 1px solid #ccc;
}

.pricing-card .dot.filled {
    background-color: #DB5252;
    border-color: #DB5252;
}

.pricing-card .feature-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.pricing-card .feature-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    position: relative;
    padding-left: 16px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-toggle .toggle-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pricing-section h2 {
        font-size: 28px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .work-steps__item-title {
        margin-left: 15px;
    }
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.btn-outline-primary {
    color: #DB5252;
    border-color: #DB5252;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #DB5252;
    color: #fff;
}

@media (min-width: 992px) {
    .col-md-15 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.pricing-notice {
    margin-bottom: 30px;
}

.pricing-notice-left {
    background-color: #EAC7C733;
    border-left: 4px solid #DB5252;
    padding: 15px 20px;
    border-radius: 4px 0px 0px 4px;
    display: inline-block;
    width: 100%;
}

.pricing-notice-left p {
    margin-bottom: 0;
    color: #333;
    line-height: 1.4;
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: 2%;

}

.pricing-notice-right {
    text-align: right;
}

.pricing-notice-right p {
    margin-bottom: 5px;
    color: #333;
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: 2%;
    text-align: right;
}

.pricing-notice-right {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0.02em;
    color: #1F1F1F;
}

.pricing-notice-right a {
    color: #1F1F1F;
    text-decoration-color: #DB5252;
    text-decoration-thickness: 2px;;
}

.pricing-notice-right a:hover {
    text-decoration: underline;
}

.container a.promo-link {
    color: #DB5252;
    text-decoration-color: #DB5252;
    text-decoration-thickness: 2px;
}

.compare-link {
    text-decoration: underline;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0.02em;
    color: #1F1F1F;
}

.compare-link:hover, .pricing-notice-right a:hover, .container a.promo-link:hover {
    color: #DB5252;
    text-decoration-color: #DB5252;
    text-decoration-thickness: 2px;
}

@media (max-width: 767px) {
    .pricing-notice-right {
        text-align: left;
        margin-top: 15px;
    }
}

/* accordion section */
.accordion-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 500;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #333;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e0e0e0;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* footer section */
.site-footer {
    color: #ffffff;
}

.site-footer > .container {
    background-color: #3E3E3E;
    padding: 50px;
    padding-bottom: 0;
}

.site-footer > .container h4 {
    font-family: Oswald;
    font-weight: bold;
    font-size: 20px;
    leading-trim: NONE;
    text-transform: uppercase;
}

.site-footer > .container .footer-main {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    leading-trim: NONE;
    color: #ffffff
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.site-footer h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 43px;
    border-bottom: 1px solid #fff;
    margin-top: 20px;
}

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

.contact-item {
    flex: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-divider {
    width: 1px;
    height: 60px;
    background-color: #fff;
    margin: 0 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    color: #bdbdbd;
    font-size: 14px;
    margin: 0;
}

.contact-item p a {
    color: #bdbdbd;
    text-decoration: none;
}

.contact-item p a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3E3E3E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #DB5252;
    border-color: #DB5252;
    color: #ffffff;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    background-color: #3E3E3E;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.footer-form input,
.footer-form textarea {
    shape-image-threshold: initial !important;
    all: unset;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    background-color: #3E3E3E;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    display: block;
}

/* Отключаем браузерные стили валидации */
.footer-form input:invalid,
.footer-form textarea:invalid {
    box-shadow: none;
    outline: none;
}

.footer-form input.error,
.footer-form textarea.error {
    border-color: #DB5252 !important;
    border-width: 2px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #bdbdbd;
}

.footer-form .form-row {
    display: flex;
    gap: 12px;
    margin: 0;
}

.footer-form .form-row input {
    flex: 1;
}

/* Убираем странное выделение для поля телефона */
#footerPhone {
    -webkit-appearance: none;
    appearance: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #DB5252;
    border-color: #DB5252;
}

footer .footer-bottom {
    background-color: #3E3E3E;
    border: 1px #1F1F1F80;
    border-style: solid;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-section {
    flex: 0 0 auto;
}

.footer-logo-placeholder {
    width: 250px;
    height: 80px;
    background-color: #555555;
    border-radius: 4px;
}

.footer-nav-section {
    flex: 0 0 auto;
}

.footer-nav {
    display: flex;
    gap: 50px;
}

.footer-nav a {
    color: #DB5252;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.footer-nav a span {
    color: #ffffff;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a:hover span {
    color: #DB5252;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #444444;
}

.footer-copyright p {
    color: #DB5252;
    font-size: 14px;
    margin: 0;
}

.footer-privacy a {
    color: #DB5252;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-section {
        flex: none;
        display: flex;
        justify-content: center;
    }

    .footer-logo-placeholder {
        width: 200px;
        height: 60px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Clients section */
.clients-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.clients-title {
    color: #DB5252;
    font-weight: 800;
    font-size: 36px;
}

.clients-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
}

#clientsCarousel {
    margin: 0 36px;
}

#clientsCarousel .client-item {
    background: #FAFAFA;
    border-radius: 10px;
    padding: 28px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

#clientsCarousel .client-item img {
    max-height: 70px;
    width: auto;
    filter: saturate(0%);
    transition: filter 0.3s ease;
}

#clientsCarousel .client-item:hover img,
#clientsCarousel .client-item.active img {
    filter: saturate(100%);
}

#clientsCarousel .client-item:hover,
#clientsCarousel .client-item.active {
    cursor: pointer;
}

#clientsCarousel .slick-dots {
    position: unset;
    margin-top: 16px;
}

#clientsCarousel .slick-dots li button:before {
    font-size: 10px;
    color: #1F1F1F;
    opacity: 1;
}

#clientsCarousel .slick-dots li.slick-active button:before {
    color: #DB5252;
    opacity: 1;
}

/* Градиентное затухание по бокам слайдеров */
#clientsCarousel,
#helpCarousel .carousel-inner {
    position: relative;
}

#clientsCarousel::before,
#clientsCarousel::after,
#helpCarousel .carousel-inner::before,
#helpCarousel .carousel-inner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

#clientsCarousel::before,
#helpCarousel .carousel-inner::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#clientsCarousel::after,
#helpCarousel .carousel-inner::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Дополнительное затухание для боковых слайдов */
#clientsCarousel .slick-slide:not(.slick-active):not(.slick-center),
#helpCarousel .slick-slide:not(.slick-active):not(.slick-center) {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

#clientsCarousel .slick-slide.slick-active,
#helpCarousel .slick-slide.slick-active {
    opacity: 1;
}

/* Мобильная версия - убираем градиенты на маленьких экранах */
@media (max-width: 768px) {
    #clientsCarousel::before,
    #clientsCarousel::after,
    #helpCarousel .carousel-inner::before,
    #helpCarousel .carousel-inner::after {
        display: none;
    }
}

/* Секция "Как мы работаем" */
.work-steps {
    --container-max: 1140px;
    --accent: #DB5252;
    --text: #2a2a2a;
    --muted: #7a7a7a;
    --num: rgba(0, 0, 0, 0.12);
    background: #fff;
}

.work-steps__container {
    padding: 0 50px;
}

.work-steps__title {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    color: var(--accent);
}

.work-steps__subtitle {
    margin: 0 auto 96px;
    max-width: 720px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.work-steps__grid {
    --cols: 3;
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    gap: 60px 34px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    margin-top: 60px;
}

.work-steps__item {
    position: relative;
    padding-left: 0;
}

.work-steps__item::before {
    content: attr(data-step);
    position: absolute;
    top: -56px;
    left: -6px;
    font-weight: 800;
    font-size: 91px;
    line-height: 1;
    color: var(--num);
    pointer-events: none;
}

.work-steps__item-title {
    font-family: Oswald;
    font-weight: bold;
    font-size: 20px;
    leading-trim: NONE;
    text-transform: uppercase;
}

.work-steps__item-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* Адаптив */
@media (max-width: 992px) {
    .work-steps__grid {
        --cols: 2;
    }

    .feedback-section .feedback-section__content {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .work-steps {
        padding: 40px 14px 56px;
        padding-bottom: 0;
    }

    .work-steps__grid {
        --cols: 1;
        gap: 36px;
    }

    .work-steps__item::before {
        font-size: 56px;
        top: -26px;
    }
}

/* What you need cards */
.need-card {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    height: 100%

}

.need-card__label {
    font-weight: 600
}

.need-card__title {
    color: #DB5252;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: .01em;
    margin: 0 0 12px;
    text-transform: uppercase
}

.need-card__text {
    color: #1F1F1F;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px
}

/* Button redesigned: full width, centered text, left icon placeholder for SVG */
.need-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    color: #1F1F1F;
    text-decoration: none;
    transition: all .18s ease;
    min-height: 46px;
    margin-top: auto;
    align-self: stretch;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 2%;
    text-transform: capitalize;
    border: 1px solid #1F1F1F;
    border-radius: 6px;
}

.need-card__btn:hover {
    background: #DB5252;
    color: #fff;
    border-color: #DB5252;
    text-decoration: none;
}

/* icon placeholder (upload your SVG inside this span later) */
.need-card__btn-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    pointer-events: none;
    color: #2b2f33; /* base icon color inherits to svg via currentColor */
}

.need-card__btn-icon svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor; /* colorize fills */
}

.need-card__btn:hover .need-card__btn-icon {
    border-color: #fff;
    color: #fff; /* svg becomes white via currentColor */
}

/* Hero refined */
.hero-section {
    padding: 0;
    display: flex;
    align-items: flex-start;
    position: relative;
    background-repeat: no-repeat;
    background-size: 1329px;
    background-position: 72% -155px;
}

.hero-section .container {
    padding-top: 108px;
    padding-bottom: 108px;
}

.hero-section .lead {
    margin-top: 6px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: .14em
}

.hero-title {
    color: #2b2f33 !important;
    margin: 0 0 12px;
    letter-spacing: -.01em;
    line-height: 1.04
}

.hero-title .hero-accent {
    color: #DB5252
}

/* light overlay to match design exposure */
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.12) 65%, rgba(255, 255, 255, 0.18) 100%)
}

/* CTA refined */
.hero-cta__inner {
    padding: 18px 24px;
    grid-template-columns:1.2fr 0.8fr auto;
    gap: 18px;
    margin: 0 150px;
    width: 100%;
}

.hero-cta__input {
    height: 56px
}

.hero-cta__button {
    height: 56px
}

html body h2 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700 !important;
    font-size: 40px;
    line-height: 100%;
}

html body h3 {
    font-family: 'Oswald';
    font-weight: 700 !important;
    font-size: 30px;
    line-height: 100%;
}

section.title-section h3,
section.title-section h2,
section.title-section h1 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #1F1F1F;
}

section.title-section h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

section.title-section h2 {
    margin-top: 50px !important;
    font-size: 40px;
    margin-bottom: 40px !important;
}

section.title-section h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

section.text-section {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0.02em;
    color: #1F1F1F;
}

section.text-section p:last-child {
    margin-bottom: 0;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    border: none;
    background: none;
    padding: 8px;
    cursor: pointer;
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: #DB5252;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #3E3E3E;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
}

.mobile-menu-logo img {
    height: 30px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.3s ease;
    display: none;
}

.mobile-menu-close:hover {
    color: #DB5252;
}

.mobile-menu-close .close-icon {
    font-size: 44px;
    color: #FFF;
    font-weight: normal;
}

.close-icon {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.mobile-menu-content {
    background-color: #3E3E3E;
    padding: 30px 20px;
    padding-top: 0px;
    margin-top: -19px;
}

.navbar-brand {
    padding-left: 16px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #444444;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    width: 311px;
    margin: auto;
}

.mobile-nav-list a {
    display: block;
    padding: 30px 0;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: #DB5252;
}

.menu-prefix {
    display: block;
    color: #DB5252;
    margin-bottom: 5px;
    text-transform: none;
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    text-align: center;
    vertical-align: bottom;

}

.menu-title {
    display: block;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    text-align: center;
    vertical-align: bottom;

}

.mobile-menu-phone {
    text-align: center;
    color: #ffffff;
    padding-top: 30px;
    font-family: Montserrat;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 3%;
    text-align: center;
    vertical-align: bottom;

}

/* Show mobile menu toggle on mobile devices */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .navbar {
        position: relative;
    }

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

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }
}

.home .breadcrumb {
    display: none;
}

section.pricing-boxed {
    padding-top: 50px !important;
    padding-bottom: 0 !important;
}

section.pricing-boxed .container > h2 {
    margin-bottom: 40px !important;
}

.pricing-section .container {
    max-width: 100%;
    margin: 0;
}

@media (max-width: 1024px) {
    body .container {
        max-width: 100%;
    }

    .feedback-section .feedback-section__container {
        max-width: 100%;
    }

    .feedback-section .feedback-section__content {
        display: grid;
        text-align: center;
    }

    .feedback-section .feedback-section__button {
        width: 100%;
    }

    .breadcrumbs-section {
        display: none;
    }

    body > .container {
        padding: 0;
    }

    .hero-section {
        display: block;
        background-position: 27% -273px;
        background-size: 1200px;
    }

    .hero-section .container {
        padding-top: 0;
    }

    .hero-section .lead {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 800;
        font-size: 12px;
        line-height: 140%;
        display: flex;
        align-items: center;
        text-align: center;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        order: 0;
        flex-grow: 0;
    }

    .hero-section h1 {
        font-family: 'Oswald';
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 100%;
        text-align: center;

        text-shadow: 0px 1px 1px rgba(107, 107, 107, 0.5);

        order: 1;
        align-self: stretch;
        flex-grow: 0;
    }

    .hero-cta {
        position: relative;
        width: 90%;
        margin: auto;
    }

    .hero-cta__inner {
        width: 100%;
        display: block;
        margin: 0;
    }

    .hero-cta__text {
        margin: 10px 0;
        text-align: center;
    }

    body section h2 {
        font-family: 'Oswald';
        font-style: normal;
        font-weight: 700;
        font-size: 26px;
        line-height: 100%;
        text-align: center;
        letter-spacing: 0.02em;
        color: #DB5252;
    }
}

.b24-form-wrapper .b24-form-state-container .b24-form-success {
    background-color: #3E3E3E;
}

.b24-form .b24-window-panel .b24-window-close {
    background: none;
}

.b24-form .b24-window-close::after, .b24-form .b24-window-close::before {
    background: #DB5252;
}


.feedback-section__container {
    margin: 0 auto;
    background: #3e3e3e;
    padding: 40px 0;
}

.feedback-section__content {
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 53rem;
    display: flex;
    margin: auto;
}

.feedback-section__text {
    flex: 1;
}

.feedback-section__text p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0;
}

.feedback-section__button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 10px;
    gap: 10px;
    width: 380px;
    height: 58px;
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 6px;
    flex: none;
    flex-grow: 0;
    order: 2;
    flex-grow: 0;
}

.feedback-section__button .btn-feedback {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1F1F1F;
}

.feedback-section__button:hover .btn-feedback {
    color: #DB5252;
}

/* Адаптивность для секции "Оставить заявку" */
@media (max-width: 768px) {
    .work-steps__container {
        padding: 0;
    }

    .feedback-section {
        margin: 0;
        padding: 0;
    }

    .feedback-section__content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .feedback-section__text {
        padding: 20px;
    }

    .feedback-section__text p {
        font-size: 16px;
    }

    .btn-feedback {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feedback-section {
        margin: 0;
        padding: 0;
    }

    .feedback-section__text {
        padding: 15px;
    }

    .feedback-section__text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn-feedback {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Стили для попапов Bitrix24 */
.bitrix-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bitrix-popup.show {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background: #2c2c2c;
    border-radius: 12px;
    max-width: 840px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    color: white;
}

.bitrix-popup.show .popup-content {
    transform: scale(1);
}

.popup-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c2c2c;
    border-radius: 12px 12px 0 0;
}

.popup-close {
    background: none;
    border: none;
    color: #DB5252;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ff6b6b;
}

.bitrix-popup .popup-body {
    padding-bottom: 0;
}

.popup-body {
    padding: 30px;
    background: #3E3E3E;
    border-radius: 0 0 12px 12px;
}

.popup-body > p {
    text-align: center;
    margin: 0;
    color: white;
}

.popup-body .bitrix-form-container {
    margin-top: -30px !important;
}

.popup-body .b24-form-header-title {
    display: none;
}

.bitrix-form-container .b24-form-wrapper,
.popup-content .popup-body,
.popup-content .popup-header {
    background-color: #3E3E3E;
}

.b24-form-wrapper.b24-form-shadow {
    box-shadow: none;
    --webkit-box-shadow: none;
}

.b24-form-wrapper div,
.b24-form-wrapper p,
.b24-form-wrapper h3,
.b24-form-wrapper h4,
.b24-form-wrapper h5,
.b24-form-wrapper h6,
.b24-form-wrapper span,
.b24-form-wrapper svg {
    color: #FFFFFF;
    opacity: 1;
    fill: #FFFFFF;
}

.b24-form-basket,
body .b24-form-sign {
    display: none;
}

.b24-form-wrapper .b24-form-dropdown div,
.b24-form-wrapper .b24-form-dropdown div span {
    color: #1F1F1F;
}

.b24-form-control-list .b24-form-control-container::after {
    border-right: 2px solid #DB5252;
    border-bottom: 2px solid #DB5252;
    opacity: 1;
}

.b24-form-wrapper .b24-form-control-container input[type="text"],
.b24-form-wrapper .b24-form-control-container input[type="email"],
.b24-form-wrapper .b24-form-control-container input[type="tel"],
.b24-form-wrapper .b24-form-control-container textarea {
    background-color: #FFFFFF;
    color: #1F1F1F;
    border: 1px solid #DDDDDD;
}

.b24-form-wrapper .b24-form-btn {
    background-color: #DB5252;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.b24-form-wrapper .b24-form-btn:hover {
    background-color: #c44545;
}

.b24-form-wrapper .b24-form-state-container .b24-form-success {
    background-color: #3E3E3E;
}

.b24-form .b24-window-panel .b24-window-close {
    background: none;
}

.b24-form .b24-window-close::after, .b24-form .b24-window-close::before {
    background: #DB5252;
}

section > .container > div.text-center {
    font-size: 14px;
}

.work-steps {
    padding-top: 60px;
}

.container .b24-form-state-container .b24-form-error {
    background-color: #3e3e3e;
}

.site-header .navbar {
    background: #3e3e3e !important;
    padding: 14px 0
}

.site-header .navbar-brand img {
    height: 34px;
    width: auto
}

.site-header .navbar-nav .nav-link {
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    padding: 0 1.2rem;
    transition: color 0.3s ease;
    position: relative;
    text-align: left;
    max-width: min-content;
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 2%;
    vertical-align: bottom;
}

.site-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    height: 5px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.site-header .navbar-nav .menu-item .nav-link small {
    display: block;
    color: #DB5252;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: none;
    transition: color 0.3s ease
}

.site-header .navbar-nav .nav-link:hover {
    color: #DB5252 !important;
}

.site-header .navbar-nav .nav-link:hover::after {
    background-color: #DB5252;
}

.site-header .navbar-nav .nav-link:hover small {
    color: #ffffff !important
}

.site-header .navbar-nav .nav-link.current-menu-item::after {
    background-color: #DB5252;
}

.site-header .header-phone {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .02em;
    white-space: nowrap
}

.site-header .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center
}

.site-header .navbar-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    margin: 0 auto;
    flex: 1;
    max-width: 800px;
    margin-right: 0;
    display: inline-flex;
}

.site-header .navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    max-width: min-content;
}

.site-header .header-phone {
    margin-right: auto;
    margin-left: 60px;
}

.site-header .header-phone a,
a.footer-phone,
a.footer-email {
    font-family: Montserrat;
    font-weight: 500;
    font-style: ExtraBold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 3%;
    text-align: center;
    vertical-align: bottom;
    color: #FFFFFF;
    text-decoration: none;
}

.site-header .header-phone a:hover,
a.footer-phone:hover,
a.footer-email:hover {
    color: #DB5252;
}

.contact-item p {
    color: #ffffff;
}

.opportunities-section .opportunity-card:hover {
    cursor: pointer;
}

.opportunity-card:hover .opportunity-card__title {
    color: #DB5252;
}

.price-card__head .price-card__title {
    font-family: Oswald;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 6%;
    text-transform: uppercase;
}

.price-card__head .price-card__subtitle {
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 125%;
    letter-spacing: 2%;
    color: #1F1F1F;
}

.price-card__content .price-card__price,
.price-card__body .price-card__price {
    font-family: Oswald;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    text-transform: uppercase;
}

.price-card .price-card__features {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 2%;
}

.price-card__content {
    display: flex;
    flex-direction: column;
    height: 85%;
}

.popup-content .b24-form-success .b24-form-state-inner,
.popup-content .b24-form-error .b24-form-state-inner {
    min-width: 100%;
    background: #fff;
    height: auto;
    min-height: 200px;
    place-content: center;
    padding: 40px 20px;
}

/* Защита заголовка - он всегда остается видимым */
.popup-header {
    position: relative;
    z-index: 100;
    flex-shrink: 0;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    flex: 1;
    margin: 0;
    padding-right: 20px;
}

/* Popup content с flex для сохранения заголовка */
.popup-content {
    display: flex;
    flex-direction: column;
}

.popup-body {
    flex: 1;
    overflow-y: auto;
}

.popup-content .b24-form-success .b24-form-state-inner .b24-form-state-icon,
.popup-content .b24-form-error .b24-form-state-inner .b24-form-state-icon {
    display: none;
}

.popup-content .b24-form-success .b24-form-state-inner p,
.popup-content .b24-form-error .b24-form-state-inner p {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 10%;
    text-align: center;
    text-transform: uppercase;
    color: #1F1F1F;
    text-wrap: balance;
}

.site-header {
    display: block;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

body h2, body h2.mb-4 {
    margin-bottom: 10px !important;
}

section > .container > div.text-center {
    line-height: 125%;
}

body > .container {
    margin-top: 73px;
}

body.home > .container {
    margin-top: 70px;
}

.breadcrumb-nav {
    margin-bottom: 20px;
}

.container .breadcrumb-nav .breadcrumb-item {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0.03em;
    color: #1F1F1F;

}

h3.red {
    color: #DB5252;
}

html body {
    background: #F6F6F6;
}

body > .container {
    background: #fff;
    padding: 0px;
}

@media (min-width: 1400px) {
    body > .container {
        max-width: 1280px;
    }

    body > footer > .container {
        max-width: 1280px;
    }
}

@media (min-width: 769px) {
    body:not(.home) > .container {
        padding: 70px;
    }

    .what-you-need {
        padding: 0 50px;
    }

    body section.clients-section {
        padding-bottom: 70px !important;
    }
}

.container .accordion-button {
    padding: 0;
}

.accordion-section {
    margin-top: 30px;
}

html body section > .container > h2,
h2.work-steps__title {
    font-family: Oswald;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1%;
}

section > .container > div.text-center,
section > .work-steps__container > div.text-center {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 125%;
    letter-spacing: 2%;
    text-align: center;
}

.pricing-section > .container > .row > .col-md-15 {
    padding-left: 5px;
    padding-right: 5px;
}

.opportunities-section .row .col-md-3 {
    padding-left: 5px;
    padding-right: 5px;
}

.opportunities-section .row .col-md-3 .opportunity-card {
    padding: 10px;
}

.opportunities-section .row .col-md-3 .opportunity-card .opportunity-card__title {
    letter-spacing: 4%;
}

section.what-you-need,
section.clients-section {
    padding-top: 60px !important;
}

section.clients-section {
    padding-bottom: 50px !important;
}

section.what-you-need > .container > div.mb-5,
section.how-we-can-help > .container > div.mb-5,
section.clients-section > .container > div.mb-4 {
    margin-bottom: 40px !important;
}

body h2.accordion-header {
    margin-bottom: 13px !important;
    margin-top: 13px;
}

.b24-form .b24-form-wrapper.b24-form-border-bottom {
    border-bottom: none;
}

.bitrix-form-container .b24-form-header {
    padding-top: 0;
}

.popup-content .popup-header h3 {
    font-family: Oswald;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 6%;
    text-align: center;
    text-transform: uppercase;
}

#mobile-menu-toggle.navbar-toggler {
    border: none;
}

#mobile-menu-close.navbar-toggler {
    border: none;
}