* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e1e2a;
    line-height: 1.4;
    overflow-x: hidden;
    position: relative;
}

/* ========= АНИМИРОВАННЫЙ ФОН С ПЛАВАЮЩИМИ СЛОВАМИ SOS ========= */
.sos-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-sos {
    position: absolute;
    font-size: clamp(28px, 6vw, 70px);
    font-weight: 800;
    color: rgba(220, 38, 38, 0.411);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    animation: floatSos linear infinite;
    z-index: 0;
}

@keyframes floatSos {
    0% {
        transform: translateY(110vh) translateX(-10%) rotate(0deg);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-20vh) translateX(20%) rotate(8deg);
        opacity: 0.5;
    }
}

/* Адаптация плавающих SOS для разных экранов */
.floating-sos:nth-child(1) { left: 5%; animation-duration: 18s; animation-delay: 0s; font-size: clamp(30px, 5vw, 45px); }
.floating-sos:nth-child(2) { left: 20%; animation-duration: 22s; animation-delay: 2s; font-size: clamp(40px, 7vw, 70px); opacity: 0.06; }
.floating-sos:nth-child(3) { left: 45%; animation-duration: 15s; animation-delay: 1s; font-size: clamp(35px, 6vw, 55px); }
.floating-sos:nth-child(4) { left: 70%; animation-duration: 25s; animation-delay: 0.5s; font-size: clamp(38px, 6.5vw, 60px); }
.floating-sos:nth-child(5) { left: 85%; animation-duration: 20s; animation-delay: 3s; font-size: clamp(28px, 4.5vw, 38px); }
.floating-sos:nth-child(6) { left: 12%; animation-duration: 30s; animation-delay: 4s; font-size: clamp(50px, 9vw, 90px); opacity: 0.05; }
.floating-sos:nth-child(7) { left: 60%; animation-duration: 24s; animation-delay: 0.8s; font-size: clamp(32px, 5.5vw, 48px); }
.floating-sos:nth-child(8) { left: 92%; animation-duration: 19s; animation-delay: 5s; font-size: clamp(30px, 5vw, 42px); }
.floating-sos:nth-child(9) { left: 35%; animation-duration: 27s; animation-delay: 2.2s; font-size: clamp(38px, 7vw, 65px); }
.floating-sos:nth-child(10) { left: 78%; animation-duration: 21s; animation-delay: 1.7s; font-size: clamp(34px, 6vw, 52px); }
.floating-sos:nth-child(11) { left: 48%; animation-duration: 32s; animation-delay: 0.2s; font-size: clamp(45px, 8vw, 80px); opacity: 0.04; }
.floating-sos:nth-child(12) { left: 15%; animation-duration: 17s; animation-delay: 3.5s; font-size: clamp(30px, 5vw, 44px); }

.main-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem 3rem;
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0.8rem 0.8rem 1.5rem;
    }
}

/* ===== ЗАКРЕПЛЕННАЯ ШАПКА ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #fee2e2;
}

.header-nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 900px) {
    .header-nav-wrapper {
        padding: 0.8rem 1.5rem;
    }
}

.logo-small {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.logo-small h2 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 480px) {
    .logo-small h2 {
        font-size: 1.2rem;
    }
    .logo-small p {
        font-size: 0.6rem;
    }
}

/* ========= БУРГЕР-МЕНЮ (только на мобильных) ========= */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #dc2626;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Навигационное меню по умолчанию (десктоп) */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-menu li a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    transition: all 0.2s;
    display: inline-block;
    white-space: nowrap;
}

.nav-menu li a:hover {
    background: #fee2e2;
    color: #dc2626;
}

.nav-menu li a.active {
    background: #dc2626;
    color: white;
}

.nav-phone {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-phone:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

/* ========= МОБИЛЬНАЯ ВЕРСИЯ С БУРГЕР-МЕНЮ ========= */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #fee2e2;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1rem;
        white-space: normal;
        text-align: center;
    }
    
    .nav-menu li a:hover {
        background: #fee2e2;
    }
    
    /* Затемнение фона при открытом меню */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .header-nav-wrapper {
        padding: 0.8rem 1rem;
    }
    
    .nav-phone {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-phone span {
        display: none;
    }
    .nav-phone i {
        margin: 0;
        font-size: 1.2rem;
    }
    .nav-phone {
        padding: 1.4rem 1.8rem;
    }
}

/* Отступ для якорных ссылок (чтобы шапка не перекрывала блок) */
.scroll-target {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    .scroll-target {
        scroll-margin-top: 80px;
    }
}

/* ===== ОСТАЛЬНЫЕ СТИЛИ (без изменений) ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 3px solid #dc2626;
}

@media (max-width: 550px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.logo h1 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
}

.logo p {
    font-size: 0.85rem;
    color: #4b5563;
    letter-spacing: 1px;
}

.badge-247 {
    background: #dc2626;
    padding: 10px 20px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

@media (max-width: 480px) {
    .badge-247 {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
}

.badge-247 i {
    color: white;
    margin-right: 8px;
}

.about-hero {
    background: #fef2f2;
    border-radius: 48px;
    padding: 2rem;
    margin: 2rem 0 2.5rem;
    border: 1px solid #fecaca;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        border-radius: 32px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 1.2rem;
        margin: 1.5rem 0;
        border-radius: 24px;
    }
}

.about-content {
    flex: 1.2;
    min-width: 260px;
}

@media (max-width: 768px) {
    .about-content {
        min-width: auto;
    }
}

.about-image {
    flex: 0.8;
    min-width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .about-image {
        min-width: auto;
        width: 100%;
    }
}

.about-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 35px -10px rgba(220, 38, 38, 0.25);
    transition: transform 0.3s ease;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-image img {
        max-width: 100%;
        border-radius: 24px;
    }
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #dc2626;
}

@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h2 {
        font-size: 1.6rem;
    }
}

.about-hero h2 i {
    margin-right: 12px;
    color: #dc2626;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-text {
        font-size: 0.9rem;
    }
}

.highlight {
    color: #dc2626;
    font-weight: 700;
    background: #fee2e2;
    padding: 0 6px;
    border-radius: 12px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

@media (max-width: 768px) {
    .features {
        justify-content: center;
    }
}

.feature-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    background: white;
    padding: 10px 18px;
    border-radius: 40px;
    border: 1px solid #fecaca;
    color: #1f2937;
    transition: all 0.2s;
}

@media (max-width: 550px) {
    .feature-item {
        min-width: 100%;
        justify-content: center;
    }
}

.feature-item i {
    font-size: 1.6rem;
    color: #dc2626;
}

.feature-item:hover {
    background: #fee2e2;
    transform: translateY(-2px);
}

.seo-block {
    background: #fef2f2;
    border-radius: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    margin: 2rem 0 2.5rem;
    border: 1px solid #fecaca;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .seo-block {
        padding: 1.5rem;
        border-radius: 32px;
    }
}

@media (max-width: 480px) {
    .seo-block {
        padding: 1.2rem;
        border-radius: 24px;
    }
}

.seo-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .seo-block h2 {
        font-size: 1.3rem;
    }
}

.seo-block p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .seo-block p {
        font-size: 0.9rem;
    }
}

.seo-highlight {
    font-weight: 600;
    color: #dc2626;
}

.contacts {
    background: #ffffff;
    border-radius: 36px;
    padding: 1.8rem 2rem;
    margin: 2rem 0;
    border-left: 5px solid #dc2626;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #fee2e2;
}

@media (max-width: 768px) {
    .contacts {
        padding: 1.5rem;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .contacts {
        padding: 1.2rem;
        border-radius: 24px;
    }
}

.contacts h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dc2626;
}

@media (max-width: 480px) {
    .contacts h3 {
        font-size: 1.4rem;
    }
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
}

.contact-card {
    background: #fef2f2;
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid #fecaca;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
    .contact-card {
        justify-content: center;
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 1.1rem;
    }
}

.contact-card-sos {
    color: rgb(233, 229, 229);
}

.contact-card i {
    font-size: 1.6rem;
    color: #dc2626;
}

.contact-card a {
    color: #1f2937;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.contact-card:hover {
    background: #fee2e2;
    transform: scale(1.02);
    border-color: #dc2626;
}

.call-btn {
    background: #dc2626;
    border: none;
}

.call-btn i {
    color: white;
}

.call-btn a {
    color: white;
    font-weight: 800;
}

.call-btn:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

.reviews {
    margin: 3rem 0;
}

@media (max-width: 480px) {
    .reviews {
        margin: 2rem 0;
    }
}

.reviews h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dc2626;
}

@media (max-width: 480px) {
    .reviews h3 {
        font-size: 1.5rem;
    }
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        gap: 1rem;
    }
}

.review-card {
    background: #fef2f2;
    border-radius: 28px;
    padding: 1.5rem;
    flex: 1 1 280px;
    border: 1px solid #fecaca;
    transition: all 0.2s;
}

@media (max-width: 480px) {
    .review-card {
        padding: 1rem;
        border-radius: 20px;
    }
}

.review-card:hover {
    background: #fee2e2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.15);
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #1f2937;
}

@media (max-width: 480px) {
    .review-text {
        font-size: 0.9rem;
    }
}

.review-author {
    font-weight: 700;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.photos {
    margin: 3rem 0;
}

@media (max-width: 480px) {
    .photos {
        margin: 2rem 0;
    }
}

.photos h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dc2626;
}

@media (max-width: 480px) {
    .photos h3 {
        font-size: 1.5rem;
    }
}

.photo-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 450px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

.photo-item {
    background: #fef2f2;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
    cursor: pointer;
    border: 1px solid #fecaca;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.placeholder-photo {
    background: linear-gradient(145deg, #fff5f5, #fee2e2);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 2.2rem;
    object-fit: cover;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prices {
    background: #ffffff;
    border-radius: 36px;
    padding: 1.8rem 2rem;
    margin: 2rem 0;
    border-left: 5px solid #dc2626;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #fee2e2;
}

@media (max-width: 768px) {
    .prices {
        padding: 1.5rem;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .prices {
        padding: 1.2rem;
        border-radius: 24px;
    }
}

.prices h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dc2626;
}

@media (max-width: 480px) {
    .prices h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.price-category {
    margin-bottom: 2rem;
}

.price-category h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fecaca;
    display: inline-block;
}

@media (max-width: 480px) {
    .price-category h4 {
        font-size: 1.2rem;
    }
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #fee2e2;
}

@media (max-width: 600px) {
    .price-row {
        flex-direction: column;
        gap: 0.4rem;
    }
}

.price-desc {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

@media (max-width: 480px) {
    .price-desc {
        font-size: 0.9rem;
    }
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    background: #fef2f2;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
}

@media (max-width: 600px) {
    .price-value {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .price-value {
        font-size: 1rem;
    }
}

.price-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.3rem;
    font-style: italic;
}

.steps {
    background: #fef2f2;
    border-radius: 36px;
    padding: 1.8rem 2rem;
    margin: 2rem 0;
    border-left: 5px solid #dc2626;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .steps {
        padding: 1.5rem;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .steps {
        padding: 1.2rem;
        border-radius: 24px;
    }
}

.steps h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dc2626;
}

@media (max-width: 480px) {
    .steps h3 {
        font-size: 1.5rem;
    }
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        gap: 1rem;
    }
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #fecaca;
    transition: all 0.2s;
}

@media (max-width: 480px) {
    .step-card {
        padding: 1rem;
        border-radius: 20px;
    }
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.15);
    background: #fffafa;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #dc2626;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

@media (max-width: 480px) {
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.step-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #111827;
}

@media (max-width: 480px) {
    .step-title {
        font-size: 1rem;
    }
}

.step-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .step-desc {
        font-size: 0.85rem;
    }
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 25px;
    background: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 18px rgba(220, 38, 38, 0.4);
    z-index: 99;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 480px) {
    .floating-call {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.floating-call:hover {
    background: #b91c1c;
    transform: scale(1.08);
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 1rem 1rem;
    font-size: 0.8rem;
    border-top: 1px solid #fee2e2;
    color: #6b7280;
}

@media (max-width: 768px) {
    footer {
        margin-top: 3rem;
        padding: 1.5rem 1rem 1rem;
    }
}

.footer-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 550px) {
    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

button {
    background: none;
    border: none;
}

::selection {
    background: #dc2626;
    color: white;
}

.contact-card a:hover {
    color: #dc2626;
}

.call-btn a:hover {
    color: white !important;
}

/* ========= МОДАЛЬНОЕ ОКНО ========= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    background: white;
    border-radius: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
    z-index: 1;
}

.modal-close:hover {
    color: #dc2626;
    transform: rotate(90deg);
}

.modal-window h2 {
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Стили формы */
.modal-form .form-group {
    margin-bottom: 1rem;
}

.modal-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.required {
    color: #dc2626;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.modal-form input.error,
.modal-form textarea.error {
    border-color: #dc2626;
    background: #fef2f2;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 1.2rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #dc2626;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.4;
    cursor: pointer;
}

.form-checkbox label a {
    color: #dc2626;
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: #b91c1c;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

/* Успешная отправка */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.close-success-btn {
    padding: 0.8rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.close-success-btn:hover {
    background: #b91c1c;
}

/* ========= НОВАЯ КНОПКА В КОНТАКТАХ ========= */
.order-btn-wrapper {
    margin-top: 1.2rem;
    width: 100%;
}

.order-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px -5px rgba(220, 38, 38, 0.4);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px -5px rgba(220, 38, 38, 0.5);
}

.order-btn:active {
    transform: translateY(0);
}

.order-btn i {
    font-size: 1.2rem;
}

/* ========= АДАПТИВ ДЛЯ МОДАЛЬНОГО ОКНА ========= */
@media (max-width: 768px) {
    .modal-window {
        padding: 1.5rem;
        border-radius: 24px;
        max-height: 85vh;
    }
    
    .modal-window h2 {
        font-size: 1.5rem;
    }
    
    .modal-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .modal-form input,
    .modal-form textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .modal-close {
        top: 12px;
        right: 16px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-window {
        padding: 1.2rem;
        border-radius: 20px;
        max-height: 90vh;
    }
    
    .modal-window h2 {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .modal-form .form-group {
        margin-bottom: 0.7rem;
    }
    
    .modal-form label {
        font-size: 0.8rem;
    }
    
    .modal-form input,
    .modal-form textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .modal-form textarea {
        min-height: 60px;
    }
    
    .submit-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-checkbox {
        margin: 0.8rem 0;
    }
    
    .form-checkbox label {
        font-size: 0.75rem;
    }
    
    .form-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
    
    .modal-close {
        top: 10px;
        right: 12px;
        font-size: 1.5rem;
    }
    
    .order-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 50px;
    }
    
    .order-btn i {
        font-size: 1rem;
    }
    
    .form-success i {
        font-size: 3rem;
    }
    
    .form-success h3 {
        font-size: 1.2rem;
    }
    
    .close-success-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Стили для скролла внутри модалки */
.modal-window::-webkit-scrollbar {
    width: 6px;
}

.modal-window::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-window::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 10px;
}

.modal-window::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}


@media (max-width: 768px) {
    .header-nav-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-phone {
        order: 3;
        width: 60%;
        margin: 0 auto;
        justify-content: center;
        font-size: 1.35rem !important;
        padding: 0.7rem 1rem !important;
        margin-top: 0.5rem;
    }

    .nav-phone i {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    .nav-phone {
        font-size: 1.15rem !important;
        padding: 0.6rem 1rem !important;
    }

    .nav-phone span {
        display: inline !important;
    }

    .nav-phone i {
        margin-right: 6px !important;
        font-size: 1.1rem !important;
    }
}