* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    position: absolute;
    width: 100%;
    background: linear-gradient(180deg, black, transparent);
    padding-bottom: 50px;
    z-index: 1000;
}

/* Main Header */
.header__main {
    position: relative;
    z-index: 1;
    background: unset;
    border: 0;
}

.header__main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 20px;
    padding-bottom: 16px;
}

.header__logo {
    flex-shrink: 0;
    flex-grow: 1;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    background: unset;
}

.header__contact-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.header__phone-number:hover {
    color: #bc171a;
}

.header__cta-btn {
    position: relative;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #b31217, #e52d27);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);
    font-family: 'Segoe UI';
    line-height: 1;
    border-bottom: 4px solid #8f1f1f;
    text-decoration: none;
}

.header__cta-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), transparent 60%);
  transform: rotate(25deg);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.header__cta-btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

.header__cta-btn:hover::before {
  opacity: 1;
  animation: shine 1.2s forwards;
}

/* Эффект пробегающего блика */
@keyframes shine {
  from {
    transform: translateX(-100%) rotate(25deg);
  }
  to {
    transform: translateX(100%) rotate(25deg);
  }
}

.header__cta-btn:active {
  transform: scale(0.96);
  box-shadow: 0 4px 12px rgba(229, 45, 39, 0.45);
}

/* Burger Menu */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 7px;
    z-index: 1000;
    position: relative;
}

.header__burger-line {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.header__burger.active .header__burger-line:first-child {
    transform: translateY(10px) rotate(45deg);
    transform-origin: center
}

.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0)
}

.header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    transform-origin: center
}

/* Navigation */
.header__nav {
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.header__nav .container {
    padding-top: 0;
    padding-bottom: 0;
}

.header__nav-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header__nav .header__nav-list {
    border-top: 1px solid;
}

.header__nav-item {
    position: relative;
}

.header__nav-item:first-child {
    margin-left: -15px;
}

.header__nav-item:last-child {
    margin-right: -15px;
}

.header__nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.header__nav-link:hover {
    background: rgb(190 24 27 / 11%);
}

.header__nav .header__nav-link {
    font-size: 13px;
    color: #dddcdc;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle svg {
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    pointer-events: none;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    visibility: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #bc171a;
}

/* Mobile Menu Overlay */
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.header__overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 20px;
}

.header__mobile-menu.active {
    right: 0;
}

.header__mobile-nav-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.header__mobile-nav-item {
    border-bottom: 1px solid #f8f9fa;
}

.header__mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.header__mobile-nav-link:hover {
    color: #bc171a;
}

.header__mobile-contact {
    padding-top: 20px;
    border-top: 1px solid #f8f9fa;
}

.header__mobile-phone {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 16px;
}

.header__mobile-cta {
    width: 100%;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, #b31217, #4e82bf);
}

.header__mobile-cta:hover {
    background: linear-gradient(135deg, #b31217, #4e82bf);
}

/* Scroll Effect */
.header--scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header__nav.hidden {
    transform: translateY(-100px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header__topbar-left,
    .header__topbar-right {
        gap: 16px;
    }
    
    .header__nav-list {
        gap: 0;
        display: none;
    }
    
    .header__nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {

    
    .header__topbar {
        display: none;
    }
    
    .header__nav {
        display: none;
    }

    .header__nav.active {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 70px 0;
        background: #000000a6;
    }

    .header__nav.active .header__nav-list {
        display: block;
        padding-top: 20px;
    }

    #contact_widget_button {
        left: 0;
        right: 0 !important;
        margin: auto;
    }





    .header__nav.active .header__nav-item {
        margin: 0;
    }

    .header__nav.active .header__nav-link {
        padding-left: 0;
        font-size: 16px;
    }
    
    .header__cta-btn {
        font-size: 0;
        width: 45px;
        height: 45px;
        border-radius: 100%;
        padding: 0;
        margin-bottom: -3px;
    }
    
    .header__logo {
        flex-grow: 1;
    }
    
    .logo__text {
        font-size: 20px;
    }
    
    .header__phone {
        display: flex;
        margin-right: 1rem;
    }
    
    .header__phone-number {
        font-size: 16px;
        white-space: nowrap;
    }
    
    .header__burger {
        display: flex;
    }
    
    .header__main .container {
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header__phone-number {
        display: none;
    }
    
    .logo__text {
        margin-bottom: -1px;
    }

    .header__cta-btn::before {
        background-image: url(/../uploads/assets/img/phone.svg);
        opacity: 1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: unset;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 22px;
    }
}

/* Desktop Hidden Navigation on Scroll */
@media (min-width: 769px) {
    .header__nav.hidden {
        transform: translateY(-100px);
    }
}



/* Hero Section */
.hero {
    background-image: url(/../uploads/assets/img/hero-bg.webp);
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 0;
    min-height: 800px;
    display: flex
;
    align-items: center;
    margin-top: 0;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
    background: #000;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    padding-top: 40px;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero__title-accent {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 4px solid #cc1414;
}

.hero__subtitle {
    font-size: 18px;
    color: #c4c4c4;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

button {
    font-family: 'Segoe UI';
}

.hero__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hero__feature-icon {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.hero__feature-text {
    font-size: 14px;
    color: #c4c4c4;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__cta-btn {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.hero__cta-btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}



/* Form Preview */
.form-preview__header {
    text-align: center;
    margin-bottom: 32px;
}

.form-preview__title {
    font-size: 27px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 34px;
}

.form-preview__subtitle {
    font-size: 14px;
    color: #c50000;
    font-weight: 600;
}

.hero__form-preview {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-preview__field {
    margin-bottom: 24px;
}

.form-preview__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-preview__input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    color: #9ca3af;
    background: #f9fafb;
}

.form-preview__options {
    display: flex;
    gap: 12px;
}

.form-preview__option {
    width: 100%;
    height: 48px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.form-preview__option:first-child {
    border-color: #c50000;
    background: #eff6ff;
    color: #c50000;
}

.form-preview__option svg {
    width: 20px;
    height: 20px;
}

.form-preview__submit {
    width: 100%;
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.form-preview__submit:hover {
    background: linear-gradient(135deg, #b31217, #4e82bf);
}

.form-preview__privacy {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

.form-preview__privacy a {
    color: #c50000;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    
    .hero {
        padding: 60px 0 40px;
        max-height: 680px;
        min-height: unset;
    }
    
    .hero__title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero__cta-btn {
        width: 100%;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .hero__cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero__form-preview {
        padding: 24px;
    }
}
/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.services__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card__image {
    width: 100%;
    height: 235px;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    padding: 20px;
}

.service-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.service-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.service-card__tooltip {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    position: relative;
}

.service-card__tooltip:hover {
    color: #c50000;
}

/* Tooltip */
.service-card__tooltip[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: normal;
    width: 200px;
    text-align: left;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 5px;
}

.service-card__tooltip[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f2937;
    z-index: 1000;
}

.service-card__price {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 15px;
}

.service-card__description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-card__meta {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-card__tag {
    background: #f5f5f5;
    color: #5d5d5d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.service-card__btn {
    position: relative;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #b31217, #e52d27);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);
    font-family: 'Segoe UI';
    line-height: 1;
    border:0;
border-bottom: 4px solid #8f1f1f;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.service-card__btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

/* Services CTA */
.services__cta {
    text-align: center;
}

.services__cta-btn {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.services__cta-btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

/* Responsive */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services__title {
        font-size: 32px;
    }
    
    .services__subtitle {
        font-size: 16px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .service-card__content {
        padding: 16px;
    }
    
    .service-card__tooltip[data-tooltip]:hover::after {
        width: 250px;
        left: 0;
        transform: none;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    
    .services__title {
        font-size: 28px;
    }
    
    .service-card__image {
        height: 160px;
    }
}
/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.why-choose__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.why-choose__title-accent {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Advantage Card */
.advantage-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.advantage-card__icon {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-card__content {
    flex: 1;
}

.advantage-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.advantage-card__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* CTA Block */
.why-choose__cta {
    margin-top: 60px;
}

.cta-block {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
}

.cta-block__content {
    flex: 1;
}

.cta-block__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.cta-block__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.cta-block__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-block__btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cta-block__btn--primary {
    background: white;
    color: #eb6666;
    border: none;
}

.cta-block__btn--primary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.cta-block__btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-block__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose__grid {
        gap: 24px;
    }
    
    .advantage-card {
        padding: 20px;
    }
    
    .cta-block {
        padding: 32px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose__title {
        font-size: 32px;
    }
    
    .why-choose__subtitle {
        font-size: 16px;
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .advantage-card__icon {
        align-self: center;
    }
    
    .cta-block {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .cta-block__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-block__btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 40px 0;
    }
    
    .why-choose__title {
        font-size: 28px;
    }
    
    .advantage-card__icon {
        width: 48px;
        height: 48px;
    }
    
    .advantage-card__title {
        font-size: 16px;
    }
    
    .cta-block__title {
        font-size: 20px;
    }
    
    .cta-block__text {
        font-size: 14px;
    }
}
/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: #f8fafc;
}

.how-we-work__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-we-work__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.how-we-work__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.process-step {
    background: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.process-step:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.process-step__number {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step__content {
    flex: 1;
}

.process-step__title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-step__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
}

.process-step__time {
    background: #ffecec;
    color: #5d5d5d;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
}

.process-step__icon {
    color: #9ca3af;
    flex-shrink: 0;
}

/* Expert Card */
.how-we-work__expert {
    margin-bottom: 60px;
}

.expert-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.expert-card__image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.expert-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-card__content {
    flex: 1;
}

.expert-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.expert-card__text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.expert-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.expert-card__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.expert-card__feature svg {
    color: #10b981;
    flex-shrink: 0;
}

.expert-card__info {
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.expert-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.expert-card__position {
    font-size: 14px;
    color: #c50000;
    font-weight: 500;
    margin-bottom: 4px;
}

.expert-card__experience {
    font-size: 13px;
    color: #6b7280;
}

/* CTA */
.how-we-work__cta {
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #bfdbfe;
}

.how-we-work__cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.how-we-work__cta-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.how-we-work__cta-btn {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.how-we-work__cta-btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-steps {
        gap: 24px;
    }
    
    .process-step {
        padding: 24px;
    }
    
    .expert-card {
        padding: 32px;
        gap: 24px;
    }
    
    .expert-card__image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 0;
    }
    
    .how-we-work__title {
        font-size: 32px;
    }
    
    .how-we-work__subtitle {
        font-size: 16px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .process-step__icon {
        position: absolute;
        top: 24px;
        right: 20px;
    }
    
    .process-step {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .expert-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .expert-card__image {
        width: 120px;
        height: 120px;
        align-self: center;
    }
    
    .how-we-work__cta {
        padding: 32px 24px;
    }
    
    .how-we-work__cta-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .how-we-work {
        padding: 40px 0;
    }
    
    .how-we-work__title {
        font-size: 28px;
    }
    
    .process-step__title {
        font-size: 18px;
    }
    
    .expert-card__title {
        font-size: 20px;
    }
    
    .how-we-work__cta-title {
        font-size: 20px;
    }
    
    .how-we-work__cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}
/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.reviews__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* Stats */
.reviews__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-card__icon {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-card__number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card__label {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-card__period {
    font-size: 13px;
    color: #6b7280;
}

/* Reviews Grid */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.review-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-card__author {
    display: flex;
    gap: 12px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.review-card__meta {
    font-size: 13px;
    color: #6b7280;
}

.stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.review-card__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-card__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.review-card__service,
.review-card__date {
    font-size: 13px;
    color: #6b7280;
}

.review-card__service {
    font-weight: 500;
}

/* Platform Ratings */
.reviews__platforms {
    margin-bottom: 40px;
}

.platform-ratings {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-rating__img {
    max-width: 100%;
    cursor: pointer;
}

/* CTA */
.reviews__cta {
    text-align: center;
}

.reviews__cta-btn {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.reviews__cta-btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-ratings {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }
    
    .reviews__title {
        font-size: 32px;
    }
    
    .reviews__subtitle {
        font-size: 16px;
    }
    
    .reviews__stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .platform-ratings {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 40px 0;
    }
    
    .reviews__title {
        font-size: 28px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card__number {
        font-size: 24px;
    }
    
    .review-card__header {
        flex-direction: column;
        gap: 12px;
    }
    
    .review-card__rating {
        align-self: flex-start;
    }
}
/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: #fff;
}

.calculator__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calculator__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.calculator__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.calculator__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Шаги калькулятора */
.calc-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.calc-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-step__title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.calc-options--small {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.calc-option {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-option--small {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px;
}

.calc-option:hover {
    border-color: #c50000;
    background: #eff6ff;
}

.calc-option.selected {
    border-color: #c50000;
    background: #eff6ff;
    box-shadow: 0 4px 20px rgba(92, 163, 255, 0.15);
}

.calc-option__icon {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-option--small .calc-option__icon {
    width: 48px;
    height: 48px;
}

.calc-option__title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.calc-option--small .calc-option__title {
    font-size: 16px;
}

.calc-option__desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.4;
}

.calc-option__price {
    font-size: 16px;
    font-weight: 700;
    color: #c50000;
}

/* Дополнительные услуги */
.calc-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.calc-extra {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-extra:hover {
    border-color: #c50000;
    background: #eff6ff;
}

.calc-extra input[type="checkbox"] {
    display: none;
}

.calc-extra__checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.calc-extra input[type="checkbox"]:checked + .calc-extra__checkmark {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    border-color: #c50000;
}

.calc-extra input[type="checkbox"]:checked + .calc-extra__checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.calc-extra__title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.calc-extra__desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

.calc-extra__price {
    font-size: 14px;
    font-weight: 600;
    color: #c50000;
    margin-left: auto;
}

/* Навигация */
.calc-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.calc-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.calc-btn--back {
    background: #f3f4f6;
    color: #6b7280;
}

.calc-btn--back:hover:not(:disabled) {
    background: #e5e7eb;
    color: #374151;
}

.calc-btn--next {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
}

.calc-btn--next:hover:not(:disabled) {
    background: linear-gradient(135deg, #b31217, #4e82bf);
}

.calc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Результат калькулятора */
.calc-result {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.calc-result__header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.calc-result__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.calc-result__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.calc-result__label {
    color: #6b7280;
}

.calc-result__value {
    font-weight: 500;
    color: #1f2937;
}

.calc-result__extras {
    margin: 12px 0;
}

.calc-result__extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
    color: #c50000;
}

.calc-result__separator {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

.calc-result__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 700;
}

.calc-result__total-label {
    color: #1f2937;
}

.calc-result__total-price {
    color: #c50000;
}

.calc-result__discount {
    background: #eff6ff;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
}

.discount-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1f2937;
    margin-bottom: 8px;
}

.discount-info svg {
    color: #10b981;
    flex-shrink: 0;
}

.discount-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
}

.calc-result__order {
    width: 100%;
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.calc-result__order:hover:not(:disabled) {
    background: linear-gradient(135deg, #b31217, #4e82bf);
    transform: translateY(-1px);
}

.calc-result__order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calc-result__note {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    line-height: 1.4;
}

/* Responsive для калькулятора */
@media (max-width: 1024px) {
    .calculator__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .calc-result {
        position: static;
        order: 2;
    }
}

@media (max-width: 768px) {
    .calculator {
        display: none;
    }
}
/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faq__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.faq__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* FAQ Items */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item__question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-item__question:hover {
    color: #c50000;
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    color: #c50000;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 200px;
}

.faq-item__answer p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Contact Card */
.faq__contact {
    position: sticky;
    top: 20px;
}

.faq-contact-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.faq-contact-card__icon {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.faq-contact-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.faq-contact-card__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 24px;
}

.faq-contact-card__btn {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-decoration: none;
}

.faq-contact-card__btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

/* FAQ Bottom CTA */
.faq__bottom {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e5e7eb;
}

.faq-cta__title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-cta__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-cta__features {
    margin-bottom: 32px;
}

.faq-cta__feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-cta__feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-cta__feature li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.faq-cta__feature li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    border-radius: 50%;
}

.faq-cta__feature li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.faq-cta__action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-cta__btn {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.faq-cta__btn:hover {
    background: linear-gradient(135deg, #df272c, #e52d27);
    box-shadow: 0 12px 28px rgba(229, 45, 39, 0.55);
}

.faq-cta__contact {
    font-size: 14px;
    color: #6b7280;
}

.faq-cta__contact a {
    color: #c50000;
    text-decoration: none;
    font-weight: 500;
}

.faq-cta__contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq__contact {
        position: static;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq__title {
        font-size: 32px;
    }
    
    .faq__subtitle {
        font-size: 16px;
    }
    
    .faq-item__question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-item__answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .faq-contact-card {
        padding: 24px;
    }
    
    .faq__bottom {
        padding: 32px 24px;
    }
    
    .faq-cta__action {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .faq-cta__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq__title {
        font-size: 28px;
    }
    
    .faq-cta__title {
        font-size: 20px;
    }
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact__title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact__subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-bottom: 60px;
    align-items: baseline;
}

/* Contact Info */
.contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact__info iframe {
    grid-column: 1 / -1;
}

.contact-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-card__icon {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-card__text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-card__link {
    color: #c50000;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.contact-card__link:hover {
    color: #eb6666;
    text-decoration: underline;
}

/* Schedule */
.contact-card__schedule {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.4;
}

.schedule-item__days {
    color: #374151;
    font-weight: 500;
}

.schedule-item__time {
    color: #c50000;
    font-weight: 600;
}

/* Regions */
.contact-card__regions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.region-tag {
    background: #ffecec;
    color: #5d5d5d;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.contact-form__header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-form__title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-form__subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Fields */
.form-field {
    display: flex;
    flex-direction: column;
}

.form-field__label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #1f2937;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
    outline: none;
    border-color: #c50000;
    box-shadow: 0 0 0 3px rgba(92, 163, 255, 0.1);
}

.form-field__textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-field__select {
    cursor: pointer;
}

/* Checkbox */
.form-field__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.form-field__checkbox input[type="checkbox"] {
    display: none;
}

.form-field__checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
    margin-top: 1px;
}

.form-field__checkbox input[type="checkbox"]:checked + .form-field__checkmark {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    border-color: #c50000;
}

.form-field__checkbox input[type="checkbox"]:checked + .form-field__checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-field__checkbox-text {
    color: #6b7280;
}

.form-field__checkbox-text a {
    color: #c50000;
    text-decoration: none;
}

.form-field__checkbox-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-form__submit {
    background: linear-gradient(135deg, #b31217, #e52d27);
    color: white;
    border:0;
border-bottom: 4px solid #8f1f1f;
    
    box-shadow: 0 6px 16px rgba(229, 45, 39, 0.4);;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form__submit:hover {
    background: linear-gradient(135deg, #b31217, #4e82bf);
    transform: translateY(-1px);
}

/* Form Guarantees */
.contact-form__guarantees {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.guarantee-item svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Contact Bottom CTA */
.contact__bottom {
    background: linear-gradient(135deg, #c50000 0%, #eb6666 100%);
    border-radius: 16px;
    padding: 32px;
    color: white;
}

.contact-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.contact-cta__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.contact-cta__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.contact-cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.contact-cta__phone,
.contact-cta__whatsapp {
    background: white;
    color: #eb6666;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.contact-cta__phone:hover,
.contact-cta__whatsapp:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact__title {
        font-size: 32px;
    }

    .contact__subtitle {
        font-size: 16px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-form__title {
        font-size: 20px;
    }

    .contact-cta__content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .contact-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-cta__phone,
    .contact-cta__whatsapp {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact-card__icon {
        width: 40px;
        height: 40px;
    }

    .contact-card__title {
        font-size: 16px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact__bottom {
        padding: 24px;
    }

    .contact-cta__title {
        font-size: 20px;
    }

    .contact-cta__subtitle {
        font-size: 14px;
    }
}
.footer {
    background-color: #111; /* темный фон */
    color: #ddd; /* светлый текст */
    padding: 40px 20px;
    font-size: 14px;
}

.footer a {
    color: #f44336; /* красный акцент для ссылок */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer__section {
    line-height: 1.6;
}



.footer__description {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

.footer__title {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__link {
    font-size: 14px;
    color: #ddd;
}

.footer__link:hover {
    color: #f44336;
}

.footer__contacts,
.footer__schedule {
    font-size: 14px;
}

.footer__contact {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
}

.footer__contact:hover {
    color: #f44336;
}

.footer__address {
    font-style: normal;
    color: #aaa;
    margin-top: 5px;
}

.footer__emergency {
    color: #f44336;
    font-weight: bold;
    margin-top: 8px;
}

.footer__bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer__copy {
    font-size: 12px;
    color: #666;
}

.footer__legal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer__legal-link {
    font-size: 13px;
    color: #aaa;
}

.footer__legal-link:hover {
    color: #f44336;
}

/* [START] Contact widget button */
#contact_widget_button {font-family: sans-serif; font-size: 14px; line-height: 1.15;border-radius: 10px; width: 300px; padding: 20px; z-index: 1; height: 60px;}
#contact_widget_button * {outline: none;}
#contact_widget_button *, #contact_widget_button *::before, #contact_widget_button *::after {box-sizing: border-box;}
#contact_widget_button .text-center {text-align: center !important;}
#contact_widget_button .align-items-center {-ms-flex-align: center !important;align-items: center !important;}
#contact_widget_button .justify-content-center {-ms-flex-pack: center !important;justify-content: center !important;}
#contact_widget_button {display: -ms-flexbox !important;display: -webkit-flex !important;display: flex !important;}
#contact_widget_button .d-flex {display: -ms-flexbox !important;display: -webkit-flex !important;display: flex !important;justify-content: unset !important; overflow: visible;font-size: 21px; font-weight: bold; gap: 18px;}
#contact_widget_button .d-none {display: none !important;}
#contact_widget_button .align-items-start {-ms-flex-align: start !important;align-items: flex-start !important;}
#contact_widget_button .flex-column {-ms-flex-direction: column !important;flex-direction: column !important;}

@-webkit-keyframes pulsation { 0%{-ms-transform:scale(0);-webkit-transform:scale(0);transform:scale(0);opacity:1} 50%{opacity:.5} to{-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);opacity:0}}
@keyframes pulsation { 0%{-ms-transform:scale(0);-webkit-transform:scale(0);transform:scale(0);opacity:1} 50%{opacity:.5} to{-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);opacity:0}}
@-webkit-keyframes iconOpacity {0%{opacity:0}   40%{opacity:.96}    60%{opacity:1}  80%{opacity:.96}    100%{opacity:0}}
@keyframes iconOpacity {0%{opacity:0} 40%{opacity:.96} 60%{opacity:1} 80%{opacity:.96} 100%{opacity:0}}
#contact_widget_button{ background: #01b44a; position:fixed;right:15px;bottom:15px;cursor:pointer;z-index:1001} /* green #25d366 */
#contact_widget_button.clicked{z-index:1041}
#contact_widget_substrate{position:fixed;top:0;right:0;bottom:0;left:0;background:transparent;z-index:0;display:none}
#contact_widget_substrate.active{z-index:1020;display:block}
.contact-widget-pulsation{background: #00f06b; width:80px;height:80px;border-radius:50px;position:absolute;left:-15px;top:-15px;z-index:-1;-ms-transform:scale(0);-webkit-transform:scale(0);transform:scale(0);-webkit-animation:pulsation 2s infinite;animation:pulsation 2s infinite;border-radius: 10px; width: 100%; height: 100%; top: 0; left: 0;}
.contact-widget-icon{color:#fff;width:100%;font-size:20px;overflow:hidden}
.contact-widget-icon .fa-envelope{-webkit-animation:iconOpacity 3s infinite;animation:iconOpacity 3s infinite;width:20px;height:20px}
.contact-widget-text{font-size:7px;text-transform:uppercase;line-height:9px;color:#fff}
.contact-widget-dropdown{position:absolute;bottom:60px;right:36px;padding:20px;border-radius:6px;background:#fff;display:block;opacity:0;z-index:-1;margin-bottom:20px;-webkit-transition:margin-bottom .3s ease,opacity .3s ease;transition:margin-bottom .3s ease,opacity .3s ease;box-shadow:5px 12px 30px rgba(0,0,0,.35);visibility:hidden;min-width:250px}
.contact-widget-dropdown.expanded{margin-bottom:0;opacity:.98;z-index:1;visibility:visible}
.contact-widget-item{color:#333}
.contact-widget-item:hover {color:rgb(10, 120, 191);}
.contact-widget-item:not(:last-child){margin-bottom:18px}
.contact-widget-item-icon{font-size:20px; display:block;-ms-flex:0 0 40px;flex:0 0 40px;max-width:40px;width:40px;height:40px;border-radius:100%;margin-right:10px;color:#fff}
.contact-widget-item-icon svg{width:20px!important;height:20px}
.contact-widget-messenger{background:#0084ff}
.contact-widget-viber{background:#7c529d}
.contact-widget-telegram{background:#2ca5e0}
.contact-widget-skype{background:#31c4ed}
.contact-widget-whatsapp{background:#25d366}
.contact-widget-email{background:#50a8ff}
.contact-widget-call{background:#3cba8b}
.contact-widget-contacts{background:#141e1a}
#contact_widget_button .toggle-active { display:none; }
#contact_widget_button.clicked .toggle-active { display:block; }
#contact_widget_button .toggle-inactive { display:block; }
#contact_widget_button.clicked .toggle-inactive { display:none; }

@media (min-width: 420px) {
    .contact-widget-icon{font-size:28px}
    .contact-widget-icon .fa-envelope{width:28px;height:28px}
    .contact-widget-text{font-size:9px;line-height:10px}
    .contact-widget-dropdown{right:60px}
}
@media (min-width: 992px) {
#contact_widget_button{bottom:30px}
    #contact_widget_button .contact-widget-viber-mobile{display:none!important}
}
@media (max-width: 991px) {
    #contact_widget_button .contact-widget-viber-desktop{display:none!important}
    .header-social__item img {
    width: 35px;
    height: 35px;
    }
    .header__tel {
        
    width: 32px;
    height: 32px;
    }
}
/* [End] Contact widget button */
/* Hero-блок */
.service-hero {
    background: #f5f5f5;
    padding: 165px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    background-image: url(/../uploads/assets/img/prava-bg.jpg);
    background-size: cover;
    background-position: center;
}
.service-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
    background: #000;
}
.service-hero__content {
    position: relative;
    z-index: 1;
}
.service-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.service-hero__subtitle {
    font-size: 18px;
    color: #d5d5d5;
    max-width: 700px;
    margin: 0 auto;
}

/* Хлебные крошки */
.breadcrumbs {
    background: #fafafa;
    padding: 12px 0;
    font-size: 14px;
}
.breadcrumb-link {
    color: #999;
    text-decoration: none;
}
.breadcrumb-link:hover {
    color: #e53935;
}
.breadcrumb-current {
    color: #444;
}
.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

/* Основной layout */
.service-layout {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.service-sidebar {
    width: 280px;
    flex-shrink: 0;
}
.service-main {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Сайдбар */
.sidebar-section {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    text-align: center;
}
.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-nav-item {
    margin-bottom: 10px;
}
.sidebar-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f9f9f9;
    color: #222;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sidebar-nav-link:hover {
    background: #f1f1f1;
}
.sidebar-nav-link.active {
    background: #e53935;
    color: #fff;
}
.sidebar-nav-price {
    font-weight: 600;
}

/* CTA блок в сайдбаре */
.sidebar-cta {
    text-align: center;
}
.sidebar-cta-text {
    font-size: 14px;
    margin-bottom: 15px;
}
.sidebar-cta-btn {
    width: 100%;
}

/* Преимущества */
.sidebar-features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}
.sidebar-feature-icon {
    color: #e53935;
    margin-right: 8px;
    font-weight: bold;
}

/* Форма заказа */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}
.form__input:focus {
    border-color: #e53935;
    outline: none;
}
.form__label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 768px) {
    .service-layout {
        flex-direction: column;
    }

    .service-sidebar {
        width: 100%;
        order: 1;
    }

    .service-main {
        box-shadow: unset;
        padding: 0;
    }
    .service-hero {
        padding: 90px 0 40px;
    }
    .service-hero__title {
        line-height: 1.3;
        font-size: 25px;
    }
    .service-hero__subtitle {
        font-size: 16px;
    }

    .service-content-text h1, .service-content-text h2 {
        line-height: 1.3;
    }

    .service-content-text h3 {
        margin-bottom: 10px;
        line-height: 1.3;
    }
}

/* Кнопка */
.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
}
.btn--accent {
    background: #e53935;
    color: #fff;
}
.btn--accent:hover {
    background: #c62828;
}

/* Преимущества под формой */
.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}
.order-benefit {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}
.order-benefit-icon {
    color: #e53935;
    margin-right: 8px;
}

/* SEO контент */
.service-content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.service-content-text h1 {
    margin-top: 0 !important;
}
.service-content-text h1,
.service-content-text h2 {
    margin: 25px 0 15px;
    font-weight: 700;
    color: #111;
}
.service-content-text p {
    margin-bottom: 15px;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ РЕГИОНОВ ===== */

/* Основная секция регионов */
.regions-content {
    padding: 40px 0 80px;
    background: #fff;
}

/* Блок поиска по регионам */
.regions-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    padding: 25px 30px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

/* Группа поиска */
.search-group {
    position: relative;
    flex: 1;
    max-width: 400px;
}

/* Поле ввода поиска */
.search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.search-input:focus {
    border-color: #bc171a;
    box-shadow: 0 0 0 3px rgba(188, 23, 26, 0.1);
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Иконка поиска */
.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #bc171a;
}

/* Статистика регионов */
.regions-stats {
    flex-shrink: 0;
}

.stats-text {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.stats-text strong {
    color: #bc171a;
    font-weight: 600;
}

/* Сетка регионов */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Элемент региона */
.region-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #bc171a;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.region-item:hover {
    background: #fafafa;
    border-color: #bc171a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.region-item:hover::before {
    transform: scaleY(1);
}

/* Название региона */
.region-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.region-item:hover .region-name {
    color: #bc171a;
}

/* Адаптивность */
@media (max-width: 768px) {
    .regions-search {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }
    
    .search-group {
        max-width: none;
    }
    
    .regions-stats {
        text-align: center;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .region-item {
        padding: 16px 20px;
    }
    
    .regions-content {
        padding: 30px 0 60px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input {
        padding: 12px 16px 12px 45px;
        font-size: 15px;
    }
    
    .search-icon {
        left: 15px;
        width: 18px;
        height: 18px;
    }
}

/* Анимация появления элементов */
.region-item {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.region-item:nth-child(1) { animation-delay: 0.1s; }
.region-item:nth-child(2) { animation-delay: 0.2s; }
.region-item:nth-child(3) { animation-delay: 0.3s; }
.region-item:nth-child(4) { animation-delay: 0.4s; }
.region-item:nth-child(5) { animation-delay: 0.5s; }
.region-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Состояние "не найдено" */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #666;
}

.no-results-text {
    font-size: 15px;
    color: #999;
}


 /* Основная секция */
.contact-main {
    padding: 40px 0;
    background-color: #ffffff;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
}

/* Информационный блок */
.contact-info {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-info__title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Контактные элементы */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.contact-item:hover {
    background-color: #fafafa;
    padding: 24px 16px;
    border-radius: 12px;
    margin: 0 -16px 32px -16px;
    border-bottom: 1px solid transparent;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item__icon {
    background: #ffecec;
    color: #5d5d5d;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
}

.contact-item__icon svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-item__icon svg {
    color: #eb6666;
}

.contact-item__content {
    flex: 1;
}

.contact-item__label {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-item__value {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-item__value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item__value a:hover {
    color: #2196f3;
}

.contact-item__extra {
    font-size: 14px;
    color: #666;
}

/* Время работы */
.working-hours {
    margin-top: 16px;
}

.working-hours__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background-color: #f0f4f7;
    transform: translateY(-1px);
}

.hours-item__day {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.hours-item__time {
    font-size: 15px;
    font-weight: 600;
    color: #eb6666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contact-main {
        padding: 60px 0;
    }


    .contact-info {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .contact-info__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .contact-item {
        margin-bottom: 24px;
        padding: 20px 0;
    }

    .contact-item__icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-right: 16px;
    }

    .contact-item__icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-item__value {
        font-size: 16px;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px;
    }

    .hours-item__time {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-info__title {
        font-size: 24px;
    }

    .contact-item__value {
        font-size: 15px;
    }

    .working-hours__title {
        font-size: 18px;
    }
}

/* Дополнительные эффекты */
.contact-info {
    position: relative;
    overflow: hidden;
}

/* Анимация появления */
.contact-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.contact-item:nth-child(2) { animation-delay: 0.1s; }
.contact-item:nth-child(3) { animation-delay: 0.2s; }
.contact-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .hero__features {
        flex-direction: column;
        display: flex;
    }

    .hero__feature:nth-child(even) {
        display: none;
    }

    .hero__feature {
        text-align: left;
    }
}