* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1515 50%, #0a0a0a 100%);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 69, 69, 0.2);
    border-bottom: 2px solid #8b4545;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #8b4545;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8b4545, #a85555);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b4545, #a85555);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: #8b4545;
    text-shadow: 0 0 6px #8b4545;
}

nav a:hover::before {
    width: 100%;
}

.phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.9),
        0 0 15px rgba(255, 140, 0, 0.7),
        0 0 25px rgba(255, 140, 0, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone:hover {
    color: #fff;
    transform: scale(1.05);
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.9),
        0 0 20px rgba(255, 140, 0, 0.9),
        0 0 30px rgba(255, 140, 0, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 69, 69, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(168, 85, 85, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #2a1515 100%);
    color: white;
    padding: 200px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.9), 0 0 20px rgba(139, 69, 69, 0.8);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    color: #fff;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight-text {
    color: #fff;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.9),
        0 0 20px rgba(255, 140, 0, 0.7),
        0 0 30px rgba(255, 140, 0, 0.4);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.badge-247 {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff8c00, #ffa500, #ff6347);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.5);
    animation: pulse247 3s ease-in-out infinite;
    border: none;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@keyframes pulse247 {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b4545 0%, #a85555 50%, #8b4545 100%);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(139, 69, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 69, 69, 0.4);
    border: 2px solid #8b4545;
    background: linear-gradient(135deg, #a85555 0%, #8b4545 50%, #a85555 100%);
}

/* Features */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8b4545, #a85555);
    border-radius: 2px;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b4545, transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #333;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b4545, #a85555, #8b4545);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 20px 50px rgba(139, 69, 69, 0.2),
        0 0 30px rgba(139, 69, 69, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: #8b4545;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b4545, #a85555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(139, 69, 69, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b4545, #a85555);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
    animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.map-container iframe {
    box-shadow: 0 20px 50px rgba(139, 69, 69, 0.2);
}

.map-address {
    background: linear-gradient(145deg, #1a1a1a, #111);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #8b4545;
    box-shadow: 0 10px 30px rgba(139, 69, 69, 0.2);
}

.map-address h3 {
    color: #8b4545;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(139, 69, 69, 0.3);
}

.map-address p {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Contacts */
.contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 50%, #2a1515 100%);
    position: relative;
}

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

.contact-item {
    text-align: center;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(17, 17, 17, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 69, 69, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: #8b4545;
    box-shadow: 0 20px 40px rgba(139, 69, 69, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4545, #a85555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(139, 69, 69, 0.3);
}

.contact-item h3 {
    color: #8b4545;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(139, 69, 69, 0.3);
}

.contact-item p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Prices Section */
.prices-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.prices-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.price-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card--highlight {
    border-color: rgba(255, 140, 0, 0.4);
    background: linear-gradient(145deg, #1f1a10, #151209);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.08);
}

.price-card--highlight::before {
    content: '★ ПОПУЛЯРНОЕ';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: #8b4545;
    box-shadow: 0 15px 35px rgba(139, 69, 69, 0.15);
}

.price-card--highlight:hover {
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.15);
}

.price-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.price-card h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 1.8rem;
    text-align: left;
}

.price-card ul li {
    color: #bbb;
    padding: 0.5rem 0;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card ul li::before {
    content: '—';
    color: #8b4545;
    font-weight: bold;
    flex-shrink: 0;
}

.price-card--highlight ul li::before {
    color: #ffa500;
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-call-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4545, #a85555);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.price-card--highlight .price-call-btn {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
}

.price-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 69, 0.3);
}

.price-card--highlight .price-call-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.prices-banner {
    background: linear-gradient(135deg, #1a0a0a, #2a1515);
    border: 2px solid #8b4545;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.prices-banner__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prices-banner__text span:first-child {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.prices-banner__sub {
    color: #aaa !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
}

/* SEO Text Section */
.seo-text {
    padding: 60px 0;
    background: #111;
    border-top: 1px solid #222;
}

.seo-text h2 {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.seo-text h3 {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.seo-text p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.seo-text strong {
    color: #aaa;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.seo-footer-text {
    font-size: 0.9rem !important;
    color: #666 !important;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000 0%, #1a0a0a 100%);
    color: #b0b0b0;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #8b4545;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Скрываем навигацию на планшетах и мобильных */
    header nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    header nav ul {
        display: none !important;
    }

    /* Центрируем содержимое хедера */
    .header-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        justify-content: center;
    }

    /* Логотип по центру на планшетах */
    .logo {
        font-size: 1.5rem;
        text-align: center;
        margin: 0 auto;
    }

    /* Увеличиваем телефон на планшетах */
    .phone {
        font-size: 1.4rem;
        text-align: center;
        display: block;
    }
}

@media (max-width: 768px) {
    /* Скрываем логотип на мобильных */
    .logo {
        display: none !important;
    }

    /* Центрируем телефон */
    .header-content {
        justify-content: center;
        align-items: center;
    }

    .phone {
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 1.5rem !important;
    }

    .hero p {
        font-size: 1.2rem !important;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .badge-247 {
        width: 45px;
        height: 45px;
        font-size: 0.65rem;
        top: -8px;
        right: -8px;
    }

    .map-container iframe {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b4545, #a85555);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a85555, #8b4545);
}

/* Selection styling */
::selection {
    background: rgba(139, 69, 69, 0.2);
    color: #fff;
}