

/* Start:/local/templates/generator/components/bitrix/news/services_v2/bitrix/news.detail/.default/style.css?178030763524395*/
/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geometria:wght@700&display=swap');

.service-wrapper {
    --service-green: #42ae45;
    --service-green-dark: #348a38;
    --service-green-light: #d2edd3;
    --service-red: #e74c3c;
    --service-gray-bg: #f7f7f7;
    --service-dark: #282828;
    --service-gray-text: #757778;
    --service-border: #e5e7eb;
    font-family: 'Inter', sans-serif;
    color: var(--service-dark);
    line-height: 1.4;
    margin-bottom: 40px;
}

.service-wrapper *,
.service-wrapper *::before,
.service-wrapper *::after {
    box-sizing: border-box;
}

.service-wrapper h1,
.service-wrapper h2,
.service-wrapper h3,
.service-wrapper h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.service-wrapper p {
    margin-bottom: 1rem;
}

.service-wrapper a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.service-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    overflow-x: hidden;
}

/* ===== BUTTONS ===== */
.service-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 16px;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    transition: background .3s;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    background-color: var(--service-green);
}

.service-btn:hover {
    background-color: var(--service-green-dark);
    color: #fff;
}

.service-btn:focus-visible {
    outline: 2px solid var(--service-green);
    outline-offset: 2px;
}

.service-btn--full {
    width: 100%;
}

.service-btn--outline {
    background: transparent;
    border: 1px solid var(--service-green);
    color: var(--service-green);
}

.service-btn--outline:hover {
    background: var(--service-green);
    color: #fff;
}

/* ===== SECTIONS ===== */
.service-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.service-section--gray {
    background: var(--service-gray-bg);
}

.service-title-lg {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Geometria', sans-serif;
}

/* ===== HERO ===== */
.service-hero {
    background-color: var(--service-green-light);
    padding: 60px 40px 0 40px;
    border-radius: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.service-hero__content {
    flex: 1;
    min-width: 300px;
    padding-bottom: 60px;
}

.service-hero__title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Geometria', sans-serif;
}

.service-hero__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-hero__list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    margin-bottom: 10px;
}

.service-hero__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--service-green);
    font-weight: 700;
}

.service-hero__list-text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.service-hero__action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.service-hero__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--service-green-dark);
    white-space: nowrap;
}

.service-hero__photo {
    flex: 0 0 600px;
    align-self: flex-end;
}

.service-hero__photo-img {
    overflow: hidden;
}

.service-hero__photo-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

/* ===== HERO RATINGS BADGES ===== */
.service-hero__ratings {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-hero__ratings .footer-badge {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    flex: 0 0 auto;
    width: 160px;
}

.service-hero__ratings .footer-badge-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-hero__ratings .footer-badge-link:hover .footer-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.service-hero__ratings .footer-badge-inner {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.service-hero__ratings .footer-badge-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-hero__ratings .footer-badge-logo-img {
    height: 26px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

.service-hero__ratings .footer-badge-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 6px;
}

.service-hero__ratings .footer-badge-stars {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.service-hero__ratings .footer-badge-star {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-hero__ratings .footer-badge-star-full {
    background-image: url("/local/templates/generator/assets/images/svg/star-full.svg");
}

.service-hero__ratings .footer-badge-star-half {
    background-image: url("/local/templates/generator/assets/images/svg/star-half.svg");
}

.service-hero__ratings .footer-badge-star-empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E2E8F0' stroke='%23CBD5E1' stroke-width='0.6'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.service-hero__ratings .footer-badge-rating-digits {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    flex-shrink: 0;
}

.service-hero__ratings .footer-badge-rating-max {
    font-size: 9px;
    font-weight: 500;
    color: #6b7a8f;
}

.service-hero__ratings .footer-badge-reviews {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.service-hero__ratings .footer-badge-reviews-text {
    font-size: 10px;
    color: #5b6c89;
}

/* ===== DEBTS ===== */
.service-debts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-debt-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--service-gray-bg);
    border-radius: 12px;
    font-weight: 500;
}

.service-debt-item__icon {
    flex-shrink: 0;
    color: var(--service-green);
}

/* ===== CONDITIONS ===== */
.service-conditions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-conditions__list {
    list-style: none;
    padding: 0;
}

.service-conditions__list li {
    position: relative;
    padding: 12px 0 12px 32px;
    font-size: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.service-conditions__list li:last-child {
    border-bottom: none;
}

.service-conditions__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--service-green);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.service-conditions__photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 340px;
    height: 510px;
    background: #f4f6f7;
    justify-self: center;
}

.service-conditions__photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
}

.service-conditions__photo-caption {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: rgba(244,246,247,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(206,206,206,0.3);
    border-radius: 8px;
    padding: 14px 18px;
    z-index: 2;
}

.service-conditions__photo-caption-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.service-conditions__photo-caption-name {
    font-weight: 600;
    font-size: 18px;
    color: #231f20;
}

.service-conditions__photo-caption-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.service-conditions__photo-caption-messenger:hover {
    opacity: 0.7;
}

.service-conditions__photo-caption-messenger img {
    width: 18px;
    height: 18px;
    display: block;
}

.service-conditions__photo-caption-text {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #404040;
}

/* ===== TARIFFS ===== */
.service-tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-tariff-card {
    background: var(--service-gray-bg);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: left;
    transition: all .3s;
}

.service-tariff-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-tariff-card__title {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-tariff-card__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--service-green-dark);
    margin: 16px 0;
}

.service-tariff-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-tariff-card__list li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--service-dark);
}

/* ===== TIMELINE ===== */
.service-timeline__item {
    flex: 0 0 280px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.service-timeline__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-timeline__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--service-green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 1;
}

.service-timeline__title {
    font-size: 18px;
    font-weight: 700;
}

.service-timeline__date {
    font-size: 13px;
    color: var(--service-green);
    font-weight: 600;
}

.service-timeline__desc {
    font-size: 14px;
    color: var(--service-gray-text);
}

.service-timeline__image {
    align-self: flex-end;
    margin-top: auto;
}

.service-timeline__image svg {
    width: 48px;
    height: 48px;
}

/* ===== FACTS ===== */
.service-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.service-fact-card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 24px 16px;
    transition: all 0.3s ease;
}

.service-fact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-fact-card strong {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
    color: var(--service-dark);
}

.service-fact-card span {
    font-size: 14px;
    color: var(--service-gray-text);
}

/* ===== CASES CAROUSEL ===== */
.service-carousel {
    position: relative;
    padding: 0 20px;
}

.service-carousel__container {
    overflow: hidden;
    padding: 10px 0;
}

.service-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.25s ease-out;
}

.service-carousel__slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

.service-carousel__controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.service-carousel__button {
    position: absolute;
    pointer-events: auto;
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #333;
}

.service-carousel__button:hover:not(.disabled) {
    background: var(--service-green);
    color: white;
    border-color: var(--service-green);
    box-shadow: 0 4px 12px rgba(66,174,69,0.3);
}

.service-carousel__button:focus-visible {
    outline: 2px solid var(--service-green);
    outline-offset: 2px;
}

.service-carousel__button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.service-carousel__button.disabled:hover {
    background: white;
    color: #333;
    border-color: #ddd;
}

.service-carousel__button--prev {
    left: -24px;
}

.service-carousel__button--next {
    right: -24px;
}

.service-carousel__button svg {
    width: 24px;
    height: 24px;
}

.service-case-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--service-border);
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.service-case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--service-green);
}

.service-case-card__img {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    border-bottom: 1px solid var(--service-border);
}

.service-case-card__img img {
    width: 100%;
    height: auto;
    display: block;
}

.service-case-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-case-card__info {
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.4;
}

.service-case-card__info strong {
    color: var(--service-dark);
}

.service-case-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(66,174,69,0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 12px 0 12px;
    z-index: 2;
}

.service-case-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(66,174,69,0.9);
    padding: 12px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.3s;
    text-decoration: none;
    z-index: 2;
}

.service-case-card:hover .service-case-card__overlay {
    transform: translateY(0);
}

/* ===== FAQ ===== */
.service-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-faq__item {
    background: var(--service-gray-bg);
    border-radius: 12px;
}

.service-faq__trigger {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    color: var(--service-dark);
}

.service-faq__icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-faq__item.active .service-faq__icon {
    transform: rotate(180deg);
}

.service-faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-faq__item.active .service-faq__body {
    max-height: 500px;
}

.service-faq__text {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
}

/* ===== FORM ===== */
.service-form input[type="text"],
.service-form input[type="tel"],
.service-form input[type="email"],
.service-form input[type="number"],
.service-form .service-input,
.service-form .city-input {
    width: 100%;
    background-color: var(--service-gray-bg);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
    height: 48px;
    font-family: 'Inter', sans-serif;
    color: var(--service-dark);
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 12px;
}

.service-form input:focus {
    background-color: #fff;
    border-color: var(--service-green);
}

/* Поля формы НЕ сливаются с серым фоном */
.service-section--gray .service-form input[type="text"],
.service-section--gray .service-form input[type="tel"],
.service-section--gray .service-form input[type="email"],
.service-section--gray .service-form input[type="number"],
.service-section--gray .service-form select.city-input {
    background-color: #ffffff;
    border: 1px solid #dde1e7;
}

.service-section--gray .service-form input:focus,
.service-section--gray .service-form select.city-input:focus {
    border-color: var(--service-green);
    box-shadow: 0 0 0 3px rgba(66,174,69,0.1);
}

/* Единственный офис — зелёная плашка (переопределяем инлайн-стили) */
.service-form .city-input[style*="display:flex"] {
    color: #282828 !important;
    background: #e8f4e8 !important;
    border: 1px solid #42ae45 !important;
    border-radius: 4px !important;
    padding: 14px 16px !important;
    margin-bottom: 12px !important;
    pointer-events: none;
}

.service-form .city-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.service-form .city-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    accent-color: var(--service-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-form .city-checkbox label {
    font-size: 12px;
    line-height: 1.4;
    color: var(--service-dark);
}

.service-form .city-checkbox a {
    color: var(--service-green);
    text-decoration: underline;
}

.service-form .city-btn,
.service-form button[type="submit"] {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 16px;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    transition: background .3s;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    background-color: var(--service-green);
    width: 100%;
    margin-bottom: 16px;
}

.service-form .city-btn:hover,
.service-form button[type="submit"]:hover {
    background-color: var(--service-green-dark);
}

.service-form select.city-input {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    background-image: none;
    padding-right: 16px;
}

/* Кнопка в попапе */
#popup-consult .city-btn,
#popup-consult .city-btn--full,
#popup-consult button[type="submit"] {
    background-color: #42ae45;
    color: #fff;
    width: 100%;
}

#popup-consult .city-btn:hover,
#popup-consult button[type="submit"]:hover {
    background-color: #348a38;
}

/* Тост с ошибкой */
.city-toast {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #fff;
    border-left: 4px solid var(--service-red);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 16px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.city-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== CTA & MAP ===== */
.service-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-map {
    background: #e2e8f0;
    border-radius: 12px;
    min-height: 380px;
    height: 100%;
}

/* Карта для региональных страниц */
.city-map-placeholder,
#service-city-map {
    min-height: 380px;
    height: 100%;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== POPUP ===== */
.service-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.service-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    cursor: pointer;
}

.service-popup__window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 460px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.service-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    color: #aaa;
    background: none;
    border: none;
    padding: 6px;
    line-height: 0;
    transition: color .3s;
}

.service-popup__close:hover {
    color: #333;
}

.service-popup__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Geometria', sans-serif;
}

.service-popup__text {
    font-size: 15px;
    color: var(--service-gray-text);
    margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .service-hero {
        flex-direction: column;
        padding: 40px 24px 0 24px;
    }
    
    .service-hero__content {
        padding-bottom: 0;
    }
    
    .service-hero__photo {
        flex: 0 0 auto;
        max-width: 100%;
        margin: 0 auto;
        align-self: center;
    }
    
    .service-hero__title {
        font-size: 32px;
    }
    
    .service-conditions {
        grid-template-columns: 1fr;
    }
    
    .service-conditions__photo {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .service-tariffs {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-carousel__slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .service-debts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-carousel {
        padding: 0 16px;
    }
    
    .service-carousel__track {
        gap: 12px;
    }
    
    .service-carousel__slide {
        flex: 0 0 100%;
    }
    
    .service-carousel__button {
        width: 40px;
        height: 40px;
    }
    
    .service-carousel__button--prev {
        left: -10px;
    }
    
    .service-carousel__button--next {
        right: -10px;
    }
    
    .service-carousel__button svg {
        width: 20px;
        height: 20px;
    }
    
    .service-debts {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        grid-template-columns: 1fr;
    }
    
    .service-hero__title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .service-section {
        padding: 20px 16px;
    }
    
    .service-title-lg {
        font-size: 24px;
    }
    
    .service-hero {
        padding: 24px 16px 0 16px;
        border-radius: 16px;
    }
    
    .service-hero__title {
        font-size: 24px;
    }
    
    .service-hero__action {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .service-hero__ratings {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-hero__ratings .footer-badge {
        width: 100%;
    }
    
    .service-hero__photo {
        max-width: 100%;
    }
    
    .service-conditions {
        gap: 24px;
    }
    
    .service-conditions__photo {
        width: 100%;
        max-width: 340px;
        height: auto;
        min-height: 400px;
        max-height: 510px;
    }
    
    .service-timeline__item {
        flex: 0 0 260px;
    }
    
    .service-facts {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .service-popup__window {
        padding: 28px 20px;
    }
    
    .service-carousel {
        padding: 0 12px;
    }
}
/* End */


/* Start:/local/templates/generator/components/bitrix/news.list/team_slider/style.css?17775212394982*/
/* ======================================== */
/* СЛАЙДЕР «НАША КОМАНДА»                   */
/* ======================================== */
.team-slider {
    position: relative;
    --team-green: #42ae45;
    --team-green-hover: #359838;
    padding: 0 20px;
}

.team-slider__container {
    overflow: hidden;
    padding: 10px 0;
}

.team-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.team-slider__slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

@media (max-width: 1024px) {
    .team-slider__slide {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .team-slider__slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .team-slider__slide {
        flex: 0 0 calc(100% - 0px);
    }
}

/* ======================================== */
/* КАРТОЧКА СОТРУДНИКА                      */
/* ======================================== */
.team-card {
    background: white;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(66, 174, 69, 0.15);
    transform: translateY(-2px);
}

.team-card__photo {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    overflow: hidden;
    background: #f0f1f2;
    flex-shrink: 0;
}

.team-card__photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e9ea;
}

.team-card__photo-placeholder svg {
    width: 50%;
    height: auto;
    max-width: 80px;
}

.team-card__info {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.team-card__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #231f20;
}

.team-card__position {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.4;
    color: #676767;
}

/* ======================================== */
/* КНОПКИ УПРАВЛЕНИЯ                        */
/* ======================================== */
.team-slider__button {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    z-index: 10;
}

.team-slider__button:hover:not(.team-slider__button--disabled) {
    background: var(--team-green);
    color: #fff;
    border-color: var(--team-green);
    box-shadow: 0 4px 12px rgba(66, 174, 69, 0.3);
}

.team-slider__button--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.team-slider__button--prev {
    left: -4px;
}

.team-slider__button--next {
    right: -4px;
}

.team-slider__button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ======================================== */
/* АДАПТИВНОСТЬ                              */
/* ======================================== */
@media (max-width: 768px) {
    .team-card__info {
        padding: 12px 14px 16px;
    }
    .team-card__name {
        font-size: 16px;
    }
    .team-card__position {
        font-size: 13px;
    }
    .team-slider__button {
        width: 40px;
        height: 40px;
    }
    .team-slider__button--prev {
        left: -10px;
    }
    .team-slider__button--next {
        right: -10px;
    }
    .team-slider__button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .team-card__photo {
        padding-bottom: 125%;
    }
    .team-card__info {
        padding: 10px 12px 14px;
    }
    .team-card__name {
        font-size: 15px;
    }
    .team-slider__button {
        width: 36px;
        height: 36px;
    }
}

/* ======================================== */
/* ОБЁРТКА НА СТРАНИЦЕ                       */
/* ======================================== */
.team-slider-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ======================================== */
/* АНИМАЦИИ                                  */
/* ======================================== */
@keyframes teamFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.team-slider__slide {
    animation: teamFadeIn 0.4s ease-out;
}
/* End */


/* Start:/bitrix/components/bitrix/player/templates/.default/style.min.css?1720099663122*/
td.popupmenu div.popupitem .playlist-edit{background-image:url(/bitrix/components/bitrix/player/images/playlist_edit.gif)}
/* End */


/* Start:/local/templates/generator/components/bitrix/news.list/reviews_2.0_video/style.css?17761531066594*/
/* ======================================== */
/* КОНТЕЙНЕР ВИДЕООТЗЫВОВ */
/* ======================================== */
.reviews-video-2-0 {
    position: relative;
    --primary-color: #42ae45;
    --primary-color-hover: #359838;
    padding-left: 20px;
    padding-right: 20px;
}

.reviews-video-carousel-container {
    position: relative;
    padding-bottom: 40px;
}

.reviews-video-carousel {
    overflow: hidden;
    padding: 10px 0;
}

.reviews-video-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.25s ease-out;
}

.reviews-video-carousel__slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

@media (max-width: 1024px) {
    .reviews-video-carousel__slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .reviews-video-2-0 {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .reviews-video-carousel__track {
        gap: 20px;
    }
    
    .reviews-video-carousel__slide {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .reviews-video-2-0 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ======================================== */
/* КАРТОЧКА ВИДЕООТЗЫВА */
/* ======================================== */
.video-review-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.video-review-card:hover {
    box-shadow: 0 8px 24px rgba(66, 174, 69, 0.12);
    transform: translateY(-2px);
}

/* Медиа-блок (видео) */
.video-review-card__media {
    position: relative;
    padding-bottom: 130%;
    background: #000;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.video-review-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-review-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    font-size: 14px;
}

/* Контент карточки */
.video-review-card__content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-review-card__author {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.video-review-card__description {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* ======================================== */
/* КНОПКИ УПРАВЛЕНИЯ КАРУСЕЛЬЮ */
/* ======================================== */
.reviews-video-carousel__controls {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.reviews-video-carousel__button {
    position: absolute;
    pointer-events: auto;
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.reviews-video-carousel__button:hover:not(.disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(66, 174, 69, 0.3);
}

.reviews-video-carousel__button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-video-carousel__button.disabled:hover {
    background: white;
    color: #333;
    border-color: #ddd;
}

.reviews-video-carousel__button--prev {
    left: -24px;
}

.reviews-video-carousel__button--next {
    right: -24px;
}

.reviews-video-carousel__button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .reviews-video-carousel__button {
        width: 40px;
        height: 40px;
    }
    
    .reviews-video-carousel__button--prev {
        left: -10px;
    }
    
    .reviews-video-carousel__button--next {
        right: -10px;
    }
    
    .reviews-video-carousel__button svg {
        width: 20px;
        height: 20px;
    }
}

/* ======================================== */
/* ИНДИКАТОРЫ (ТОЧКИ) */
/* ======================================== */
.reviews-video-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.reviews-video-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.reviews-video-carousel__dot:hover {
    background: var(--primary-color);
}

.reviews-video-carousel__dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* ======================================== */
/* ПУСТОЙ СПИСОК */
/* ======================================== */
.reviews-video-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 18px;
    background: #f9f9f9;
    border-radius: 12px;
}

/* ======================================== */
/* АДАПТИВНОСТЬ */
/* ======================================== */
@media (max-width: 768px) {
    .video-review-card__content {
        padding: 12px;
    }
    
    .video-review-card__author {
        font-size: 15px;
    }
    
    .video-review-card__description {
        font-size: 12px;
        -webkit-line-clamp: 3;
    }
    
    .reviews-video-carousel-container {
        padding-bottom: 16px;
    }
    
    .reviews-video-carousel__dots {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .video-review-card__media {
        padding-bottom: 125%;
    }
    
    .reviews-video-carousel-container {
        padding-bottom: 8px;
    }
    
    .reviews-video-carousel__dots {
        margin-top: 12px;
    }
}

/* ======================================== */
/* АНИМАЦИИ */
/* ======================================== */
@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-review-card {
    animation: videoFadeIn 0.4s ease-out;
}
/* End */


/* Start:/local/templates/generator/components/bitrix/form.result.new/city-form/style.css?1779378616143*/
/* Стили в основном файле offices_v3.0/style.css */
/* Этот файл оставлен пустым намеренно */
/* End */
/* /local/templates/generator/components/bitrix/news/services_v2/bitrix/news.detail/.default/style.css?178030763524395 */
/* /local/templates/generator/components/bitrix/news.list/team_slider/style.css?17775212394982 */
/* /bitrix/components/bitrix/player/templates/.default/style.min.css?1720099663122 */
/* /local/templates/generator/components/bitrix/news.list/reviews_2.0_video/style.css?17761531066594 */
/* /local/templates/generator/components/bitrix/form.result.new/city-form/style.css?1779378616143 */
