/* Хлебные крошки */
.breadcrumbs-section { background-color: #f8fafc; padding: 20px 0 0 0; }
.breadcrumbs { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; color: #94a3b8; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; font-size: 18px; line-height: 1; color: #cbd5e1; margin-top: -2px; }
.breadcrumbs a { color: #64748b; text-decoration: none; transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--primary-orange); }

/* Герой сервисов */
.srv-hero-section { padding: 40px 0 60px; background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; text-align: center; }
.srv-hero-title { font-size: 42px; font-weight: 800; color: var(--dark-blue); margin-bottom: 20px; letter-spacing: -0.5px; }
.srv-hero-desc { font-size: 18px; color: #64748b; max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* Сетка карточек сервиса */
.srv-catalog-section { padding: 80px 0; background: #fff; }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.srv-item-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; text-decoration: none; transition: all 0.3s ease; display: flex; flex-direction: column; }
.srv-item-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.06); transform: translateY(-5px); border-color: #cbd5e1; }

.srv-img-box { height: 220px; position: relative; overflow: hidden; background: #f1f5f9; }
.srv-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.srv-item-card:hover .srv-img-box img { transform: scale(1.05); }

/* БЛОК С ТЕКСТОМ И ИКОНКОЙ */
.srv-item-body { position: relative; padding: 40px 30px 30px; display: flex; flex-direction: column; flex-grow: 1; }

/* ИСПРАВЛЕННАЯ ИКОНКА (теперь она привязана к верхнему краю текста и не обрезается) */
.srv-icon-badge {
    position: absolute;
    top: -25px; /* Поднимаем наполовину на картинку */
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 4px solid #fff;
    box-shadow: 0 10px 15px rgba(249, 115, 22, 0.2);
    z-index: 5;
}

.srv-item-body h3 { font-size: 20px; font-weight: 700; color: var(--dark-blue); margin-bottom: 12px; transition: color 0.3s; }
.srv-item-card:hover .srv-item-body h3 { color: var(--primary-orange); }
.srv-item-body p { color: #64748b; font-size: 15px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.srv-link { font-weight: 700; font-size: 15px; color: var(--dark-blue); display: inline-flex; align-items: center; transition: color 0.3s; }
.srv-item-card:hover .srv-link { color: var(--primary-orange); }

/* Широкие карточки */
.srv-wide { grid-column: span 1.5; }
.srv-wide .srv-img-box { height: 260px; }

/* Блок FAQ */
.srv-faq-section { padding: 0 0 80px; background: #fff; }
.srv-faq-wrapper { background-color: #f8fafc; border-radius: 20px; padding: 60px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; border: 1px solid #e2e8f0; }
.srv-faq-info h2 { font-size: 32px; font-weight: 800; color: var(--dark-blue); margin-bottom: 20px; line-height: 1.2; }
.srv-faq-info p { color: #64748b; font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.srv-faq-item { border-bottom: 1px solid #cbd5e1; margin-bottom: 15px; padding-bottom: 15px; }
.srv-faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.srv-faq-header { font-size: 18px; font-weight: 700; color: var(--dark-blue); cursor: pointer; position: relative; padding-right: 30px; transition: color 0.3s; }
.srv-faq-header:hover { color: var(--primary-orange); }
.srv-faq-header::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--primary-orange); transition: transform 0.3s; }
.srv-faq-item.active .srv-faq-header::after { transform: translateY(-50%) rotate(45deg); }
.srv-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #64748b; font-size: 15px; line-height: 1.6; }
.srv-faq-body-inner { padding-top: 15px; }

/* Адаптив */
@media (max-width: 1200px) { .srv-grid { grid-template-columns: repeat(2, 1fr); } .srv-wide { grid-column: span 1; } .srv-faq-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 40px; } }
@media (max-width: 768px) { .srv-grid { grid-template-columns: 1fr; } .srv-hero-title { font-size: 32px; } .srv-faq-wrapper { padding: 30px 20px; } }