/* CSS Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цветовая схема */
    --primary-blue: #0369A1;
    --primary-orange: #EA580C;
    --primary-red: #DC2626;
    --white: #FFFFFF;
    --black: #0F172A;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Тени */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Скругления */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Шрифты */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'PT Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #C2410C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: #075985;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Погодный алерт */
.weather-alert {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.alert-btn {
    background: var(--white);
    color: var(--primary-red);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    margin-left: 1rem;
    font-weight: 600;
}

/* Шапка */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

.header-phone:hover {
    color: var(--primary-blue);
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: 0.3s ease;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

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

.mobile-nav-link {
    padding: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.mobile-phone {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
}

/* Герой */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0C4A6E 100%);
    color: var(--white);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
/*    opacity: 0.2;*/
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(3, 105, 161, 0.9), rgba(12, 74, 110, 0.9));
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-form {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-button {
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: #C2410C;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-note a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Секции */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Проблемы */
.problems {
    padding: 6rem 0;
    background: var(--gray-50);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Услуги */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-card h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-price {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.service-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #075985;
}

/* Калькулятор */
.calculator {
    padding: 6rem 0;
    background: var(--gray-50);
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.calculator-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-blue);
    color: var(--white);
}

.step-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--gray-300);
    margin: 0 1rem;
}

/* Шаги калькулятора */
.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.calc-step h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

/* Опции услуг */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    position: relative;
}

.service-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    padding: 1.5rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input:checked + .option-content {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: var(--white);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Опции площади */
.area-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-option {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-option input {
    display: none;
}

.area-option.custom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.area-option.custom input {
    display: inline-block;
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    text-align: center;
}

.area-option input:checked + span {
    color: var(--white);
}

.area-option input:checked + span::before {
    background: var(--primary-blue);
}

/* Кнопки навигации */
.step-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-next, .btn-calculate, .btn-back {
    min-width: 120px;
}

/* Результат */
.calc-result {
    display: none;
}

.calc-result.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.result-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.price-result {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 1rem 0;
}

.result-note {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Форма заявки */
.order-form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.order-form h4 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-grid input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    min-height: 100px;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.form-footer {
    text-align: center;
}

.btn-submit {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
}

.form-agreement {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.form-agreement a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Преимущества */
.why-us {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Отзывы */
.reviews {
    padding: 6rem 0;
    background: var(--gray-50);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.review-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.review-example {
    max-width: 600px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--gray-900);
}

.review-date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.review-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Финальный CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0C4A6E 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    min-width: 200px;
}

.cta-note {
    font-size: 1.125rem;
}

.discount-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Футер */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-relation {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-relation a {
    color: var(--primary-orange);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.footer-link {
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-small-link {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-small-link:hover {
    opacity: 1;
    color: var(--primary-orange);
}

/* Попап */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.popup-content h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.btn-close {
    margin-top: 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
}

/* Плавающая кнопка */
.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-button:hover {
    background: #C2410C;
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .calculator-container {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .problems-grid,
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .calculator-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-line {
        width: 2px;
        height: 40px;
    }
}

/* Стили для изображений в hero */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Стили для изображений в услугах */
.service-image {
/*    width: 100%;*/
    height: 200px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    margin: -2.5rem -2rem 1.5rem -2rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Стили для иконок преимуществ */
.advantage-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Стили для фото в отзывах */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-weight: 600;
    color: var(--gray-900);
}

.review-date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Стили для проблем */
.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    /* Или замените на изображения */
    /* width: 64px;
    height: 64px;
    background: url('assets/icon-problem-1.svg') no-repeat center;
    background-size: contain; */
}

/* Адаптивность для изображений */
@media (max-width: 768px) {
    .service-image {
        height: 150px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }
    
    .hero-bg-image {
        object-position: center;
    }
}

/* Оптимизация загрузки изображений */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}